summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2022-11-25 20:53:54 -0500
committersiddharth ravikumar <s@ricketyspace.net>2022-11-25 20:53:54 -0500
commit6196d58a8d6d432d799736fc9cf6740229f021c3 (patch)
treec8dcae340e02853cff174aa0c70fb047a1420979
parent43ea9acb421baa6f3379af9ae4508dfb4bf339ab (diff)
schema: add `PodcastFeed`
-rw-r--r--schema/schema.go22
-rw-r--r--schema/schema_test.go68
-rw-r--r--schema/testdata/pc-atp.xml25554
-rw-r--r--schema/testdata/pc-daringfireball.xml11296
-rw-r--r--schema/testdata/pc-kara.xml632
-rw-r--r--schema/testdata/pc-scwpod.xml456
6 files changed, 38028 insertions, 0 deletions
diff --git a/schema/schema.go b/schema/schema.go
index c114fb1..e0712a3 100644
--- a/schema/schema.go
+++ b/schema/schema.go
@@ -61,6 +61,28 @@ type YouTubeFeed struct {
Entries []YouTubeEntry `xml:"entry"`
}
+// Represents a direct link to a Podcast.
+type PodcastLink struct {
+ XMLName xml.Name `xml:"enclosure"`
+ Url string `xml:"url,attr"`
+}
+
+// Represents an entry in the Podcast feed.
+type PodcastEntry struct {
+ XMLName xml.Name `xml:"item"`
+ Id string `xml:"guid"`
+ Title string `xml:"title"`
+ Pub string `xml:"pubDate"`
+ PubTime time.Time
+ Link PodcastLink `xml:"enclosure"`
+}
+
+// Represents a iTunes Podcast feed.
+type PodcastFeed struct {
+ XMLName xml.Name `xml:"rss"`
+ Entries []PodcastEntry `xml:"channel>item"`
+}
+
func (e Entry) TitleContains(contains string) bool {
return strings.Contains(strings.ToLower(e.Title), strings.ToLower(contains))
}
diff --git a/schema/schema_test.go b/schema/schema_test.go
new file mode 100644
index 0000000..b80ad3f
--- /dev/null
+++ b/schema/schema_test.go
@@ -0,0 +1,68 @@
+// SPDX-License-Identifier: ISC
+// Copyright © 2022 siddharth <s@ricketyspace.net>
+
+package schema
+
+import (
+ "encoding/xml"
+ "net/url"
+ "testing"
+ "time"
+
+ "ricketyspace.net/fern/file"
+)
+
+func TestPodcastFeed(t *testing.T) {
+ testFeeds := []string{
+ "testdata/pc-atp.xml",
+ "testdata/pc-daringfireball.xml",
+ "testdata/pc-kara.xml",
+ "testdata/pc-scwpod.xml",
+ }
+ for _, feed := range testFeeds {
+ bs, err := file.ReadFile(feed)
+ if err != nil {
+ t.Errorf("read feed: %v", err)
+ return
+ }
+ pf := new(PodcastFeed)
+ err = xml.Unmarshal(bs, pf)
+ if err != nil {
+ t.Errorf("xml unmarshal: %v", err)
+ return
+ }
+ for _, entry := range pf.Entries {
+ if len(entry.Id) < 1 {
+ t.Errorf("entry id: %v", entry.Id)
+ return
+ }
+ if len(entry.Title) < 1 {
+ t.Errorf("entry title: %v", entry.Title)
+ return
+ }
+ layout := time.RFC1123Z
+ if entry.Pub[len(entry.Pub)-1:] == "T" {
+ // Textual time zone. like 'EDT'.
+ if entry.Pub[6:7] == " " {
+ layout = "Mon, 2 Jan 2006 15:04:05 MST"
+ } else {
+ layout = time.RFC1123
+ }
+ }
+ pt, err := time.Parse(layout, entry.Pub)
+ if err != nil {
+ t.Errorf("entry pub: %v: '%v'", layout, entry.Pub)
+ return
+ }
+ if pt.Unix() < 994702392 {
+ t.Errorf("entry time: %v", pt)
+ return
+ }
+ _, err = url.Parse(entry.Link.Url)
+ if err != nil {
+ t.Errorf("entry url: %s: %v", entry.Link.Url, err)
+ return
+ }
+ }
+ }
+}
diff --git a/schema/testdata/pc-atp.xml b/schema/testdata/pc-atp.xml
new file mode 100644
index 0000000..cf9a1d8
--- /dev/null
+++ b/schema/testdata/pc-atp.xml
@@ -0,0 +1,25554 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"><channel><title>Accidental Tech Podcast</title><description>Three nerds discussing tech, Apple, programming, and loosely related matters.</description><itunes:author>Marco Arment, Casey Liss, John Siracusa</itunes:author><itunes:subtitle>Three nerds discussing tech, Apple, programming, and loosely related matters.</itunes:subtitle><link>https://atp.fm/</link><language>en_US</language><lastBuildDate>Tue, 22 Nov 2022 17:22:53 +0000</lastBuildDate><itunes:category text="Technology"/><itunes:image href="https://cdn.atp.fm/artwork"/><itunes:explicit>no</itunes:explicit><itunes:owner><itunes:name>Marco Arment</itunes:name><itunes:email>atp@marco.org</itunes:email></itunes:owner><copyright>Copyright 2013–2022 Accidental Tech Podcast</copyright><itunes:copyright>Copyright 2013–2022 Accidental Tech Podcast</itunes:copyright><item><guid isPermaLink="false">dmptddr4tkxkwwpy</guid><pubDate>Tue, 22 Nov 2022 16:40:19 +0000</pubDate><title>510: It's Occupied by Bears</title><itunes:title>It's Occupied by Bears</itunes:title><itunes:episode>510</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp510.mp3" length="124137186" type="audio/mpeg"/><link>https://atp.fm/510</link><description><![CDATA[<ul>
+<li>Pre-show: Marco makes Casey&#8217;s day
+
+<ul>
+<li><a href="https://metacpan.org/pod/B"><code>B</code></a></li>
+<li><a href="https://github.com/marcoarment/FCModel">FCModel</a></li>
+<li><a href="https://www.hackingwithswift.com">Hacking with Swift</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://robservatory.com/using-network-locations-in-macos-ventura/">Using network locations in macOS Ventura</a>
+
+<ul>
+<li><a href="https://github.com/dustinrue/ControlPlane">ControlPlane</a></li>
+<li><a href="https://www.caseyliss.com/2022/11/14/ventura-date-formats">Casey&#8217;s adventure with date formats</a></li>
+<li><a href="https://scriptingosx.com/2022/11/on-viewing-man-pages-ventura-update/">Bonus: <code>man</code> pages in <code>Preview</code></a></li>
+</ul></li>
+<li>John&#8217;s iPhone Cases
+
+<ul>
+<li><a href="https://bullstrap.co/products/magsafe-iphone-cases-black-edition?variant=42427763228866">Bullstrap</a> $85 → $68</li>
+<li><a href="https://ryanlondon.com/collections/iphone-14-series-leather-case/products/leather-iphone-14-pro-shell-case-magsafe-black">Ryan London</a> $54</li>
+</ul></li>
+</ul></li>
+<li><a href="https://joinmastodon.org">Mastodon</a>
+
+<ul>
+<li><a href="https://mastodon.social/@siracusa">The Real Slim Shady</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ActivityPub">ActivityPub</a>
+
+<ul>
+<li><a href="https://help.micro.blog/t/activitypub/95">Micro.blog support</a></li>
+</ul></li>
+<li><a href="https://nora.codes/post/scaling-mastodon-in-the-face-of-an-exodus/">Scalability</a></li>
+<li><a href="https://wilwheaton.net/2018/08/the-world-is-a-terrible-place-right-now-and-thats-largely-because-it-is-what-we-make-it/">Moderation</a></li>
+<li><a href="https://ashfurrow.com/blog/mastodon-technology-shutdown/">Burnout</a></li>
+<li><a href="https://twitter.com/rahaeli/status/1594756281650524160">On evaluating new platforms</a></li>
+<li><a href="https://www.nytimes.com/2022/11/21/style/mastodon-twitter-adam-davidson.html">Running an instance is&#8230; not easy</a></li>
+<li><a href="https://time.com/6229230/mastodon-eugen-rochko-interview/">Founder in Time</a></li>
+<li><a href="https://transponderings.blog/2022/05/21/eight-mastodon-apps-for-iphone/">Client app reviews by Anna Nicholson</a></li>
+<li><a href="https://docs.google.com/spreadsheets/d/1De5KRwqMIdwEryfoeBLARgxF7QgKkeOQBCilKuIdAXE/htmlview?usp=sharing&amp;pru=AAABhLq-XlQ*0eO1QCVPN-uICRM0ZQxSOw">Client app feature comparison Google Sheet</a></li>
+<li>Client Apps
+
+<ul>
+<li><a href="https://joinmastodon.org/apps">Official client</a></li>
+<li><a href="https://apps.apple.com/us/app/metatext/id1523996615">Metatext</a></li>
+<li><a href="https://testflight.apple.com/join/66c1wW8y">Mammoth</a> (TestFlight)</li>
+<li><a href="https://testflight.apple.com/join/wtB7HYvG">Tusker</a> (TestFlight)</li>
+<li><a href="https://apps.apple.com/gb/app/toot/id1229021451">Toot!</a></li>
+<li><a href="https://apps.apple.com/gb/app/tootle-for-mastodon/id1236013466">Tootle</a></li>
+<li><a href="https://apps.apple.com/gb/app/mast-for-mastodon/id1437429129">Mast</a></li>
+<li><a href="https://onmercury.app/">Mercury</a></li>
+<li><a href="https://apps.apple.com/gb/app/tooot/id1549772269">tooot</a></li>
+<li><a href="https://www.fediapp.com/">Fedi</a></li>
+<li>Mac Apps
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/mastonaut/id1450757574?mt=12">Mastonaut</a></li>
+<li><a href="https://apps.apple.com/us/app/hyperspace-desktop/id1454139710?mt=12">Hyperspace Desktop</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://fedifinder.glitch.me/">FedFinder</a> to find the right instance for you</li>
+</ul></li>
+<li><a href="https://www.hivesocial.app">Hive</a></li>
+<li>Twitter Updates
+
+<ul>
+<li><a href="https://ez.substack.com/p/the-fraudulent-king"><em>The Fradulent King</em> by Ed Z</a></li>
+<li><a href="https://twitterisgoinggreat.com/">Twitter is Going Great</a>
+
+<ul>
+<li><a href="https://web3isgoinggreat.com">Previously</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2022/11/21/23472025/elon-musk-twitter-hiring-again-ending-layoffs">Twitter is hiring! (🦗)</a></li>
+<li>App Store rules</li>
+<li><a href="https://www.theverge.com/2022/5/19/23131680/elon-musk-sexual-misconduct-accusations-spacex-flight-attendant">Elon Musk&#8217;s sexual misconduct</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Why bother with an Apple TV when modern TVs can do all the same stuff? (via Dominic Lemire)</li>
+<li>Is using an Xfinity Wi-Fi hotspot ethical? (via nougatmachine)</li>
+<li>Will data storage ever become scarce? (via <a href="https://twitter.com/chriswrightau/status/1582270758780571648">Chris Wright</a>)</li>
+</ul></li>
+<li>Post-show: Happy Thanksgiving! 🦃
+
+<ul>
+<li><a href="https://hypercritical.co/2020/08/31/good-products">John&#8217;s &#8220;Good Products&#8221; List</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3xyZQ8v">Kolide</a>: A cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://www.backblaze.com/atp">Backblaze</a>: Backblaze makes backing up and accessing your data astonishingly easy.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Mastodon, date formats, testing, and what we're thankful for.</itunes:subtitle></item><item><guid isPermaLink="false">cvhvek5dvhltym9f</guid><pubDate>Thu, 17 Nov 2022 16:26:09 +0000</pubDate><title>509: Tiny Tyrants</title><itunes:title>Tiny Tyrants</itunes:title><itunes:episode>509</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:14:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp509.mp3" length="128898092" type="audio/mpeg"/><link>https://atp.fm/509</link><description><![CDATA[<ul>
+<li>Pre-show: John is a Swiftie</li>
+<li>Follow-up:
+
+<ul>
+<li>John&#8217;s 2FA transfer options, and <a href="https://twitter.com/hakusaro/status/1590574319218077696">a suggestion from particles!</a></li>
+<li>Automating Watch faces (via Alex Serriere)</li>
+<li>Newer Apple TV 4K models support HDR in YouTube (via Matt Freedman)</li>
+<li>Photos, Smart Albums, and boolean logic (via <a href="https://twitter.com/sonicdoe/status/1591061114535964676">Jakob</a>)</li>
+<li><a href="https://support.apple.com/en-us/HT201322">Hiding purchases</a> in Music (via <a href="https://twitter.com/vortech/status/1591493833530802176">Arem</a>)</li>
+<li>Twitter Tribulations
+
+<ul>
+<li><a href="https://www.nytimes.com/2022/11/15/technology/elon-musk-twitter-fired-criticism.html">Elon Musk has the world&#8217;s thinnest skin</a>
+
+<ul>
+<li><a href="https://twitter.com/dankim/status/1592121646697037827">Employee corrects Elon</a></li>
+</ul></li>
+<li><a href="https://www.washingtonpost.com/technology/2022/11/16/musk-twitter-email-ultimatum-termination/">He&#8217;s also a big jerk</a></li>
+<li><a href="https://en.wikipedia.org/wiki/H-1B_visa">H-1B visa</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Intel_8088">Intel 8088</a></li>
+</ul></li>
+<li>HomeKit is <em>amazing</em> for some people (via Todd)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/X10_(industry_standard)">X10</a></li>
+</ul></li>
+<li><a href="https://www.cultofmac.com/796838/mac-enters-third-year-of-two-year-transition-to-apple-chips/">Mac enters the third year of &#8220;two-year transition&#8221;</a></li>
+<li>Will John and Marco ever be satisfied? (via Jonathan Claydon)</li>
+</ul></li>
+<li>iPhones 14 Satellite Emergency SOS is live
+
+<ul>
+<li><a href="https://www.apple.com/newsroom/2022/11/emergency-sos-via-satellite-available-today-on-iphone-14-lineup/">Newsroom</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1592635904417755138">Casey&#8217;s screen recording</a></li>
+<li><a href="https://www.youtube.com/watch?v=3aprtINvClw">iJustine&#8217;s Discussion with Kaiann and Arun</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1592869828456775685">Sending location via satellite</a></li>
+</ul></li>
+<li><a href="https://joinmastodon.org">Mastodon</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Mastodon_(software)">Wikipedia</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Federation_(information_technology)">Federation</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ActivityPub">ActivityPub</a></li>
+<li><a href="https://blueskyweb.xyz/">Bluesky</a></li>
+<li><a href="https://micro.blog/">Micro.blog</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>What&#8217;s the best way to download Xcode? (via <a href="https://twitter.com/EshuMarneedi/status/1585864037941874688">Eshu Marneedi</a>)
+
+<ul>
+<li><a href="https://www.xcodes.app/">Xcodes</a></li>
+<li><a href="https://www.cs.cmu.edu/~rdriley/487/papers/Thompson_1984_ReflectionsonTrustingTrust.pdf">Reflections on Trusting Tust</a></li>
+</ul></li>
+<li>What is the best-designed Mac app that Apple currently makes? (via Claude Zeins)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Claris_Emailer">Claris Em@iler</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microsoft_Entourage">Microsoft Entourage</a></li>
+</ul></li>
+<li>What advice do we have for leading people at work? (via Andrew Larson)</li>
+</ul></li>
+<li>Post-show: Marco kicks the MySQL-shaped can down the road.
+
+<ul>
+<li><a href="https://github.com/marcoarment/FCModel"><code>FCModel</code></a></li>
+<li><a href="https://github.com/ccgus/fmdb"><code>FMDB</code></a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed! And 15% off in <a href="https://atp.fm/store">the store</a>!</p>
+]]></description><itunes:subtitle>Mastodon, Twitter's latest BS, iPhone Emergency SOS via satellite, and dim hopes for concert tickets.</itunes:subtitle></item><item><guid isPermaLink="false">ogfmv3pimdffeloz</guid><pubDate>Thu, 10 Nov 2022 16:14:16 +0000</pubDate><title>508: Later Is Getting Later and Later</title><itunes:title>Later Is Getting Later and Later</itunes:title><itunes:episode>508</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:16:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp508.mp3" length="131884040" type="audio/mpeg"/><link>https://atp.fm/508</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store">ATP STORE</a> IS BACK, BABY!</strong> The store will be open until <strong>Sunday, 13 November</strong>! Don&#8217;t delay!
+Our thanks to the teams at <a href="https://www.studioneat.com/blogs/main/atp-x-studio-neat-chicken-hat-collab">Studio Neat</a>, and, as always, <a href="https://cottonbureau.com/">Cotton Bureau</a>. Don&#8217;t forget, <a href="https://atp.fm/join">members</a> get 15% off!</p>
+
+<ul>
+<li>Pre-show: lol twttr
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Hotline_Communications">Hotline</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://rewind.ai/">Rewind</a> has <a href="https://twitter.com/dsiroker/status/1588236647849635840">stopped using cloud transcription</a>, so, <a href="https://twitter.com/dsiroker/status/1588358310268268544">you&#8217;re welcome</a>.</li>
+<li>Speaking of screen recording, let&#8217;s talk about <img src="https://cdn.atp.fm/images/20221109-scare-open.gif?v1" alt='"' /><a href="https://twitter.com/codatory/status/1588318157600882690">corporate espionage protection</a><img src="https://cdn.atp.fm/images/20221109-scare-close.gif?v1" alt='"' />
+
+<ul>
+<li><a href="https://www.dtexsystems.com">DTEX</a></li>
+</ul></li>
+<li><a href="https://sixcolors.com/post/2022/11/quick-tim-smart-albums-based-on-photos-searches/">Jason has found the answer</a> to John&#8217;s confusion about using ML-generated keywords in smart albums</li>
+<li>More on Casey&#8217;s wonky iPad volume buttons (via <a href="https://twitter.com/AndreAguiar/status/1588245683769085952">Andre Aguilar</a> and others)
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT210976">Support article</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/ECC_memory">ECC RAM</a> support <a href="https://github.com/apple-oss-distributions/xnu/releases/tag/xnu-8792.41.9">is coming to macOS</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/XNU">XNU</a></li>
+</ul></li>
+<li>Ventura System Settings &amp; third-party preference panes</li>
+<li><a href="https://twitter.com/inanimatecr/status/1587419551318278145">Mark U</a> teaches us how to read Apple</li>
+<li>Steve Troughton-Smith <em>also</em> teaches us how to read Apple</li>
+</ul></li>
+<li>John&#8217;s &#8220;new&#8221; 📱 &amp; 🖱️
+
+<ul>
+<li><a href="https://www.microsoft.com/en/accessories/products/mice/microsoft-precision-mouse?activetab=pivot:overviewtab">John&#8217;s mouse</a></li>
+<li><a href="https://cdn.atp.fm/images/20221109-img-2228.jpeg?v1">John&#8217;s 🍄</a></li>
+</ul></li>
+<li><a href="https://sixcolors.com/post/2022/11/the-apple-tvs-upgrade-experience-needs-an-upgrade/">New Apple TV upgrade <em>experience</em></a></li>
+<li><a href="https://variety.com/2022/music/news/bono-apology-u2-itunes-album-memoir-1235411778/">Bono apologizes for <em>Songs of Innocence</em></a>
+
+<ul>
+<li><a href="https://discussions.apple.com/thread/251184844">How do you remove this darn thing anyway?</a></li>
+<li><a href="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/offerOptOut">Removal URL</a></li>
+</ul></li>
+<li><a href="https://twitter.com/mingchikuo/status/1585852274680950784">iPhone 15 buttons may go solid-state?</a></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Is &#8220;smart home&#8221; tech really worth it? (via James Egg)</li>
+<li>Which host is the fastest typist? (via Mark Richard)</li>
+<li>Why don&#8217;t we have interactive home screen widgets yet? (via <a href="https://twitter.com/_brianhamilton/status/1582335630536605697">Brian Hamilton</a>)</li>
+</ul></li>
+<li>Post-show: Marco made <a href="https://www.emilioscommack.com">a pilgrimage</a>
+
+<ul>
+<li><a href="https://www.johnsofbleecker.com">John&#8217;s of Bleecker Street</a></li>
+<li><a href="https://www.branchinellisonline.com">Branchinelli&#8217;s</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3xyZQ8v">Kolide</a>: Make your team into your biggest allies for endpoint security. Solve problems, right within Slack.</li>
+<li><a href="https://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed! And 15% off in <a href="https://atp.fm/store">the store</a>!</p>
+]]></description><itunes:subtitle>Twitter, Apple TV setup, a "new" phone and mouse, and maximizing the value of smart-home gear.</itunes:subtitle></item><item><guid isPermaLink="false">lvb4rjhos3fnsfzp</guid><pubDate>Thu, 03 Nov 2022 15:55:19 +0000</pubDate><title>507: It Sucks, Doesn't It?</title><itunes:title>It Sucks, Doesn't It?</itunes:title><itunes:episode>507</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp507.mp3" length="118662631" type="audio/mpeg"/><link>https://atp.fm/507</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store">ATP STORE</a> IS BACK, BABY!</strong> The store will be open until <strong>Sunday, 13 November</strong>! Don&#8217;t delay!
+Our thanks to the teams at <a href="https://www.studioneat.com/blogs/main/atp-x-studio-neat-chicken-hat-collab">Studio Neat</a>, and, as always, <a href="https://cottonbureau.com/">Cotton Bureau</a>. Don&#8217;t forget, <a href="https://atp.fm/join">members</a> get 15% off!</p>
+
+<ul>
+<li>Pre-show: Marco&#8217;s <a href="https://www.amazon.com/dp/B075G1LJQ1/?tag=marcoorg-20">RTD</a>
+
+<ul>
+<li><a href="https://daringfireball.net/2022/04/30_years_of_bbedit_not_sucking">BBEdit doesn&#8217;t suck</a></li>
+<li><a href="https://www.ownerinfo.landrover.com/document/3E/2021/T23449/44322_en_GBR/proc/G2726197">Land Rover Defender pressures</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Casey apologizes to Marco&#8230; again</li>
+<li>A small update on Casey&#8217;s <span style="text-decoration: line-through">park bench</span> picnic table and his Verizon-connected iPad Pro</li>
+<li>More on Ventura&#8217;s System Settings
+
+<ul>
+<li><a href="https://developer.apple.com/design/human-interface-guidelines/components/selection-and-input/toggles/#macos">Apple HIG</a></li>
+<li>Removal of scheduled sleep/wake GUI (via <a href="https://twitter.com/Impulse/status/1585618824224800770">Aaron Gillies</a>)
+
+<ul>
+<li><a href="https://support.apple.com/guide/mac-help/schedule-your-mac-to-turn-on-or-off-mchl40376151/mac">Apple support guide</a></li>
+</ul></li>
+</ul></li>
+<li>Casey&#8217;s flummoxed by his iPad Pro&#8217;s volume buttons</li>
+<li><a href="https://en.wikipedia.org/wiki/HDMI#Version_2.1">QMS VRR</a> support <a href="https://www.theverge.com/23435393/apple-tv-4k-2022-third-gen-review-price-details">is coming to Apple TV 4K</a>
+
+<ul>
+<li><a href="https://www.hdmi.org/spec21sub/quickmediaswitching">HDMI 2.1</a></li>
+</ul></li>
+<li>Shared Photo Library
+
+<ul>
+<li><a href="https://twitter.com/GocMichael/status/1586042280816910336">Camera toggle</a></li>
+<li>&#8220;Unsaved&#8221; photos</li>
+<li>De-duplication</li>
+<li>Face detection</li>
+<li>Automatic sharing</li>
+</ul></li>
+</ul></li>
+<li>&#8220;Lifestreams&#8221; and <a href="https://rewind.ai/">Rewind</a>
+
+<ul>
+<li>Previously in the John Podcasting Universe:
+
+<ul>
+<li><a href="https://atp.fm/66">ATP #66</a> @ <a href="https://overcast.fm/+R7DWaRe2A/1:00:52">1h52s</a></li>
+<li><a href="https://www.relay.fm/rd/169">RecDiffs #169</a> @ <a href="https://overcast.fm/+E5INE5UcE/53:22">53m22s</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Lifestream">Lifestream on Wikipedia</a></li>
+<li><a href="http://www.cs.yale.edu/homes/freeman/lifestreams.html">Academic site</a></li>
+<li><a href="https://www.mwl-law.com/wp-content/uploads/2018/02/RECORDING-CONVERSATIONS-CHART.pdf">Recording laws in all 50 states</a></li>
+<li><a href="https://twitter.com/dsiroker/status/1587415342896148480">CEO Dan Siroker</a></li>
+<li><a href="https://a16z.com/2022/11/01/investing-in-rewind/">a16z Announcement</a></li>
+<li><a href="https://en.wikipedia.org/wiki/The_Entire_History_of_You"><em>The Entire History of You</em></a>
+
+<ul>
+<li><a href="https://www.netflix.com/watch/80104625">San Junipero</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://media.giphy.com/media/QMHoU66sBXqqLqYvGO/giphy.gif">Elon Musk owns Twitter</a>
+
+<ul>
+<li><a href="https://twitter.com/elonmusk/status/1587899771091566595">Elon&#8217;s poll</a> 🙄 × ∞ </li>
+<li><a href="https://www.theverge.com/2022/10/28/23428132/elon-musk-twitter-acquisition-problems-speech-moderation"><em>&#8220;Welcome to hell, Elon&#8221;</em></a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2022/10/31/ep-361">The Talk Show #361</a></li>
+</ul></li>
+<li>Post-show: Marco somehow makes a leap from the Ultra to unloading a car. 🤨</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed! And 15% off in <a href="https://atp.fm/store">the store</a>!</p>
+]]></description><itunes:subtitle>Lifestreams, more on Ventura, and — after months of resistance — we finally broke down and talked about Twitter.</itunes:subtitle></item><item><guid isPermaLink="false">chhvmhbov29gufex</guid><pubDate>Thu, 27 Oct 2022 18:17:23 +0000</pubDate><title>506: Our Only SEO Is You</title><itunes:title>Our Only SEO Is You</itunes:title><itunes:episode>506</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:14:28</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp506.mp3" length="129400432" type="audio/mpeg"/><link>https://atp.fm/506</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store">ATP STORE</a> IS BACK, BABY!</strong> #🐔👒 The store will be open until <strong>Sunday, 13 November</strong>! Don&#8217;t delay!
+Our thanks to the teams at <a href="https://www.studioneat.com/blogs/main/atp-x-studio-neat-chicken-hat-collab">Studio Neat</a>, and, as always, <a href="https://cottonbureau.com/">Cotton Bureau</a>. Don&#8217;t forget, <a href="https://atp.fm/join">members</a> get 15% off!</p>
+
+<ul>
+<li>Pre-show: Marco&#8217;s long local nightmare is now over.</li>
+<li>Follow-up:
+
+<ul>
+<li>Costco has some Sonos stuff on sale starting 20 November
+
+<ul>
+<li><a href="https://www.costco.com/sonos-arc-sl-shadow-edition-soundbar.product.100696167.html">Arc</a> (on <a href="https://www.sonos.com/en-us/shop/arc">Sonos&#8217; site</a>)</li>
+<li><a href="https://www.costco.com/sonos-one-sl-wi-fi-speaker,-shadow-edition,-2-pack.product.100527942.html">One SL</a> (on <a href="https://www.sonos.com/en-us/shop/one-sl">Sonos&#8217; site</a>)</li>
+</ul></li>
+<li>Fire prevention on airplanes (via Andrew Chase)</li>
+<li><a href="https://512pixels.net/2012/11/mouse/">Apple mouse shape history</a></li>
+</ul></li>
+<li>John&#8217;s <a href="https://hypercritical.co/2022/10/25/switchglass-2">Ventura app updates</a></li>
+<li>iPad Pro Impressions</li>
+<li>Ventura / iOS 16.1 / iPadOS 16.1 Impressions
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/10/macos-ventura-review-a-work-in-progress/">Jason&#8217;s Review</a></li>
+<li><a href="https://www.macworld.com/article/836295/macos-ventura-system-settings-preferences-problems.html">Jason on System Settings</a></li>
+</ul></li>
+<li>Post-show: <a href="https://twitter.com/i/broadcasts/1lDxLnDlbDYGm">Joanna Stern&#8217;s Interview of Federighi &amp; Joswiak</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3xyZQ8v">Kolide</a>: Make your team into your biggest allies for endpoint security. Solve problems, right within Slack.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://www.backblaze.com/atp">Backblaze</a>: Making backing up and accessing your data astonishingly easy.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed! And 15% off in <a href="https://atp.fm/store">the store</a>!</p>
+]]></description><itunes:subtitle>Switchglass 2.0, Casey's new iPad Pro, and our first experiences with macOS Ventura and iCloud Shared Photo Library.</itunes:subtitle></item><item><guid isPermaLink="false">efr1rtbza0lxs2g3</guid><pubDate>Thu, 20 Oct 2022 22:03:47 +0000</pubDate><title>505: A Mental Laxative</title><itunes:title>A Mental Laxative</itunes:title><itunes:episode>505</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:27:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp505.mp3" length="141748583" type="audio/mpeg"/><link>https://atp.fm/505</link><description><![CDATA[<ul>
+<li>Pre-show: Marco rediscovers his love for programming, by procrastiworking.</li>
+<li>Follow-up:
+
+<ul>
+<li>Apple TV, <code>Match Content</code>, and <a href="https://www.hdmi.org/spec21sub/quickmediaswitching">HDMI QMS</a>
+
+<ul>
+<li><a href="https://blogs.synopsys.com/vip-central/2022/05/26/say-goodbye-to-blank-screens-with-hdmis-quick-media-switching/">QMS Explainer</a></li>
+<li><a href="https://www.rtings.com/tv/tests/motion/24p">Audio-dejudder</a></li>
+</ul></li>
+<li>Casey&#8217;s iPhone upgrade, eSIM, and Verizon fees</li>
+<li>Follow-out for <a href="https://www.relay.fm/upgrade/429">Upgrade #429: Freedom Doors</a></li>
+<li><a href="https://www.microsoft.com/en/accessories/products/mice/microsoft-precision-mouse?activetab=pivot:overviewtab">John&#8217;s mouse</a>
+
+<ul>
+<li><a href="https://atp.fm/449">ATP #449: An Unclean Mouse</a></li>
+<li><a href="https://atp.fm/361">ATP #361: A Button in the Thumb Shelf</a></li>
+</ul></li>
+<li>John&#8217;s speaker adventure</li>
+<li>Apple Watch Ultra screen size
+
+<ul>
+<li><a href="https://nomadgoods.com/products/sport-band-ultra-orange">Nomad Orange Sport Band</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2022/10/apple-unveils-completely-redesigned-ipad-in-four-vibrant-colors/">New iPads!</a>
+
+<ul>
+<li><a href="https://twitter.com/_alexguyot/status/1582405085484953601">Alex Guyot&#8217;s tweet</a></li>
+<li><a href="https://www.logitech.com/en-us/products/ipad-accessories/crayon-ipad-digital-pencil.914-000051.html">Logitech Crayon</a></li>
+<li><a href="https://twitter.com/apollozac/status/1582558351824916480">Zac Hall on covers</a></li>
+<li><a href="https://sixcolors.com/post/2022/10/apple-revamps-ipad-with-new-design-revs-ipad-pro-to-m2/">Dan Moren&#8217;s take</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2022/10/apple-introduces-next-generation-ipad-pro-supercharged-by-the-m2-chip/">New iPad Pros!</a>
+
+<ul>
+<li><a href="https://www.bluetooth.com/blog/new-core-specification-v5-3-feature-enhancements/">Bluetooth 5.3</a></li>
+<li><a href="https://www.apple.com/newsroom/videos/i-pad-m2/large_2x.mp4">Hover video demo</a></li>
+<li><a href="https://twitter.com/viticci/status/1582392074275819520">Federico Viticci&#8217;s tweet</a></li>
+<li><a href="https://www.macstories.net/news/apple-announces-strange-new-ipad-and-ipad-pro-lineup/">Alex Guyot&#8217;s take</a></li>
+<li><a href="https://www.relay.fm/clockwise/473">Clockwise #473: Solar Eclipse Potato</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2022/10/apple-introduces-the-powerful-next-generation-apple-tv-4k/">New Apple TV!</a></li>
+<li>Post-show: Casey got scammed on Amazon
+
+<ul>
+<li><a href="https://amzn.to/3UJqc2p">Lenovo ThinkVision M14</a></li>
+<li><a href="https://parcelapp.net/">Parcel</a></li>
+<li><a href="https://informeddelivery.usps.com/box/pages/intro/start.action">Informed Delivery</a></li>
+<li><a href="https://www.amazon.com/sp?ie=UTF8&amp;isAmazonFulfilled=0&amp;marketplaceSeller=1&amp;orderID=113-1459973-1921021&amp;seller=A2DWQSGODSDK3F">Sold by &#8220;Alex Mart LLC&#8221;</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://l.kolide.co/3xyZQ8v">Kolide</a>: A cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>New iPad! Well, it's the iPad, but not the iPad, which is still in the lineup at the same price. There's also a new Apple TV, with which you can use the TV app to watch TV or Apple TV+ on your TV.</itunes:subtitle></item><item><guid isPermaLink="false">ufo1vknwmvzctfhy</guid><pubDate>Thu, 13 Oct 2022 17:32:02 +0000</pubDate><title>504: Too Much Apple in My Apple</title><itunes:title>Too Much Apple in My Apple</itunes:title><itunes:episode>504</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:23:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp504.mp3" length="138361950" type="audio/mpeg"/><link>https://atp.fm/504</link><description><![CDATA[<ul>
+<li>Pre-show: In a move that surprises <strong>nobody</strong>, Marco lost a bet
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Coriolis_force">Coriolis force</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.reddit.com/r/ATPfm/comments/xx89ag/comment/ircgfzk/?context=3">On portraits and AI image generation</a>
+
+<ul>
+<li><a href="https://www.reddit.com/r/ATPfm">Unofficial ATP subreddit</a></li>
+<li><a href="http://drops.caseyliss.com/jtcOhM">Marco&#8217;s bad icon</a></li>
+<li><a href="http://drops.caseyliss.com/4VktPB">Marco&#8217;s good icon</a></li>
+</ul></li>
+<li>Glove boxes open via touchscreens‽
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=GIzKItIa-ak&amp;t=10m28s">Model Y review</a></li>
+</ul></li>
+<li><code>Match content</code> setting on the AppleTV (via David Comay)
+
+<ul>
+<li>John says &#8220;👍🏻&#8221;, with reservations</li>
+</ul></li>
+<li>Mac window management and Stage Manager</li>
+<li><a href="https://ryanlondon.com/products/leather-iphone-14-pro-shell-case-magsafe-black">John&#8217;s new iPhone case</a></li>
+<li>Repairing original HomePods (via Timo Bruck)
+
+<ul>
+<li><a href="https://track44.moe/homepods/#commonissues">Common issues list</a></li>
+<li><a href="https://www.youtube.com/watch?v=FfGiuh_QH3M">Tutorial video</a></li>
+</ul></li>
+<li>AI image generation and photography</li>
+</ul></li>
+<li>Apple is <a href="https://9to5mac.com/2022/07/29/app-store-ads-expanding/">turning into Google/Facebook</a>?
+
+<ul>
+<li><a href="https://www.relay.fm/upgrade/427">Upgrade+ #427: He Renouned Lederhosen</a><br />
+<em>The segment in question was the Upgrade+ segment of the week, which requires membership.</em></li>
+<li><a href="https://en.wikipedia.org/wiki/Ninety-five_Theses">Ninety-Five Theses</a></li>
+<li><a href="https://dithering.fm/">Dithering</a>, 30 September episode, ~8:40 in</li>
+<li><a href="https://twitter.com/tapbot_paul/status/1553121973751930883">Paul Haddad</a></li>
+<li><a href="https://twitter.com/sdw/status/1553119216898916352">Sebastiaan de With</a></li>
+<li><a href="https://mjtsai.com/blog/2022/08/02/yet-more-app-store-search-ads/">MJ Tsai</a></li>
+<li><a href="https://digiday.com/media/apple-is-quietly-pushing-a-tv-ad-product-with-media-agencies/">TV ads?</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>When will we get a bezel-less Apple Watch? (via Bryan)
+
+<ul>
+<li><a href="https://twitter.com/_DavidSmith/status/1578284608621191168">_&#8217;s discovery</a></li>
+</ul></li>
+<li>Why would one want a M1 Max Mac Studio over an equivalent M1 Max MacBook Pro? (via John Enger)</li>
+<li>Why does router range matter? (via Andy Hyde)</li>
+</ul></li>
+<li>Post-show: Casey has some thoughts about <a href="https://www.sonos.com/">Sonos</a>
+
+<ul>
+<li>Casey&#8217;s shopping list
+
+<ul>
+<li><a href="https://www.sonos.com/en-us/shop/arc">Arc</a></li>
+<li><a href="https://www.sonos.com/en-us/shop/sub">Sub Gen 3</a></li>
+<li><a href="https://www.sonos.com/en-us/shop/one-sl">One SL</a></li>
+<li><a href="https://www.sonos.com/en-us/shop/port">Port</a></li>
+<li><a href="https://www.sonos.com/en-us/shop/roam">Roam</a></li>
+</ul></li>
+<li><a href="https://www.belkin.com/us/speakers-headphones/speakers/soundform-connect-audio-adapter-with-airplay-2/p/p-auz002/">Belkin Soundform Connect</a></li>
+<li><a href="https://www.youtube.com/watch?v=rQbX5VjKfhk">Arc Unboxing</a></li>
+<li><a href="https://www.casetawireless.com/us/en/products/pico-remotes">Lutron Caséta Pico Remote</a></li>
+<li><a href="https://www.youtube.com/watch?v=LST89MKkMkU">Eric Welander&#8217;s Caséta Pico Remote video</a></li>
+<li><a href="https://music.apple.com/us/playlist/funk-it-up/pl.u-9N33WtZA4qr">Funk it Up</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: A cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Apple adds ads, Casey discovers Sonos, and Marco's out before we get the check.</itunes:subtitle></item><item><guid isPermaLink="false">dzfycwp2ckg5zwnm</guid><pubDate>Thu, 06 Oct 2022 15:07:56 +0000</pubDate><title>503: Draw Your Own Slice of Pizza</title><itunes:title>Draw Your Own Slice of Pizza</itunes:title><itunes:episode>503</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp503.mp3" length="125086125" type="audio/mpeg"/><link>https://atp.fm/503</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Marco has settled on the <a href="https://www.peakdesign.com/products/everyday-case?variant=39821980237901">Peak Design case</a></li>
+<li>What even <em>is</em> in Shared Photo Libraries, anyway?</li>
+</ul></li>
+<li>The <a href="https://www.theverge.com/2022/10/4/23387425/european-parliament-iphone-usb-type-c-radio-equipment-directive-lightning-rip">🇪🇺 USB-C mandate passes a vote</a>
+
+<ul>
+<li><a href="https://twitter.com/film_girl/status/1577355326176665600">Christina Warren&#8217;s tweet</a></li>
+<li><a href="https://mfi.apple.com">MFI</a></li>
+<li><a href="https://www.apple.com/shop/product/HPTA2ZM/A/mophie-3-in-1-travel-charger-with-magsafe">mophie 3-in-1 travel charger with MagSafe</a></li>
+</ul></li>
+<li>AI Art
+
+<ul>
+<li><a href="https://www.relay.fm/cortex/133">Cortex #133: The Ethics of AI Art</a></li>
+<li>Projects
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/DALL-E">DALL-E</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Stable_Diffusion">Stable Diffusion</a>
+
+<ul>
+<li><a href="https://github.com/divamgupta/diffusionbee-stable-diffusion-ui">DiffusionBee</a> to run it on an Apple Silicon Mac</li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Midjourney">Midjourney</a></li>
+<li><a href="https://imagen.research.google/">Google Imagen</a></li>
+</ul></li>
+<li><a href="https://arstechnica.com/information-technology/2022/09/artist-finds-private-medical-record-photos-in-popular-ai-training-data-set/">Artist found private medical record photos in AI training image set</a></li>
+<li><a href="https://www.everythingisaremix.info/">Everything is a Remix</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ornithopter">Ornithopter</a></li>
+<li><a href="https://github.com/features/copilot/">GitHub Copilot</a></li>
+<li><a href="https://disneyplusoriginals.disney.com/show/light-and-magic">Light &amp; Magic</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Can we give a primer on macOS window management? (via Philipp)
+
+<ul>
+<li><em>Philipp, I&#8217;m so sorry for my beloved co-hosts muddying the waters even worse, despite my best efforts -CML</em></li>
+</ul></li>
+<li>How do we plan &amp; track app development work? (via <a href="https://twitter.com/Leehro/status/1552251843060924416">Dan Leehr</a>)</li>
+<li>How does John manage color on his TV? (via David Comay &amp; Jeff Nachbar)
+
+<ul>
+<li><a href="https://www.thx.com/tune-up-app/">THX Tune-Up</a></li>
+<li><a href="https://filmmakermode.com">FILMMAKER MODE</a></li>
+<li><a href="https://www.portrait.com/calman-calibration-software/">Calman Color Calibration Software</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Casey tries to recover from our earlier debacle
+
+<ul>
+<li><a href="https://hypercritical.co/switchglass/">SwitchGlass</a></li>
+<li><a href="https://hypercritical.co/front-and-center/">Front and Center</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: A cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>AI-generated art, the EU USB-C mandate, and we all definitely agree on macOS window-management techniques.</itunes:subtitle></item><item><guid isPermaLink="false">q2hssxvgzjhquc05</guid><pubDate>Thu, 29 Sep 2022 16:51:19 +0000</pubDate><title>502: Going Retina Again</title><itunes:title>Going Retina Again</itunes:title><itunes:episode>502</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:26:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp502.mp3" length="141209625" type="audio/mpeg"/><link>https://atp.fm/502</link><description><![CDATA[<p>Please <a href="https://stjude.org/atp">donate</a> to <a href="https://stjude.org/">St. Jude</a>! Let&#8217;s cure childhood cancer together.</p>
+
+<ul>
+<li>Pre-show:
+
+<ul>
+<li>Marco has glasses
+
+<ul>
+<li><a href="http://static.marco.org/atp-glasses1.jpg">Too big according to John</a></li>
+<li><a href="http://static.marco.org/atp-glasses2.jpg">Too big according to anyone</a></li>
+<li><a href="http://static.marco.org/atp-glasses3.jpg">&#8220;Big Steve Jobs energy&#8221;</a></li>
+<li><a href="http://static.marco.org/atp-glasses4.jpg">The Steve Jobs frames</a> (<a href="https://lunor.com/en/collection/classic-rund/">we think</a>)</li>
+</ul></li>
+<li>&#8230;and iPhone cases
+
+<ul>
+<li><a href="https://www.ipitaka.com/products/magez-case-3-for-iphone-14">Pitaka MagEZ Case 3</a></li>
+<li><a href="https://www.peakdesign.com/products/everyday-case?variant=39821980237901">Peak Design Everyday Case for iPhone</a></li>
+</ul></li>
+<li>ATP Movie Club: Episode 3: <a href="https://www.imdb.com/title/tt1631867/">Edge of Tomorrow</a>
+
+<ul>
+<li>Remember, only for <a href="https://atp.fm/join">members</a>!</li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>iCloud Shared Photo Library limitations</li>
+<li>There are <strong>lots</strong> of creaky clear cases out there</li>
+<li>Stage Manager <a href="https://www.engadget.com/apple-ipad-os-16-stage-manager-for-older-i-pads-171218520.html">will support older iPads</a>
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/uikit/uiscreen/1617815-main"><code>UIScreen.main</code></a></li>
+<li><a href="https://developer.apple.com/documentation/appkit/nsscreen/1388371-main"><code>NSScreen.main</code></a></li>
+</ul></li>
+<li><a href="https://support.apple.com/en-us/HT213435">When the always-on iPhone display goes dark</a></li>
+<li><a href="https://9to5mac.com/2022/09/22/iphone-14-black-white-always-on-display/">Black-and-white always-on Lock Screen</a>
+
+<ul>
+<li><code>Settings</code> → <code>Focus</code> → {focus mode} → <code>Options</code> → <code>Enable Dim Lock Screen</code></li>
+</ul></li>
+<li>Casey has some Apple Store experiences
+
+<ul>
+<li>Apple Watch Ultra
+
+<ul>
+<li><a href="https://www.apple.com/shop/watch/bands/alpine-loop">Alpine Loop</a></li>
+<li><a href="https://www.youtube.com/watch?v=5IERYzho01U">_&#8217;s Video</a></li>
+</ul></li>
+<li>Returning a Solo Loop
+
+<ul>
+<li><a href="https://techcrunch.com/2020/09/24/you-can-now-return-apples-solo-loop-for-a-new-size-without-sending-back-the-watch/">TechCrunch coverage from 2020</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Marco masquerades as a wedding photographer again
+
+<ul>
+<li><a href="https://electronics.sony.com/imaging/interchangeable-lens-cameras/all-interchangeable-lens-cameras/p/ilce7rm3-b">Sony ɑ7R III</a></li>
+<li><a href="https://www.amazon.com/Sony-SEL90M28G-Standard-Prime-Mirrorless-Cameras/dp/B00U29GNEG?&amp;linkCode=ll1&amp;tag=marcoorg-20&amp;linkId=6b50df1993e5c28ce2b9dde80d88307c&amp;language=en_US&amp;ref_=as_li_ss_tl">Sony 90mm Prime Macro Lens</a></li>
+<li><a href="https://home.camerabits.com/tour-photo-mechanic/">Photo Mechanic</a></li>
+<li><a href="https://flyingmeat.com/retrobatch/">Retrobatch</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Does the always-on display increase <a href="https://en.wikipedia.org/wiki/Screen_burn-in">burn-in</a> risk? (via <a href="https://twitter.com/srholroyd/status/1573664533964623876">Steve Holroyd</a>)</li>
+<li>What is our version control strategy? (via Thomas Ferraro)
+
+<ul>
+<li><a href="https://docs.github.com/en/get-started/quickstart/github-flow">GitHub Flow</a></li>
+<li><a href="https://ohshitgit.com/">Oh 💩, Git!?!</a></li>
+</ul></li>
+<li>Do we use the production or beta versions of our own apps? (via Nick Clinch)</li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Casey moves from Heroku → Linode
+
+<ul>
+<li><a href="https://code.visualstudio.com/">Visual Studio Code</a></li>
+<li><a href="https://code.visualstudio.com/docs/remote/vscode-server">Visual Studio Code Server</a></li>
+<li><a href="https://code.visualstudio.com/docs/remote/remote-overview">VS Code Remote Development</a></li>
+<li><a href="https://en.wikipedia.org/wiki/X_Window_System">X Windows</a></li>
+<li><a href="https://aws.amazon.com/dynamodb/">DynamoDB</a></li>
+</ul></li>
+<li>John encourages Marco to walk through a forest and fight dragons</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://tailscale.com/download?utm_source=accidental+tech+podcast&amp;utm_medium=text&amp;utm_id=ATP&amp;utm_content=SSH">Tailscale</a>: A secure network that just works.</li>
+<li><a href="https://greenchef.com/atp135">Green Chef</a>: The #1 meal kit for eating well.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Now that Casey's running servers, it's time for the rest of us to start looking for the exits.</itunes:subtitle></item><item><guid isPermaLink="false">akvgx2x2smpusxde</guid><pubDate>Thu, 22 Sep 2022 17:10:49 +0000</pubDate><title>501: Torsional Rigidity Check</title><itunes:title>Torsional Rigidity Check</itunes:title><itunes:episode>501</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp501.mp3" length="128460464" type="audio/mpeg"/><link>https://atp.fm/501</link><description><![CDATA[<p>Please <a href="https://stjude.org/atp">donate</a> to <a href="https://stjude.org/">St. Jude</a>! Let&#8217;s cure childhood cancer together.</p>
+
+<ul>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=OgCzi7KC2S8&amp;t=3h5m23s">Relay FM Feuding Families</a></li>
+<li>ATP Movie Club: Episode 2: <a href="https://www.imdb.com/title/tt0327850/">The Rundown</a>
+
+<ul>
+<li>Remember, only for <a href="https://atp.fm/join">members</a>!</li>
+<li><a href="https://www.instagram.com/p/iM1SP5hylK/?igshid=YmMyMTA2M2Y=">Casey&#8217;s traumatic moment, captured</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Apple Pay and &#8220;valid&#8221; addresses</li>
+<li><a href="https://www.ifixit.com/News/64865/iphone-14-teardown">iPhone 14</a> has revised, easily-repairable internals
+
+<ul>
+<li><a href="https://9to5mac.com/2022/09/19/iphone-14-back-glass-repairs/">Repair costs</a></li>
+<li><a href="https://www.ifixit.com/News/65243/14-pro-max-teardown">SIM tray spacer</a></li>
+</ul></li>
+<li>John&#8217;s second iPhone case
+
+<ul>
+<li><a href="https://bullstrap.co/products/magsafe-iphone-cases-black-edition?variant=42427763228866">Bullstrap case</a></li>
+<li><a href="https://ryanlondon.com/products/leather-iphone-14-pro-shell-case-magsafe-black">Ryan London case</a></li>
+</ul></li>
+<li>Marco&#8217;s case updates
+
+<ul>
+<li><a href="https://www.ipitaka.com/products/magez-case-3-for-iphone-14">Pitaka Case</a></li>
+</ul></li>
+<li>Casey&#8217;s on the <a href="https://www.silicondust.com/product/hdhomerun-prime/">HDHomeRun Prime</a> with <a href="https://getchannels.com/">Channels</a> Train
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Personal_Computer_Memory_Card_International_Association">PCMCIA</a></li>
+</ul></li>
+<li>Glasses updates
+
+<ul>
+<li>Blue-blocking lenses were universally panned</li>
+<li><a href="https://www.zennioptical.com/">Zenni Optical</a></li>
+</ul></li>
+<li><a href="https://support.apple.com/en-us/HT201269">Apple&#8217;s upgrade guide</a> (via Jonathan Gulbrandsen)</li>
+</ul></li>
+<li>iPhones 14 Pro Experience
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=OgCzi7KC2S8&amp;t=7h24m02s">John on the Podcastathon</a></li>
+<li><a href="https://support.apple.com/en-us/HT205189">Apple&#8217;s guidance on transferring watches</a></li>
+<li><a href="https://siracusafamily.org/atp/tmp/status-bar.jpg">John&#8217;s status bar</a></li>
+<li><a href="https://halide.cam">Halide</a></li>
+<li><a href="https://twitter.com/rjonesy/status/1567687018276163584">Ryan Jones&#8217;s chart about camera bumps</a></li>
+<li><a href="https://9to5mac.com/2022/09/19/ios-16-copy-paste-bug-confirmed/">Paste warning is a bug</a></li>
+<li><a href="https://daringfireball.net/2020/09/more_adventures_in_solo_loop_sizing">Gruber&#8217;s chart</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Marco&#8217;s car wears <a href="https://www.amazon.com/dp/B08BPJ891R/?tag=marcoorg-20">a watch</a> (<a href="http://static.marco.org/gshock.jpeg">image</a>)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: A cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>A mountain of follow-up and our iPhone 14 Pro thoughts so far.</itunes:subtitle></item><item><guid isPermaLink="false">z1rjqknrbxjqvhhk</guid><pubDate>Thu, 15 Sep 2022 19:20:42 +0000</pubDate><title>500: All the Nerds in the Room</title><itunes:title>All the Nerds in the Room</itunes:title><itunes:episode>500</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:14</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp500.mp3" length="118385499" type="audio/mpeg"/><link>https://atp.fm/500</link><description><![CDATA[<p>Please <a href="https://stjude.org/atp">donate</a> to <a href="https://stjude.org/">St. Jude</a>! Let&#8217;s cure childhood cancer together.</p>
+
+<ul>
+<li>Extended Pre-show:
+
+<ul>
+<li>Marco finally catches up to Casey &amp; John
+
+<ul>
+<li><a href="https://www.caseyliss.com/2016/9/30/accessibility">Dilating drops</a></li>
+</ul></li>
+<li>🎉 ATP EPISODE 500!!! 🎉
+
+<ul>
+<li><a href="https://catatp.fm/statistics/"><code>catatp</code></a></li>
+<li><a href="https://atp.fm/400">ATP Episode #400: Reach Is the Next Frontier</a></li>
+<li><a href="https://youtu.be/ZYcAsOG2jaI">Mac OS iguana easter egg (video)</a></li>
+<li><a href="https://www.mackido.com/EasterEggs/Iguana.html">Mac OS iguana easter egg explanation</a></li>
+<li>Some discussions about a 🆕 special <a href="https://atp.fm/join">members-only</a> perk</li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>John&#8217;s Polarizer &amp; lens protector
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Special_relativity">Special relativity</a></li>
+<li><a href="https://www.polarprofilters.com/blogs/polarpro/vnd-vs-traditional-neutral-density-filters">Variable Neutral Density Filter</a></li>
+<li><a href="https://www.youtube.com/watch?v=zcqZHYo7ONs">Bell&#8217;s Theorem</a> (via Stepan Dolezal)</li>
+<li><a href="https://photographylife.com/definition/polarizing-filter">Polarizing Filter</a> (via Rob Sayre)</li>
+<li><a href="https://petapixel.com/2020/06/04/why-uv-filters-are-basically-useless-on-modern-cameras/">UV Filters are useless?</a> (also via Rob Sayre)</li>
+</ul></li>
+<li>iPhone focal lengths <a href="https://www.icloud.com/numbers/001TnzdwUg_QPVqpvAhkvQf7w#Sensor_size_&amp;_FOV">spreadsheet</a> (by Colin Robertson)
+
+<ul>
+<li>2× crop goes from 9.8 × 7.3mm → 4.9 × 3.65mm</li>
+<li>Prior 2× cameras were 4 × 3mm</li>
+</ul></li>
+<li><a href="https://www.apple.com/iphone-14-pro/">Satellite location sharing</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Collect_call">Collect calls</a></li>
+</ul></li>
+<li>Apple Watch S8 is <a href="https://www.macrumors.com/2022/09/12/apple-watch-s8-chip-features-same-cpu-as-s6-and-s7/">basically the same CPU</a> as S6 &amp; S7</li>
+<li>Apple <a href="https://www.macrumors.com/2022/09/07/ios-16-icloud-shared-photo-library-delayed/">Delays iCloud Shared Photo Library</a></li>
+<li>Dynamic Island name <a href="https://twitter.com/DanEngler/status/1568723578857848832">recommendation from Dan Engler</a>
+
+<ul>
+<li><a href="https://twitter.com/Javi/status/1570109315331297281">API</a></li>
+<li><a href="https://www.theverge.com/23351948/apple-iphone-14-pro-review">The Verge&#8217;s iPhone 14 Pro review</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Subpixel_rendering">Subpixel rendering</a></li>
+<li><a href="https://en.wikipedia.org/wiki/PenTile_matrix_family">Pentile display</a></li>
+</ul></li>
+</ul></li>
+<li>Krebs <a href="https://krebsonsecurity.com/2022/08/final-thoughts-on-ubiquiti/">unequivocally walks back the Ubiquiti reporting</a></li>
+</ul></li>
+<li>What did the hosts order last week?
+
+<ul>
+<li><a href="https://www.mobilefun.com/olixar-genuine-leather-iphone-12-pro-case-black-82204">John&#8217;s black-leather iPhone 12 Pro case</a></li>
+<li><a href="https://bullstrap.co/products/magsafe-iphone-cases-black-edition?variant=42427763228866">John&#8217;s forthcoming black-leather iPhone 14 Pro case</a></li>
+</ul></li>
+<li>Marco races the clock</li>
+<li>Don&#8217;t miss a special treat before the after-show. (Thanks, <a href="https://www.jonathanmann.net">Jonathan</a>!)</li>
+<li>Post-show: Marco asks for tips about 👓</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: Kolide is a cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+<li><a href="https://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Celebrating 500 episodes with the best audience in the nerd world.</itunes:subtitle></item><item><guid isPermaLink="false">ynrsv3rjy0humnbd</guid><pubDate>Thu, 08 Sep 2022 13:13:32 +0000</pubDate><title>499: Living Is Pretty Important to Me</title><itunes:title>Living Is Pretty Important to Me</itunes:title><itunes:episode>499</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:34:35</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp499.mp3" length="148485611" type="audio/mpeg"/><link>https://atp.fm/499</link><description><![CDATA[<p>Please <a href="https://stjude.org/atp">donate</a> to <a href="https://stjude.org/">St. Jude</a>! Let&#8217;s cure childhood cancer together.</p>
+
+<ul>
+<li>Pre-show: A bidding war for a good cause</li>
+<li><a href="https://www.apple.com/apple-events/">Apple Event, September 2022</a>
+
+<ul>
+<li><a href="https://www.apple.com/watch/">Apple Watch Series 8</a></li>
+<li><a href="https://www.apple.com/apple-watch-se/">Apple Watch SE (2nd generation)</a></li>
+<li><a href="https://www.apple.com/apple-watch-ultra/">Apple Watch Ultra</a>
+
+<ul>
+<li><a href="https://www.panerai.com/us/en/home.html">Panerai</a>
+
+<ul>
+<li><a href="https://www.panerai.com/us/en/collections/watch-collection/luminor/pam01060-luminor-tourbillon-gmt-goldtech---47mm.html">Luminor Tourbillon GMT</a></li>
+</ul></li>
+<li><a href="https://twitter.com/panzer/status/1567595943352213504">Photos from Matt Panzarino</a></li>
+<li><a href="https://twitter.com/neilcybart/status/1567585636424773633">Size comparison by Neil Cybart</a></li>
+<li><a href="https://www.gps.gov/systems/gps/modernization/civilsignals/#L5">GPS L5</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/airpods-pro/">AirPods Pro (2nd generation)</a>
+
+<ul>
+<li><a href="https://twitter.com/Fischer_Greg_/status/1567570238534815746">Helly R!</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/iphone-14/">iPhone 14 &amp; 14 Plus</a>
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT213426">Emergency SOS via satellite</a></li>
+<li><a href="https://www.iridium.com">Iridium</a></li>
+<li><a href="https://www.garmin.com/en-US/p/765374">Garmin Inreach Mini 2</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/iphone-14-pro/">iPhone 14 Pro &amp; Pro Max</a>
+
+<ul>
+<li><a href="https://twitter.com/siracusa/status/1567576734102392833">John&#8217;s Tweet about 🤢 &#8220;Dynamic Island&#8221; 🤢</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Spatial_anti-aliasing">Anti-aliasing</a></li>
+</ul></li>
+</ul></li>
+<li>Don&#8217;t miss a special treat before the after-show. (Thanks, <a href="https://www.jonathanmann.net/">Jonathan</a>!)</li>
+<li>Post-show: Leaks abound</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: A cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Apple Watch Ultra and Series 8, iPhone 14 and 14 Pro, the second-generation AirPods Pro, and executives standing on mountains.</itunes:subtitle></item><item><guid isPermaLink="false">n0vmvzvsmlfuekpq</guid><pubDate>Thu, 01 Sep 2022 17:58:05 +0000</pubDate><title>498: Not MagSafe, but MagSafe</title><itunes:title>Not MagSafe, but MagSafe</itunes:title><itunes:episode>498</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp498.mp3" length="138714894" type="audio/mpeg"/><link>https://atp.fm/498</link><description><![CDATA[<p>Please <a href="https://stjude.org/atp">donate to St. Jude</a>! Let&#8217;s cure childhood cancer together.</p>
+
+<ul>
+<li>Pre-show: Marco has leveled-up as a nerd. 🤓
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B083ZYNPDW/?tag=marcoorg-20">HP M182nw</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>John&#8217;s <a href="https://amzn.to/3Tr92Gp">polarizer</a> and <a href="https://amzn.to/3e6lnzr">lens protector</a></li>
+<li><a href="https://www.youtube.com/watch?v=MoUIQr2pTAw">Calibration of Rock Band instruments</a> (via Johannes Zander)</li>
+<li>Casey got buzzed by <a href="https://maps.apple.com/">Apple Maps</a> cars
+
+<ul>
+<li><a href="https://maps.apple.com/imagecollection/">&#8220;Image Collection&#8221; Locations</a> (via <code>Holgr</code> in the chat)</li>
+</ul></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Watch#Seventh_generation_(Series_7)">Apple Watch Series 7</a> exit interview</li>
+<li><a href="https://en.wikipedia.org/wiki/IPhone_13_Pro">iPhone 13 Pro</a> exit interview
+
+<ul>
+<li><a href="https://www.mobilefun.com/olixar-genuine-leather-iphone-12-pro-case-black-82204">John&#8217;s black-leather iPhone 12 Pro case</a></li>
+</ul></li>
+<li>iPhone 14 &amp; 14 Pro expectations
+
+<ul>
+<li><a href="https://www.macrumors.com/2022/08/31/iphone-14-pro-display-cutouts-merge-when-on/">Single pill/lozenge?</a>
+
+<ul>
+<li><a href="https://twitter.com/markgurman/status/1565072601952784387">Gurman confirmation</a></li>
+</ul></li>
+<li><a href="https://discover.garmin.com/en-US/inreach/personal/">Garmin InReach</a></li>
+</ul></li>
+<li>Apple Watch Series 8 expectations
+
+<ul>
+<li><a href="https://gshock.casio.com/us/">G-Shock</a></li>
+<li><a href="https://www.garmin.com/en-US/c/outdoor-recreation/adventure-smartwatches/">Garmin adventure watches</a></li>
+</ul></li>
+<li>AirPods Pro 2?</li>
+<li>Don&#8217;t miss our special ending theme (thanks, <a href="https://www.jonathanmann.net/">Jonathan Mann</a>!)</li>
+<li>Post-show: 👃🏻❓
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B07VVK39F7?tag=marcoorg-20">Levoit HEPA Air Purifier</a> with <a href="https://www.amazon.com/dp/B07RSZF32W?tag=marcoorg-20">Toxin Absorber Filter</a></li>
+<li><a href="https://www.amazon.com/dp/B000I9QJ5S?tag=marcoorg-20">Fresh Wave Odor-&#8220;Removing&#8221; Gel</a></li>
+<li><a href="https://www.amazon.com/dp/B01DVFFUVE?tag=marcoorg-20">Zero Odor Pro</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: Cross-platform endpoint security for teams that value privacy and transparency.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Wishes and expectations for next week's Apple event, and exit interviews for the outgoing iPhone and Apple Watch.</itunes:subtitle></item><item><guid isPermaLink="false">yugwdfziymriykdy</guid><pubDate>Thu, 25 Aug 2022 14:29:21 +0000</pubDate><title>497: The Hotness Has to Go Somewhere</title><itunes:title>The Hotness Has to Go Somewhere</itunes:title><itunes:episode>497</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:16:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp497.mp3" length="132203465" type="audio/mpeg"/><link>https://atp.fm/497</link><description><![CDATA[<ul>
+<li>Pre-show <a href="https://neutral.fm/">Netural</a>: In a <strong>shocking</strong> piece of news, Marco&#8217;s Defender hasn&#8217;t exploded (yet)!
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B084BJSXQ1/?tag=marcoorg-20">Marco&#8217;s &#8220;Thule&#8221;</a></li>
+<li><a href="https://amzn.to/3cgmlZx">Casey&#8217;s WireLiss CarPlay Adapter</a></li>
+<li><a href="https://www.vibilagare.se/nyheter/physical-buttons-outperform-touchscreens-new-cars-test-finds">🇸🇪 Study on Touchscreens vs. Physical Controls</a></li>
+<li><a href="https://i.pcmag.com/imagery/reviews/05GDe7CvlFIwEIBKDzdmaMG-2.fit_lim.size_1536x.jpg">Example XC90 touchscreen</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>On people copying S3 API</li>
+<li>CarPlay navigation voice volume
+
+<ul>
+<li><a href="https://9to5mac.com/2018/05/08/how-to-nav-volume-apple-maps/">Former setting, prior to iOS 15</a> (via Daniel Finley)</li>
+<li>Use the driver&#8217;s side volume control on the wheel to adjust volume (via <a href="https://twitter.com/biggsjm/status/1560686041585127424">Josh Biggs</a>)</li>
+</ul></li>
+<li><a href="https://www.dona.org">Postpartum doulas are a thing</a> (via Matt Rigby)</li>
+<li>4K TV
+
+<ul>
+<li><a href="https://siracusafamily.org/atp/tmp/fios-4k-banner.png">FiOS channel stand-by banner recording</a></li>
+<li><a href="https://www.atsc.org/nextgen-tv/deployments/">A godawful map of 4K over the air</a>
+
+<ul>
+<li><a href="https://imgur.com/a/Tsio8QS">A rough crack at a <em>vastly</em> improved map via chatroom user <code>SageOlson</code></a></li>
+</ul></li>
+<li><a href="https://www.atsc.org/news/nextgen-tv-comes-to-richmond-petersburg-va/">RVA has 4K</a></li>
+</ul></li>
+<li>Audio/video sync
+
+<ul>
+<li><a href="https://quietart.co.nz/catchinsync/">Catchin&#8217; Sync</a> (also via <a href="https://www.imdb.com/name/nm3869595/">Matt Rigby</a>)</li>
+<li><a href="https://apps.apple.com/us/app/catchin-sync/id572341912">Catchin&#8217; Sync on the App Store</a></li>
+<li><a href="https://siracusafamily.org/atp/tmp/audio-delay-source-h265.png">John&#8217;s first attempt at sync (H265)</a></li>
+<li><a href="https://siracusafamily.org/atp/tmp/audio-delay-source-webm.png">John&#8217;s second attempt at sync (WebM 1)</a></li>
+<li><a href="https://siracusafamily.org/atp/tmp/audio-delay-source-webm-2.png">John&#8217;s third attempt at sync (WebM 2)</a></li>
+</ul></li>
+<li>TiVo ad skipping</li>
+<li>Casey&#8217;s feedbacks
+
+<ul>
+<li>FB10566546 is fixed! 🎉</li>
+<li>FB11080380 is fixed, but includes a new regression. ☯️</li>
+<li>Five other bugs have had no responses yet, though. 💔</li>
+</ul></li>
+<li>Marco&#8217;s bug (FB10758252) <a href="https://twitter.com/marcoarment/status/1562143155444662272">is fixed</a>! 🎉</li>
+<li>Running to the press never helps
+
+<ul>
+<li><a href="https://twitter.com/pilky/status/1562077957715365889">Martin Pilkington</a></li>
+<li><a href="https://twitter.com/bjosk/status/1562087937214451713">Björn Skoglund</a></li>
+</ul></li>
+</ul></li>
+<li>Apple Event is <a href="https://sixcolors.com/post/2022/08/apple-invites-media-to-in-person-event-sept-7/">Wednesday, September 7</a></li>
+<li><a href="https://techcrunch.com/2022/08/23/apple-delivers-ipados-16-1-beta-ahead-of-ios-16-fall-release/">iPadOS is delayed</a></li>
+<li>The recent <a href="https://9to5mac.com/2022/08/24/plex-data-breach/">Plex Hack</a></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>How in the world are some app updates multiple hundreds of megabytes‽ (via Bart Kowalski)
+
+<ul>
+<li><a href="https://metacpan.org/pod/Paws">Paws</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Swagger_(software)">Swagger</a></li>
+</ul></li>
+<li>What do we think of <a href="https://svalt.com">Svalt</a>? (via Robert Campbell)
+
+<ul>
+<li><a href="https://youtu.be/BSkcMwzZEFo">Thermal Pads</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Casey&#8217;s modified his car
+
+<ul>
+<li><a href="https://www.ecstuning.com/b-genuine-volkswagen-audi-parts/19-englishtown-priced-each/5g0601025dbfzz/">19&#8221; Englishtowns</a></li>
+<li><a href="https://parts.vw.com/p/69551378/5G0071498A88Z.html">18&#8221; Pretorias</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: A cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://snapar.com/">Snap AR</a>: Snap AR is an ecosystem of products, programs, and people supporting the development, distribution, and discovery of Augmented Reality.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Only on this podcast can a host “get new wheels” and not be referring to an entire vehicle.</itunes:subtitle></item><item><guid isPermaLink="false">tutfr2jhb1joagvh</guid><pubDate>Thu, 18 Aug 2022 15:50:12 +0000</pubDate><title>496: One of My Lesser TiVos</title><itunes:title>One of My Lesser TiVos</itunes:title><itunes:episode>496</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:34:57</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp496.mp3" length="149256145" type="audio/mpeg"/><link>https://atp.fm/496</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>What&#8217;s up with 🚩 on the 🏖️ in 🇦🇺? (via <a href="https://twitter.com/RossPoulton/status/1557988083894669312">Ross Poulton</a>)</li>
+<li>John&#8217;s <a href="https://www.sony.com/us/electronics/televisions/a95k-series">TV</a>
+
+<ul>
+<li><a href="https://getchannels.com/">Channels</a> vs. TiVo vs. FiOS TV</li>
+<li><a href="https://en.wikipedia.org/wiki/TV_Everywhere">TVEverwhere</a></li>
+<li><a href="https://www.silicondust.com/product/hdhomerun-prime/">HDHomeRun Prime</a></li>
+<li><a href="https://twitter.com/film_girl/status/1557512906081652736">Christina&#8217;s Tweet</a></li>
+</ul></li>
+<li>John&#8217;s tips for alleviating audio delays
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=r3livYnBP9w&amp;feature=youtu.be">Calibration Video</a></li>
+<li><a href="https://siracusafamily.org/atp/tmp/audio-delay.png">Screenshot</a></li>
+</ul></li>
+<li><a href="https://twitter.com/nikitonsky/status/1557357661171204098">Niki Tonsky&#8217;s System Settings wonkiness thread</a>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/08/apple-removes-network-locations-from-macos-ventura/">Jason on Network Locations</a></li>
+<li><a href="https://twitter.com/nikitonsky/status/1557357742788075521">Invisible confirm button</a></li>
+</ul></li>
+</ul></li>
+<li>Casey has <em>some thoughts</em> and feelings about Feedback/Radar
+
+<ul>
+<li>For Apple people, these are Casey&#8217;s bugs. He has received <strong>no</strong> response on <strong>any</strong> of them.
+
+<ul>
+<li>FB11080380 (filed 5 August)</li>
+<li>FB10684032 (filed 14 July)</li>
+<li>FB10491818 (filed 14 July)</li>
+<li>FB10636765 (filed 12 July)</li>
+<li>FB10566546 (filed 7 July)</li>
+<li>FB10394633 (filed 21 June)</li>
+<li>FB10391991 (filed 21 June)</li>
+</ul></li>
+<li><a href="https://twitter.com/marcoarment/status/1559169708338839552">Marco&#8217;s bug</a>: FB10758252 (response, paraphrased: you&#8217;re holding it wrong/it&#8217;s broken as designed)</li>
+<li><a href="https://twitter.com/settern/status/1547594327576043523">Serenity&#8217;s tip about documentation Feedback</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>How does one manage DNS and certificates for home servers? (via Christopher Anderson)
+
+<ul>
+<li><a href="https://discourse.pi-hole.net/t/howto-using-pi-hole-as-lan-dns-server/533">Pi-Hole local DNS</a></li>
+<li><a href="https://tailscale.com/">Tailscale</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Hosts_(file)"><code>hosts</code></a></li>
+<li><a href="https://quickconnect.to">Synology QuickConnect</a></li>
+</ul></li>
+<li>What should a first-time parent know? (via Carlos Quinela)
+
+<ul>
+<li><a href="https://www.babyconnect.com/">Baby Connect</a></li>
+</ul></li>
+<li>How do we protect our focus time and balance versus family time? (via Nick Serrano)</li>
+</ul></li>
+<li>Post-show: John rents a <a href="https://www.toyota.com/camry/">Toyota Camry</a> and 🗣 HAS QUESTIONS ABOUT CARPLAY 🗣
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=KhXC3tEalPc">Casey&#8217;s discovered but useLiss video</a></li>
+<li><a href="https://siracusafamily.org/atp/tmp/camry.jpg">John&#8217;s oversized light</a></li>
+<li><a href="https://www.toyota.com/gr86/">Toyota GR86</a></li>
+<li><a href="https://www.toyota.com/grsupra/">Toyota Supra</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://l.kolide.co/3b5vKlx">Kolide</a>: Cross-platform endpoint security for teams that value privacy and transparency.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>More on TV-recording options, the state of System Settings, and how to get a non-coffee-drinker really, really fired up.</itunes:subtitle></item><item><guid isPermaLink="false">ngxyr3n2tvnxludv</guid><pubDate>Thu, 11 Aug 2022 21:44:28 +0000</pubDate><title>495: Five Points for Smell</title><itunes:title>Five Points for Smell</itunes:title><itunes:episode>495</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp495.mp3" length="127216967" type="audio/mpeg"/><link>https://atp.fm/495</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Android totally copying Java was <a href="https://en.wikipedia.org/wiki/Google_LLC_v._Oracle_America,_Inc">fair use</a> (via Rob Sayre)
+
+<ul>
+<li><a href="https://docs.oracle.com/en-us/iaas/Content/Object/Tasks/s3compatibleapi.htm">Oracle&#8217;s S3 clone</a></li>
+</ul></li>
+<li>Branded tires (via TK &amp; <a href="https://wheelbearings.media">Sam Abuelsamid</a>)
+
+<ul>
+<li><a href="https://www.motor1.com/news/434165/ford-bronco-goodyear-wrangler-tires/">Ford demands Goodyear remove <code>Wrangler</code> branding</a></li>
+</ul></li>
+<li>John&#8217;s TV updates
+
+<ul>
+<li><a href="https://twitter.com/MrGeoffClifton/status/1556000754925707264">Geoff C&#8217;s theory</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Network_Time_Protocol">NTP</a></li>
+</ul></li>
+<li><a href="https://twitter.com/jayman16/status/1556460387620605958">Justin Winchester&#8217;s theory</a></li>
+<li><a href="https://www.sony.com/electronics/support/articles/00257820">Bravia Core</a></li>
+<li><a href="https://amzn.to/3Qsv2yf">Cable Matters Plug &amp; Play USB Ethernet Adapter (USB 3.0 to Gigabit Ethernet, Ethernet to USB, Ethernet Adapter for Laptop) Supporting 10/100/1000&#160;Mbps Ethernet Network in Black</a>
+
+<ul>
+<li><a href="https://www.reddit.com/r/bravia/comments/wcesr9/sony_a95k_ethernet_adapter/">Reddit tip</a></li>
+</ul></li>
+<li><a href="https://tivoidp.tivo.com/tivoCommunitySupport/s/article/Remote-Control-Programming-Codes">RTFU: TiVo code search codes</a></li>
+<li><a href="https://getchannels.com">Channels</a>
+
+<ul>
+<li><a href="https://getchannels.com/docs/getting-started/quick-start-guide/what-is-an-hdhomerun/#title">Support Document about HDHomeRun</a></li>
+</ul></li>
+<li><a href="https://www.amazon.com/SiliconDust-HDHomeRun-PRIME-Cable-3-Tuner/dp/B004HKIB6E/ref=sr_1_2?keywords=hdhomerun+cablecard&amp;qid=1660177422&amp;sr=8-2">SiliconDust HDHomeRun PRIME Cable HDTV 3-Tuner</a></li>
+<li>The <a href="https://twitter.com/barneyiam/status/1555372442083725313">solution to the box mystery</a></li>
+</ul></li>
+</ul></li>
+<li>Vacation Tech <a href="https://www.scrum.org/resources/what-is-a-sprint-retrospective">Retrospective</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/2022/7/29/travel-setup">Casey&#8217;s Travel Setup</a></li>
+<li><a href="https://amzn.to/3bJEdeO">Casey&#8217;s new inverter</a></li>
+<li>John&#8217;s camera lenses
+
+<ul>
+<li><a href="https://amzn.to/3Qhxsjr">SEL70350G Sony E 70–350&#160;mm F4.5–6.3 G OSS</a></li>
+<li><a href="https://amzn.to/3Pfe1X9">SEL2470GM2 Sony FE 24-70mm f/2.8 GM II</a></li>
+<li><a href="https://amzn.to/3prfAar">SEL85F18/2 Sony FE 85mm f/1.8 Lens</a></li>
+</ul></li>
+<li><a href="https://www.instagram.com/p/Cgng8WmLXCb">John documents aggressive birds</a></li>
+<li><a href="https://www.instagram.com/p/CgdFI36JODX/">John&#8217;s deer friend</a></li>
+<li><a href="https://market.peakdesign.com/products/everyday-backpack-v1">Marco&#8217;s monogamous backpack: Peak Design Everyday v1</a>
+
+<ul>
+<li><a href="https://www.youtube.com/c/chasereeves">Chase Reeves on YouTube</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show <a href="https://neutral.fm">Neutral</a>: Marco&#8217;s Car Charcuterie
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Toyota_FJ_Cruiser">FJ Cruiser</a></li>
+<li><a href="https://www.toyota.com/4runner/">Toyota 4Runner</a></li>
+<li><a href="https://www.jeep.com/wrangler/wrangler-4xe.html">Jeep Wrangler 4xe</a></li>
+<li><a href="https://www.landroverusa.com/vehicles/defender/index.html">Land Rover Defender</a></li>
+<li><a href="https://www.ford.com/bronco/">Ford Bronco</a></li>
+<li><a href="https://rivian.com/r1s">Rivian R1S</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="https://stackoverflow.blog/podcast/">Stack Overflow Podcast</a>: Exploring what it means to be a developer, and how the art and practice of software programming is changing our world.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>This year, the birds were different.</itunes:subtitle></item><item><guid isPermaLink="false">mxzysghgrmi0x2fw</guid><pubDate>Thu, 04 Aug 2022 16:52:15 +0000</pubDate><title>494: Ultra-Wideband Park Bench</title><itunes:title>Ultra-Wideband Park Bench</itunes:title><itunes:episode>494</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp494.mp3" length="117264075" type="audio/mpeg"/><link>https://atp.fm/494</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://apps.apple.com/us/app/geometry-dash/id625334537">Geometry Dash</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Number_Munchers">Number Munchers</a>
+
+<ul>
+<li><a href="https://classicreload.com/number-munchers.html">Number Munchers on Classic Reload</a></li>
+<li><a href="https://apps.apple.com/us/app/number-munchers/id341982973">Number Munchers on the App Store</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Unity_(game_engine)">Unity</a></li>
+<li><a href="https://www.gamespot.com/articles/unity-ceo-says-youre-a-fing-idiot-if-you-dont-think-about-monetization-during-creative-process-apologizes/1100-6505516/">Unity CEO&#8217;s <em>colorful</em> opinions</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2022/07/31/ep-353">The Talk Show #353: Shop Different</a></li>
+<li><a href="https://play.date/pulp/">Playdate Pulp</a></li>
+<li><a href="https://en.wikipedia.org/wiki/VVVVVV">VVVVVV</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FromSoftware">FromSoftware</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>John on M1 MacBook Air vs. M2 MacBook Air speakers</li>
+<li>You can set up <a href="https://www.fastmail.help/hc/en-us/articles/1500000277942">Fastmail to have a catch-all</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/fastmail">Casey&#8217;s referral code</a></li>
+</ul></li>
+<li>Find My on vacation
+
+<ul>
+<li>Steps via Steve J. Stutz
+
+<ol>
+<li>Open <code>Find My</code></li>
+<li>Tap <code>Devices</code></li>
+<li>Tap on the device you want to silence</li>
+<li>Scroll down and under <code>Notifications</code> toggle off <code>Notify When Left Behind</code></li>
+</ol></li>
+<li>Paul Squires understood the assignment</li>
+</ul></li>
+<li>HomeKit automation &amp; locations
+
+<ul>
+<li>Derek Martin has tips regarding how to transfer to a new home address</li>
+<li><a href="https://twitter.com/JmsBrhn/status/1553760761226346496">Jim Bruhn provides instructions</a> for how to disable hub features:
+
+<ol>
+<li><code>Settings</code></li>
+<li><code>Airplay and HomeKit</code></li>
+<li><code>Home Hub</code> → <code>My Home</code></li>
+<li>Switch to <code>Disconnected</code></li>
+</ol></li>
+</ul></li>
+<li>Are there any decent AppleTV photo-viewer apps? (via Torb Lunde Mirada)</li>
+<li>Contact address ordering
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/reorder-it/id583700229">Reorder It!</a> from <a href="https://twitter.com/takaaki024app">@takaaki024app</a> (via <a href="https://twitter.com/philoup/status/1554243168811589632">philuop</a>)</li>
+</ul></li>
+<li>Robb Woodring saves the day with changing default messaging address/number
+
+<ol>
+<li>Go to an existing thread</li>
+<li>Tap the name of the person at the top</li>
+<li>Tap <code>Info</code></li>
+<li>Tap and hold the <code>Message</code>/bubble icon</li>
+<li>Select the appropriate number</li>
+</ol></li>
+<li>Unlocking automotive features
+
+<ul>
+<li>Blaine Toups&#8217; Jaguar F-Type&#8217;s two extra cylinders
+
+<ul>
+<li><a href="https://www.caranddriver.com/news/a15349070/block-party-creating-a-v-6-by-declaring-two-cylinders-redundant/">Car &amp; Driver write-up</a></li>
+</ul></li>
+<li>Tesla&#8217;s Acceleration Boost (via Josh Rapoport)</li>
+<li><a href="https://twitter.com/sharding/status/1553770831981023233">Sean Harding makes a good point</a> about API deprecation</li>
+</ul></li>
+</ul></li>
+<li>John&#8217;s <a href="https://www.sony.com/us/electronics/televisions/a95k-series">New TV</a>
+
+<ul>
+<li><a href="https://amzn.to/3zxIPNa">Amazon link</a></li>
+<li><a href="https://atp.fm/43">Previously on ATP&#8230;</a></li>
+<li><a href="https://www.dirac.com/live/">Dirac Live</a></li>
+<li><a href="https://filmmakermode.com">FILMMAKER MODE</a></li>
+<li><a href="https://youtu.be/njX2bu-_Vw4">4K HDR Demo Video</a></li>
+<li><a href="https://arstechnica.com/gadgets/2001/04/macos-x/7/">Mac OS X Unix-style crash</a></li>
+</ul></li>
+<li>Post-show: Is it okay to copy a competitor&#8217;s API?
+
+<ul>
+<li><a href="https://aws.amazon.com/s3/">S3</a></li>
+<li><a href="https://www.cloudflare.com/products/r2/">Cloudflare R2</a></li>
+<li><a href="https://www.linode.com/products/object-storage/">Linode Object Storage Service</a></li>
+<li><a href="https://www.backblaze.com/b2/cloud-storage.html">Backblaze B2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ceph_(software)">Ceph</a></li>
+<li><a href="https://panic.com/transmit/">Transmit</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://instabug.com">Instabug</a>: The visibility you need to build top-quality apps.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>John got a new television.</itunes:subtitle></item><item><guid isPermaLink="false">rdhulu9jmnnjwucw</guid><pubDate>Sun, 31 Jul 2022 03:46:45 +0000</pubDate><title>493: Downstairs Downstairs</title><itunes:title>Downstairs Downstairs</itunes:title><itunes:episode>493</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:48</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp493.mp3" length="124686408" type="audio/mpeg"/><link>https://atp.fm/493</link><description><![CDATA[<ul>
+<li>Pre-show: Last two weeks updates
+
+<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2022/07/25/ep-352">The Talk Show #352: &#8220;I&#8217;ve Kissed that Mouse&#8221;</a></li>
+<li><a href="https://www.relay.fm/rd/102">Reconcilable Differences #102: Preparing the Way</a></li>
+<li><a href="https://support.apple.com/guide/apple-configurator-mac/revive-or-restore-a-mac-with-apple-silicon-apdd5f3c75ad/mac">DFU Restore</a></li>
+<li><a href="https://www.newyorker.com/magazine/2014/10/27/thirty-three-hit-wonder">Billy Joel and his helicopter concert commute</a></li>
+<li><a href="https://www.jonesbeach.com">Jones Beach</a>
+
+<ul>
+<li><a href="https://www.livephish.com/browse/music/0,1824/Phish-mp3-flac-download-7-26-2022-Northwell-Health-at-Jones-Beach-Theater-Wantagh-NY">Night 1</a></li>
+<li><a href="https://www.livephish.com/browse/music/0,1825/Phish-mp3-flac-download-7-27-2022-Northwell-Health-at-Jones-Beach-Theater-Wantagh-NY">Night 2</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Custom 🇦🇺 emails (via Mark Vos &amp; Brendan Ragan)
+
+<ul>
+<li><a href="https://www.auda.org.au/au-domain-names/domain-name-help/idau-rules-eligibility-and-allocation"><code>.id.au</code> Rules</a></li>
+<li><a href="https://www.caseyliss.com/fastmail">Casey&#8217;s Fastmail Referral Code</a></li>
+</ul></li>
+<li>BMW subscriptions (via Chris Church)
+
+<ul>
+<li><a href="https://www.bbc.com/news/technology-62142208">BBC Coverage</a></li>
+<li><a href="https://gizmodo.com/amazon-secretly-removes-1984-from-the-kindle-5317703">Amazon Remote-Deletes <em>1984</em> from Kindles</a></li>
+<li><a href="https://calibre-ebook.com">Calibre</a></li>
+</ul></li>
+<li>Steve Stutz tells us you can get the mophie 3-in-1&#8217;s <a href="https://www.zagg.com/en_us/3-in-1-travel-charger-magsafe-apple/">from Zagg</a> at a discount</li>
+<li>🇪🇺 &amp; USB-C regulations (via Vern Johnson)</li>
+<li>Address &amp; contacts (via <a href="https://twitter.com/SolubleApps/status/1550416483632701441">Soluble Apps</a> and <a href="https://twitter.com/shassabo/status/1550202048846651393">Sherif Hassabo</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/VCard">vCard</a></li>
+</ul></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Can an indie app enter a crowded field? (via Abel Demoz)
+
+<ul>
+<li><a href="https://twitter.com/JPEGuin/status/1551945505088888836">Aviary 2</a></li>
+<li><a href="https://www.relay.fm/mpu/648">Mac Power Users #648: Software Club: Apollo for Reddit</a></li>
+<li><a href="http://www.paintcodeapp.com/">PaintCode</a></li>
+<li><a href="https://monodraw.helftone.com">Monodraw</a></li>
+</ul></li>
+<li>Why don&#8217;t we use cross-platform frameworks? (via Russel Bernau)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Unity_(game_engine)">Unity</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Unreal_Engine">Unreal Engine</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Game_Developers_Conference">Game Developers Conference</a></li>
+<li><a href="https://www.quora.com/What-is-the-origin-of-the-phrase-putting-wood-behind-the-arrow"><em>Putting wood behind the arrow</em></a></li>
+</ul></li>
+<li>Is Time Machine still the best feature ever implemented on the Mac? (via Guilherme Alles)</li>
+<li>Would John potentially void his TV&#8217;s warranty to prevent auto-dimming? (via Mark Vos)
+
+<ul>
+<li><a href="https://youtu.be/E5qXj-vpX5Q">HDTVTest&#8217;s Video</a></li>
+<li><a href="https://www.rtings.com/tv/learn/real-life-oled-burn-in-test">RTings&#8217; Burn-In Test</a></li>
+</ul></li>
+<li>Has John decided on a backup strategy for his son&#8217;s MacBook Air? (via Brian Lazarz)</li>
+</ul></li>
+<li>Post-show: Casey&#8217;s HomeKit Adventures</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://instabug.com/">Instabug</a>: The visibility you need to build top-quality apps.</li>
+<li><a href="https://businesscards.io/">Businesscards.io</a>: A business card you keep in your Apple Wallet.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>A lot has happened since we last recorded.</itunes:subtitle></item><item><guid isPermaLink="false">yjrontloemv1otlp</guid><pubDate>Wed, 20 Jul 2022 16:00:00 +0000</pubDate><title>492: Umbrella Hammer Toadstool</title><itunes:title>Umbrella Hammer Toadstool</itunes:title><itunes:episode>492</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp492.mp3" length="112399915" type="audio/mpeg"/><link>https://atp.fm/492</link><description><![CDATA[<ul>
+<li>Pre-show: Air conditioners, memories, and house veins
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Air_conditioning#Mini-split_and_multi-split_systems">Mini-split</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>M2 MacBook Air [also] thermal throttles
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/07/m2-macbook-air-review-a-new-era/">Jason&#8217;s review</a>
+
+<ul>
+<li><a href="https://sixcolors.com/subscribe/">You should probably subscribe to 6C, too</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/laptop-review/23207440/apple-macbook-air-m2-2022-review">The Verge</a></li>
+<li><a href="https://daringfireball.net/2022/07/the_2022_13-inch_macbook_air">Gruber&#8217;s review</a></li>
+<li><a href="https://arstechnica.com/gadgets/2022/07/2022-macbook-air-review-apples-clean-slate/">Ars Technica&#8217;s review</a></li>
+</ul></li>
+<li><a href="https://www.amazon.com/gp/product/B097B5BWYS?ie=UTF8&amp;psc=1&amp;linkCode=sl1&amp;tag=siracusa-20&amp;linkId=9ce22b3b9b65ec1b6eb8cbf75a18d0d3&amp;language=en_US&amp;ref_=as_li_ss_tl">John&#8217;s Mac Studio safety straps</a></li>
+<li><a href="https://youtu.be/DyrUZovYdcs">M2 has Ultra-Wideband Chip?</a></li>
+<li>Default destination for Messages
+
+<ul>
+<li><a href="https://support.apple.com/guide/iphone/add-and-use-contact-information-iph3e0ca2db/ios">Apple</a></li>
+<li><a href="https://twitter.com/jgobble/status/1548001563691474945">Jann Gobble</a></li>
+</ul></li>
+<li>IPSec is <em>not</em> mandatory for IPv6 (via Brian Petersen)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/IPv6#IPsec">Wikipedia</a></li>
+<li><a href="https://twitter.com/Squozen_EU/status/1548025145133920259">Squozen</a></li>
+</ul></li>
+</ul></li>
+<li>AirPlay &amp; Touch Bar network problems
+
+<ul>
+<li><a href="https://twitter.com/Blinieth/status/1535435431189401600">Mnpn</a></li>
+<li><a href="https://mnpn.github.io/blog/airplay-network-disaster">Writeup</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2022/06/28/apple-patents-dual-pro-stand-for-displays/">Apple Patents Dual &#8220;Pro Stand&#8221;</a>
+
+<ul>
+<li><a href="https://amzn.to/3yrN9Nw">Casey&#8217;s stand</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2021/9/23/22626723/eu-commission-universal-charger-usb-c-micro-lightning-connector-smartphones">EU may mandate USB-C on all devices, including iPhones</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/2015/8/9/go-pack">Go Pack</a></li>
+<li><a href="https://www.apple.com/shop/product/HPTA2ZM/A/mophie-3-in-1-travel-charger-with-magsafe">mophie 3-in-1 travel charger with MagSafe</a></li>
+<li><a href="https://ec.europa.eu/commission/presscorner/detail/en/QANDA_21_4614">Proposal Q&amp;A</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How do we manage mail notifications on our devices? (via Michael Chan)
+
+<ul>
+<li><a href="https://mimestream.com">Mimestream</a></li>
+<li><a href="https://guide.swiftmail.io">Swift Mail (for Fastmail/JMAP)</a></li>
+</ul></li>
+<li>How do we backup our photos/videos? (via Don Clark)</li>
+<li>Do we think macOS will bloat enough to make Apple Silicon seem slow? (Nitesh Singh)</li>
+<li>Why does John say &#8220;program&#8221; from time to time? (via William Reynish)
+
+<ul>
+<li><a href="https://hypercritical.co/switchglass/">SwitchGlass</a></li>
+</ul></li>
+<li>How does a current-whippersnapper pick a decent custom domain for email? (via Fletcher O&#8217;Connor)
+
+<ul>
+<li><a href="https://www.caseyliss.com/fastmail">Casey&#8217;s Fastmail referral code</a></li>
+</ul></li>
+<li>How does John prepare the way for a Mac to enter cold storage? (via <a href="https://twitter.com/braasch/status/1544477314871877635">Dave Braasch</a>)</li>
+</ul></li>
+<li>Post-show: Updates on our SwiftUI journeys</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Get $30 off your first order.</li>
+<li><a href="https://www.revenuecat.com">RevenueCat</a>: In-app subscriptions made easy.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Actively-cooled houses, passively-cooled laptops, and the long journey to USB-C ubiquity.</itunes:subtitle></item><item><guid isPermaLink="false">m0fyumpfshbjr3r0</guid><pubDate>Thu, 14 Jul 2022 19:51:56 +0000</pubDate><title>491: Salmon and SwiftUI</title><itunes:title>Salmon and SwiftUI</itunes:title><itunes:episode>491</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp491.mp3" length="119739535" type="audio/mpeg"/><link>https://atp.fm/491</link><description><![CDATA[<ul>
+<li>Casey and Marco have 99 problems, and SwiftUI is every. damn. one. of. them.
+
+<ul>
+<li>Casey&#8217;s problems
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/photokit/photospicker?changes=_5"><code>PhotosPicker</code></a>
+
+<ul>
+<li>FB10491818</li>
+<li>FB10566546</li>
+</ul></li>
+<li><a href="https://developer.apple.com/documentation/swift/never/presentationdetents(_:selection:)/"><code>presentationDetents()</code></a>
+
+<ul>
+<li>FB10636765</li>
+</ul></li>
+<li><a href="https://developer.apple.com/documentation/swiftui/imagerenderer"><code>ImageRenderer</code></a>
+
+<ul>
+<li>FB10393458</li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.relay.fm/radar/246">Under the Radar #246: Hard Forks</a></li>
+<li><a href="https://developer.apple.com/documentation/uikit/uistackview"><code>UIStackView</code></a></li>
+<li><a href="https://developer.apple.com/documentation/swiftui/uiviewrepresentable"><code>UIViewRepresentable</code></a></li>
+<li><a href="https://developer.apple.com/documentation/swiftui/uihostingcontroller"><code>UIHostingController</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pointer_(computer_programming)">Pointer</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Alternative <a href="https://pi-hole.net">pi-hole</a> fix
+
+<ul>
+<li><code>BLOCK_ICLOUD_PR=false</code> in <code>pihole-FTL.conf</code></li>
+</ul></li>
+<li><a href="https://www.swiftbysundell.com/articles/switching-between-swiftui-hstack-vstack/">Switching bbetween SwiftUI&#8217;s <code>HStack</code> &amp; <code>VStack</code></a></li>
+<li>Updating the <a href="https://gist.github.com/siracusa/5beb23628c7ab0fb8cc646862c557cb3"><code>.if()</code> modifier</a>
+
+<ul>
+<li><a href="https://www.objc.io/blog/2021/08/24/conditional-view-modifiers/">objc.io explainer</a></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2021/10022/">WWDC 2021: <em>Demistify SwiftUI</em></a></li>
+</ul></li>
+<li><a href="https://arstechnica.com/gadgets/2022/07/some-macs-are-getting-fewer-updates-than-they-used-to-heres-why-its-a-problem/">macOS Support Lifetime</a></li>
+<li><a href="https://resources.infosecinstitute.com/topic/ipv6-security-overview-a-small-view-of-the-future/">IPv6 Benefits</a> (via Dan Chandler)</li>
+</ul></li>
+<li><a href="https://www.nytimes.com/2022/07/12/technology/apple-jony-ive-end-agreement.html">Apple &amp; Ive Break Up</a></li>
+<li><a href="https://www.theverge.com/2022/6/28/23180410/sony-inzone-gaming-monitors-hands-on-specs-price-ps5-pc">Sony&#8217;s new gaming monitor</a>
+
+<ul>
+<li><a href="https://youtu.be/GNF2YMuITr0">Hardware Unboxed review</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How does one diagnose a Mac randomly waking from sleep? (via Radu Piroșca)
+
+<ul>
+<li><a href="https://ohanaware.com/sleepaid/">SleepAid</a></li>
+</ul></li>
+<li>What do we do when someone changes their phone number?</li>
+<li>What would get us to leave the hell site? (via Carl Rozas)
+
+<ul>
+<li><a href="https://micro.blog">micro.blog</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mastodon_(software)">Mastodon</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: <a href="https://www.theverge.com/2022/7/12/23204950/bmw-subscriptions-microtransactions-heated-seats-feature">BMW is charging subscriptions for… seat heaters‽</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://stackoverflow.blog/podcast/">Stack Overflow Podcast</a>: Exploring what it means to be a developer, and how the art and practice of software programming is changing our world.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Sometimes, you just have to force yourself to keep eating until you like it.</itunes:subtitle></item><item><guid isPermaLink="false">stftvljoy3ncsvc5</guid><pubDate>Thu, 07 Jul 2022 15:35:56 +0000</pubDate><title>490: Tiny Pictures of Knobs</title><itunes:title>Tiny Pictures of Knobs</itunes:title><itunes:episode>490</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp490.mp3" length="120310417" type="audio/mpeg"/><link>https://atp.fm/490</link><description><![CDATA[<ul>
+<li>Pre-show: Some thoughts on who should have agency over womens&#8217; bodies
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Roe_v._Wade">Roe v. Wade</a></li>
+<li><a href="https://en.wikipedia.org/wiki/In_vitro_fertilisation">In-vitro fertilization</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ectopic_pregnancy">Ectopic pregnancy</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Evidence-based_medicine">Evidence-based medicine</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Trigger_law#Abortion">Trigger law</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Using a M1 Mac mini as a Plex server
+
+<ul>
+<li><a href="https://github.com/donmelton/other_video_transcoding">Other video transcoding</a></li>
+</ul></li>
+<li>M2 MacBook Air <a href="https://www.apple.com/newsroom/2022/07/all-new-macbook-air-with-m2-available-to-order-starting-friday-july-8/">available to order Friday</a> at 8 AM OTTZ</li>
+<li>Quick <a href="https://pi-hole.net">Pi-hole</a> tip from Tod Weitzel</li>
+<li>Advantages for Apple getting into Buy Now, Pay Later</li>
+<li>A possible motive for bitcode deprecation
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/LLVM">LLVM</a></li>
+</ul></li>
+<li><a href="https://tidbits.com/2022/06/27/why-passkeys-will-be-simpler-and-more-secure-than-passwords/">Why passkeys will be simpler and more secure than passwords</a></li>
+<li>Janis Peukert asks some questions about passkeys
+
+<ul>
+<li><a href="https://appleid.apple.com/"><code>appleid.apple.com</code></a></li>
+<li><a href="https://support.apple.com/en-us/HT204397">App-specific Passwords</a></li>
+</ul></li>
+<li>On stateful hardware controls
+
+<ul>
+<li><a href="https://www.youtube.com/watch?app=desktop&amp;v=jJ1dhTtSU2A">Dancing faders</a> (via Jordan McEwen)</li>
+<li><a href="https://www.youtube.com/watch?v=hAowrn1Nifk&amp;feature=youtu.be">Guitar amplifiers</a> (via Samuel Cohen)</li>
+<li><a href="https://en.wikipedia.org/wiki/Air_France_Flight_447#Side-stick_control_issue">AirFrance Flight 447</a> (via Dave Rowenhorst)</li>
+<li><a href="https://en.wikipedia.org/wiki/Anton_Yelchin">Anton Yelchin</a>&#8217;s odd <a href="https://www.nbcnews.com/business/autos/death-star-trek-actor-highlights-concerns-about-faulty-electronic-shifters-n595751">death back in 2016</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/ZF_8HP_transmission">ZF 8HP transmission</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2022/07/apple-expands-commitment-to-protect-users-from-mercenary-spyware/">Apple announces Lockdown Mode</a></li>
+<li>M2 MacBook Pro thermal throttling issues
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=FZjELZBq7WU&amp;t=281s">MaxTech&#8217;s video (timestamp link)</a></li>
+<li><a href="https://twitter.com/every_daydad/status/1542534316433068033">Gary</a> from <a href="https://www.youtube.com/channel/UCqvULRRboZeXVezSm_XduLQ">The Everyday Dad</a> can&#8217;t reproduce the issue</li>
+<li><a href="https://www.youtube.com/watch?v=FWfJq0Y4Oos&amp;feature=youtu.be">Hardware Unboxed: Apple M2 Review</a></li>
+</ul></li>
+<li>Some notes on macOS Ventura Beta 3
+
+<ul>
+<li>System Settings</li>
+<li>iCloud Shared Photo Library</li>
+</ul></li>
+<li>Post-show: Marco is diving into SwiftUI
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Carbon_(API)">Carbon</a></li>
+<li><a href="https://pastebin.com/VY2CGpQd"><code>.if()</code></a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://instabug.com/">Instabug</a>: The visibility you need to build top-quality apps.</li>
+<li><a href="https://link.chtbl.com/workcheck?sid=podcast.accidentaltech">Work Check</a>: A new podcast about workplace practices, separating the hype from the helpful.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>The imminent MacBook Air, Lockdown Mode, improvements in Ventura beta 3, and finally jumping into SwiftUI.</itunes:subtitle></item><item><guid isPermaLink="false">mhfzz0wzvnhtvuvt</guid><pubDate>Thu, 30 Jun 2022 15:43:25 +0000</pubDate><title>489: Very Inappropriate Thoughts About This Computer</title><itunes:title>Very Inappropriate Thoughts About This Computer</itunes:title><itunes:episode>489</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp489.mp3" length="110262065" type="audio/mpeg"/><link>https://atp.fm/489</link><description><![CDATA[<ul>
+<li>Pre-show: Marco flirts with his past</li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/Xcode-Release-Notes/xcode-14-release-notes">Bitcode has been deprecated</a>
+
+<ul>
+<li>Previously, on <a href="https://atp.fm/205">ATP #205</a> (<a href="https://overcast.fm/+R7DWLbxCs/07:23">Overcast timestamp link</a>) (<a href="https://atp.fm/205-chris-lattner-interview-transcript#bitcode">Transcript</a>)</li>
+</ul></li>
+<li><a href="https://www.bloomberg.com/news/newsletters/2022-06-26/apple-aapl-plans-iphone-14-apple-watch-series-8-m2-macs-for-2022-and-2023-l4vd5unx">New big HomePod rumor</a></li>
+<li><a href="https://twitter.com/rmondello/status/1539643133578735616">Ricky on Passkey syncing</a>
+
+<ul>
+<li><a href="https://www.yubico.com/">YubiKey</a></li>
+</ul></li>
+<li><em>Very important</em> Caffè Macs follow-up</li>
+<li><a href="https://en.wikipedia.org/wiki/Buy_now,_pay_later">BNPL</a>
+
+<ul>
+<li><a href="https://overcast.fm/+YsPTPf-p8">Planet Money</a></li>
+</ul></li>
+</ul></li>
+<li>The 256GB 13&#8221; M2 MacBook Pro <a href="https://www.macrumors.com/2022/06/26/base-m2-13-inch-macbook-pro-slower-ssd-speeds/">has crummy SSD performance</a></li>
+<li><a href="https://9to5mac.com/2022/06/15/kuo-15-inch-macbook-m2-pro/">15&#8221; MacBook&#8230; <em>something</em>?</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What makes WWDC &#8216;22 different than the before times? (via Elijah Yap)</li>
+<li>Are we living in the gilded age for Mac professionals? (via Wade Tregaskis)</li>
+<li>How close is APFS (🛎️) to <a href="https://en.wikipedia.org/wiki/ZFS#Summary">ZFS</a>? (via Dave Aton)</li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Casey impulse-bought <a href="https://www.apple.com/shop/product/G12P6LL/A/">a computer</a></li>
+<li>Marco traded in iPads</li>
+<li>Casey got his <a href="https://play.date/">Playdate</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Get $30 off plus free shipping.</li>
+<li><a href="https://apps.apple.com/app/id1600525061">Locket</a>: Live pictures from your friends, right to your Home Screen. <a href="https://locket.camera/jobs">Locket is hiring!</a></li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>HomePod rumors, MacBook rumors, phone waffling, and impulse purchases.</itunes:subtitle></item><item><guid isPermaLink="false">q2dwr1zyswftrg1s</guid><pubDate>Thu, 23 Jun 2022 17:23:52 +0000</pubDate><title>488: Pebbles on the Scale</title><itunes:title>Pebbles on the Scale</itunes:title><itunes:episode>488</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:14</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp488.mp3" length="110709114" type="audio/mpeg"/><link>https://atp.fm/488</link><description><![CDATA[<ul>
+<li>Pre-show: Marco&#8217;s HomePod journey continues
+
+<ul>
+<li><a href="https://www.apple.com/homepod-mini/">HomePod mini</a></li>
+<li><a href="https://www.apple.com/shop/product/MUF82AM/A/usb-c-digital-av-multiport-adapter">USB-C Digital AV Multiport Adapter</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/IPad_Pro_(3rd_generation)">iPad Pro (2018) has 4GB or 6GB RAM</a>
+
+<ul>
+<li>The <a href="https://ioshacker.com/ipad/ram-in-ipad-models">offending party</a> has been sacked</li>
+</ul></li>
+<li>Apple educational discounts &amp; software bundles
+
+<ul>
+<li><a href="https://www.apple.com/us-edu/shop/product/BMGE2Z/A/pro-apps-bundle-for-education">Pro Apps Bundle for Education</a></li>
+<li><a href="https://www.apple.com/us-edu/store">Education Store</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_SE/30">Macintosh SE/30</a></li>
+</ul></li>
+<li><em>Your beloved hosts have a violent reaction to the <a href="https://www.apple.com/macbook-pro-13/">13&#8221; MacBook Pro</a></em></li>
+<li><a href="https://twitter.com/bartreardon/status/1537669702193147904">Bart Reardon&#8217;s <code>System Preferences</code> experiment</a>
+
+<ul>
+<li><a href="https://theevilbit.github.io/posts/amfi_launch_constraints/">AMFI Launch Constraints</a></li>
+</ul></li>
+<li>Copy/Paste adjustments in <code>Photos</code>
+
+<ul>
+<li><a href="https://www.apple.com/macos/macos-ventura-preview/features/">macOS Ventura Preview</a></li>
+</ul></li>
+<li>Gaming on the Mac on <a href="https://www.youtube.com/watch?v=WfnvsepVJC0">The Talk Show Live</a></li>
+<li>macOS Ventura hardware support via <a href="https://twitter.com/ClassicII_MrMac/status/1533887755700215808">Mr. Macintosh</a>
+
+<ul>
+<li><a href="https://twitter.com/film_girl/status/1534262485439553536">Christina Warren&#8217;s take</a></li>
+</ul></li>
+<li>iOS and <a href="https://en.wikipedia.org/wiki/Head-related_transfer_function">head-related transfer functions</a> (via <a href="https://twitter.com/joshhunt/status/1534115119231385600">Josh Hunt</a>)</li>
+<li>CarPlay and <a href="https://source.android.com/devices/automotive/start/what_automotive">Android Automotive</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Real-time_operating_system">Real-time operating system</a></li>
+<li><a href="https://www.theverge.com/2022/6/7/23157963/apple-carplay-next-gen-screen-car-companies">The Verge talks to car manufacturers</a></li>
+<li><a href="https://www.theverge.com/23172839/mercedes-benz-ceo-ola-kallenius-electric-vehicles-self-driving-luxury-tech-g-class">Decoder with Mercedes-Benz CEO</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2022/102/">WWDC Platforms State of the Union</a>
+
+<ul>
+<li><a href="https://hypercritical.co/switchglass/">SwitchGlass</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>John&#8217;s <a href="https://siracusafamily.org/atp/tmp/mouse-noises.mp3">mouse problems</a></li>
+<li>Casey&#8217;s AT&amp;T → Verizon journey
+
+<ul>
+<li><a href="https://www.verizon.com/coverage-map/">Verizon coverage map</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Save $30 with this link.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://greenchef.com/atp130">Green Chef</a>: The #1 meal kit for eating well. Use code __ atp130__ for $130 off, plus free shipping.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>HomePod Mini vs. the world, the M2 MacBook "Pro", CarPlay's ambitious plans, and the state of SwiftUI.</itunes:subtitle></item><item><guid isPermaLink="false">ddjsody1whvnzgff</guid><pubDate>Thu, 16 Jun 2022 16:01:17 +0000</pubDate><title>487: Mid-Life Rally</title><itunes:title>Mid-Life Rally</itunes:title><itunes:episode>487</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp487.mp3" length="138384254" type="audio/mpeg"/><link>https://atp.fm/487</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>🎂 HAPPY 40th BIRTHDAY, Marco! 🎂</li>
+<li>Congratulations, Alex!</li>
+</ul></li>
+<li>iCloud Shared Photo Library
+
+<ul>
+<li><a href="https://twitter.com/jsnell/status/1536764886297890816">Jason on storage allocation</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/ios/ios-16-preview/features/">Copy/paste edits in Photos</a></li>
+<li><a href="https://twitter.com/ridogi/status/1534241737773826048">Eric deRuiter</a> on <a href="https://www.theverge.com/2022/6/6/23156720/apple-safety-check-wwdc-ios-16">Safety Check</a>
+
+<ul>
+<li><a href="https://support.apple.com/guide/personal-safety/welcome/web">Personal Safety User Guide</a></li>
+</ul></li>
+<li>Passkeys
+
+<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2022/10092/">Can be shared via AirDrop</a> (See 6m14s into the video)</li>
+<li><a href="https://sixcolors.com/link/2022/06/how-do-you-recover-passkeys-if-you-lose-all-your-devices/">How do you recover them?</a></li>
+<li><a href="https://support.apple.com/en-us/HT213305">About the Security of Passkeys</a></li>
+<li><a href="https://support.apple.com/en-us/HT212513">Set Up an Account Recovery Contact</a></li>
+</ul></li>
+<li><a href="https://semianalysis.substack.com/p/apple-m2-die-shot-and-architecture?s=r">Semi Analysis on the M2</a></li>
+<li>The MacBook Air has <a href="https://www.apple.com/shop/product/MLYV3AM/A/usb-c-to-magsafe-3-cable-2-m-silver">color-matched MagSafe cables</a>
+
+<ul>
+<li>It is also 500 nits</li>
+</ul></li>
+<li>Desk View clarifications</li>
+<li>Messages</li>
+<li>Stage Manager
+
+<ul>
+<li><a href="https://twitter.com/jamesthomson/status/1533932783843803137">James Thomson</a></li>
+<li><a href="https://www.youtube.com/watch?t=46m58s&amp;v=WfnvsepVJC0&amp;feature=youtu.be">The Talk Show</a> (timestamp link to 46m58s)</li>
+<li><a href="https://arstechnica.com/gadgets/2000/02/mac-os-x-dp3/5/#single-window-mode">Purple window widget</a></li>
+<li><a href="https://web.archive.org/web/20220609000257/https://techreflect.net/2022/06/08/rising-from-the-ashes-stage-manager/"><code>archive.org</code> copy of &#8220;Shrinkydink&#8221; story</a></li>
+<li><a href="https://512pixels.net/2022/06/why-stage-manager-is-limited-to-m1-ipads/">Why is it only on M1 iPads?</a>
+
+<ul>
+<li><a href="https://twitter.com/reneritchie/status/1535400206069649410">Statement to Rene Ritchie</a></li>
+<li><a href="https://techcrunch.com/2022/06/13/apple-resizes-the-ipads-workflow-with-stage-manager/">Federighi interview with Matthew Panzarino</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/ipados/ipados-16-preview/features/">Swap hardware requirements</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1536764716231675905">Steve Troughton-Smith on Swap</a></li>
+</ul></li>
+<li>System Settings
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=WfnvsepVJC0&amp;t=43m11s">Federighi on The Talk Show</a> (timestamp link to 43m11s)</li>
+<li><a href="https://en.wikipedia.org/wiki/Bento">Bento box</a></li>
+<li>Examples:
+
+<ul>
+<li><a href="https://twitter.com/siracusa/status/1534261202167152649">Dock</a></li>
+<li><a href="https://twitter.com/siracusa/status/1534287479758520322">&#8220;Cross-Platform UI&#8221;</a></li>
+<li><a href="https://twitter.com/siracusa/status/1534630499670495233">Trackpad</a></li>
+<li><a href="https://twitter.com/chrisgrande/status/1534675504560603136">Print</a></li>
+</ul></li>
+<li>Oh <a href="https://twitter.com/dnanian/status/1533793783338479617">notifications still stink too</a></li>
+<li><a href="https://twitter.com/chockenberry/status/1536475509307379712">Craig Hockenberry&#8217;s Tweet</a></li>
+</ul></li>
+<li>Post-show: Casey went on a secret adventure.
+
+<ul>
+<li><a href="http://drops.caseyliss.com/kOIPLD">Spoiler</a></li>
+<li><a href="https://www.youtube.com/watch?v=Kle8vi3Y2vQ&amp;feature=youtu.be">Referenced Video</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://l.kolide.co/3JSEB6y">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Aging hosts with aging hardware, passkey recovery, Stage Manager device segmentation, and the design of System Settings.</itunes:subtitle></item><item><guid isPermaLink="false">zvlgx3jfnlpybtn1</guid><pubDate>Tue, 07 Jun 2022 05:42:45 +0000</pubDate><title>486: Field Day at Apple Park</title><itunes:title>Field Day at Apple Park</itunes:title><itunes:episode>486</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:56:20</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp486.mp3" length="169364102" type="audio/mpeg"/><link>https://atp.fm/486</link><description><![CDATA[<ul>
+<li>Pre-show: Marco is [always on vacation] in California! 😎🌴
+
+<ul>
+<li><a href="https://twitter.com/jsnell/status/1533853536911388672">Jason &amp; Dan&#8217;s view of the stage</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-events/">WWDC 2022 Keynote</a>
+
+<ul>
+<li><a href="https://www.apple.com/ios/ios-16-preview/features/">iOS 16</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Mobile_device_management">MDM</a></li>
+<li><a href="https://parcel.app">Parcel</a></li>
+<li><a href="https://hypercritical.fireside.fm/9">Hypercritical #9: No iLife is an Island</a></li>
+<li><a href="https://twitter.com/ejacqui/status/1533865363703844864">Jacqui Cheng&#8217;s tweet</a> and <a href="https://arstechnica.com/gadgets/2012/05/how-to-harden-your-smartphone-against-stalkers-iphone-edition/">article</a></li>
+<li><a href="https://www.youtube.com/c/EricWelander">Eric Welander&#8217;s YouTube channel</a></li>
+<li><a href="https://twitter.com/siracusa/status/1533866680589471744">John&#8217;s CarPlay tweet</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/macbook-air/">MacBook Air</a></li>
+<li><a href="https://www.apple.com/macos/macos-ventura-preview/">macOS Ventura</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Ace_Ventura_(franchise)">Ace Ventura</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Jesse_Ventura">Jesse &#8220;The Body&#8221; Ventura</a></li>
+<li><a href="https://manytricks.com/moom/">Moom</a></li>
+<li><a href="https://webkit.org/blog/12824/news-from-wwdc-webkit-features-in-safari-16-beta/">WebKit updates</a></li>
+<li><a href="https://reincubate.com/camo/">Camo</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/ipados/ipados-16-preview/">iPadOS</a>
+
+<ul>
+<li><a href="https://twitter.com/bhoptee/status/1533888677524430850">Running Up That Hill</a></li>
+<li><a href="https://twitter.com/_DavidSmith/status/1533915957801889792">_ on WeatherKit pricing</a></li>
+<li><a href="http://subethaedit.net">SubEthaEdit</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Page_(computer_memory)">Paging</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: The food</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3JSEB6y">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Get $30 off your first order.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>WWDC 2022: new building, new format, new OSes, new APIs, new hardware, and new pastries!</itunes:subtitle></item><item><guid isPermaLink="false">u0rnzjvva0vqogff</guid><pubDate>Thu, 02 Jun 2022 18:00:21 +0000</pubDate><title>485: This Is Casey Actual</title><itunes:title>This Is Casey Actual</itunes:title><itunes:episode>485</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:27:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp485.mp3" length="141417260" type="audio/mpeg"/><link>https://atp.fm/485</link><description><![CDATA[<ul>
+<li>Pre-show: Streaming changes
+
+<ul>
+<li><a href="https://rogueamoeba.com/audiohijack/">Audio Hijack</a></li>
+<li><a href="https://www.twitch.tv/accidentaltechpodcast">Our Twitch channel for live streams</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.caseyliss.com/fastmail">Fastmail</a></li>
+<li><a href="https://en.wikipedia.org/wiki/The_Price_Is_Right">The Price is Right</a> is available for free on <a href="https://pluto.tv/live-tv/the-price-is-right-the-barker-era">Pluto TV</a></li>
+<li>Regarding filming workout videos
+
+<ul>
+<li><a href="https://www.amulethotkey.com/product/dxz4/">Amulet Hotkey DXZ4</a></li>
+<li><a href="https://en.wikipedia.org/wiki/X_Window_System">X Windows</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Display_PostScript">Display Postscript</a></li>
+</ul></li>
+<li><a href="https://developer.apple.com/wwdc22/">WWDC</a> in-person info/schedule (via <a href="https://twitter.com/twostraws/status/1529467321420349441">Paul Hudson</a>)</li>
+</ul></li>
+<li>John&#8217;s Mac Studio report</li>
+<li>WWDC Hopes and Predictions
+
+<ul>
+<li><a href="https://www.w3.org/TR/REC-CSS1/">CSS1 spec (1996)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/CSS_Flexible_Box_Layout">Flexbox</a></li>
+<li><a href="https://www.macstories.net/stories/rediscovering-the-mac/">Rediscovering the Mac by Federico Viticci</a></li>
+<li><a href="https://www.caseyliss.com/2017/6/25/macbook-adorable">Casey&#8217;s review of the MacBook Adorable</a></li>
+<li><a href="https://daringfireball.net/linked/2022/06/01/the-talk-show-live-from-wwdc-2022">The Talk Show Live from WWDC 2022</a></li>
+</ul></li>
+<li>Post-show: Is John sleeping more?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://hullopillow.com/atp">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://iodyne.com">Iodyne</a>: Introducing the all-new Pro Data.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>WWDC hopes, WWDC dreams, WWDC predictions, and WWDC… menus?</itunes:subtitle></item><item><guid isPermaLink="false">zdbxngvovw4zaexa</guid><pubDate>Thu, 26 May 2022 14:49:17 +0000</pubDate><title>484: Hot-Spare Price is Right</title><itunes:title>Hot-Spare Price is Right</itunes:title><itunes:episode>484</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp484.mp3" length="115317206" type="audio/mpeg"/><link>https://atp.fm/484</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://en.wikipedia.org/wiki/The_Price_Is_Right">Sick-kid TV</a>
+
+<ul>
+<li><a href="https://getchannels.com/">Channels</a></li>
+<li><a href="https://www.paramountplus.com/">Paramount+</a></li>
+<li><a href="https://try.appletvapp.apple/channels">AppleTV Channels</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Warnings about PoE splitters from Matias Korhonen</li>
+<li>Pro-fiber propaganda
+
+<ul>
+<li><a href="https://www.fs.com/products/40180.html?attribute=213&amp;id=302774">Adam Papamarcos&#8217; OM4 fiber cable</a></li>
+<li><a href="https://www.assmann.com/en/about-us/assmann-group/">Assmann Group</a></li>
+</ul></li>
+<li>Ad-blockers on desktops (via Ryan)</li>
+<li>&#8220;Sign in with X&#8221; (via Brian Donovan)</li>
+<li>A concert-related Apple Music tip from Jonathan Dechko</li>
+<li>Amber gives us feedback on the Apple Fitness+ control room</li>
+</ul></li>
+<li>Apple, Google, and Microsoft commit to expanded support of <a href="https://en.wikipedia.org/wiki/FIDO_Alliance">FIDO standard</a>
+
+<ul>
+<li><a href="https://www.apple.com/newsroom/2022/05/apple-google-and-microsoft-commit-to-expanded-support-for-fido-standard/">Apple press release</a></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2021/10106/">WWDC 2021 video</a></li>
+<li><a href="https://arstechnica.com/gadgets/2022/05/apple-google-and-microsoft-want-bluetooth-proximity-to-replace-the-password/">Ars Technica&#8217;s write-up</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pretty_Good_Privacy">PGP</a></li>
+</ul></li>
+<li>Apple&#8217;s <a href="https://www.selfservicerepair.com/home">Self-Repair Program</a>
+
+<ul>
+<li><a href="https://youtu.be/hhdcbyIoFDU">Quinn fixes a phone</a></li>
+<li><a href="https://youtu.be/-5UofJKiAWA">Quinn opens up the tools</a></li>
+<li><a href="https://www.theverge.com/2022/5/21/23079058/apple-self-service-iphone-repair-kit-hands-on">The Verge repairs a phone</a></li>
+<li><a href="https://www.cnet.com/tech/mobile/modular-phones-roundup/">Old CNet roundup of modular phones</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Project_Ara">Project Ara</a></li>
+<li><a href="https://www.youtube.com/watch?v=PQqudiUdGuo&amp;feature=youtu.be">The Verge reviews Project Ara</a></li>
+<li><a href="https://dailywireless.org/mobile/what-happened-to-project-ara/">What Happened to Project Ara?</a></li>
+</ul></li>
+<li><a href="https://dithering.fm/">Dithering</a></li>
+<li><a href="https://hypercritical.co/2013/02/08/dont-stop-thinking-about-tomorrow">John&#8217;s blog post on thin computers</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>The John Siracusa Podcasting Universe
+
+<ul>
+<li><a href="https://hypercritical.fireside.fm/49">Hypercritical #49: Pinching the Harmonica</a></li>
+<li><a href="https://atp.fm/96">ATP #96: The Windows of Siracusa County</a></li>
+<li><a href="https://www.relay.fm/rd/102">Reconcilable Differences: Preparing the Way</a></li>
+</ul></li>
+<li>John&#8217;s headless Mac Studio 😢
+
+<ul>
+<li><a href="https://www.etsy.com/listing/1201612153/apple-mac-studio-under-desk-mount-with">Mac Studio Under-Desk Mount</a></li>
+</ul></li>
+<li>John is <a href="https://www.relay.fm/rd/102">preparing the way</a> for a new AV setup (‼️)
+
+<ul>
+<li><a href="https://amzn.to/3LoMjGK">TV Stand</a></li>
+<li><a href="https://amzn.to/3gIUeAB">Receiver (Pioneer VSX-LX305)</a></li>
+<li><a href="https://amzn.to/3Bjzid0">Blu-Ray (Panasonic DP-UD820-K)</a>
+
+<ul>
+<li><a href="https://www.avsforum.com/threads/official-panasonic-dp-ub820-824-owners-thread-no-price-talk.2990966/page-564#post-61404433">Surgery</a> results</li>
+</ul></li>
+<li><a href="https://evedevices.com/pages/spectrum">Eve Spectrum</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3JSEB6y">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://newrelic.com/atp">New Relic</a>: Monitor, debug, and improve your entire stack.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>The surprisingly difficult processes of replacing passwords, phone batteries, and TVs.</itunes:subtitle></item><item><guid isPermaLink="false">nla2u05utgzwekrk</guid><pubDate>Thu, 19 May 2022 15:02:16 +0000</pubDate><title>483: The Faceless Knob</title><itunes:title>The Faceless Knob</itunes:title><itunes:episode>483</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp483.mp3" length="119164502" type="audio/mpeg"/><link>https://atp.fm/483</link><description><![CDATA[<ul>
+<li>Pre-show: Two is one, one is none.
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B09SVN6J35/?tag=marcoorg-20">Zoom F3</a></li>
+<li><a href="https://www.sounddevices.com/product/usbpre-2/">USBPre2</a></li>
+<li><a href="https://www.sounddevices.com/product/mixpre-3-ii/">MixPre-3</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Cleaning apps and &#8220;launch services&#8221;
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Launchd"><code>launchd</code></a></li>
+<li><a href="https://www.soma-zone.com/LaunchControl/">Launch Control</a></li>
+</ul></li>
+<li>A hint more on Casey&#8217;s frivoLiss ethernet project
+
+<ul>
+<li>Many recommendations for <a href="https://www.monoprice.com/product?p_id=29437">Monoprice slim 6A patch cables</a></li>
+<li>Jonathan Litt reminds us about <a href="https://www.oneprojectcloser.com/fire-stops-fire-blocking-in-studs/">fire stops</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Power_over_Ethernet">PoE</a> &#8220;medusa&#8221; cables exist, for <a href="https://amzn.to/3NlcJcG">USB-C</a> and <a href="https://amzn.to/3wn9VGh">barrel plugs</a></li>
+</ul></li>
+<li>Why bother with ethernet at all? (via Andrew Larson)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Extremely_high_frequency">Millimeter-wave</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IPv6">IPv6</a></li>
+<li><a href="https://pi-hole.net/">Pi-Hole</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Network_address_translation">NAT</a></li>
+</ul></li>
+<li>On USB-C KVMs and the Studio Display (via Alex)
+
+<ul>
+<li><a href="https://www.belkin.com/us/support-article?articleNum=316883">Magic cable</a></li>
+<li><a href="https://www.youtube.com/watch?t=744&amp;v=VM3XJstuWvE&amp;feature=youtu.be">Demonstration (YouTube timestamp link)</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2022/5/17/23107246/google-g-suite-free-no-cost-option-custom-domain">GSuite is now free for &#8220;personal use&#8221;</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/fastmail">Casey&#8217;s Fastmail referral link</a></li>
+</ul></li>
+</ul></li>
+<li>Apple Fitness+ &#8220;Studio Tour&#8221;
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=EiTJBa8RpWI">iJustine</a></li>
+<li><a href="https://www.youtube.com/watch?v=8QKpyiIYRUE">Etalk</a></li>
+<li><a href="https://www.youtube.com/watch?v=JcArINYd4Lk">KCAU-TV</a></li>
+<li><a href="https://hypercritical.co/2013/12/22/fill-your-tv">John on &#8220;filling your TV&#8221;</a></li>
+</ul></li>
+<li><a href="https://www.youtube.com/snazzy">Quinn Nelson</a>&#8217;s <a href="https://rivian.com/r1t">Rivian</a> and bad controls
+
+<ul>
+<li><a href="https://www.instagram.com/p/CdeE96OodMB/">Quinn&#8217;s Instagram video</a> (seek to 1h10m47s)</li>
+<li><a href="https://imgur.com/gallery/xq65m6l">2001 Buick</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2022/05/apple-previews-innovative-accessibility-features/">Apple Pre-Announces Accessibility Enhancements</a>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/05/apples-accessibility-feature-preview-gets-gaad-going/">Shelly Brisbin&#8217;s take</a></li>
+<li><a href="https://www.textsniper.app/">TextSniper</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Desktop_Bus">ADB</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Is there any bespoke music app for listening to concerts? (via Bill Steinbach)
+
+<ul>
+<li><a href="https://www.livephish.com/">Live Phish</a></li>
+<li><a href="https://barrowclift.me/post/fourth-annual-ios-music-player-showcase">Barrowclift&#8217;s iOS Music Player Showcase</a></li>
+</ul></li>
+<li>What Safari extensions are we running and recommend? (via Robert Bateau)
+
+<ul>
+<li>John
+
+<ul>
+<li><a href="https://hypercritical.co/safari-reload-button/">Safari Reload Button</a></li>
+<li><a href="http://safarikeywordsearch.aurlien.net">Safari Keyword Search</a></li>
+<li><a href="http://instapaper.com">Instapaper</a></li>
+<li><a href="https://software.charliemonroe.net/downie/">Downie</a></li>
+<li><a href="https://oblador.github.io/hush/">Hush</a></li>
+<li><a href="https://blog.iconfactory.com/2019/08/twitterrific-5-4-and-6-0-5/">Fixerrific is bundled with Twitterrific for macOS</a></li>
+<li><a href="https://netnewswire.com">NetNewsWire</a></li>
+</ul></li>
+<li>Marco
+
+<ul>
+<li><a href="https://1password.com/">1Password</a></li>
+<li><a href="https://1blocker.com/">1Blocker</a></li>
+</ul></li>
+<li>Casey
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/noir-dark-mode-for-safari/id1581140954">Noir</a> (App Store link)</li>
+<li><a href="https://underpassapp.com/StopTheMadness/">StopTheMadness</a></li>
+<li><a href="https://www.super-agent.com">Super Agent</a></li>
+<li><a href="https://apps.apple.com/us/app/vinegar-tube-cleaner/id1591303229">Vinegar</a> (App Store link)</li>
+</ul></li>
+</ul></li>
+<li>How does one remember <em>how</em> one enrolled in a service? (via <a href="https://twitter.com/_brianhamilton/status/1523715834170036225">Brian Hamilton</a>)
+
+<ul>
+<li><a href="https://twitter.com/FriendlyAshley/status/1523719789935423489">Ashley Bischoff&#8217;s idea</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Casey&#8217;s Ethernet adventure continues</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Get $30 off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Why run copper wires through your walls when you can run fiber?</itunes:subtitle></item><item><guid isPermaLink="false">m0xtadmzczbiedjh</guid><pubDate>Thu, 12 May 2022 14:08:44 +0000</pubDate><title>482: I Should Probably Get Reading Glasses</title><itunes:title>I Should Probably Get Reading Glasses</itunes:title><itunes:episode>482</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp482.mp3" length="124764058" type="audio/mpeg"/><link>https://atp.fm/482</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>A little more on <a href="https://ciechanow.ski/">Bartosz Ciechanowski&#8217;s explainers</a>
+
+<ul>
+<li><a href="https://ciechanow.ski/mechanical-watch/">Mechanical Watch Explainer</a></li>
+<li><a href="https://ciechanow.ski/gps/">GPS</a></li>
+<li><a href="https://ciechanow.ski/naval-architecture/">Naval Architecture</a></li>
+<li><a href="https://www.patreon.com/ciechanowski">Patreon</a></li>
+</ul></li>
+<li><a href="https://daringfireball.net/linked/2022/05/09/apple-dev-center-tantau-14">Apple&#8217;s New Developer Center</a>
+
+<ul>
+<li><a href="https://parkerortolani.substack.com/p/apples-new-developer-center-looks?s=r">More from Parker Ortolani</a></li>
+</ul></li>
+<li>John&#8217;s multi-factor authentication college account update
+
+<ul>
+<li><em>An aside about password managers</em></li>
+<li><a href="https://en.wikipedia.org/wiki/Protocol_Buffers">Protobuf</a></li>
+</ul></li>
+<li>John&#8217;s <a href="https://amzn.to/391IA34">Microsoft Precision Mouse</a></li>
+<li>Casey&#8217;s Ethernet Project
+
+<ul>
+<li><a href="https://wbnetworks.com.au/blog/understanding-the-difference-between-cat6a-cable-types">Cat 6A cable types</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://play.date/">Playdate</a> impressions
+
+<ul>
+<li><a href="https://podcast.panic.com">Panic Podcast</a></li>
+<li><a href="https://podcast.play.date">Playdate Podcast</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Altered_Beast">Altered Beast</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Super_Mario_64">Super Mario 64</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Total_Annihilation">Total Annihilation</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Scorched_Earth_(video_game)">Scorched Earth</a></li>
+<li><a href="https://news.play.date/news/first-games/">Non-Season Playdate Games</a></li>
+</ul></li>
+<li>The iPod Touch is dead, but <a href="https://www.apple.com/newsroom/2022/05/the-music-lives-on/">the music lives on</a></li>
+<li>&#8230;it meets the <a href="https://support.apple.com/en-us/HT208312">same fate as macOS Server</a></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Will an Apple Silicon Mac Pro have <a href="https://en.wikipedia.org/wiki/ECC_memory">ECC</a> RAM? (via <a href="https://twitter.com/rboyle/status/1513786673276010496">Robert Boyle</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/High_Bandwidth_Memory#HBM-PIM">HBM4</a></li>
+</ul></li>
+<li>Are software clean-up apps snake oil on macOS? (via Jon Sulek)
+
+<ul>
+<li><a href="https://www.charlessoft.com/">Pacifist</a></li>
+</ul></li>
+<li>Does choice of programming language matter for server-side crawling? (via Abel Demoz)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Go_(programming_language)">Go</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rust_(programming_language)">Rust</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Marco&#8217;s capture system
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B07XHP2D12/?tag=marcoorg-20">Sonnet Echo Express SEIIIe Enclosure</a></li>
+<li><a href="https://www.amazon.com/dp/B0178DV064/?tag=marcoorg-20">Magewell Pro HDMI Quad Capture Card</a></li>
+<li><a href="https://www.amazon.com/dp/B07LG5TS6H/?tag=marcoorg-20">Sonnet Allegro 4-port USB-A card</a></li>
+<li><a href="https://www.amazon.com/dp/B07L8KCQPT/?tag=marcoorg-20">Sonnet Allegro 4-port USB-C card</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://l.kolide.co/3JSEB6y">Kolide</a>: Endpoint security for teams that Slack. Try Kolide for free today with no credit card required.</li>
+<li><a href="https://mackweldon.com/atppod">Mack Weldon</a>: Stock up on the warm-weather essentials you’ve been missing. Get 20% off your first order with code <strong>atppod</strong>.</li>
+<li><a href="https://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Playdate first impressions, home-Ethernet-wiring updates, and fond farewells to two products that — let's be honest — most of us had already forgotten.</itunes:subtitle></item><item><guid isPermaLink="false">nvzfyzfnr1fkquxq</guid><pubDate>Fri, 06 May 2022 14:11:46 +0000</pubDate><title>481: Accidentally Made It Too Good</title><itunes:title>Accidentally Made It Too Good</itunes:title><itunes:episode>481</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:28</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp481.mp3" length="126670572" type="audio/mpeg"/><link>https://atp.fm/481</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Follow-out: <a href="https://www.relay.fm/clockwise/449">Clockwise #449: It&#8217;s Still Working, I&#8217;m So Sad</a></li>
+<li>T-Shirt Results (THANK YOU!)</li>
+<li>Marco&#8217;s tech woes
+
+<ul>
+<li><a href="https://www.bhphotovideo.com/c/product/734341-REG/Sound_Devices_USBPRE_2_USBPre_2_Microphone.html">USBPre 2</a></li>
+<li><a href="https://www.amazon.com/dp/B09SVN6J35/?tag=marcoorg-20">Zoom F3</a></li>
+</ul></li>
+<li>On Double-Clicking the lock button for Wallet
+
+<ul>
+<li>Open the wallet app → double-click the side button (via <a href="https://twitter.com/trevormkay/status/1519820818548916224">Trevor Kay</a>)
+
+<ul>
+<li><a href="https://twitter.com/Drewbydrew_/status/1519874263653785605">Andrew</a> notes this still works even if double-click is disabled globally</li>
+</ul></li>
+<li>Control Center</li>
+<li>Just hold the phone next to the terminal</li>
+</ul></li>
+<li><a href="https://developer.apple.com/wwdc22/special-day/">WWDC 2022 Apple Park Special Event</a>
+
+<ul>
+<li><a href="https://www.macrumors.com/2021/05/17/apple-park-developer-center/">MacRumors on the Developer Center</a></li>
+</ul></li>
+<li><a href="https://www.macworld.com/article/697307/webcam-camera-studio-display-mac-interface-tools.html">Jason Snell on Apple Studio Display settings</a></li>
+<li><a href="https://ciechanow.ski/mechanical-watch/">Mechanical Watch How-To</a></li>
+<li>On SEC violations and Elon Musk</li>
+</ul></li>
+<li>Apple TV+ Quickies
+
+<ul>
+<li><a href="https://daringfireball.net/2022/04/apple_nfl_sunday_ticket">Sunday Ticket on Apple TV+?</a>
+
+<ul>
+<li><a href="https://www.justwatch.com">JustWatch</a></li>
+</ul></li>
+<li><a href="https://www.registercitizen.com/entertainment/article/Danbury-Trashers-movie-David-Harbour-17127603.php">Apple is making a movie about the Danbury Trashers‽</a>
+
+<ul>
+<li><a href="https://www.netflix.com/title/81026438">Untold: Crime and Penalties</a></li>
+<li><a href="https://www.relay.fm/analogue/193">Analog #193: Milestones are Being Hit</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2022/04/28/iphone-14-pro-display-panels-leaked/">iPhone 14 Pro Rumored Designs</a></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Is Casey still using Combine? (via <a href="https://twitter.com/andre_videla/status/1512214197857308675">André Videla</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Functional_reactive_programming">Functional reactive programming</a></li>
+<li><a href="https://www.caseyliss.com/2019/7/17/rxswift-and-combine-posts">Casey&#8217;s RxSwift &amp; Combine Posts</a></li>
+<li><a href="https://www.swift.org/blog/swift-async-algorithms/"><code>AsyncAlgorithms</code></a></li>
+</ul></li>
+<li>What is Marco&#8217;s Overcast redesign process? (via Steven Garrity)</li>
+<li>Where is the Mac&#8217;s sound mixer? (via Carl Freyer)
+
+<ul>
+<li><a href="https://rogueamoeba.com/soundsource/">Rogue Amoeba&#8217;s SoundSource</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Casey needs a project
+
+<ul>
+<li><a href="http://4.bp.blogspot.com/-b981cF2M7oc/V5uawouwM7I/AAAAAAAAADY/jIcZ_b6erxsQ7Gm3KAGJWVZ3kZ0M0vxmwCK4B/s1600/Cat5e%2Bcat6%2Bca6a%2Bcat7%2BPremium%2BWires.jpg">Breakdown of Cat 6/6a differences</a></li>
+<li><a href="https://www.youtube.com/watch?v=vNmSp4QLcxs">Quinn Nelson&#8217;s Video</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://l.kolide.co/3JSEB6y">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>John vs. technology, Marco vs. technology, and Casey vs. his walls.</itunes:subtitle></item><item><guid isPermaLink="false">lvhfaxfxv3lyeug3</guid><pubDate>Thu, 28 Apr 2022 14:30:37 +0000</pubDate><title>480: Three Wise Admins</title><itunes:title>Three Wise Admins</itunes:title><itunes:episode>480</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:41:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp480.mp3" length="155801458" type="audio/mpeg"/><link>https://atp.fm/480</link><description><![CDATA[<p>The <a href="https://atp.fm/store">ATP Store</a> is <strong>live</strong> until 30 April at 8PM New York time. Order now, or Casey will haunt your dreams! 👻</p>
+
+<ul>
+<li><a href="https://hypercritical.co/frame-game/">Frame Game</a>
+
+<ul>
+<li><a href="https://hypercritical.co/2022/04/25/frame-game">Explainer post</a></li>
+<li><a href="https://hypercritical.co/frame-game/#47">Fastest solve: 12 seconds</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Apple Studio Display camera update
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/04/hands-on-with-apples-studio-display-firmware-update/">Snell&#8217;s coverage</a></li>
+<li><a href="https://www.youtube.com/watch?v=YNI23ffEkzc">Snell&#8217;s video</a></li>
+<li><a href="https://twitter.com/jamesthomson/status/1519037913446682627">Comparison with iMac Pro by James Thomson</a></li>
+</ul></li>
+<li>Sonos Roam power button (via <a href="https://twitter.com/brilliantthingy/status/1516558687581933570">Brilliant Things</a>)</li>
+<li>What is up with iPhone lock buttons these days, anyway? (via Patrick Niemeyer)</li>
+<li>Apple&#8217;s Self-Service Repair <a href="https://www.selfservicerepair.com/home">site</a> is <a href="https://www.apple.com/newsroom/2022/04/apples-self-service-repair-now-available/">now up</a>
+
+<ul>
+<li><a href="https://512pixels.net/2022/04/apple-launches-self-service-repair-store/">Stephen&#8217;s write-up</a></li>
+<li><a href="https://support.apple.com/manuals/repair-manual">Repair manuals</a></li>
+</ul></li>
+<li><span style="text-decoration: line-through">John Gruber</span> ATP had wondered about &#8220;civilians&#8221; inside the Apple Park ring
+
+<ul>
+<li><a href="https://twitter.com/benedictevans/status/1171505129121439751">Benedict Evans&#8217; fence observation</a></li>
+</ul></li>
+<li><a href="https://junkee.com/thom-yorke-hates-creep/301748">Thom Yorke hates <em>Creep</em></a> (via Spencer Wohlers)</li>
+<li>Update on Marco&#8217;s <a href="https://www.youtube.com/channel/UCiC2phWg0rPLYn1GEU37TlA/videos">game-streaming</a> setup
+
+<ul>
+<li><a href="https://www.blackmagicdesign.com/products/atemmini">Blackmagic ATEM Mini Pro</a></li>
+<li><a href="https://www.blackmagicdesign.com/products/decklink/techspecs/W-DLK-36">Blackmagic DeckLink Quad HDMI Recorder</a></li>
+<li><a href="https://www.amazon.com/dp/B07XHP2D12/?tag=marcoorg-20">Sonnet Echo Express SEIIIe Thunderbolt-PCIe enclosure</a></li>
+<li><a href="https://www.amazon.com/dp/B07L8KCQPT/?tag=marcoorg-20">Sonnet Allegro USB-C 4-port PCIe card</a></li>
+<li><a href="https://www.amazon.com/dp/B07LG5TS6H/?tag=marcoorg-20">Sonnet Allegro USB-A 4-port PCIe card</a></li>
+<li><a href="https://www.amazon.com/dp/B0178DV064/?tag=marcoorg-20">Magewell Pro Quad HDMI Capture</a></li>
+<li><a href="https://www.amazon.com/dp/B08YRNSZGR/?tag=marcoorg-20">Elgato Cam Link Pro</a></li>
+</ul></li>
+</ul></li>
+<li>Casey has finally moved his email to <a href="https://ref.fm/u28183245">Fastmail</a>
+
+<ul>
+<li><a href="https://ref.fm/u28183245">Referral link</a></li>
+</ul></li>
+<li>John added a <a href="https://store.google.com/us/product/nest_cam_battery?pli=1&amp;hl=en-US">security camera</a>
+
+<ul>
+<li><a href="https://amzn.to/3kAiBmd">Physical security hack</a></li>
+<li><a href="https://www.logitech.com/en-us/products/cameras/circle-view-security-camera.961-000489.html">Logitech Circle View</a></li>
+</ul></li>
+<li>Twitter <a href="https://www.prnewswire.com/news-releases/elon-musk-to-acquire-twitter-301532245.html">accepts Elon Musk&#8217;s buyout offer</a>
+
+<ul>
+<li><a href="https://stratechery.com/2022/elon-musk-buys-twitter-musks-financing-the-status-quo-and-future-variance/">Stratechery: Elon Musk Buys Twitter, Musk&#8217;s Financing, The Status Quo and Future Variance</a></li>
+<li><a href="https://stratechery.com/2022/back-to-the-future-of-twitter/">Stratechery: Back to the Future of Twitter</a></li>
+<li><a href="https://www.theverge.com/2022/4/25/23028323/elon-musk-twitter-offer-buyout-hostile-takeover-ownership">The Verge&#8217;s coverage</a></li>
+<li><a href="https://furbo.org/2013/06/28/the-origin-of-tweet/">The Origin of &#8220;Tweet&#8221;</a></li>
+</ul></li>
+<li>Post-show: We can&#8217;t help but have more Twitter/Elon thoughts
+
+<ul>
+<li><a href="https://twitter.com/rabble/status/1514794177590022162">Thread about Bill Gross buying Twitter clients, and Twitter&#8217;s reaction</a></li>
+<li><a href="https://forums.somethingawful.com">Something Awful Forums</a></li>
+<li><a href="https://nymag.com/intelligencer/2022/04/kara-swisher-on-elon-musk-you-cant-pin-him-down.html">Kara Swisher on Elon Musk</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://remote.com/atp">Remote</a>: Global HR solutions for distributed teams. Use code <strong>ATP</strong> for 50% off for your first employee for 3 months.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Get $30 off your first order.</li>
+<li><a href="https://www.sanity.io/atp">Sanity</a>: Explore fresh perspectives on content and digital experience. Learn more about Sanity and the Structured Content 2022 Conference.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>The Studio Display camera, Thunderbolt PCIe enclosures, security cameras, migrating from Gmail to Fastmail… and yes, Twitter.</itunes:subtitle></item><item><guid isPermaLink="false">a3czq21gzu5wwex3</guid><pubDate>Mon, 18 Apr 2022 14:51:48 +0000</pubDate><title>479: Never Mind, I'm Out</title><itunes:title>Never Mind, I'm Out</itunes:title><itunes:episode>479</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp479.mp3" length="120607844" type="audio/mpeg"/><link>https://atp.fm/479</link><description><![CDATA[<p>The <a href="https://atp.fm/store">ATP Store</a> is <strong>live</strong> until 30 April at 8PM New York time. Order now, or Casey will haunt your dreams! 👻</p>
+
+<ul>
+<li>Pre-show: Marco has HomePod problems
+
+<ul>
+<li><code>Pop Hits: {year}</code> (1955–2021)</li>
+<li><code>Rock Hits: {year}</code> (1965–2021)</li>
+<li><a href="https://songwhip.com/otis-redding/hard-to-handle">Hard to Handle by Otis Redding</a></li>
+<li><a href="https://songwhip.com/the-black-crowes/hard-to-handle">Hard to Handle by The Black Crowes</a></li>
+<li><a href="https://music.apple.com/us/album/creep/1097862062?i=1097862231">Creep by Radiohead</a></li>
+<li><a href="https://www.apple.com/ios/home/accessories/#section-speaker">AirPlay 2-Enabled Speakers</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Hilariously, a third consecutive week of <a href="https://www.instagram.com/p/CbLfn1BPqDV/">news</a> about <a href="https://www.originalgravitypub.com/">Original Gravity</a>, this time via Jared Kole</li>
+<li>Which ethernet controller does the <a href="https://www.caldigit.com/thunderbolt-station-4/">CalDigit TS4</a> use?
+
+<ul>
+<li>Intel <a href="https://www.intel.com/content/www/us/en/products/sku/211808/intel-ethernet-network-adapter-i225t1/specifications.html">I225</a> PCIe</li>
+<li><a href="https://www.caldigit.com/ethernet-port-on-the-ts4-or-ts3-plus-does-not-work-properly/">Ethernet fix</a></li>
+<li><a href="https://www.caldigit.com/thunderbolt-dock-sleep-mode-related-issues-under-macos-12/">Sleep fix</a></li>
+</ul></li>
+<li>Ecobee &amp; HomeKit cooperation (via Eric Powell)</li>
+<li>Ecobee <a href="https://support.ecobee.com/s/articles/My-thermostat-has-only-two-wires-Am-I-compatible-with-ecobee?deviceId=Ttt1IqY7ixAfo7ctOfvoV7">AC adaptor instructions</a>
+
+<ul>
+<li><code>Step 3</code> → <code>Scenario A</code> → <code>Alternative solution: 24VAC plug-in transformer</code></li>
+</ul></li>
+<li>Some thoughts about 🇪🇺 thermostats via Cameron Wood</li>
+<li>USB-C KVM dev boards <a href="https://mcci.com/usb/dev-tools/model-3141/">do exist</a>, as found by <a href="https://twitter.com/vvedge/status/1514092476906319882">Victor Leung</a></li>
+<li><a href="https://www.youtube.com/watch?v=8IHqntr8FjY&amp;t=163s">Mac Studios have different power supply&#8230; suppliers</a> (via <a href="https://twitter.com/joshprismon/status/1513634013050642434">Joshua Prismon</a>)</li>
+</ul></li>
+<li><a href="https://www.hyundaiusa.com/us/en/vehicles/ioniq-5">Ioniq 5</a> &amp; <a href="https://www.kia.com/us/en/ev6">Kia EV6</a> &amp; <a href="https://www.lucidmotors.com/air/">Lucid Air</a>
+
+<ul>
+<li><a href="https://www.caranddriver.com/news/a39652430/2023-lexus-rz-yoke-steering-wheel/">Do better, Lexus.</a></li>
+</ul></li>
+<li><a href="https://barefeats.com/robert-arthur-morgan-obituary-barefeats-2022.html">RIP, Rob-ART Morgan</a></li>
+<li>What <em>is</em> Elon Musk, anyway?
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Unsafe_at_Any_Speed"><em>Unsafe at Any Speed</em></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chevrolet_Corvair">Chevrolet Corvair</a></li>
+</ul></li>
+<li>Elon Musk and Twitter
+
+<ul>
+<li><strong>NOTE: We recorded this episode right before his <strike>demand</strike> &#8220;offer&#8221; to buy the entire company.</strong></li>
+<li><a href="https://www.theverge.com/2022/4/4/23009622/elon-musk-twitter-shares-free-speech">Elon buys 9.2% of Twitter</a></li>
+<li><a href="https://www.washingtonpost.com/technology/2022/04/06/musk-twitter-sec/">Elon delays filing with the SEC and &#8220;made&#8221; $156 million</a></li>
+<li><a href="https://twitter.com/paraga/status/1511320953598357505">Parag Agrawal announces Elon joins the board</a></li>
+<li><a href="https://www.theverge.com/2022/4/5/23011558/twitter-elon-musk-board-members-special-exceptions-moderation-rules">Twitter says Elon won&#8217;t get special treatment</a>
+
+<ul>
+<li><a href="https://twitter.com/reckless/status/1511387364563767298">Nilay Patel&#8217;s take</a></li>
+</ul></li>
+<li><a href="https://twitter.com/paraga/status/1513354622466867201">Parag Agrawal announces Elon <em>won&#8217;t</em> join the board</a></li>
+<li><a href="https://www.wsj.com/articles/elon-musk-is-sued-for-delaying-disclosure-of-twitter-stake-11649858973">Elon is sued for delayed disclosure</a></li>
+<li><a href="https://www.newyorker.com/magazine/2018/08/27/paul-singer-doomsday-investor">Paul Singer, Doomsday Investor</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>As the M1 is based on the <a href="https://en.wikipedia.org/wiki/Apple_A14">A14</a>, might the M2 skip the A15 and instead be based on the A16? (via <a href="https://twitter.com/dkelkhoff/status/1510409713179111428">Darin Kelkhoff</a>)</li>
+<li>How does Marco stream for <a href="https://www.twitch.tv/teamarment">Team Arment</a>? (via <a href="https://twitter.com/UncleAppleAdam/status/1509166842992115721">Uncle Apple</a>)
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B07XB6VNLJ/?tag=marcoorg-20">Elgato HD60&#160;S+</a></li>
+<li><a href="https://www.amazon.com/dp/B085TFF7M1/?tag=marcoorg-20">Logitech whatever $50ish webcam</a></li>
+<li><a href="https://www.caldigit.com/ts3-plus/">CalDigit TS3+</a></li>
+<li><a href="https://obsproject.com">OBS</a></li>
+<li><a href="https://www.amazon.com/dp/B07YX5NKK2/?tag=marcoorg-20">Lenovo ThinkVision M14 USB-C bus-powered monitor</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Network_Device_Interface">NDI</a></li>
+</ul></li>
+<li>Could/would Apple use OLED in laptops and iMacs? (via <a href="https://twitter.com/simonejsing/status/1506279056836378648">Simon Ejsing</a>)</li>
+<li>If the Studio Display was released concurrently with the Pro Display XDR, would John &amp; Marco still get the XDR? (via <a href="https://twitter.com/jonyergatian/status/1513938687532228610">Jon Yergatian</a>)</li>
+</ul></li>
+<li>Post-show: John&#8217;s <a href="https://www.sonos.com/en-us/shop/roam">Sonos Roam</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://www.sanity.io/atp">Sanity</a>: Explore fresh perspectives on content and digital experience. Learn more about Sanity and the Structured Content 2022 Conference.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>We held out as long as we could, but eventually, we had to talk about him.</itunes:subtitle></item><item><guid isPermaLink="false">btrxew1atg5qlths</guid><pubDate>Tue, 12 Apr 2022 14:49:35 +0000</pubDate><title>478: No Bum Cores</title><itunes:title>No Bum Cores</itunes:title><itunes:episode>478</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:06:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp478.mp3" length="121734338" type="audio/mpeg"/><link>https://atp.fm/478</link><description><![CDATA[<ul>
+<li>The <a href="https://atp.fm/store">ATP Store</a> is <strong>live</strong> until 30 April at 8 PM New York time. Order now, or Casey will haunt your dreams! 👻</li>
+<li>Pre-show: Marco has questionable media choices
+
+<ul>
+<li><a href="https://www.imdb.com/title/tt11280740/">Severance</a></li>
+<li><a href="https://www.imdb.com/title/tt10166622/">The Dropout</a></li>
+<li><a href="https://www.imdb.com/title/tt12005128/">WeCrashed</a></li>
+<li><a href="https://www.imdb.com/title/tt2575988/">Silicon Valley</a></li>
+<li><a href="https://www.imdb.com/title/tt0218817/">Antitrust</a></li>
+<li><a href="https://www.imdb.com/title/tt0168122/">Pirates of Silicon Valley</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Tragic <a href="https://www.originalgravitypub.com/">Original Gravity</a> news (via <a href="https://twitter.com/aribadgers/status/1513589423526453248">Ari Badgers</a>)
+
+<ul>
+<li><a href="https://www.goodkarmasj.com/">Good Karma</a></li>
+</ul></li>
+<li>The etymology of &#8220;decibel&#8221; (via Matt Rigby)</li>
+<li>Don&#8217;t forget the iPhone 12/13 mini (via Carl Rozas)</li>
+<li>An aside about <a href="https://www.houseofprimerib.net/">House of Prime Rib</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=luDH37vy23M">Anthony Bourdain&#8217;s experience</a> (RIP)</li>
+</ul></li>
+<li><a href="https://twitter.com/SnazzyQ/status/1510287960146554883">Quinn Nelson&#8217;s observation</a> about the Studio Display
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=Bw65SS3AveM">His &#8220;review&#8221; video</a></li>
+<li><a href="https://www.youtube.com/watch?v=_pdPq2eGrUs&amp;feature=youtu.be">iFixit teardown video</a></li>
+</ul></li>
+<li><a href="https://amzn.to/3uwF615">USB-C &#8220;KVM&#8221;</a> (via abcd)</li>
+<li><a href="https://overengineer.dev/blog/2021/04/25/usb-c-hub-madness.html">On the crummy Ethernet speeds in modern Macs</a>
+
+<ul>
+<li><a href="https://news.ycombinator.com/item?id=30914314">Hacker News post</a></li>
+<li><a href="https://www.caldigit.com/thunderbolt-station-4/">CalDigit TS4</a></li>
+</ul></li>
+<li>On using Canon EF lenses with mirrorless cameras</li>
+</ul></li>
+<li>Casey&#8217;s New Setup (yes, again. 🤫)</li>
+<li>John&#8217;s <a href="https://www.ecobee.com/en-us/smart-thermostats/smart-wifi-thermostat-with-voice-control/">new thermostat</a>
+
+<ul>
+<li><a href="http://www.taco-hvac.com/uploads/FileLibrary/SR504(102-084).pdf">Taco box</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://remote.com/atp">Remote</a>: Global HR solutions for distributed teams. Use code <strong>ATP</strong> for 50% off for your first employee for 3 months.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://mackweldon.com/atppod">Mack Weldon</a>: Radically-efficient wardrobing. Use code <strong>atppod</strong> for 20% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Marco discovers TV, Casey's setup changes again, and John installs a thermostat.</itunes:subtitle></item><item><guid isPermaLink="false">yxnxuf9fr043ythb</guid><pubDate>Wed, 06 Apr 2022 16:00:00 +0000</pubDate><title>477: In the Metal</title><itunes:title>In the Metal</itunes:title><itunes:episode>477</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp477.mp3" length="114857925" type="audio/mpeg"/><link>https://atp.fm/477</link><description><![CDATA[<ul>
+<li>Pre-show: Marco <a href="https://www.youtube.com/watch?v=jE-6n4dO95A">played himself</a></li>
+<li>Would there be a &#8220;Studio Display Max&#8221; within two years?
+
+<ul>
+<li><a href="https://everymac.com/monitors/apple/studio_cinema/specs/apple_cinema_display.html">22&#8221; Cinema Display</a></li>
+<li><a href="https://everymac.com/monitors/apple/studio_cinema/specs/apple_cinema_hd_display.html">23&#8221; Cinema Display</a></li>
+<li><a href="https://everymac.com/monitors/apple/studio_cinema/specs/apple-led-cinema-display-27-inch-specs.html">27&#8221; Cinema Display</a></li>
+<li><a href="https://everymac.com/monitors/apple/thunderbolt/specs/apple-thunderbolt-display-27-inch-specs.html">27&#8221; Thunderbolt Display</a></li>
+</ul></li>
+<li>Marco&#8217;s Studio Display impressions
+
+<ul>
+<li><a href="https://www.newertech.com/products/nushelf2010dual.php">NuShelf Dual Mount for Mac mini</a></li>
+</ul></li>
+<li>New Peripherals
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MMMR3LL/A/magic-keyboard-with-touch-id-and-numeric-keypad-for-mac-models-with-apple-silicon-us-english-black-keys">Black Keyboard</a></li>
+<li><a href="https://www.apple.com/shop/product/MMMP3AM/A/magic-trackpad-black-multi-touch-surface">Black Trackpad</a></li>
+<li><a href="https://www.apple.com/shop/product/MK293LL/A/magic-keyboard-with-touch-id-for-mac-models-with-apple-silicon-us-english">Squat TouchID Keyboard</a></li>
+<li><a href="https://www.lenovo.com/us/en/p/accessories-and-software/keyboards-and-mice/keyboards/4y41c33748">Lenovo Go Wireless Split Keyboard</a></li>
+<li><a href="https://support.apple.com/guide/security/magic-keyboard-with-touch-id-secf60513daa/web">Fingerprint security </a></li>
+<li><a href="https://512pixels.net/2022/03/apples-still-charing-more-for-black-products/">Stephen Hackett on Apple color mark-up</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://bjango.com/articles/macexternaldisplays2/">Marc Edwards from Bjango has a follow-up on Retina displays</a></li>
+<li>Some thoughts on acoustics from Sam Kusnetz
+
+<ul>
+<li><a href="https://tmbw.net/wiki/Lyrics:John_Lee_Supertaster">John Lee Supertaster</a></li>
+</ul></li>
+<li>Chris Gonyea <a href="https://forums.macrumors.com/threads/studio-display-usb-c-ethernet-adapter-performance-issues.2338556/">points out errors with some USB-C ↔ Ethernet adapters with the Studio Display</a></li>
+<li><a href="https://domlaut.com/icloud-custom-email-domains-should-be-better/">Issues with iCloud and custom domains</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail">DKIM</a> issues &amp; <a href="https://en.wikipedia.org/wiki/Sender_Policy_Framework">SPF</a> via Eli Lindsey</li>
+</ul></li>
+</ul></li>
+<li>Expectations for WWDC, the event
+
+<ul>
+<li><a href="https://www.originalgravitypub.com">Original Gravity Public House</a></li>
+</ul></li>
+<li>iPhone 14 Rumors
+
+<ul>
+<li><a href="https://www.macrumors.com/2022/02/27/alleged-iphone-14-pro-display-schematic/">Pill &amp; Hole Punch</a>
+
+<ul>
+<li><a href="https://www.macrumors.com/2022/01/12/iphone-14-pro-pill-shaped-plus-hole/">Previously in pill &amp; hole punch</a></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2022/03/28/iphone-14-enters-engineering-validation-stage-as-periscope-camera-reportedly-destined-for-iphone-15/">iPhone 14 is in EVT, perhaps without periscope camera?</a></li>
+<li><a href="https://www.youtube.com/watch?v=GzT1Jf7zUpU">MaxTech on the iPhone 14 camera rumors</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>If going from Canon dSLR → mirrorless, is it worth jumping to Sony? (via Elijah)</li>
+<li>Are fusion drives even worth it in 2022?
+
+<ul>
+<li><a href="https://ss64.com/osx/diskutil.html"><code>diskutil</code></a></li>
+</ul></li>
+<li>Is there any sort of <a href="https://en.wikipedia.org/wiki/KVM_switch">KVM</a>-like thing for Thunderbolt? (via Matt Chinander)</li>
+<li>Given <a href="http://www.asymco.com/2011/01/17/the-cook-doctrine/">The Cook Doctrine</a>, why is Apple bothering making their own cellular modems? (via Daniel Bergqvist)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_A4">Apple A4</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_A6">Apple A6</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Marco files a complaint about <a href="https://www.relay.fm/rd/179">RecDiffs</a></li>
+<li>Marco forgets an anniversary</li>
+<li>John&#8217;s sitrep</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>iPhone 14 rumors, Studio Display impressions and predictions, acoustic perception, and Casey's unique theory about California.</itunes:subtitle></item><item><guid isPermaLink="false">sxjrumtsotdtsdl6</guid><pubDate>Thu, 31 Mar 2022 15:06:02 +0000</pubDate><title>476: Plausibly Viable</title><itunes:title>Plausibly Viable</itunes:title><itunes:episode>476</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:20:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp476.mp3" length="134898797" type="audio/mpeg"/><link>https://atp.fm/476</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Resolution_independence#macOS">Resolution independence</a>
+
+<ul>
+<li><a href="https://arstechnica.com/gadgets/2005/04/macosx-10-4/20/#scalable-ui">10.4 Tiger</a></li>
+<li><a href="https://arstechnica.com/gadgets/2007/10/mac-os-x-10-5/9/#resolution-independence">10.5 Leopard</a></li>
+<li><a href="https://arstechnica.com/gadgets/2011/07/mac-os-x-10-7/14/#hi-dpi">10.7 Lion</a></li>
+<li><a href="https://m.komorkomania.pl/steve-jobs-retina-dd4f32f980e7fd,750,470,0,0.jpg">Steve Jobs&#8217;s Retina Diagram</a></li>
+<li><a href="https://www.youtube.com/watch?v=Hq8j5vsqCCo">Retina Display announcement</a></li>
+</ul></li>
+<li><a href="https://twitter.com/joelion/status/1504683944867872769">Joe Lion</a> explains why silicon wafers are round
+
+<ul>
+<li><a href="https://youtu.be/aWVywhzuHnQ&amp;t=115s">Video Explanation</a></li>
+</ul></li>
+<li>Jonathan Ragan-Kelley explains <a href="https://www.intel.com/content/www/us/en/silicon-innovations/6-pillars/emib.html">EMIB</a> and <a href="https://www.anandtech.com/show/16031/tsmcs-version-of-emib-lsi-3dfabric">LSI</a></li>
+<li>Regarding Mac Studio fan noise
+
+<ul>
+<li>The fans cool the power supply too notes <a href="https://twitter.com/philstollery/status/1506932493576032260">Phil Stollery</a></li>
+<li><a href="https://twitter.com/porter7851/status/1509207336841273350">Twitter thread from &#8220;OnlyMe&#8221;</a>
+
+<ul>
+<li><a href="https://twitter.com/porter7851/status/1509214726588358656">Graph</a></li>
+</ul></li>
+<li>Feedback from acoustician Andrew Wade</li>
+<li>Apple&#8217;s official noise ratings (via Renfred)
+
+<ul>
+<li>Mac Pro: <a href="https://support.apple.com/kb/SP797?locale=en_US">11dB</a></li>
+<li>Mac Studio: <a href="https://support.apple.com/kb/SP865?locale=en_US">15dB</a></li>
+<li>Macbook Air: <a href="https://support.apple.com/kb/SP825?locale=en_US">3dB</a></li>
+<li>MacBook Pro: <a href="https://support.apple.com/kb/SP858?locale=en_US">3dB</a></li>
+<li>iMac Pro: <a href="https://support.apple.com/kb/SP771?locale=en_US">13dB</a></li>
+<li>Mid-2015: <a href="https://support.apple.com/kb/sp719?locale=en_US">6dB</a></li>
+</ul></li>
+</ul></li>
+<li>Regarding Qualcomm patent <strike>shakedown</strike> <strike>racket</strike> licensing
+
+<ul>
+<li><a href="https://www.reuters.com/article/us-qualcomm-licensing/qualcomm-easing-licensing-terms-in-bid-to-strike-deals-idUSKBN1HX08K">Reuters article</a></li>
+<li><a href="https://www.cnet.com/tech/mobile/qualcomm-cuts-cap-for-phone-licensing-fees-hopes-to-settle-with-apple-this-year/">See also</a></li>
+<li><a href="https://cdn.ca9.uscourts.gov/datastore/opinions/2020/08/11/19-16122.pdf">Court case</a></li>
+</ul></li>
+<li>Discourse and Open Source (via <a href="https://blog.codinghorror.com/">Jeff Atwood</a>)
+
+<ul>
+<li>John on patents
+
+<ul>
+<li><a href="https://hypercritical.fireside.fm/67">Hypercritical #67: A Pill That Helps with Whatever</a></li>
+<li><a href="https://hypercritical.fireside.fm/68">Hypercritical #68: Patent Hands</a></li>
+<li><a href="https://hypercritical.fireside.fm/69">Hypercritical #69: Sport of Kings</a></li>
+</ul></li>
+<li><a href="https://blog.discourse.org/2018/11/free-hosting-for-open-source-v2/">Discourse free hosting programs</a></li>
+</ul></li>
+<li><a href="https://words.filippo.io/pay-maintainers/">How to Pay Professional Maintainers</a></li>
+<li><a href="https://twitter.com/bantg/status/1504213698658938881">Software warfare in <code>node-ipc</code></a>
+
+<ul>
+<li><a href="https://github.com/RIAEvangelist/node-ipc/issues/233">Github issue</a></li>
+<li><a href="https://gist.github.com/MidSpike/f7ae3457420af78a54b38a31cc0c809c">Description/Discussion</a></li>
+<li><a href="https://mjtsai.com/blog/2022/03/21/npm-packages-sabotaged/">Summary from Michael Tsai</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://marco.org/2022/03/25/overcast-redesign-2022">🎉 New Overcast Update 🎉</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Do we have a preferred file naming scheme? Is it <code>20210329_Proj3_SitePlan</code>? (via <a href="https://twitter.com/kaansg1/status/1376467942892830724">Unforgettable Luncheon</a>)</li>
+<li>Why are Time Machine network backups so slow? (via <a href="https://twitter.com/carsonabrown/status/1482921009330245638">Carson Brown</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Server_Message_Block">SMB</a></li>
+<li><a href="https://eclecticlight.co/2022/02/28/does-removing-i-o-throttling-make-backups-faster/">Does removing I/O throttling make backups faster?</a></li>
+<li><a href="https://eclecticlight.co/2021/12/21/is-backing-up-to-networked-storage-improving/">Is backing up to networked storage improving?</a></li>
+</ul></li>
+<li>Will Apple ever make their own display panel? (via &#8220;C&#8221;)</li>
+</ul></li>
+<li>John had something he wanted to discuss.
+
+<ul>
+<li><a href="https://hypercritical.co/2022/03/30/independence-day">John&#8217;s Blog Post</a></li>
+<li><a href="https://www.relay.fm/rd/179">Reconcilable Differences #179</a>
+
+<ul>
+<li><a href="https://overcast.fm/+E5IM4zUTs/50:47">Timestamp link to the discussion at 50:47</a></li>
+</ul></li>
+<li><a href="https://santa.dev/">Santa</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://remote.com/atp">Remote</a>: Global HR solutions for distributed teams.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Astonishingly easy backups for your data. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Cracked pixels, acousticiology, the Overcast redesign, and a big surprise.</itunes:subtitle></item><item><guid isPermaLink="false">v21mugvdyvl0qtvu</guid><pubDate>Thu, 24 Mar 2022 14:38:21 +0000</pubDate><title>475: Shove It Out the Back</title><itunes:title>Shove It Out the Back</itunes:title><itunes:episode>475</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp475.mp3" length="116155151" type="audio/mpeg"/><link>https://atp.fm/475</link><description><![CDATA[<ul>
+<li>Pre-show: We&#8217;ve got 99 problems and Apple Music is&#8230; most of them.</li>
+<li>On the Mac Studio&#8217;s extra SSD slot
+
+<ul>
+<li><a href="https://512pixels.net/2022/03/on-the-mac-studios-extra-ssd-slots/">512 Pixels</a></li>
+<li><a href="https://arstechnica.com/gadgets/2022/03/explaining-the-mac-studios-removable-ssds-and-why-you-cant-just-swap-them-out/">Ars Technica</a></li>
+<li><a href="https://twitter.com/marcan42/status/1506033231069855747">Hector Martin</a>
+
+<ul>
+<li><a href="https://asahilinux.org/">Asahi Linux</a></li>
+</ul></li>
+</ul></li>
+<li>John&#8217;s heart shatters into a million pieces<br />
+(Mac Studio cooling and 😱 fan noise 😱)
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/03/mac-studio-review-something-new/">Jason Snell&#8217;s review</a></li>
+<li><a href="https://www.youtube.com/watch?v=IY0gRMpT4AY&amp;feature=youtu.be">Max Tech&#8217;s Teardown</a></li>
+<li><a href="https://www.youtube.com/watch?v=uI3iJFPQca0">Max Tech&#8217;s Thermal Throttling</a></li>
+<li><a href="https://www.tunabellysoftware.com/tgpro/">TG Pro</a></li>
+<li><a href="https://twitter.com/SnazzyQ/status/1505971171459620865">Quinn Nelson&#8217;s thoughts</a></li>
+<li><a href="https://quietmac.netlify.app/">QuietMac</a></li>
+</ul></li>
+<li>Why 5K?
+
+<ul>
+<li><a href="https://www.caseyliss.com/2021/12/7/monitor-liss">Casey&#8217;s 2021 Retina Monitor Sitrep</a></li>
+<li><a href="https://www.caseyliss.com/2017/5/17/retina-monitors">Casey&#8217;s 2017 Retina Monitor Sitrep</a></li>
+</ul></li>
+<li>Apple Studio Display default resolution oddity?</li>
+<li>Studio Display foibles
+
+<ul>
+<li>Very short Thunderbolt monitor cable? (~3ft/1m?)</li>
+<li><a href="https://9to5mac.com/2022/03/21/apple-studio-displays-power-cable-is-removable-but-it-requires-a-special-tool/">&#8220;Non-removable&#8221; monitor cords</a></li>
+<li><a href="https://twitter.com/panzer/status/1506308263830196232">Panzer yanks out his cable</a></li>
+</ul></li>
+<li><a href="https://sixcolors.com/post/2022/03/apple-studio-display-review-a-welcome-return/">Snell&#8217;s Review</a>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/03/an-update-about-studio-display-rotation/">On Studio Display rotation</a></li>
+</ul></li>
+<li><a href="https://twitter.com/MartinNobel_/status/1505048541634637830">Studio Display Recovery Mode</a>
+
+<ul>
+<li><a href="https://support.apple.com/display/restore">Apple documentation</a></li>
+</ul></li>
+<li><a href="https://twitter.com/_inside/status/1506056774566223873">Gui Rambo&#8217;s Findings</a></li>
+<li><a href="https://twitter.com/JPYguy/status/1505188827853373448">Firmware Updates</a>
+
+<ul>
+<li><a href="https://twitter.com/jpantuso/status/1505781282353123331">As seen previously</a></li>
+</ul></li>
+<li><a href="https://twitter.com/shinypb/status/1505363719408168961">Studio Display&#8230; Ethernet?</a>
+
+<ul>
+<li><a href="https://panic.com/blog/the-lightning-digital-av-adapter-surprise/">The Lightning Digital AV Adapter Surprise</a></li>
+</ul></li>
+<li><a href="https://twitter.com/KhaosT/status/1505696683677532163">Studio Display has 64GB onboard storage</a>
+
+<ul>
+<li><a href="https://www.macrumors.com/2022/03/21/studio-display-contains-64gb-storage/">Only 2GB is in use</a></li>
+</ul></li>
+<li><a href="https://twitter.com/_inside/status/1506048538060406789">Running processes</a></li>
+<li><a href="https://twitter.com/reckless/status/1504444655219400705">The Verge on the camera bugs</a>
+
+<ul>
+<li><a href="https://twitter.com/JoannaStern/status/1504444393935286284">Joanna Stern&#8217;s sample photos</a></li>
+<li><a href="https://www.wsj.com/video/series/joanna-stern-personal-technology/apple-studio-display-vs-lg-ultrafine-5k-vs-others-finding-the-best-computer-monitor/0911E1C0-A5F7-49DD-9E66-E67C3FC9C978">Joanna Stern&#8217;s video review</a></li>
+</ul></li>
+<li>Latest Mac Pro rumors/theories
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=zZYi-Fv-qz8&amp;feature=youtu.be">Max Tech&#8217;s video</a></li>
+<li><a href="https://twitter.com/MajinBuOfficial/status/1503774292651261955">Majin Bu&#8217;s Diagram</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Lifuka">Lifuka</a></li>
+</ul></li>
+<li>Post-show: Revisiting Synology backup
+
+<ul>
+<li><a href="https://www.backblaze.com/b2/cloud-storage.html">Backblaze B2</a></li>
+<li><a href="https://www.synology.com/en-us/dsm/feature/cloud_sync">Synology Cloud Sync</a></li>
+<li><a href="https://www.synology.com/en-us/dsm/feature/hyper_backup">Synology Hyper Backup</a></li>
+<li><a href="https://www.arqbackup.com/">Arq</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://cloud.jumpcloud.com/atp-community">Jumpcloud</a>: Work smarter, not harder. JumpCloud — your new cloud directory.</li>
+<li><a href="https://www.lutron.com/atp">Lutron Caseta</a>: Smart dimmers and lighting control.</li>
+<li><a href="https://l.kolide.co/3GOH9QV">Kolide</a>: Endpoint security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Mac Studio upgrades and thermals, Studio Display engineering, and why we care so much about 5K.</itunes:subtitle></item><item><guid isPermaLink="false">by0tvmgzs3vqnevk</guid><pubDate>Thu, 17 Mar 2022 15:52:04 +0000</pubDate><title>474: That's Where the Magic Happens</title><itunes:title>That's Where the Magic Happens</itunes:title><itunes:episode>474</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp474.mp3" length="110830862" type="audio/mpeg"/><link>https://atp.fm/474</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>iPad Air <a href="https://www.apple.com/ipad-air/specs/">does have stereo speakers</a></li>
+<li>Mac Studio HDMI is still 2.0
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/HDMI#Version_2.1">HDMI 2.1</a></li>
+</ul></li>
+<li><a href="https://twitter.com/DSCCRoss/status/1501784633049976834">27&#8221; Studio Display Pro</a> coming soon?</li>
+<li>&#8220;Five-head&#8221; Origins
+
+<ul>
+<li><a href="https://www.flophousepodcast.com/2012/01/episode-94-conan-the-barbarian/">The Flop House #94: Conan the Barbarian</a> @ <a href="https://the-flop-house.simplecast.com/episodes/the-flop-house-episode-94-conan-the-barbarian?t=29m46s">29:46</a></li>
+<li><a href="https://www.youtube.com/watch?v=bcGA4alhPas&amp;t=276s">Victor Borge&#8217;s Inflationary Language</a></li>
+<li><a href="https://en.wikipedia.org/wiki/20_Fenchurch_Street">20 Fenchurch Street</a></li>
+</ul></li>
+<li>The A7III <em>does</em> have animal eye detection (via Alec Pulianas)</li>
+<li><a href="https://www.macrumors.com/2022/03/09/mac-pro-now-starts-with-512gb-storage/">Base Mac Pro gets a spec bump</a></li>
+<li><a href="https://www.caseyliss.com/2022/3/3/maskeraid">MaskerAid</a> Updates
+
+<ul>
+<li><a href="https://twitter.com/caseyliss/status/1499441501612433408">Photo library access</a></li>
+<li><a href="https://nshipster.com/method-swizzling/">Method Swizzling</a></li>
+</ul></li>
+</ul></li>
+<li>ARM Mac Pro worst-case scenarios
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=8Yz1pqX_eC0&amp;feature=youtu.be">Max Tech: Apple M2 Duo?</a></li>
+<li><a href="https://patents.google.com/patent/US20210217702A1/en?oq=2021%2f0217702">Patent: Systems and Methods for Interconnecting Dies</a></li>
+<li><a href="https://patents.google.com/patent/US20210125967A1/en?oq=20210125967">Patent: Fully Interconnected Heterogeneous Multi-layer Reconstructed Silicon Device</a></li>
+<li><a href="https://twitter.com/MajinBuOfficial/status/1502675792886697985">Majin Bu&#8217;s tweet</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/guide/universal-control/">Universal Control</a> Impressions
+
+<ul>
+<li><a href="https://symless.com/synergy">Synergy</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Did the DTK set reasonable expectations for M1 devices? (via Ryan Petriello)</li>
+<li>Does switching to higher-resolution displays put a strain on the CPU/GPU? (via Peter Wagoner)</li>
+<li>What are the three ugliest Macs of all time? (via Wade)
+
+<ul>
+<li>John
+
+<ul>
+<li><a href="https://512pixels.net/molar-mac-dsc01871/">Molar</a> <a href="https://512pixels.net/molar-mac-dsc01855/">Mac</a> (<a href="https://everymac.com/systems/apple/powermac_g3/specs/powermac_g3_233_aio.html">Power Macintosh G3 All-In-One</a>)</li>
+<li><a href="https://apple-history.com/580">LC 580</a></li>
+</ul></li>
+<li>Casey
+
+<ul>
+<li><a href="https://everymac.com/systems/apple/macbook/specs/macbook_2.0_white.html">Polybook</a></li>
+<li><a href="https://everymac.com/systems/apple/imac/specs/imac_se_600.html">Flower Power</a>
+
+<ul>
+<li><a href="https://512pixels.net/2016/05/all-13-colors/">All 13 Colors of iMac</a></li>
+</ul></li>
+<li><a href="https://everymac.com/systems/apple/imac/specs/imac_g5_1.6_17.html">2004&#160;17&#8221; iMac G5</a></li>
+<li><a href="https://everymac.com/systems/apple/mac_pro/mac-pro-cylinder-faq/">Mac Pro</a></li>
+</ul></li>
+<li>Marco
+
+<ul>
+<li><a href="https://everymac.com/systems/apple/macbook_pro/specs/macbook_pro_2.16_17.html">2006&#160;17&#8221; MacBook Pro</a>
+
+<ul>
+<li><a href="https://arstechnica.com/gadgets/2003/10/pbg4/">John&#8217;s PowerBook G4 Review</a></li>
+</ul></li>
+<li><a href="https://everymac.com/systems/apple/macbook-air/specs/macbook-air-core-2-duo-1.4-11-late-2010-specs.html">11&#8221; MacBook Air</a></li>
+<li><a href="https://everymac.com/systems/apple/imac/specs/imac_g5_1.6_17.html">2004&#160;17&#8221; iMac G5</a></li>
+<li><a href="https://everymac.com/systems/apple/mac_pro/specs/mac-pro-28-core-2.5-xeon-w-silver-tower-workstation-2019-specs.html">2019 Mac Pro</a>
+
+<ul>
+<li><a href="https://everymac.com/systems/apple/mac_pro/specs/mac-pro-eight-core-3.5-xeon-w-silver-rack-mountable-2019-specs.html">Rack-mount Version</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Post-show: A preview of Casey&#8217;s new setup (really) with a <a href="https://www.caldigit.com/thunderbolt-station-4/">CalDigit TS4</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://l.kolide.co/3Bi2MI2">Kolide</a>: Meet compliance objectives in a remote-first world without resorting to rigid device management. Try Kolide for free!</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Universal Control, display rumors (already?), an update on MaskerAid, and wondering where the Mac Pro might go.</itunes:subtitle></item><item><guid isPermaLink="false">qumts0vjcxvssxpi</guid><pubDate>Thu, 10 Mar 2022 18:33:23 +0000</pubDate><title>473: Fanboats and Coattails</title><itunes:title>Fanboats and Coattails</itunes:title><itunes:episode>473</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:44:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp473.mp3" length="158261531" type="audio/mpeg"/><link>https://atp.fm/473</link><description><![CDATA[<ul>
+<li>Apple&#8217;s &#8220;Peek Performance&#8221; Event
+
+<ul>
+<li>New <a href="https://www.apple.com/shop/watch/bands">Apple Watch band</a> collection
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Beanie_Babies">Beanie Babies</a></li>
+</ul></li>
+<li>🇺🇦 Tim Cook 🇺🇦</li>
+<li>Apple TV+
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Luck_(TV_series)">Luck (TV Series)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Luck_(2022_film)">Luck (Film)</a></li>
+</ul></li>
+<li>Apple + Baseball
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/03/apples-big-baseball-deal-detailed/">Jason&#8217;s recap</a></li>
+</ul></li>
+<li><em>An aside about transportation woes</em>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Gibbs_Aquada">Gibbs Aquada</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DUKW">Duck Boat</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Airboat">Fan/Air boat</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/iphone-se/">iPhone SE 3</a></li>
+<li><a href="https://www.apple.com/ipad-air/">iPad Air</a>
+
+<ul>
+<li><a href="https://www.relay.fm/clockwise/441">Clockwise #441: Talk Talk Music</a></li>
+</ul></li>
+<li>M1 Ultra
+
+<ul>
+<li><a href="https://www.bloomberg.com/news/articles/2021-05-18/apple-readies-macbook-pro-macbook-air-revamps-with-faster-chips">Gurman&#8217;s original article (18 May 2021)</a></li>
+<li><a href="https://hypercritical.co/2021/05/21/images/city-of-chiplets.png">John&#8217;s diagram (21 May 2021)</a></li>
+<li><a href="https://atp.fm/453">John&#8217;s warning in ATP #453</a> @ 32:34 (<a href="https://overcast.fm/+R7DUutg-I/32:34">Overcast timestamp link</a>)</li>
+<li><a href="https://twitter.com/marcan42/status/1498388636706156544">Hector Martin&#8217;s tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Non-uniform_memory_access">NUMA</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/mac-studio/">Mac Studio</a> 🎩
+
+<ul>
+<li><a href="https://www.theincomparable.com/robot/229/">Robot or Not #229: Friendship</a></li>
+<li><em>An aside about Marco&#8217;s laptop-laptop woes</em></li>
+<li><a href="https://www.buzzfeed.com/tabathaleggett/celebrities-wholl-make-you-proud-of-your-fivehead">&#8220;Fivehead&#8221;</a></li>
+<li><a href="https://hypercritical.co/fatbits/2005/10/30/night-of-the-living-xmac">xMac</a></li>
+<li><a href="https://www.theverge.com/2022/3/9/22969101/apple-mac-studio-m1-ultra-max-explains-weight-mystery">The Verge discovers the 2 pound ∆ from Max → Ultra</a></li>
+<li><a href="https://twitter.com/tvaziri/status/1501217030112006150">Camera Movement Guide</a> (with apologies to friend of the show Todd Vaziri)</li>
+<li><a href="https://en.wikipedia.org/wiki/Big_N%27_Tasty#History">McDLT</a> and a <a href="https://www.youtube.com/watch?v=UTSdUOC8Kac">McDLT commercial</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Accelerated_Graphics_Port">AGP</a></li>
+<li><a href="https://sixcolors.com/post/2022/03/the-missing-mid-range-desktop-mac/">Dan Moren: Missing Mid-Range Desktop Mac</a></li>
+</ul></li>
+<li>A lot of bickering about the future of the 27&#8221; iMac</li>
+<li><a href="https://www.apple.com/studio-display/">Mac Studio Display</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/2021/12/7/monitor-liss">Casey&#8217;s previous rant</a></li>
+<li><a href="https://www.caseyliss.com/2017/5/17/retina-monitors">Casey&#8217;s original rant</a></li>
+<li><a href="https://youtu.be/Z09RLWEoYZE">QD-OLED Display</a></li>
+<li><a href="https://twitter.com/filipeesposito/status/1501323116869558281">Filipe Espósito&#8217;s tweet</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: There&#8217;s still an <a href="https://www.apple.com/shop/buy-mac/mac-mini/3.0ghz-intel-core-i5-6-core-processor-with-intel-uhd-graphics-630-512gb">Intel Mac Mini</a>
+
+<ul>
+<li><a href="https://techable.com/apple/specs/macbook-pro-core-i5-2-5-ghz-13-inch-mid-2012/">MD101LL/A</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://l.kolide.co/3uMV1so">Kolide</a>: Cross-platform fleet visibility for your Linux, Mac, and Windows devices. Start your free 14-day trial of Kolide today!</li>
+<li><a href="https://newrelic.com/atp">New Relic</a>: Monitor, debug, and improve your entire stack.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>M1 Ultra, Mac Studio, Studio Display, iPhone SE 3, iPad Air 5, and… baseball?</itunes:subtitle></item><item><guid isPermaLink="false">a2fxs01abulvwery</guid><pubDate>Thu, 03 Mar 2022 15:35:52 +0000</pubDate><title>472: File a Casey Radar</title><itunes:title>File a Casey Radar</itunes:title><itunes:episode>472</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:18:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp472.mp3" length="132565335" type="audio/mpeg"/><link>https://atp.fm/472</link><description><![CDATA[<ul>
+<li>Pre-show: 🇺🇦 ATP Stands with Ukraine 🇺🇦
+
+<ul>
+<li><a href="https://www.washingtonpost.com/world/ukraine-russia/">Washington Post coverage</a></li>
+<li><a href="https://www.macworld.com/article/618660/apple-russia-ukraine-china.html">Jason Snell on Apple vs. 🇷🇺 &amp; 🇨🇳</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>There definitely is not a &#8220;cure&#8221; for <a href="https://en.wikipedia.org/wiki/Coeliac_disease">celiac disease</a></li>
+<li>Conquering shared contacts with <a href="https://lenashore.com/2016/01/create-a-shared-family-address-book-with-contacts-and-icloud/">a shared iCloud account</a></li>
+<li>Several fascinating pieces of accessibility-related feedback</li>
+</ul></li>
+<li>Casey&#8217;s new app, <a href="https://apps.apple.com/us/app/maskeraid/id1590163828">MaskerAid</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/2022/3/3/maskeraid">Announcement blog post</a></li>
+<li><a href="https://relay.fm/analog/199">Analog(ue) #199: A Little Bit of Personal News</a></li>
+<li><a href="https://www.instagram.com/p/CQhnJiypDJ2/">Example image</a></li>
+<li><a href="https://developer.apple.com/sf-symbols/">SF Symbols</a></li>
+</ul></li>
+<li>Apple&#8217;s Spring Event predictions</li>
+<li>Post-show: Marco Christmas!
+
+<ul>
+<li><a href="https://www.boston.com/news/local-news/2018/08/30/allston-christmas-boston-moving-permits-storrow/">Allston Christmas</a></li>
+<li><a href="https://www.amazon.com/dp/B07LB5TY6T?tag=marcoorg-20">Paradigm Atom</a></li>
+<li><a href="https://amzn.to/3vR32xl">Sony A7 III</a>
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B00FSB79KU?tag=marcoorg-20">Sony 35mm f/2.8 Lens (SEL35F28Z)</a> (Marco&#8217;s most-used lens)</li>
+<li><a href="https://www.amazon.com/dp/B00FSB799Q?tag=marcoorg-20">Sony Sonnar T* FE 55mm f/1.8 ZA Lens (SEL55F18Z)</a> (What John should buy)</li>
+<li><a href="https://amzn.to/3594T5v">Sony FE 50mm f/1.2 GM Lens (SEL50F12GM)</a> (What John wants instead, but will never buy, therefore preventing him from ever buying anything)</li>
+<li><a href="https://amzn.to/3prfAar">Sony FE 85mm f/1.8 Lens (SEL85F18/2)</a></li>
+<li><a href="https://www.lensrentals.com/">LensRentals</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>atp</strong> for 10% off your first order.</li>
+<li><a href="https://l.kolide.co/3sJRFEe">Kolide</a>: Endpoint security for teams that value privacy, transparency, and employee productivity. Try Kolide for free today!</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Casey's new app, developer rabbit-holes, and predictions for next week's Apple event.</itunes:subtitle></item><item><guid isPermaLink="false">qvq3x3diq2dknjk5</guid><pubDate>Thu, 24 Feb 2022 16:33:43 +0000</pubDate><title>471: My Fiber Situation Is Fine</title><itunes:title>My Fiber Situation Is Fine</itunes:title><itunes:episode>471</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp471.mp3" length="113529356" type="audio/mpeg"/><link>https://atp.fm/471</link><description><![CDATA[<ul>
+<li>Pre-show: Casey <a href="https://twitter.com/atpfm/status/1496649133746454528">messes with Marco</a> during his very difficult day
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Coeliac_disease">Celiac</a>
+
+<ul>
+<li><a href="https://twitter.com/marcoarment/status/1497226607970631680">Important follow-up</a>: in short, actual celiac disease cannot be cured, so the people in question most likely had other forms of gluten intolerance</li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Colostrum">Colostrum</a> (<a href="https://www.amazon.com/dp/B07NKBD9LF">the pills Marco got</a> — ask a doctor, YMMV)</li>
+<li><a href="https://www.amazon.com/dp/B00NH0XG7E/?tag=marcoorg-20">Thera Cane</a></li>
+<li><a href="https://www.relay.fm/rd/176">Reconcilable Differences #176: The Curse of Convenience</a></li>
+<li><a href="https://www.amazon.com/dp/0743292650?tag=marcoorg-20">It&#8217;s All Too Much</a></li>
+<li><a href="https://en.wikipedia.org/wiki/NIMBY">NIMBY</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Getting an older car to always play Maps&#8217; directions over Bluetooth (via Paul Violante)
+
+<ul>
+<li><code>Settings</code> → <code>Maps</code> → <code>Spoken Directions</code> → <code>Directions on Radio</code></li>
+</ul></li>
+<li>Some interesting feedback on brake-by-wire systems</li>
+<li><a href="https://barrowclift.me/post/fourth-annual-ios-music-player-showcase">Marc Barrowclift&#8217;s Fourth Annual iOS Music Player Showcase</a> (via Aidan Trager)</li>
+<li>Casey attempts a victory lap around John
+
+<ul>
+<li><a href="https://www.relay.fm/rd/176">Reconcilable Differences #176: The Curse of Convenience</a><br />
+<em>Note the relevant section was in the members&#8217; only after-show</em></li>
+</ul></li>
+<li><a href="https://hypercritical.co/2022/02/17/streaming-app-sentiments">Feedback received</a> on <a href="https://hypercritical.co/2022/02/15/streaming-apps">John&#8217;s Streaming App Spec</a></li>
+</ul></li>
+<li><a href="https://daringfireball.net/linked/2022/02/08/arm-sale-to-nvidia-collapses">The NVIDIA/Arm deal has been scuttled</a>
+
+<ul>
+<li>Previously: <a href="https://www.theverge.com/2022/1/25/22900456/nvidia-arm-acquisition-deal-trouble-regulator-worries-report">Doubts about the NVIDIA/Arm deal</a></li>
+<li>Announced 20 September 2020 (!)</li>
+<li>Apparently <a href="https://en.wikipedia.org/wiki/.NET">.NET Core</a> can <a href="https://twitter.com/l_anceM/status/1493965785437458436">trace its roots</a> to <a href="https://en.wikipedia.org/wiki/Microsoft_Silverlight">Silverlight</a> (!)</li>
+</ul></li>
+<li><a href="https://www.bleepingcomputer.com/news/security/dev-corrupts-npm-libs-colors-and-faker-breaking-thousands-of-apps/">Developer deliberately corrupts popular open-source packages</a>
+
+<ul>
+<li><a href="https://atp.fm/163">Previous NPM disaster covered on ATP</a></li>
+<li><a href="https://semver.org/">Semantic Versioning</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Log4j#Log4Shell_vulnerability">Log4j vulnerability</a></li>
+<li><a href="https://xkcd.com/2347/">xkcd #2347: Dependency</a></li>
+<li><a href="https://twitter.com/JenniferJJacobs/status/1481572801307938819">Tech companies called to the principal&#8217;s office</a></li>
+<li><a href="https://blog.discourse.org/2022/01/discourse-gives-back-2021">Discourse tries to lead by an $82,500 example</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Two-fer from Omri Arbiv:
+
+<ul>
+<li>What&#8217;s Marco&#8217;s current coffee setup?
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=j6VlT_jUVPc">James Hoffmann&#8217;s Aeropress technique</a></li>
+<li><a href="https://ratiocoffee.com/products/eight">Ratio Eight</a></li>
+<li><a href="https://baratza.com/grinder/virtuoso/">Baratza Virtuoso</a></li>
+<li><a href="https://www.yesplz.coffee/?raf=ref3942625">YES PLZ</a></li>
+<li><a href="https://drinktrade.com/atp">Trade Coffee</a></li>
+<li><a href="https://www.intelligentsia.com/">Intelligentsia</a></li>
+</ul></li>
+<li>Is John still subscribed to cable?</li>
+</ul></li>
+<li>Do we have a good system for maintaining family contacts? (via <a href="https://twitter.com/pwalker_aus/status/1493930133681754113">Paul Walker</a>)</li>
+</ul></li>
+<li>Post-show <a href="https://www.theincomparable.com/robot/">Robot or Not</a>:
+
+<ul>
+<li>Bonus <code>#askatp</code>: Do we say we&#8217;re &#8220;in front of&#8221; or &#8220;behind&#8221; the computer? (via Niek van de Pas)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://jumpcloud.com/">Jumpcloud</a>: Your new cloud directory.</li>
+<li><a href="https://www.lutron.com/atp">Lutron Caseta</a>: Smart Dimmers &amp; Lighting Control.</li>
+<li><a href="https://l.kolide.co/3rOauXz">Kolide</a>: Endpoint security for teams that Slack. Try Kolide for free today with no credit card required.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Spring cleaning, music apps, package managers, and coffee gear.</itunes:subtitle></item><item><guid isPermaLink="false">yjrocglmsmdyd3zy</guid><pubDate>Thu, 17 Feb 2022 16:40:37 +0000</pubDate><title>470: Computers Can Do Things</title><itunes:title>Computers Can Do Things</itunes:title><itunes:episode>470</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp470.mp3" length="127426576" type="audio/mpeg"/><link>https://atp.fm/470</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=dKmdWZP5Xx4">Jump-starting an ICE using a Tesla</a> (via <a href="https://twitter.com/JesperWeltz/status/1492111372217372675">Jesper Weltz</a>)
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=sCarEuPOrzg">Another video</a> (via <a href="https://twitter.com/jame5on/status/1492115692803563521">Jameson</a>)</li>
+<li><a href="https://www.youtube.com/watch?v=NsKwMryKqRE">James May&#8217;s Model S&#8217;s catastrohpic failure</a></li>
+<li><a href="https://www.porsche.com/usa/models/taycan/">Porsche Taycan</a></li>
+<li><a href="https://www.mercedes-benz.com/en/vehicles/passenger-cars/concept-cars/vision-eqs/">Mercedes-Benz EQS</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2022/02/an-update-on-airtag-and-unwanted-tracking/">AirTags anti-tracking update</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/The_Downeaster_%22Alexa%22">The Downeaster &#8220;Alexa&#8221;</a></li>
+<li><a href="https://exploring-and-observing-cities.org/2016/01/11/amsterdam-historic-images-depicting-the-transition-from-cars-to-bikes/">Amsterdam&#8217;s transformation from car-centric to people-centric</a></li>
+<li><a href="https://twitter.com/grescoe/status/1494326829305323521">Paris&#8217;s car-free zone announced for 2024</a></li>
+</ul></li>
+<li>John <a href="https://hypercritical.co/2022/02/15/streaming-apps">has thoughts on streaming apps</a>
+
+<ul>
+<li><a href="https://twitter.com/getchannels/status/1493663711797596166">Channels does a victory lap</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/TV_Everywhere">TV Everywhere</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Kodi_(software)">XBMC/Kodi</a></li>
+<li><a href="https://dilbert.com/strip/1994-11-23">Dilbert Strip</a> (yes, <a href="https://rationalwiki.org/wiki/Scott_Adams">Scott Adams sucks</a>)</li>
+</ul></li>
+<li><a href="https://www.akamai.com/newsroom/press-release/akamai-to-acquire-linode">Akamai is buying Linode</a>
+
+<ul>
+<li><a href="https://stratechery.com/2022/akamai-buys-linode-akamais-strategy-cloudflare-and-disruption/">Stratechery (paid) post</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Why do cars always steal Bluetooth connections? (via Chris Gleim)</li>
+<li>Is using <code>Reduced Security</code> okay for the purpose of audio capture? (via <a href="https://twitter.com/mb_chris/status/1491516493456097280">Chritopher Ward</a>)
+
+<ul>
+<li><a href="https://rogueamoeba.com/audiohijack/">Audio Hijack</a></li>
+<li><a href="https://rogueamoeba.com/support/knowledgebase/?showArticle=ACE-StepByStep&amp;product=Audio%20Hijack">The 🤬 nuts installation procedure Apple requires on M1 Macs</a></li>
+</ul></li>
+<li>What&#8217;s the best &#8220;dumb&#8221; TV? (via <a href="https://twitter.com/Avakining/status/1489329929162563591">Ava</a>)
+
+<ul>
+<li><a href="https://www.sceptre.com/TV/4K-UHD-TV/U435CV-UMC-43-4K-UHD-TV-product933category1category73.html">Casey&#8217;s dumb TV</a></li>
+<li><a href="https://pi-hole.net/">Pi-Hole</a></li>
+<li><a href="https://github.com/Perflyst/PiHoleBlocklist/">Casey&#8217;s discovered Smart TV Block List</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show <a href="https://neutral.fm/">Neutral</a>: <a href="https://www.thedrive.com/news/44261/toyota-has-a-patent-to-recreate-manual-transmissions-for-evs">Toyota&#8217;s Faux Manual Transmission Patent</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.lutron.com/atp">Lutron Caseta</a>: Smart dimmers and lighting control.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>The good old days of video and music apps, web hosting, and manual transmissions.</itunes:subtitle></item><item><guid isPermaLink="false">shbcs0y1ekrrbfvi</guid><pubDate>Thu, 10 Feb 2022 21:45:29 +0000</pubDate><title>469: Tiny Toastie</title><itunes:title>Tiny Toastie</itunes:title><itunes:episode>469</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:14:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp469.mp3" length="130030582" type="audio/mpeg"/><link>https://atp.fm/469</link><description><![CDATA[<ul>
+<li>Pre-show: The newest member of Marco&#8217;s family
+
+<ul>
+<li><a href="https://bydash.com/products/mini-toaster-oven">The originating member</a></li>
+<li><a href="https://www.caseyliss.com/2015/9/10/siracusa-on-toasters">Siracusa&#8217;s history</a></li>
+<li><a href="https://hypercritical.co/2020/08/31/good-products#toaster-oven">Siracusa&#8217;s thoughts</a></li>
+<li><a href="https://www.amazon.com/dp/B084KPT5ZG/?tag=marcoorg-20&amp;th=1">The new member</a></li>
+<li><a href="http://drops.caseyliss.com/hKMXvI">Prior experiences with the new member of the family</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Casey replaces his FiOS set-top box
+
+<ul>
+<li><a href="https://amzn.to/3uEX69J">Casey&#8217;s new UPS</a></li>
+<li><a href="https://techsee.me/">TechSee</a></li>
+</ul></li>
+<li><a href="https://apphousekitchen.com/">AlDente</a></li>
+<li>Casey&#8217;s Email Woes
+
+<ul>
+<li>Gmail &#8220;funnel solution&#8221;</li>
+<li>Google Workspace Email Storage (via Ashish Gandhi)</li>
+<li>Running your own mail server (via Daniel Nelson)
+
+<ul>
+<li><a href="https://workaround.org/ispmail/bullseye/">Recommended solution</a></li>
+</ul></li>
+<li>Fastmail&#8217;s referral fees <a href="https://twitter.com/emcro/status/1490681995009142789">can be paid out</a>! 💰</li>
+</ul></li>
+<li><a href="https://www.youtube.com/watch?v=ACW_0OCXzI8">Video evidence</a> for Wi-Fi ↔ Cellular Universal Control (via Carlos Carpio García) </li>
+<li>Are phones being stolen to <a href="https://9to5mac.com/2021/06/17/criminals-in-brazil-are-stealing-peoples-iphones-to-access-bank-accounts-not-resell-the-devices/">steal bank information</a>? (via Gui Rambo)</li>
+<li>Siri attempts at music playback by year
+
+<ul>
+<li><a href="https://jonathancoulton.bandcamp.com/album/some-guys">Jonathan Coulton&#8217;s <em>Some Guys</em></a></li>
+</ul></li>
+</ul></li>
+<li>Apple&#8217;s <a href="https://developer.apple.com/support/storekit-external-entitlement/">attempt at &#8220;compliance&#8221;</a> with the Netherlands dating app rules
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Chargeback">Chargeback</a></li>
+<li><a href="https://9to5mac.com/2022/02/07/apple-app-store-fine-shocking/">Dutch response</a></li>
+<li><a href="https://relay.fm/upgrade/393">Upgrade #393: Nothing Is So Perfect™</a></li>
+<li><a href="https://hypercritical.co/2020/06/20/the-art-of-the-possible">John in 2020: &#8220;The Art of the Possible&#8221;</a></li>
+</ul></li>
+<li><a href="https://hypercritical.co/2020/06/20/the-art-of-the-possible">Microsoft&#8217;s &#8220;A Principled Approach to App Stores&#8221;</a></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Why doesn&#8217;t anyone use Wi-Fi for audio playback? (via Steven J. Stutz)</li>
+<li>Do we use color calibration tools for our monitors? (via Chris Koerner)
+
+<ul>
+<li><a href="https://spyderx.datacolor.com/">Datacolor Spyder</a></li>
+</ul></li>
+<li>How do we prevent keyboards damaging screens on laptops? (via Priyansh Singh)</li>
+</ul></li>
+<li>Post-show: Marco&#8217;s car problems
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=JN8A2nIMUWA">Which Car Jump Starter is Best?</a> (via <a href="https://twitter.com/panzer_michael/status/1490584983542677505">Michael Panzer</a>)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.lutron.com/atp">Lutron Caseta</a>: Smart Dimmers &amp; Lighting Control</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://stackoverflow.blog/podcast/">Stack Overflow Podcast</a>: Your home for all things code. Available wherever you get your podcasts.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>A bunch of fun stuff to avoid spending too much time on the App Store stuff.</itunes:subtitle></item><item><guid isPermaLink="false">mdvqvc1rvkrfawxv</guid><pubDate>Thu, 03 Feb 2022 15:41:22 +0000</pubDate><title>468: You Got Your Non-Money's Worth</title><itunes:title>You Got Your Non-Money's Worth</itunes:title><itunes:episode>468</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp468.mp3" length="128044721" type="audio/mpeg"/><link>https://atp.fm/468</link><description><![CDATA[<ul>
+<li>Pre-show: Marco enters winter luxury
+
+<ul>
+<li><a href="https://www.duluthtrading.com/mens-bison-leather-driving-moccasins-12018.html">Marco&#8217;s &#8220;Slippers&#8221;</a></li>
+<li><a href="https://www.overland.com/products/mens-ethan-classic-australian-merino-sheepskin-wide-slipper-53124?cl=sttp">John&#8217;s Slippers</a></li>
+<li><a href="https://ruggable.com/products/metro-slate-blue-rug?size=5x7">Marco&#8217;s Rug</a></li>
+<li><a href="https://cozywinters.com/shop/rug-heat.html">Marco&#8217;s Rug Heater</a></li>
+<li>Reminder: <a href="https://memeguy.com/photos/images/a-handy-temperature-conversion-chart-262443.jpg">Celsius is stupid for ambient air temperatures</a></li>
+<li><a href="https://www.theincomparable.com/robot/222/">Robot or Not: Sundays</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.macworld.com/article/610908/google-messages-android-tapbacks-reaction-emoji.html">Google ships tapback parsing</a></li>
+<li>Regarding &#8220;Screeners&#8221;</li>
+<li><a href="https://www.xbox.com/en-US/xbox-game-pass">Xbox Game Pass</a>
+
+<ul>
+<li><a href="https://www.xbox.com/en-US/xbox-game-pass/pc-game-pass">PC Game Pass</a></li>
+<li><a href="https://www.xbox.com/en-US/xbox-game-pass/#join">Game Pass Ultimate</a></li>
+<li><a href="https://www.xbox.com/en-US/xbox-game-pass/cloud-gaming">Xbox Cloud Gaming</a></li>
+<li><a href="https://stratechery.com/2022/microsoft-acquires-activision-blizzard-notes-on-the-acquisition-an-interview-with-microsoft-gaming-ceo-phil-spencer/">Stratechery Interview with Phil Spencer</a></li>
+</ul></li>
+<li>Apple and the Netherlands</li>
+<li>New beta bits
+
+<ul>
+<li>Face ID unlock and glasses from <a href="https://twitter.com/ryanbooker/status/1486887999271243776">Ryan Booker</a></li>
+<li>Notes on Universal Control from Carlos Carpio Carcía</li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.theverge.com/22910846/sony-bungie-acquisition-playstation-destiny-halo">Sony buys Bungie for $3.6B</a>
+
+<ul>
+<li><a href="https://www.bungie.net/en/Explore/Detail/News/50989">FAQ</a></li>
+<li><a href="https://www.gamesindustry.biz/articles/2022-01-31-playstation-bungie-will-considerably-accelerate-our-journey-with-multiplatform-live-service-games">Sony hints at More Acquisitions</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2022/1/19/22891509/g-suite-legacy-free-google-apps-workspace-upgrade">Google tells legacy Gmail account holders to &#8220;pay up&#8221;</a>
+
+<ul>
+<li><a href="https://arstechnica.com/gadgets/2022/01/google-relents-legacy-g-suite-users-will-be-able-to-migrate-to-free-accounts/">Ars Technica&#8217;s coverage</a></li>
+<li><a href="https://support.google.com/a/answer/60217#data&amp;zippy=%2Cwhat-if-i-use-g-suite-legacy-free-edition-for-personal-use-and-dont-want-to-upgrade-to-a-google-workspace-subscription%2Cif-i-dont-want-to-upgrade-to-a-paid-subscription-can-i-transfer-my-data">Google information</a></li>
+<li><a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a></li>
+<li><a href="https://support.apple.com/en-us/HT212514">Using a custom domain with iCloud email</a></li>
+<li><a href="https://mimestream.com/">Mimestream</a></li>
+<li><a href="https://www.fastmail.com/atp/">Fastmail</a> (former sponsor)</li>
+<li><a href="https://hey.com/">Hey</a> (former sponsor)</li>
+<li><a href="https://www.zimbra.com/open-source-email-overview/">Zimbra</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>How do we back up shared photo albums? (via Carlos Moffat)</li>
+<li>How do we manage power (and battery) for desktop laptops? (via <a href="https://twitter.com/TheAnirudh/status/1459763332601106432">Anirudh Coontoor</a>)
+
+<ul>
+<li><code>Settings</code> → <code>Battery</code> → <code>Battery</code> (in sidebar) → <code>Optimized battery charging</code></li>
+</ul></li>
+<li>What security steps do we take for family devices? (via Lars Bekkema)</li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B086L29DL9/?tag=marcoorg-20">Supercap jump-starter</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://newrelic.com/atp">New Relic</a>: Monitor, debug, and improve your entire stack</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>It's 2022 and we still haven't solved email, batteries, or sharing files between two computers.</itunes:subtitle></item><item><guid isPermaLink="false">r2xja3dhvue2mjjv</guid><pubDate>Fri, 28 Jan 2022 15:58:10 +0000</pubDate><title>467: The Strain Provider</title><itunes:title>The Strain Provider</itunes:title><itunes:episode>467</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp467.mp3" length="122472265" type="audio/mpeg"/><link>https://atp.fm/467</link><description><![CDATA[<ul>
+<li>Pre-show: Marco&#8217;s Baking Hangover</li>
+<li>Follow-up:
+
+<ul>
+<li>Casey&#8217;s Desk Update
+
+<ul>
+<li><a href="https://alogic.co/us/thunderbolt-4-blaze-hub.html">Casey&#8217;s Thunderbolt 4 Hub / &#8220;Breakout Box&#8221;</a></li>
+</ul></li>
+<li><a href="https://twitter.com/TiredHippo/status/1481707799461650436">Simon Webster on QD-OLED and Blue LEDs</a></li>
+<li><a href="https://twitter.com/snarfmason/status/1484251682720518144">Jon Mason on how big Sony is</a></li>
+<li><a href="https://www.xbox.com/en-US/xbox-game-pass">Xbox Gamepass</a> and <a href="https://www.xbox.com/en-US/consoles/xbox-series-s">Series S</a>
+
+<ul>
+<li><a href="https://www.washingtonpost.com/arts-entertainment/2022/01/26/neil-young-spotify-joe-rogan/">Neil Young &amp; Spotify</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Development_of_The_Elder_Scrolls_IV:_Oblivion#Background_and_Horse_Armor">Horse Armor</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Scorched_Earth_(video_game)">Scorched Earth</a></li>
+</ul></li>
+<li>iMessage and SMS (via Olivier Ruoy)
+
+<ul>
+<li><a href="https://adium.im/">Adium</a></li>
+</ul></li>
+<li>Piracy, Warez, and <a href="https://torrentfreak.com/the-scene-pirates-ripping-content-from-amazon-netflix-190707/">The Scene</a> (via Colin Weir)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Widevine">Widevine</a></li>
+</ul></li>
+<li><a href="https://mjtsai.com/blog/2022/01/24/netherlands-rejects-storekit-external-purchase-entitlement-plan/">Netherlands Tells Apple &#8220;lol nope&#8221;</a>
+
+<ul>
+<li><a href="https://www.macrumors.com/2022/01/24/dutch-third-party-iap-plan-insufficient/">Macrumors Coverage</a></li>
+<li><a href="https://www.acm.nl/en/publications/apple-fails-satisfy-requirements-set-acm">ACM&#8217;s Statement</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://developer.apple.com/documentation/macos-release-notes/macos-12_3-release-notes">Dropbox and OneDrive kexts no longer supported in macOS 12.3 beta</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/User_space">User space</a></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2022/01/27/universal-control-mac-ipad-available/">Universal Control Mac → iPad in 12.3 &amp; 15.4 betas</a>
+
+<ul>
+<li><a href="https://twitter.com/viticci/status/1486795252484685827">Viticci&#8217;s tweet/video</a></li>
+<li><a href="https://obsproject.com">OBS Studio</a></li>
+<li><a href="https://github.com/Developer-Ecosystem-Engineering">Developer-Ecosystem-Engineering</a></li>
+<li><a href="https://github.com/obsproject/obs-studio/pull/5875">OB Studio Pull Request</a></li>
+</ul></li>
+<li><a href="https://twitter.com/viticci/status/1486783597025579011">iOS 15.4 beta supports FaceID unlock with mask <em>without an Apple Watch</em></a></li>
+<li>USB Garbage from Amazon
+
+<ul>
+<li><a href="https://dobyfriday.com">Do By Friday</a></li>
+<li><a href="https://www.wristies.com">Wristies</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://www.wristies.com">Web time capsules</a></li>
+<li>John&#8217;s automotive plans</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.lutron.com/atp">Lutron Caseta</a>: Smart lighting at the switch.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://iodyne.com">Iodyne</a>: Introducing the all-new Pro Data, the fastest Thunderbolt storage for M1 Macs.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Once your USB-C setup finally works, never touch anything again.</itunes:subtitle></item><item><guid isPermaLink="false">bggxng5iowlyake5</guid><pubDate>Thu, 20 Jan 2022 16:01:32 +0000</pubDate><title>466: There's Probably a Wizard for It</title><itunes:title>There's Probably a Wizard for It</itunes:title><itunes:episode>466</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp466.mp3" length="103585373" type="audio/mpeg"/><link>https://atp.fm/466</link><description><![CDATA[<ul>
+<li>Pre-show: Windows woes and the challenges of loading modern trucks
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Trusted_Platform_Module">TPM</a></li>
+<li><a href="https://github.com/yt-dlp/yt-dlp"><code>yt-dlp</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/DeCSS">DeCSS</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Software_Guard_Extensions">SGX</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FairPlay">FairPlay</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pirated_movie_release_types">Pirated movie release types</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Printer Murder Rooms
+
+<ul>
+<li><a href="https://twitter.com/tsom/status/1483415819224760323">John Tsombakos</a></li>
+<li><a href="https://twitter.com/richard5mith/status/1483444742641926150">Richard Smith</a></li>
+</ul></li>
+<li><a href="https://www.youtube.com/watch?v=zrMMuicJZ-I">LG UltraFine 5K Repair Video</a> (via <a href="https://twitter.com/thunderkeys/status/1483774097679130628">Brian Almeida</a>)</li>
+</ul></li>
+<li><a href="https://www.theverge.com/2022/1/18/22889258/microsoft-activision-blizzard-xbox-acquisition-call-of-duty-overwatch">Microsoft to Acquire Activision Blizzard for $68.7 billion</a>
+
+<ul>
+<li><a href="https://apple.news/ABXrpMC6BTBKUcGWpMSUKZw">Wall Street Journal</a></li>
+<li><a href="https://www.bloomberg.com/news/features/2021-08-06/activision-blizzard-atvi-news-culture-of-misbehavior-festered-before-lawsuit">Activision Blizzard&#8217;s abhorrent culture</a></li>
+<li>Prior acquisitions (via <a href="https://twitter.com/JonErlichman/status/1483439033208430599">Jon Erlichman</a>)
+
+<ul>
+<li>Activision Blizzard: $68.7b</li>
+<li>LinkedIn: $26.2b</li>
+<li>Nuance: $19.7b</li>
+<li>Skype: $8.5b</li>
+<li>ZeniMax: $7.5b</li>
+<li>GitHub: $7.5b</li>
+<li>Nokia (phone unit): $7.2b</li>
+<li>aQuantive: $6.3b</li>
+<li>Mojang (Minecraft): $2.5b</li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Perfect_Dark_(series)">Perfect Dark</a></li>
+</ul></li>
+<li><a href="https://www.wsj.com/articles/why-apples-imessage-is-winning-teens-dread-the-green-text-bubble-11641618009">Green bubbles ruin <em>everything</em> 🙄</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Rich_Communication_Services">RCS</a></li>
+<li><a href="https://dithering.fm/">Dithering</a></li>
+<li><a href="https://www.macworld.com/article/606152/imessage-google-green-bubbles-sms-rcs.html">Snell on iMessage</a></li>
+<li><a href="https://arstechnica.com/gadgets/2021/11/google-messages-update-bridges-one-gap-between-blue-and-green-bubble-people/">Google/Android interpreting tapbacks</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Will macOS last <em>another</em> 20 years? (via Daniel Begqvist)
+
+<ul>
+<li><a href="https://arstechnica.com/gadgets/2010/06/copland-2010-revisited/">Copland 2010 Revisited</a></li>
+<li><a href="https://en.wikipedia.org/wiki/POSIX">POSIX</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mach_(kernel)">Mach</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Real-time_operating_system">Real-Time Operating System</a></li>
+</ul></li>
+<li>What game system for a casual gamer who hasn&#8217;t had a console in ten years?</li>
+<li>Do programming languages cause problems for people with hyphenated last names?</li>
+</ul></li>
+<li>Post-show: Marco&#8217;s Jerk-Store Moment
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/L%27esprit_de_l%27escalier">L&#8217;esprit de l&#8217;escalier</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://mackweldon.com/atp">Mack Weldon</a>: Radically-efficient wardrobing. Get 20% off your first order with code <strong>atp</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Microsoft and Activision Blizzard, iMessage vs. green-bubble people, and a gaming PC finally doing what PCs do best.</itunes:subtitle></item><item><guid isPermaLink="false">d2xkcxfsn3p6nhd3</guid><pubDate>Thu, 13 Jan 2022 16:42:04 +0000</pubDate><title>465: Lasers Are Great</title><itunes:title>Lasers Are Great</itunes:title><itunes:episode>465</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp465.mp3" length="125893549" type="audio/mpeg"/><link>https://atp.fm/465</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://shop.tryfi.com/r/59RMG2/?utm_source=referrals">Fi dog-collar</a> pronunciation
+
+<ul>
+<li>Discount code <code>ATP100</code> for $100 off (not a sponsor)</li>
+</ul></li>
+<li>New Ford Mustangs will be available in 2023–2024</li>
+<li><a href="https://blog.playstation.com/2021/03/18/next-gen-vr-on-ps5-the-new-controller/">Sony did show PSVR2 controllers</a></li>
+<li>Mirrorless advantages and the longevity of Canon DSLRs (from Justin Krohn)</li>
+<li>TV technology
+
+<ul>
+<li>WRGB OLEDs do have white backlights</li>
+<li>QD-OLEDs have RGB &#8220;filters&#8221;/diffusers
+
+<ul>
+<li><a href="https://www.anandtech.com/show/14989/samsung-to-invest-11-billion-in-qdoled-panel-production">Samsung&#8217;s 2019 $11 billion investment in QD-OLED</a></li>
+</ul></li>
+<li><a href="https://youtu.be/kHDANson4j4">Micro-LED</a></li>
+</ul></li>
+<li>On &#8220;Weird &amp; Complicated&#8221; Analog TV (via Moe Rubenzahl)
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=l4UgZBs7ZGo&amp;list=PLv0jwu7G_DFUGEfwEl0uWduXGcRbT7Ran">Technology Connections on Analog TV</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2022/01/10/apple-alternative-payments-app-store-south-korea/">Apple will Allow Alternate Payment Systems in the App Store in 🇰🇷</a>, with a catch
+
+<ul>
+<li><a href="https://developer.apple.com/storekit/">StoreKit 2</a></li>
+<li><a href="https://docs.revenuecat.com/docs/getting-started">RevenueCat Getting Started</a></li>
+<li><a href="https://twitter.com/TechEmails/status/1481339345822879745">Apple wants 30% of Uber/Lyft&#8217;s membership revenue</a></li>
+<li><a href="https://scholar.princeton.edu/sites/default/files/mgilens/files/gilens_and_page_2014_-testing_theories_of_american_politics.doc.pdf">American laws don&#8217;t reflect Americans&#8217; desires</a></li>
+</ul></li>
+</ul></li>
+<li>John&#8217;s gross printer
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Theranos">Theranos</a></li>
+<li><a href="https://amzn.to/3JVclRk">John&#8217;s printer</a></li>
+<li><a href="https://www.newegg.com/hp-laserjet-pro-m281fdw/p/N82E16828413146?Description=M281fdw&amp;cm_re=M281fdw-_-9SIAS4WCEX3274-_-Product&amp;quicklink=true">Casey&#8217;s printer</a></li>
+<li><a href="https://www.amazon.com/HP-LaserJet-Wireless-Printer-7KW55A/dp/B083ZYNPDW?tag=marcoorg-20">Marco&#8217;s laser all-in-one with the buggy networking</a></li>
+<li><a href="https://www.amazon.com/dp/B00UL4RNMS/?tag=marcoorg-20">Marco&#8217;s beloved giant printer</a> (price is currently inflated; it cost $449 in 2016)</li>
+<li><a href="https://www.amazon.com/dp/B077N6LP96/?tag=marcoorg-20">Marco&#8217;s 11x17 inkjet all-in-one</a> (also currently overpriced; it cost $249 in 2018)</li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>What do we think about <a href="https://reactjs.org/">React</a>/<a href="https://reactnative.dev/">React Native</a>? (via <a href="http://twitter.com/Asajz/status/1389024098970488833">Asajz</a>)
+
+<ul>
+<li><a href="https://twitter.com/ios_memes/status/1476531514242330630">Divorce leads children to the worst places</a></li>
+<li><a href="https://vuejs.org/">Vue.js</a></li>
+<li><a href="https://angular.io">Angular</a>
+
+<ul>
+<li>Note: <em>Not</em> <a href="https://angularjs.org/">AngularJS</a></li>
+</ul></li>
+</ul></li>
+<li>How can there be a huge ∆ between data in Photos and the actual Photos Library on disk? (via <a href="https://twitter.com/tvaziri/status/1477796588860817409">Todd Vaziri</a>)
+
+<ul>
+<li><a href="https://www.sqlite.org/lang_vacuum.html">SQLite <code>VACUUM</code></a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Some responses to our health/veganism/leather discussion last week
+
+<ul>
+<li><a href="https://www.slowboring.com/p/healthy-food">Slow Boring: Is Healthy Food Actually More Expensive?</a></li>
+<li><a href="https://www.bbc.com/news/science-environment-46654042">BBC: Climate Change: Which vegan milk is best?</a></li>
+<li><a href="https://www.imore.com/if-apple-serious-about-environment-it-needs-ditch-leather">iMore: Apple should ditch leather</a> (not mentioned, but meant to)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Get $20 off your first three bags.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>More on display tech, App Store payment processors, AirTags PR, and gross printers.</itunes:subtitle></item><item><guid isPermaLink="false">bhpdn0foz3fncwnc</guid><pubDate>Thu, 06 Jan 2022 15:36:34 +0000</pubDate><title>464: Monks at Drafting Tables</title><itunes:title>Monks at Drafting Tables</itunes:title><itunes:episode>464</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:28:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp464.mp3" length="142497332" type="audio/mpeg"/><link>https://atp.fm/464</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Stuart Hay on chroma sub-sampling, <code>4:2:2</code>, <code>4:1:1</code>, <code>4:2:0</code></li>
+<li><a href="https://www.hypershop.com/pages/hyperdrive-thunderbolt-4-power-hub">Hyper Thunderbolt 4 Dock</a>
+
+<ul>
+<li><a href="https://www.hypershop.com/products/hyperdrive-6-in-1-usb-c-media-hub">Hyper USB-C Media Hub</a></li>
+</ul></li>
+<li><em>A not-too-short aside about iPad connectivity and expandability</em>
+
+<ul>
+<li><a href="https://rogueamoeba.com/loopback/">Loopback</a></li>
+<li><a href="https://twitter.com/Catfish_Man/status/1478773567986667521">David Smith&#8217;s tweet</a></li>
+<li><a href="https://rogueamoeba.com/audiohijack/">Audio Hijack</a></li>
+<li><a href="https://audiob.us/">Audiobus</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Drawing_board">Drafting table</a></li>
+</ul></li>
+<li>Xcode and setting up for Apple Watch development (via <a href="https://twitter.com/andynormancx/status/1476573146903891974">Andy Norman</a>)</li>
+<li>Slideshow App Recommendations
+
+<ul>
+<li><a href="https://fotomagico.com/">Fotomagico</a></li>
+<li><a href="https://www.adobe.com/products/premiere-rush.html">Adobe Premiere Rush</a></li>
+</ul></li>
+<li>Canon&#8217;s flagship DSLR line <a href="https://www.theverge.com/2021/12/30/22860537/canon-dslr-mirrorless-eos-1d-x-mark-iii-development-production-end">will end&#8230; eventually</a>.
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Single-lens_reflex_camera">Single-lens reflex</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.youtube.com/watch?v=BRoOYXQ1RPk">CES: QD-OLED TVs from Sony</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=3R_W8Q-e7R4">OLED explained</a></li>
+<li><a href="https://www.youtube.com/watch?v=dhRIHF1DENI">Quantum dots explained</a></li>
+</ul></li>
+<li><a href="https://www.whathifi.com/features/is-bluetooth-holding-back-apples-airpods-we-asked-the-man-who-made-them">Interview with Gary Geaves, VP of Acoustics at Apple</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=ZwCmWhGovLQ">MaxTech video</a></li>
+<li><a href="https://www.electronicdesign.com/technologies/communications/article/21179507/spark-microsystems-whats-the-difference-between-bluetooth-and-uwb-for-highspeed-data-and-multimedia">Regarding latency</a></li>
+<li><a href="https://www.androidauthority.com/what-is-uwb-1151744/">About the UWB spectrum</a></li>
+<li><em>An aside about Apple TV interruptions</em>
+
+<ul>
+<li><code>Settings</code> → <code>Remotes and Devices</code> → <code>Bluetooth</code> → <code>Suggest Nearby AirPods</code></li>
+</ul></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>How much do we sleep? (via <a href="https://twitter.com/nathanielgori/status/1472052898951487498">Nathaniel Gori</a>)
+
+<ul>
+<li><em>An aside about dog tracking collars</em>
+
+<ul>
+<li><a href="https://shop.tryfi.com/r/59RMG2/?utm_source=referrals">Fi smart dog collar</a> — Use the code <code>NEWYEARS100</code> for $100 off. Not a sponsor. Promise. </li>
+<li><strong>Update:</strong> Fi actually made a discount code just for us: <code>ATP100</code>. They&#8217;re still not a sponsor, though.</li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Should Apple stop using leather?</li>
+<li>Thoughts on meat alternatives</li>
+<li>Late-episode follow-up:
+
+<ul>
+<li><a href="https://funfact.fm/episodes/52">Fun Fact #52: We&#8217;re off Track</a></li>
+<li><a href="https://www.macsparky.com/blog/2022/01/no-more-law/">Congratulations to David Sparks!</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://iodyne.com">Iodyne</a>: Introducing the all-new Pro Data.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>iPad Pro and Thunderbolt, QD-OLED TVs, a potential UWB future, dog-tracking, and leather.</itunes:subtitle></item><item><guid isPermaLink="false">afrmelf2qmnrb2ns</guid><pubDate>Thu, 30 Dec 2021 14:12:25 +0000</pubDate><title>463: No Indication of Progress</title><itunes:title>No Indication of Progress</itunes:title><itunes:episode>463</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp463.mp3" length="123021955" type="audio/mpeg"/><link>https://atp.fm/463</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Marco&#8217;s desk situation</li>
+<li>Casey&#8217;s desk situation
+
+<ul>
+<li><a href="https://www.amazon.com/TAVR-Free-Standing-Rotation-Adjustable-100x100mm/dp/B08TLYNJTB/">VESA stand</a></li>
+<li><a href="https://www.amazon.com/VIVO-Computer-Free-Standing-Adjustable-STAND-V001H/dp/B01FE2BCR8/ref=sr_1_4?crid=3VVT78Y449PX&amp;keywords=vesa+stand&amp;qid=1640826416&amp;sprefix=vesa+stand%2Caps%2C66&amp;sr=8-4">&#8230;an uglier one</a></li>
+<li><a href="https://www.amazon.com/USX-MOUNT-Standing-Computer-Adjustable/dp/B08MVZJRBJ/ref=sr_1_5?crid=3VVT78Y449PX&amp;keywords=vesa+stand&amp;qid=1640826416&amp;sprefix=vesa+stand%2Caps%2C66&amp;sr=8-5">&#8230;yet uglier still</a></li>
+<li><a href="https://www.amazon.com/VIVO-Adjustable-Counterbalance-Free-Standing-Tabletop/dp/B074P7Y9ZG/ref=sr_1_10?crid=3VVT78Y449PX&amp;keywords=vesa+stand&amp;qid=1640826416&amp;sprefix=vesa+stand%2Caps%2C66&amp;sr=8-10">&#8230;stand and arm</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Jonathan Dietz <a href="https://docs.google.com/spreadsheets/d/1wE4R_tc_-adhmrfHGGKBLEBzsK1y7GP7Q-6fsztRDpM/edit#gid=22797559">Comes Through</a>
+
+<ul>
+<li>Glenwing&#8217;s <a href="https://glenwing.github.io/">page</a> and <a href="https://glenwing.github.io/adapters/?section=calc">calculator</a> and <a href="https://linustechtips.com/topic/729232-guide-to-display-cables-adapters-v2/">forum post</a></li>
+<li><a href="https://www.rtings.com/tv/learn/chroma-subsampling">Chroma Subsampling</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/USB4">USB4/TB4</a> bandwidth (via <a href="https://twitter.com/dimitribouniol/status/1475302026628067328">Dimitri Bouniol</a>)</li>
+</ul></li>
+<li>Marco&#8217;s Christmas-movie Adventure
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/ILife">iLife</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IDVD">iDVD</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Design_Patterns">Gang of Four</a></li>
+<li><a href="https://sixcolors.com/post/2015/02/new-apple-photos-app-contains-uxkit-framework/"><code>UXKit</code></a></li>
+<li><a href="https://www.macrumors.com/2015/05/26/apple-discoveryd-replaced-with-mdnsresponder/"><code>discoveryd</code> and <code>mDNSResponder</code></a></li>
+</ul></li>
+<li>Holiday tech we love
+
+<ul>
+<li>Casey joins 2019 and gets AirPods Pro
+
+<ul>
+<li><a href="https://www.hifiman.com/products/detail/75">HiFiMAN HE-6</a></li>
+<li><a href="https://www.amazon.com/dp/B0778C9HQ4?tag=marcoorg-20">Beyerdynamic DT 770 Pro (250-ohm)</a></li>
+</ul></li>
+<li>Marco&#8217;s <a href="https://www.nintendo.com/switch/oled-model/">new Switch</a></li>
+<li>Tina&#8217;s <a href="https://amzn.to/3EzjeDP">new iPhone car mount</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Would we rock a full-on iMac as an external monitor if <a href="https://support.apple.com/en-us/HT204592">Target Display Mode</a> still existed? (via Jeff Fowler)</li>
+<li>Does Apple like the drama and rumors around it? (via <a href="https://twitter.com/ErikNeu/status/1475263489669226496">Erik Neu</a>)</li>
+<li>Do we close all our apps before rebooting our computers? (via <a href="https://twitter.com/AdamMHead/status/1473715985505001482">AdamMHead</a>)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation. Get $20 off your first three bags.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Holiday tech that we love and holiday tech that we don't.</itunes:subtitle></item><item><guid isPermaLink="false">uwnbz1nrsmdlwgkt</guid><pubDate>Wed, 22 Dec 2021 19:30:54 +0000</pubDate><title>462: Xcode X</title><itunes:title>Xcode X</itunes:title><itunes:episode>462</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp462.mp3" length="115410054" type="audio/mpeg"/><link>https://atp.fm/462</link><description><![CDATA[<ul>
+<li>Pre-show: &#8220;<a href="https://en.wikipedia.org/wiki/Web3">Web3</a>&#8221;</li>
+<li>Follow-up:
+
+<ul>
+<li>Thank you, <a href="https://atp.fm/join">ATP members</a></li>
+<li>Casey has changed up his setup yet again
+
+<ul>
+<li><a href="https://ianfuchs.com/">Ian Fuchs</a> at <a href="https://www.cultofmac.com">Cult of Mac</a></li>
+<li><a href="https://alogic.co/us/thunderbolt-4-blaze-hub.html">Alogic Thunderbolt 4 Blaze Hub</a></li>
+<li><a href="https://eshop.macsales.com/shop/owc-thunderbolt-hub">OWC Thunderbolt Hub</a></li>
+<li><a href="https://www.caldigit.com/thunderbolt-4-element-hub/">CalDigit Element Hub</a></li>
+<li><a href="https://www.caldigit.com/ts3-plus/">CalDigit TS3+</a></li>
+<li><a href="https://www.twitch.tv/teamarment">Team Arment on Twitch</a></li>
+<li><a href="https://www.elgato.com/en/game-capture-hd60-s-plus">Elgato HD60&#160;S+</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IEC_60320#C13">C13 plug</a></li>
+</ul></li>
+<li>&#8220;☝️ Well, actually ☝️&#8221;s on Marco&#8217;s Synology
+
+<ul>
+<li>J-series Synology devices cannot use <a href="https://en.wikipedia.org/wiki/Btrfs"><code>btrfs</code></a> (via <a href="https://twitter.com/Squozen_EU/status/1471529590434717704">Squozen</a>)</li>
+<li>64TB maximum limit (via Matt Sullivan)</li>
+</ul></li>
+<li>Marco&#8217;s jugs
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Capillary_action">Capillary action</a></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2021/07/23/exclusive-apple-testing-new-external-display-with-a-dedicated-a13-chip-and-neural-engine/">Apple Silicon in forthcoming LG displays</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Chroma_subsampling">Chroma subsampling</a></li>
+<li><a href="https://everymac.com/monitors/apple/thunderbolt/specs/apple-thunderbolt-display-27-inch-specs.html">Thunderbolt Display</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Display_Connector">ADC</a></li>
+</ul></li>
+<li>Clarifications on attention-aware features (via <a href="https://rambo.codes/">Gui Rambo</a>)</li>
+<li><a href="https://www.amazon.com/dp/B096HHWGW9?tag=marcoorg-20">Marco&#8217;s New iPhone Case</a> (via <a href="https://twitter.com/oliverames/status/1467957908637773825">Oliver Ames</a>)</li>
+</ul></li>
+<li>macOS 12.2 beta
+
+<ul>
+<li><a href="https://9to5mac.com/2021/12/16/scrolling-in-safari-with-latest-promotion-macbook-pro/">Improved scrolling in Safari with ProMotion</a></li>
+<li><a href="https://9to5mac.com/2021/12/16/apple-is-rebuilding-apple-music-as-a-full-native-app-with-macos-12-2-beta/">Apple is rebuilding Apple Music as a &#8220;full native app&#8221;</a></li>
+</ul></li>
+<li>:::✊🏻::: <a href="https://www.theverge.com/22684730/students-file-folder-directory-structure-education-gen-z">Kids these days</a> :::✊🏻:::
+
+<ul>
+<li><a href="https://www.lexaloffle.com/pico-8.php">PICO-8</a></li>
+<li><a href="https://sixcolors.com/link/2021/12/swift-playgrounds-4-arrives-including-app-store-submission/">Swift Playgrounds 4</a></li>
+</ul></li>
+<li>Post-show <code>#askatp</code>:
+
+<ul>
+<li>When did Corvettes start looking so different? (via Rob Knight)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C8)">C8 Corvette</a></li>
+</ul></li>
+<li>What vaporware would we love to see Apple work on? (via Juno Orion)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://gstrm.io/atp">Stream</a>: The ultimate developer toolkit for in-app chat.</li>
+<li><a href="https://www.revenuecat.com/">RevenueCat</a>: In-app purchases and subscriptions made easy.</li>
+<li><a href="https://greenchef.com/atp10">Green Chef</a>: The #1 meal kit for eating well. Use code <strong>atp10</strong> for 10 free meals.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>The kids these days don't understand our good-ol’ computin’ metaphors.</itunes:subtitle></item><item><guid isPermaLink="false">dkktx2y5tm1fvhnq</guid><pubDate>Thu, 16 Dec 2021 16:08:16 +0000</pubDate><title>461: Re-tend That Garden</title><itunes:title>Re-tend That Garden</itunes:title><itunes:episode>461</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp461.mp3" length="123104055" type="audio/mpeg"/><link>https://atp.fm/461</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Why would one deliberately launch <code>TextEdit</code>‽ </li>
+<li>The flood 😱
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B07CQD6M5B?tag=marcoorg-20">Cable Matters 2.5&#8221; drive enclosure</a></li>
+<li><a href="https://global.download.synology.com/download/Document/Hardware/DataSheet/DiskStation/13-year/DS1813+/enu/Synology_DS1813_Plus_Data_Sheet_enu.pdf">Synology DS1813+</a></li>
+<li><a href="https://www.synology.com/en-us/products/DS620slim">Synology 620Slim</a></li>
+<li><a href="https://www.amazon.com/dp/B083HJY9T8?tag=marcoorg-20">Synology DS420j</a></li>
+<li><a href="https://ttrdatarecovery.com/what-is-raid-0/">RAID 0</a></li>
+<li><a href="https://www.backblaze.com/b2/cloud-storage.html">Backblaze B2</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://twitter.com/andrewjwalz/status/1470984659173400577">Andrew</a> shares a <a href="https://www.consumerreports.org/cro/news/2014/02/safe-to-use-litium-batteries-in-smoke-detectors/index.htm">Consumer Reports link</a> regarding lithium batteries in smoke detectors</li>
+<li><a href="https://apps.apple.com/us/app/lg-screen-manager-lg-monitor/id1142051783?mt=12">LG Screen Manager</a> (App Store Link) now supports M1 Macs (via <a href="https://twitter.com/DaveStachowiak/status/1471207093608726531">Dave Stachowiak</a>)</li>
+<li>Casey&#8217;s LG UltraFine adventures continue</li>
+<li>LG non-UltraFine 4K and 60Hz HDMI
+
+<ul>
+<li><a href="https://amzn.to/3GQddo6">24UD58-B 24&#8221; IPS Monitor with Freesync, Black</a></li>
+<li><code>Menu</code> → <code>Picture</code> → <code>Picture Adjust</code> → <code>HDMI ULTRA HD Deep Color</code></li>
+</ul></li>
+<li>Casey&#8217;s new desk setup</li>
+<li>Potential Magic Mouse fixes
+
+<ul>
+<li>Monterey 12.1</li>
+<li><a href="https://twitter.com/mipsytipsy/status/1471007101036077057">Suggestion from Charity Majors</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2021/12/15/lg-pro-display-xdr-apple-silicon-chip-rumor/">LG is working on <strong>three</strong> new monitors?</a>
+
+<ul>
+<li><a href="https://twitter.com/dylandkt/status/1471186599547490312">Twitter thread</a></li>
+<li><a href="https://en.wikipedia.org/wiki/LG_Display">LG Displays</a></li>
+<li><a href="https://en.wikipedia.org/wiki/LG_Electronics">LG Electronics</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Tips for Android → iPhone converts? (via <a href="https://twitter.com/wellingtonsteve/status/1441019139297009667">Steve Wellington</a>)</li>
+<li>Do any of us use Finder replacements like <a href="https://cocoatech.com/">PathFinder</a>? (via Sam)</li>
+<li>Do we use Swift for anything other than iOS/macOS apps? (via Jan de Geest)</li>
+</ul></li>
+<li>Post-show: A Synology Adventure</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Radically-efficient wardrobing. Use code <strong>atppodcast</strong> for 20% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>One host floods a closet, another hot-swaps a RAID-0 disk, and the third endorses American cheese. (Any guesses on who's who?)</itunes:subtitle></item><item><guid isPermaLink="false">nezlmu15qnnsdc1o</guid><pubDate>Thu, 09 Dec 2021 16:57:58 +0000</pubDate><title>460: Desktop Laptop</title><itunes:title>Desktop Laptop</itunes:title><itunes:episode>460</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:59</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp460.mp3" length="120739498" type="audio/mpeg"/><link>https://atp.fm/460</link><description><![CDATA[<ul>
+<li>Pre-show: Christmas Conundrums
+
+<ul>
+<li><a href="https://tv.apple.com/us/movie/a-charlie-brown-christmas/umc.cmc.mbxalimrwrtq72wj4h601pyf">Charlie Brown Tree</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Ubiquiti&#8217;s breach was <a href="https://www.bleepingcomputer.com/news/security/former-ubiquiti-dev-charged-for-trying-to-extort-his-employer/">from the inside</a></li>
+<li>Casey&#8217;s UltraFine 5K seems to be UltraDead
+
+<ul>
+<li><a href="https://twitter.com/idanwarsawski/status/1467919453014929409">Idan Warsawski&#8217;s explanation</a> &amp; <a href="https://twitter.com/idanwarsawski/status/1467924575048683524">more</a></li>
+<li><a href="https://amzn.to/3Iuzt8u">Casey&#8217;s borrowed monitor</a></li>
+<li><a href="https://www.caseyliss.com/2021/12/7/monitor-liss">Casey&#8217;s blog post about Apple&#8217;s monitor situation</a></li>
+<li><a href="https://twitter.com/siracusa/status/1463243416008114178">John&#8217;s snarky quote-tweet</a></li>
+</ul></li>
+</ul></li>
+<li>Some wish-casting and predictions about the Mac lineup in 2022</li>
+<li><a href="https://www.apple.com/newsroom/2021/11/apple-announces-self-service-repair/">Apple Announces Self-Service Repair</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=2jCtVDCiY_8">Louis Rossmann&#8217;s video</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>How come the TouchBar failed where the iPhone succeeded? (via Todd Kaprielian)</li>
+<li>Why is Chromium&#8217;s dominance bad for the open web? (via Aryan Aneja)
+
+<ul>
+<li><a href="https://hypercritical.co/2013/04/12/code-hard-or-go-home">John&#8217;s blog post on open source</a></li>
+<li><a href="https://browser.kagi.com/faq.html">Kagi FAQ</a></li>
+</ul></li>
+<li>Why bother with a Mac Pro? (via Dave Saunders, who clearly wanted to torment Casey)
+
+<ul>
+<li><a href="https://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">The Case for a True Mac Pro Successor</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>The continuing saga of John&#8217;s beeps</li>
+<li>Marco&#8217;s shifts to <a href="https://neutral.fm/">Neutral</a>
+
+<ul>
+<li><a href="https://www.amazon.com/s?k=maxtrax&amp;tag=marcoorg-20">MaxTrax Recovery Boards</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.drinktrade.com/atp">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="http://impending.com/">Impending Inc.</a>: A once-in-a-lifetime opportunity for the right person. Tell them you came from ATP.</li>
+<li><a href="http://slidebox.co/">Slidebox</a>: Organize your photos with a swipe!</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Casey's continued path toward the XDR, Marco's continued path toward the Wrangler, and John's continued path away from a functioning garage.</itunes:subtitle></item><item><guid isPermaLink="false">belrtmvzu05xdllx</guid><pubDate>Thu, 02 Dec 2021 16:13:21 +0000</pubDate><title>459: The Bluetooth Adds Warmth</title><itunes:title>The Bluetooth Adds Warmth</itunes:title><itunes:episode>459</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:15</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp459.mp3" length="117914855" type="audio/mpeg"/><link>https://atp.fm/459</link><description><![CDATA[<ul>
+<li>Shocking revelations:
+
+<ul>
+<li>Marco&#8217;s wrist</li>
+<li>Casey&#8217;s desk</li>
+</ul></li>
+<li>The myth of digital audio producing stair-step sound waves
+
+<ul>
+<li><a href="https://www.doubledensity.net/178">Casey&#8217;s Double Density appearance</a></li>
+<li><a href="https://www.xiph.org/video/vid2.shtml">Xiph explainer video</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Digital-to-analog_converter">DAC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Nyquist%E2%80%93Shannon_sampling_theorem">Nyquist level</a></li>
+</ul></li>
+</ul></li>
+<li>Apple&#8217;s monitor-pricing conundrum
+
+<ul>
+<li><a href="https://astropad.com/luna-display-5-1/">Luna Display updates</a></li>
+</ul></li>
+<li>Follow-up: Junior vs. Senior Developers (via Nick Matsakis)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Peter_principle">Peter principle</a></li>
+</ul></li>
+<li><a href="https://www.youtube.com/watch?v=BhgtBxzroLI">Mac Mini rumors and renderings</a></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Which company would we love to see Apple buy &amp; integrate? (via Ryan)
+
+<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2021/11/30/ep-330">The Talk Show #330: &#8216;Headline Goes Here&#8217; with Jim Dalrymple</a></li>
+<li><a href="https://electronics.sony.com/mobile/smartphone/professional-smartphones/p/xqbe62-b">Sony Xperia PRO-I</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=gtmy-HEjTnU">Video review</a></li>
+</ul></li>
+</ul></li>
+<li>Why bother with backups anymore? (via Joe Athman)
+
+<ul>
+<li><a href="https://www.caseyliss.com/2019/10/8/brew-bundle">Casey&#8217;s scripts</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: John&#8217;s beeps
+
+<ul>
+<li><a href="https://twitter.com/siracusa/status/1461740715487207430">Captured audio</a></li>
+<li><a href="https://twitter.com/whatisthatbeep/status/1461924664469458952">What Is That Beep</a></li>
+<li><a href="https://reviewed-production.s3.amazonaws.com/1468962986000/Who-owns-what-final.jpg">Appliance brands: Who owns what?</a></li>
+<li><a href="https://forum.appliancepartspros.com/posts/t575890-whirlpool-freezer-song">Forum Post</a></li>
+<li><a href="https://www.applianceblog.com/mainforums/threads/model-wzf56r16dw01-whirlpool-upright-freezer-power-alarm-going-off.82289/post-430405">Nitram&#8217;s Mea Culpa</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://www.lutron.com/atp">Lutron Caséta</a>: Smart dimmers and lighting control.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Sweatpants, sneakers, public records, stairs, cars, some tech stuff occasionally mixed in, and what you really came for: the beeps.</itunes:subtitle></item><item><guid isPermaLink="false">mgy2oeqxotbfuhrn</guid><pubDate>Mon, 22 Nov 2021 17:00:00 +0000</pubDate><title>458: This Is Not Your First Plane Crash</title><itunes:title>This Is Not Your First Plane Crash</itunes:title><itunes:episode>458</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp458.mp3" length="116960955" type="audio/mpeg"/><link>https://atp.fm/458</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://www.amazon.com/s?k=Energizer+lithium+AA&amp;tag=marcoorg-20">Energizer lithium AA batteries</a> and <a href="https://www.amazon.com/dp/B01684J7P0/?tag=marcoorg-20">9V for smoke alarms</a></li>
+<li>Marco&#8217;s utterly bananas password-manager<strong>s</strong> setup</li>
+<li>The <a href="https://atp.fm/store">ATP on-demand store</a> is back!</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Meta/Facebook
+
+<ul>
+<li>In the Enterprise
+
+<ul>
+<li><a href="https://workplace.com/"><code>workplace.com</code></a></li>
+<li><em>An aside about <a href="https://envato.com/blog/scroll-hijacking/">scrolljacking</a></em>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Parallax_scrolling">Parallax Scrolling</a></li>
+</ul></li>
+</ul></li>
+<li>Hardware prowess</li>
+<li>Gaming</li>
+<li>Wearing VR headsets</li>
+</ul></li>
+<li>Apple TV+ <a href="https://tv.apple.com/">on the web</a></li>
+<li>HomePod problems abound (via <a href="https://twitter.com/JoeMesterhazy/status/1460770327923810310">Joe Mesterhazy</a>)
+
+<ul>
+<li><a href="https://youtube.com/watch?v=lptLswqx-Sc&amp;t=40s">YouTube video describing the problem</a></li>
+</ul></li>
+<li>Plex and two-zone playback
+
+<ul>
+<li><a href="https://twitter.com/ebernet/status/1460720101007577088">ebernet&#8217;s explanation</a></li>
+<li><a href="https://firecore.com/infuse">Infuse</a></li>
+</ul></li>
+<li><a href="https://bullstrap.co/products/magsafe-iphone-cases-ocean">Bullstrap leather case</a> review</li>
+<li>Marco&#8217;s pants update
+
+<ul>
+<li><a href="https://bananarepublic.gap.com/browse/product.do?pid=320601002">Banana Republic Traveler</a></li>
+<li><a href="https://spoke-london.com/us/products/rinse-wash-travel-denim">Spoke London Travel Denim</a> and <a href="https://spoke-london.com/us/products/navy-cord-fives-aw20">Cord Fives</a></li>
+</ul></li>
+</ul></li>
+<li>Laying out the Apple Silicon roadmap
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=JfMr2F7Ua1E">Max Tech video</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>How can one keep an older MacBook Pro running well? (via Stephan)</li>
+<li>How do we organize our pictures? (via Guilherme Alles)
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/peek-a-view/id1491554407?ls=1">Peek‑a‑View</a></li>
+</ul></li>
+<li>What&#8217;s the ∆ between a junior &amp; senior developer? (via Roar Lochar)
+
+<ul>
+<li><a href="https://twitter.com/PR0GRAMMERHUM0R/status/1450084273894141954">Programmer Humor&#8217;s Tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Gene_Hackman">Gene Hackman</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: John&#8217;s mystery beeps</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://earnest.com/atp">Earnest</a>: Freedom of choice meets student loans.</li>
+<li><a href="https://rows.com/">Rows</a>: The spreadsheet with superpowers.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Pants hacks, mystery beeps, password-manager battles, and Casey's totally fine setup.</itunes:subtitle></item><item><guid isPermaLink="false">umhfeertmzb6uxvo</guid><pubDate>Tue, 16 Nov 2021 16:37:53 +0000</pubDate><title>457: The World's Greatest Conference Call</title><itunes:title>The World's Greatest Conference Call</itunes:title><itunes:episode>457</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp457.mp3" length="124295751" type="audio/mpeg"/><link>https://atp.fm/457</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Watching shows on Apple</li>
+<li>Some ATP membership bookkeeping</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Xcode build times (via Abel Demoz)<br />
+<code>defaults write com.apple.dt.Xcode ShowBuildOperationDuration YES</code></li>
+<li><a href="https://eclecticlight.co/2021/11/15/montereys-memory-leak-and-how-to-avoid-it/">Monterey&#8217;s Mouse Pointer Memory Leak Bug</a></li>
+<li>Marco has [Original] HomePod Problems
+
+<ul>
+<li><a href="https://amzn.to/3FlbsOY">Belkin Soundform Connect</a></li>
+</ul></li>
+<li>Marco replaces <a href="https://weatherlineapp.com/">Weather Line</a> with <a href="http://www.meetcarrot.com/weather/">Carrot Weather</a>
+
+<ul>
+<li><a href="https://weatherlineapp.com/blog/weather-line-is-being-acquired">Weather Line acquisition</a></li>
+<li><a href="https://apps.apple.com/us/story/id1337363794">App Store feature on Brian Mueller of Carrot Weather</a></li>
+<li><a href="https://www.weatherstrip.app/">Weather Strip</a></li>
+</ul></li>
+<li>Seller risks on eBay
+
+<ul>
+<li><a href="https://swappa.com/">Swappa</a></li>
+</ul></li>
+</ul></li>
+<li>Facebook and Meta
+
+<ul>
+<li><a href="https://stratechery.com/2021/an-interview-with-mark-zuckerberg-about-the-metaverse/">Stratechery Interview with Mark Zuckerberg</a></li>
+<li><a href="https://www.oculus.com/quest-2/">Oculus Quest 2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ITunes_Ping">Ping</a></li>
+<li><a href="https://worldofwarcraft.com/">World of Warcraft</a></li>
+<li><a href="https://secondlife.com/">SecondLife</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Internet_Relay_Chat">IRC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/MUD">MUD</a></li>
+<li><a href="https://en.wikipedia.org/wiki/MUSH">MUSH</a></li>
+<li><a href="https://www.microsoft.com/en-us/hololens">HoloLens 2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chatroulette">Chatroulette</a></li>
+<li><a href="https://www.youtube.com/watch?v=9bjve67p33E">Knowledge Navigator</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Idiocracy">Idiocracy</a></li>
+</ul></li>
+<li>Post-show: Casey broke two car keys in the span of 10 minutes
+
+<ul>
+<li><a href="https://www.volvocars.com/us/v/cars/xc90-hybrid">Volvo XC90</a></li>
+<li><a href="https://www.youtube.com/watch?v=-ZHQps858Yw">Example replacement video</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Radically-efficient wardrobing. Use code <strong>atppodcast</strong> for 20% off your first order.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Weather apps, luxury podcasts, and Facebook's fantasy metaverse.</itunes:subtitle></item><item><guid isPermaLink="false">z3ffrepncxbpuu1a</guid><pubDate>Thu, 11 Nov 2021 18:37:18 +0000</pubDate><title>456: The Monitor Situation</title><itunes:title>The Monitor Situation</itunes:title><itunes:episode>456</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp456.mp3" length="109872689" type="audio/mpeg"/><link>https://atp.fm/456</link><description><![CDATA[<p><a href="https://atp.fm/store">The ATP Store <strong>IS BACK</strong></a>! Grab your fancy new M1 Pro or Max shirts, winter hats, or classic merch until the end of the day THIS FRIDAY!</p>
+
+<p>Remember, <a href="https://atp.fm/join">ATP Members</a> get 15% off on
+time-limited sales like this one!</p>
+
+<ul>
+<li>Follow-up:
+
+<ul>
+<li>iMessage in <a href="https://support.apple.com/en-us/HT202303">iCloud Security Overview</a></li>
+<li><a href="https://arstechnica.com/gadgets/2021/11/apple-fixes-bug-that-caused-macos-monterey-update-to-brick-some-apple-t2-macs/">Apple&#8217;s T2 Macs and Monterey</a></li>
+<li>Avoiding the notch using <a href="https://github.com/avibrazil/RDM">RDM</a> (via <a href="https://twitter.com/drebes/status/1456651102418575361">Roberto Jung Drebes</a>)</li>
+</ul></li>
+<li>Casey&#8217;s MacBook Pro Updates
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MK2C3LL/A/magic-keyboard-with-touch-id-and-numeric-keypad-for-mac-models-with-apple-silicon-us-english">Magic Keyboard with Touch ID and Numeric Keypad for Mac models with Apple silicon - US English</a> ($180)</li>
+<li><a href="https://www.apple.com/shop/product/MK293LL/A/magic-keyboard-with-touch-id-for-mac-models-with-apple-silicon-us-english">Magic Keyboard with Touch ID for Mac models with Apple silicon - US English</a> ($150)</li>
+<li><a href="https://www.apple.com/shop/product/MK2D3AM/A/magic-trackpad">Magic Trackpad</a> ($130)</li>
+<li><a href="https://www.apple.com/shop/product/HMUB2LL/A/lg-ultrafine-5k-display">LG UltraFine 5K</a>
+
+<ul>
+<li><a href="https://starport75.com/podcast/">Starport 75 Podcast</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2014/04/22/elevation-stand-for-imac/">Casey&#8217;s iMac Stand</a></li>
+</ul></li>
+<li>Marco reviews iPhone 13 Pro cases
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MM2D3ZM/A/iphone-13-pro-silicone-case-with-magsafe-marigold">Apple Silicone</a></li>
+<li><a href="https://www.nudient.com/product/thin-v3-case-midwinter-blue-iphone-13-pro">Nudient Thin v3</a></li>
+<li><a href="https://buypeel.com/products/super-thin-iphone-13-pro-case?variant=39449776029779">Peel Clear White</a></li>
+<li><a href="https://www.totalleecase.com/products/iphone-13-pro-case?variant=39597105381438">Totallee Pearl White</a></li>
+<li><a href="https://www.totalleecase.com/collections/iphone-13-pro-cases/products/iphone-13-pro-case?variant=39577424298046">Totallee Clear Soft</a></li>
+<li><a href="https://caudabe.com/products/sheath-iphone-13-pro?variant=39541533409377">Caudabe Sheath</a></li>
+<li><a href="https://www.ipitaka.com/products/magez-case-2-for-iphone-13">Pitaka MagEZ Case 2</a> (not tested)</li>
+<li><a href="https://bullstrap.co/products/magsafe-iphone-cases-ocean">Bullstrap</a> (not tested)</li>
+</ul></li>
+<li>How Could One Improve the MacBook Pros?
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/SD_card">SD Card</a></li>
+<li><a href="https://en.wikipedia.org/wiki/CFexpress">CFexpress</a></li>
+<li><a href="https://en.wikipedia.org/wiki/HDMI#Version_2.1">HDMI 2.1</a></li>
+</ul></li>
+<li>A None-Too-Brief Aside About Apple External Monitors
+
+<ul>
+<li><a href="https://www.bhphotovideo.com/c/product/1649963-REG/asus_pa32ucg_k_32_4k_hdr_uhd.html">ASUS ProArt Display PA32UCG-K 32&#8221; 16:9 FreeSync2&#160;4K 120&#160;Hz HDR Mini-LED IPS Monitor</a> </li>
+</ul></li>
+<li>Post-show <code>#askatp</code>:
+
+<ul>
+<li>Why don&#8217;t we talk about processor clock speed anymore? (via <a href="https://twitter.com/yosefitche/status/1455948739575701510">Yossi Kanner</a>)</li>
+<li>Would we rather use a previous-gen MacBook Pro with an M1 Max, or the new MacBook Pro with an Intel CPU? (via Joel Short)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.lutron.com/atp">Lutron Caseta</a>: Smart dimmers and lighting control.</li>
+<li><a href="https://www.revenuecat.com">RevenueCat</a>: In-app subscriptions and payments made easy.</li>
+<li><a href="https://www.connection.com/atp">Connection</a>: An Apple US Corporate Reseller, Higher-Education Reseller, and Apple Service Provider.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+
+<p><a href="https://atp.fm/store">Check out our store</a> to get some sweet //////ATP merchandise!</p>
+]]></description><itunes:subtitle>More MacBook Pro joy, the future of the iMac, a pile of iPhone 13 Pro cases, and Casey's new-yet-again setup.</itunes:subtitle></item><item><guid isPermaLink="false">ddror2dxnuxvmepv</guid><pubDate>Thu, 04 Nov 2021 16:04:02 +0000</pubDate><title>455: Your Yanking Force</title><itunes:title>Your Yanking Force</itunes:title><itunes:episode>455</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:17:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp455.mp3" length="132579515" type="audio/mpeg"/><link>https://atp.fm/455</link><description><![CDATA[<p><a href="https://atp.fm/store">The ATP Store <strong>IS BACK</strong></a>! Grab your fancy new M1 Pro or Max shirts, winter hats, or classic merch until the end of the day on 12 November!</p>
+
+<p>Remember, <a href="https://atp.fm/join">ATP Members</a> get 15% off on
+time-limited sales like this one!</p>
+
+<ul>
+<li>Pre-show: Setup Woes
+
+<ul>
+<li><a href="https://www.adobe.com/products/audition.html">Audition</a></li>
+<li><a href="https://github.com/Homebrew/homebrew-bundle">Homebrew Bundle</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/2019/10/8/brew-bundle">Casey&#8217;s Post on Homebrew Bundle</a></li>
+<li><a href="https://gist.github.com/cliss/74782128b9a35366ecac44a7c4b45752">Casey&#8217;s bundle file</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>What does Marco use for a Thunderbolt dock? (via <a href="https://twitter.com/cesarcvz/status/1453925066534637575">César Cavazos</a>)
+
+<ul>
+<li><a href="https://www.owcdigital.com/products/thunderbolt-dock">OWC Thunderbolt Dock</a></li>
+<li><a href="https://www.caldigit.com/ts3-plus/">Caldigit TS3+ Hub</a></li>
+<li><a href="https://www.caldigit.com/thunderbolt-4-element-hub/">Caldigit Element Hub</a></li>
+</ul></li>
+<li>John&#8217;s AirPods 3 updates</li>
+<li>Monterey Status Report
+
+<ul>
+<li><a href="https://shirt-pocket.com/SuperDuper/SuperDuperDescription.html">SuperDuper</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/22751921/apple-macbook-pro-14-16-inch-2021-m1-pro-max-review">The Verge&#8217;s MacBook Pro review</a></li>
+<li>MacBook Pro Charging via USB-C
+
+<ul>
+<li><a href="https://thunderbolttechnology.net/sites/default/files/intel-thunderbolt4-announcement-press-deck.pdf">Thunderbolt PDF</a></li>
+<li><a href="https://www.pcmag.com/how-to/what-is-thunderbolt-4-why-this-new-interface-will-matter-in-pcs-in-2021">PC Magazine</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Display_Connector">ADC</a></li>
+</ul></li>
+<li>MacBook Pro &#8220;Compatibility Mode&#8221;
+
+<ul>
+<li><code>Scale to fit below built-in camera</code></li>
+<li><a href="https://twitter.com/Jatodaro/status/1453382287328874497">Tweet with video</a></li>
+</ul></li>
+<li>Notch codename <a href="https://twitter.com/filipeesposito/status/1450201130772967430">was <code>Daisy</code></a>?</li>
+<li><a href="https://9to5mac.com/2021/10/29/not-so-smooth-scrolling-macbook-pro/">120&#160;Hz scrolling on new MacBook Pros</a>
+
+<ul>
+<li><a href="https://twitter.com/paranoidroid/status/1453883866964381699">Chrome shenanigans</a></li>
+</ul></li>
+<li>Marco&#8217;s Mystery Terabyte update
+
+<ul>
+<li><code>Disk Utility</code> → <code>View</code> → <code>Show APFS Snapshots</code></li>
+<li><a href="https://support.apple.com/en-us/HT212832">Purging files on iOS</a></li>
+</ul></li>
+</ul></li>
+<li>Marco&#8217;s experience with <a href="https://www.casetawireless.com/">Lutron Caséta</a>
+
+<ul>
+<li><a href="https://www.waveformlighting.com/">Waveform Lighting</a></li>
+<li><a href="https://www.evehome.com/en/eve-motion">Eve Motion</a></li>
+<li><a href="https://www.casetawireless.com/products/pico-remotes">Caséta Motion Sensor</a> (scroll down)</li>
+<li><a href="https://www.youtube.com/watch?v=85yH56DS5mg">Quinn&#8217;s Smart Home Video</a></li>
+</ul></li>
+<li>[More] MacBook Pro impressions
+
+<ul>
+<li><a href="https://www.relay.fm/upgrade/379">Upgrade #379: They Feed on Memory</a></li>
+<li><a href="https://uploads.kiwiirc.com/files/fb22ed19f2f5eb84bdf68882510fff32/IMG_E5F188D2709A-1.jpeg">MagSafe 1/2/3 side-by-side</a></li>
+<li><a href="https://lunadisplay.com/">Luna Display</a></li>
+</ul></li>
+<li>Post-show: How does Marco unload old computers?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://stripe.com/">Stripe</a>: Learn more about how Stripe can support your business.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+
+<p><a href="https://atp.fm/store">Check out our store</a> to get some sweet //////ATP merchandise!</p>
+]]></description><itunes:subtitle>Thunderbolt docks, a smart-home system that actually works, even more on the MacBook Pro, and selling our (not-so-)old computers.</itunes:subtitle></item><item><guid isPermaLink="false">ov8wvvriu05qnmlt</guid><pubDate>Thu, 28 Oct 2021 13:54:40 +0000</pubDate><title>454: The Notch is Young</title><itunes:title>The Notch is Young</itunes:title><itunes:episode>454</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp454.mp3" length="120642516" type="audio/mpeg"/><link>https://atp.fm/454</link><description><![CDATA[<p><a href="https://atp.fm/store">The ATP Store <strong>IS BACK</strong></a>! Grab your fancy new M1 Pro or Max shirts, winter hats, or classic merch until the end of the day on 12 November!</p>
+
+<p>Remember, <a href="https://atp.fm/join">ATP Members</a> get 15% off on
+time-limited sales like this one!</p>
+
+<ul>
+<li>Pre-show: Marco&#8217;s acquisition adventure
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B07BFJZTMV/?tag=marcoorg-20">IceMule Cooler Backpack (size Xlarge)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Veblen_good">Veblen good</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>APFS fast directory sizing
+
+<ul>
+<li><a href="https://apple.stackexchange.com/questions/316739/how-can-i-tell-if-a-directory-has-apfs-fast-directory-sizing-enabled">Chris&#8217; answer on StackExchange</a></li>
+<li><a href="https://developer.apple.com/support/apple-file-system/Apple-File-System-Reference.pdf">APFS File System Reference</a></li>
+<li><code>INODE_MAINTAIN_DIR_STATS</code></li>
+</ul></li>
+<li><a href="https://www.anandtech.com/show/17024/apple-m1-max-performance-review/">Anandtech on the M1 Pro &amp; Max performance</a>
+
+<ul>
+<li><a href="https://twitter.com/Rnd_864jyt8532g/status/1451993179029442563">Dom&#8217;s question</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SPECfp">SPECfp</a></li>
+</ul></li>
+<li><a href="https://daringfireball.net/linked/2021/10/26/m1-max-affinity">Gruber&#8217;s summary of the Affinity team&#8217;s findings</a></li>
+<li><a href="https://twitter.com/Stammy/status/1453127358119088129">The only benchmark that matters</a></li>
+<li><a href="https://gist.github.com/siracusa/bb006d14e9906ac215fdee7685dc4b4c">Johnathan Dietz Jr on Pro Display XDR @ 120Hz</a></li>
+<li>What about <a href="https://support.apple.com/en-gb/guide/activity-monitor/actmntr34865/mac"><code>Memory Pressure</code></a>?</li>
+<li><a href="https://www.kuhl.com/kuhl/mens/pants/the-law/">Marco&#8217;s Kühl&#8217;s pants</a></li>
+</ul></li>
+<li>John&#8217;s <a href="https://www.apple.com/airpods-3rd-generation/">AirPods 3</a> impressions</li>
+<li>MacBook Pro impressions
+
+<ul>
+<li><a href="https://www.macrumors.com/2021/10/27/macbook-pro-shipments-delayed-ups/">Casey&#8217;s very sad y&#8217;all</a></li>
+<li><a href="https://www.relay.fm/radar/229">Under the Radar #229: Money, Time, and M1 Max Macs</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1453007425188024324">In-Store configuration options</a></li>
+<li><a href="http://www.spacegremlinapp.com/">Space Gremlin</a></li>
+<li><a href="http://grandperspectiv.sourceforge.net/">Grand Perspective</a></li>
+<li><a href="https://www.theverge.com/2021/10/27/22748371/apple-macbook-pro-notch-issues-inconsistencies-apps">Quinn Nelson on notch inconsistencies</a></li>
+<li>Apps
+
+<ul>
+<li><a href="https://www.macbartender.com/">Bartender</a></li>
+<li><a href="https://matthewpalmer.net/vanilla/">Vanilla</a></li>
+<li><a href="https://www.publicspace.net/Denotchifier/">Denotchifier</a></li>
+<li><a href="https://topnotch.app/">Top Notch</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Marco watches sports
+
+<ul>
+<li><a href="https://xkcd.com/1053/">XKCD #1053: Ten Thousand</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FoxTrax">FoxTrax</a></li>
+<li><a href="https://en.wikipedia.org/wiki/1st_%26_Ten_%28graphics_system%29">First down line</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chronic_traumatic_encephalopathy">CTE</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://Earnest.com/atp">Earnest</a>: Freedom of choice meets student loans</li>
+<li><a href="https://www.lutron.com/atp">Lutron Caséta</a>: Smart dimmers and lighting control.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+
+<p><a href="https://atp.fm/store">Check out our store</a> to get some sweet ///ATP merchandise!</p>
+]]></description><itunes:subtitle>MacBook Pro and AirPods 3 first impressions, wardrobe functions, a mystery terabyte, and helping with homework.</itunes:subtitle></item><item><guid isPermaLink="false">zdvsy2zutxnxuhjx</guid><pubDate>Thu, 21 Oct 2021 15:08:59 +0000</pubDate><title>453: As the Prophecy Foretold</title><itunes:title>As the Prophecy Foretold</itunes:title><itunes:episode>453</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:45:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp453.mp3" length="159174413" type="audio/mpeg"/><link>https://atp.fm/453</link><description><![CDATA[<ul>
+<li><a href="https://www.apple.com/apple-events/">Apple&#8217;s &#8220;Unleashed.&#8221; Event</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=OxJpZtp2ItE"><em>Start Up</em></a></li>
+<li><a href="https://twitter.com/siracusa/status/1450146183549231108">John&#8217;s Tweet</a></li>
+<li><a href="https://www.apple.com/apple-music/">Apple ✔️s</a> (scroll <em>way</em> down)</li>
+<li>Monterey quick hits
+
+<ul>
+<li>Monday, 25 October</li>
+<li><a href="https://www.apple.com/macos/monterey/">Tabs that look like tabs!!</a>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2021/10/safari-15-watch-old-tabs-edition/">Snell&#8217;s coverage</a></li>
+</ul></li>
+</ul></li>
+<li>M1 Pro &amp; M1 Max
+
+<ul>
+<li><a href="https://twitter.com/siracusa/status/1395706013286809600">John&#8217;s &#8220;City of Chips&#8221; tweet</a>
+
+<ul>
+<li><a href="https://twitter.com/siracusa/status/1450202454067400711">John&#8217;s Self-FU</a></li>
+</ul></li>
+<li><a href="https://hypercritical.co/2021/05/21/images/city-of-chiplets.png">John&#8217;s &#8220;City of Chips&#8221; diagram</a></li>
+<li><a href="https://www.anandtech.com/show/17019/apple-announced-m1-pro-m1-max-giant-new-socs-with-allout-performance">Anandtech&#8217;s Coverage</a>
+
+<ul>
+<li><a href="https://images.anandtech.com/doci/17019/Die-Sizes.jpg">M1 floorplan comparisons</a></li>
+<li><a href="https://images.anandtech.com/doci/17019/M1PRO.jpg">M1 Pro Floorplan</a></li>
+<li><a href="https://images.anandtech.com/doci/17019/M1MAX.jpg">M1 Max floorplan</a></li>
+</ul></li>
+<li><a href="https://twitter.com/wild_cracks/status/1450530377425162249">WildCrack&#8217;s tweet</a></li>
+<li><a href="https://twitter.com/Darth_Goldsmith/status/1450543143569428483">Mike Goldsmith&#8217;s tweet</a></li>
+<li><a href="https://sixcolors.com/post/2021/10/the-macbook-pro-and-macos-details-apple-didnt-talk-about/">Six Colors&#8217; coverage of M1 Pro/Max variants</a></li>
+<li><a href="https://twitter.com/numist/status/1450151762757767168">Scott Perry on DRAM</a></li>
+<li><a href="https://twitter.com/Josh_M_Rogers/status/1450232090956480513">Josh Rogers on GPU comparisons</a>
+
+<ul>
+<li><a href="https://www.pocket-lint.com/laptops/reviews/msi/158000-msi-ge76-raider-review-2021-gaming">Review of MSI GE76 Raider</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/macbook-pro-14-and-16/">New MacBook Pros</a>
+
+<ul>
+<li><a href="https://i.imgur.com/J8ObMEl.png">PORTS (courtesy chatroom user <code>rmorey</code>)</a></li>
+<li><a href="https://sixcolors.com/post/2021/10/exile-from-dongletown/">Snell on charging quirks</a></li>
+<li><a href="https://twitter.com/jnadeau/status/1450154346977521667">Jeff Nadeau&#8217;s tweet</a></li>
+<li><a href="https://twitter.com/DavidPSchaub/status/1449537005285609473">David Schaub&#8217;s Nostradamus Moment</a></li>
+<li><a href="https://twitter.com/lindadong/status/1450475465915854849">Linda Dong&#8217;s Twitter thread</a></li>
+<li>HIG documentation
+
+<ul>
+<li><a href="https://developer.apple.com/design/human-interface-guidelines/macos/app-architecture/fullscreen-mode/">Full-Screen Mode</a></li>
+<li><a href="https://developer.apple.com/design/human-interface-guidelines/macos/menus/menu-bar-menus/">Menu Bar Menus</a></li>
+</ul></li>
+</ul></li>
+<li>Our orders
+
+<ul>
+<li>Marco
+
+<ul>
+<li>14&#8221;, M1 Pro, 16-core GPU</li>
+<li>16GB RAM</li>
+<li>1TB SSD</li>
+</ul></li>
+<li>Casey
+
+<ul>
+<li>14&#8221;, M1 Max, 24-core GPU</li>
+<li>64GB RAM</li>
+<li>4TB SSD</li>
+</ul></li>
+<li>John
+
+<ul>
+<li>&#8230;AirPods.</li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Rumor round-up
+
+<ul>
+<li><a href="https://9to5mac.com/2021/04/21/2021-macbook-pro-ports-leak/">9to5Mac on the ransomware leak</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-05-18/apple-readies-macbook-pro-macbook-air-revamps-with-faster-chips">Bloomberg/Gurman&#8217;s Roundup</a></li>
+<li>Which Intel Macs remain?
+
+<ul>
+<li>Mac mini</li>
+<li>27&#8221; iMac</li>
+<li>21.5&#8221; iMac</li>
+<li>Mac Pro</li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://stripe.com">Stripe</a>: Learn more about how Stripe can support your business.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+
+<p><a href="https://atp.fm/store">Check out our store</a> to get some sweet //////ATP merchandise!</p>
+]]></description><itunes:subtitle>The new MacBook Pro.</itunes:subtitle></item><item><guid isPermaLink="false">thn2elzyrwdvx1bm</guid><pubDate>Thu, 14 Oct 2021 16:10:14 +0000</pubDate><title>452: It's Totally Leashed</title><itunes:title>It's Totally Leashed</itunes:title><itunes:episode>452</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:46:32</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp452.mp3" length="102450026" type="audio/mpeg"/><link>https://atp.fm/452</link><description><![CDATA[<ul>
+<li>Pre-show: Apple Watch preorders</li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.reuters.com/technology/exclusive-dutch-watchdog-finds-apple-app-store-payment-rules-anti-competitive-2021-10-07/">Dutch watchdog finds Apple App Store payment rules anti-competitive</a></li>
+<li><a href="https://www.theverge.com/2021/9/28/22698196/microsoft-store-third-party-app-stores-epic-games-amazon">Microsoft store to allow third-party app stores</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Matryoshka_doll">Matryoshka doll</a>-720p-RiP.<a href="https://en.wikipedia.org/wiki/Matroska">mkv</a></li>
+<li><a href="https://knowyourmeme.com/memes/xzibit-yo-dawg">Yo dawg</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pimp_My_Ride">MTV&#8217;s Pimp My Ride</a></li>
+</ul></li>
+<li><a href="https://bashmodernquantity.com/blog/2021/10/12/iphone-13-pro-better-than-it-needs-to-be/">Thomas Q Brady&#8217;s adventures with his iPhone 13 Pro</a>
+
+<ul>
+<li><a href="https://www.youtube.com/channel/UCV-KFx9A6HD7gZ3FoMNzt7g">Man + River</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IP_Code">IP Code</a></li>
+</ul></li>
+<li>Regarding bugs in your pasta (<strong>It&#8217;s not about the pasta!</strong>) (via <a href="https://twitter.com/linnefaulk/status/1443609997259132928">Sharon Linne Faulk</a>)
+
+<ul>
+<li><a href="https://www.pestshero.com/bugs-in-pasta/">What bugs/larvae/eggs can you eat?</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-events/">Apple&#8217;s &#8220;Unleashed.&#8221; Event</a>
+
+<ul>
+<li><a href="https://twitter.com/gregjoz/status/1447956519132151810">Joz&#8217;s tweet</a></li>
+</ul></li>
+<li>Marco&#8217;s new Dropbox setup
+
+<ul>
+<li><a href="https://maestral.app/">Maestral</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Inotify"><code>inotify</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/FSEvents"><code>FSEvents</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Kqueue"><code>kqueue</code></a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Why are progress bars so hard? (via Derek Aldridge)</li>
+<li>What&#8217;s a good automotive blog? (via <a href="https://twitter.com/fedtrial/status/1438880429382279171">Tom Jacob</a>)
+
+<ul>
+<li><a href="https://netnewswire.com/">NetNewsWire</a></li>
+<li><a href="https://jalopnik.com/">Jalopnik</a></li>
+<li>YouTube Channels:
+
+<ul>
+<li><a href="https://www.youtube.com/c/DougDeMuro">Doug DeMuro</a></li>
+<li><a href="https://www.youtube.com/user/TheStraightPipes">Straight Pipes</a></li>
+<li><a href="https://www.youtube.com/c/savagegeese">Savage Geese</a></li>
+<li><a href="https://www.youtube.com/c/RegularCars">Regular Car Reviews</a></li>
+<li><a href="https://www.youtube.com/c/alexonautos">Alex on Autos</a></li>
+<li><a href="https://www.motorweek.org/">MotorWeek</a></li>
+<li><a href="https://www.youtube.com/c/M539Restorations">M539 Restorations</a></li>
+</ul></li>
+</ul></li>
+<li>Does John maintain his old hardware? (via Sean Cohen)</li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>The search for John&#8217;s backup winter hat
+
+<ul>
+<li><a href="https://cdn.shopify.com/s/files/1/2000/1721/products/image_d680d042-465c-460e-ac80-5eeaa4c94e7e_2048x2048.png?v=1610798919">🐔🧢</a></li>
+<li><a href="https://i.pinimg.com/originals/6b/5d/a9/6b5da91c04b11af4d68a1e9c490b6534.jpg">Extreme 🐔🧢</a></li>
+<li><a href="https://cdni.llbean.net/is/image/wim/500038_2255_41?hei=1092&amp;wid=950&amp;resMode=sharp2&amp;defaultImage=llbprod/A0211793_2">🎿🧢</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Radically-efficient wardrobing. Use code <strong>atppodcast</strong> for 20% off your first order.</li>
+<li><a href="https://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://www.revenuecat.com/">RevenueCat</a>: Powering in-app purchases and subscriptions for thousands of the world’s best apps.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+
+<p><a href="https://atp.fm/store">Check out our store</a> to get some sweet //////ATP merchandise!</p>
+]]></description><itunes:subtitle>An alleged lack of FOMO, third-party Windows app stores, a better Dropbox life, why progress bars are hard, and our hopes and dreams for next week's Apple event.</itunes:subtitle></item><item><guid isPermaLink="false">yuvjyzi4x2j4s1ll</guid><pubDate>Thu, 07 Oct 2021 17:23:20 +0000</pubDate><title>451: A Series of Terrible Magic Tricks</title><itunes:title>A Series of Terrible Magic Tricks</itunes:title><itunes:episode>451</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:23</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp451.mp3" length="128269404" type="audio/mpeg"/><link>https://atp.fm/451</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://www.theverge.com/2021/10/4/22708989/instagram-facebook-outage-messenger-whatsapp-error">Facebook&#8217;s outage</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Border_Gateway_Protocol">BGP</a> is a thing. Who knew? (John did.)</li>
+<li><a href="https://blog.cloudflare.com/october-2021-facebook-outage/">Understanding How Facebook Disappeared from the Internet</a></li>
+<li><a href="https://engineering.fb.com/2021/10/05/networking-traffic/outage-details/">Explanation from Facebook</a></li>
+</ul></li>
+<li>Thank you to Hsiang-Ling Jennifer Lin&#8217;s parents!</li>
+<li>We&#8217;ve opened <a href="https://atp.fm/store"><strong>an on-demand ATP store!</strong></a>
+
+<ul>
+<li><a href="https://www.youtube.com/channel/UCO2x-p9gg9TLKneXlibGR7w">Quinn Nelson&#8217;s YouTube channel</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.anandtech.com/show/16983/the-apple-a15-soc-performance-review-faster-more-efficient">Anandtech on the A15</a>
+
+<ul>
+<li><a href="https://www.macrumors.com/2021/10/05/apple-a15-chip-faster-than-claimed/">MacRumors&#8217; summary</a></li>
+</ul></li>
+<li>On RAW data rates (via Brian Petersen)
+
+<ul>
+<li><a href="https://lux.camera/understanding-proraw/">Understanding ProRAW</a></li>
+</ul></li>
+<li><a href="https://www.polygon.com/2015/3/5/8158001/destiny-animation-motion-sickness">John&#8217;s motion sickness and gaming</a></li>
+<li>Marco&#8217;s updates
+
+<ul>
+<li><a href="https://www.kuhl.com/kuhl/mens/pants/">Kühl pants</a></li>
+<li><a href="https://www.apple.com/shop/product/MM2D3ZM/A/iphone-13-pro-silicone-case-with-magsafe-marigold">Apple Silicone Case</a></li>
+<li><a href="https://buypeel.com/">Peel Cases</a></li>
+<li><a href="https://www.nudient.com/product/thin-v3-case-midwinter-blue-iphone-13">Nudient Cases</a></li>
+<li><a href="https://www.proclipusa.com/category/magsafe-car-mounts">ProClipUSA Magafe Car Mount</a></li>
+<li><a href="https://rivian.com/r1s">🚨 SPOILER ALERT 🚨 Marco&#8217;s deposit</a></li>
+<li>Tesla ends leases as well as they build cars</li>
+</ul></li>
+</ul></li>
+<li>Possible 14&#8221; and 16&#8221; MacBook Pro rumors
+
+<ul>
+<li><a href="https://www.macrumors.com/2021/09/23/macbook-pro-2021-resolutions/">Display resolutions</a></li>
+<li>What do we expect? What would we be surprised by?</li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Would/should Apple make ergonomic accessories? (via Johnny Oliver)
+
+<ul>
+<li><a href="https://www.microsoft.com/en-us/d/surface-arc-mouse/8mrmszc6vxkc">Surface Arc Mouse</a></li>
+</ul></li>
+<li>Can the <code>This website is using significant energy</code> notices be stopped? (via Michael Hagan)</li>
+<li>When will we get CarPlay from watchOS? (via <a href="https://twitter.com/yonatron/status/1430684146804924416">Yoni</a>)</li>
+</ul></li>
+<li>Post-show: <a href="https://apple.com/watch">Apple Watch Series 7</a> buying plans
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/watchkit/supporting_multiple_watch_sizes">Apple Developer: Supporting Multiple Watch Sizes</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/atp14">Hello Fresh</a>: America’s #1 Meal Kit. Use code <strong>atp14</strong> for up to 14 free meals.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Facebook's outage, A15 analysis, the latest MacBook Pro rumors, and a surprise mid-show Neutral.</itunes:subtitle></item><item><guid isPermaLink="false">tdittzc2ws1vb2tq</guid><pubDate>Thu, 30 Sep 2021 14:56:07 +0000</pubDate><title>450: Distending My Wardrobe</title><itunes:title>Distending My Wardrobe</itunes:title><itunes:episode>450</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp450.mp3" length="122824925" type="audio/mpeg"/><link>https://atp.fm/450</link><description><![CDATA[<ul>
+<li><strong><a href="https://stjude.org/atp">Please donate to St. Jude</a></strong>. Cancer sucks, and childhood cancer sucks a lot. Please donate <strong>any</strong> amount of money, if you can.
+
+<ul>
+<li><a href="https://www.stjude.org/donate/crypto.html">Crypto donations</a> &mdash; Absolve yourself of guilt for destroying the planet by helping destroy cancer instead!</li>
+</ul></li>
+<li>Pre-show: Some navel-gazing (much like <a href="https://atp.fm/400">Episode 400</a>)
+
+<ul>
+<li><a href="https://www.sfoglini.com/products/sporkful">Sporkful&#8217;s Cascatelli</a></li>
+<li><a href="https://www.spaghettimonster.org/">Flying Spaghetti Monster</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Returns
+
+<ul>
+<li><a href="https://twitter.com/johnnyhalter/status/1441437712767148032">John Halter</a> returns Surface Pros</li>
+<li><a href="https://twitter.com/console/status/1441458438647730176">Bernd Kilga</a> returns an Elite Series 2 controller</li>
+<li>Damian Shaw returns Surface Headphones</li>
+<li><a href="https://twitter.com/CJD2K/status/1441377613793034247">Christopher Dillon</a> returns a Logitech MX Master</li>
+<li><a href="https://twitter.com/rickywil83/status/1441381760252657664">Ricky Wilson</a> returns a Google Home Mini</li>
+<li>Brian Donovan returns an iPad Smart Keyboard</li>
+<li>Shiro Wilde returns an Apple TV 4K remote</li>
+</ul></li>
+<li>Mike Bollich-Ziegler makes <a href="https://twitter.com/mbollichziegler/status/1441525411897241609">an interesting observation</a> about the iPad Mini</li>
+<li>Michał Goc <a href="https://twitter.com/GocMichael/status/1441295895010574346">does some digging</a> about tennis serve speed
+
+<ul>
+<li><a href="https://swing.tennis/">SwingVision</a></li>
+</ul></li>
+<li>Regarding fast pre-ordering from TJ Luoma</li>
+<li>Harrison Krebs has updates on eSIMs
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT210655">KBase article</a></li>
+</ul></li>
+<li><a href="https://twitter.com/BastianInuk/status/1438525062936625166">Bastian Inuk points out</a> there are many raw formats for video</li>
+<li>Marco&#8217;s security camera update</li>
+<li><a href="https://swissmacuser.ch/show-macos-dock-instantly-without-delay/">On Dock auto-hide delay</a> (via Danny Tsang)
+
+<ul>
+<li>Intel: <code>defaults write com.apple.dock autohide-delay -float 0 &amp;&amp; killall Dock</code></li>
+<li>Apple: <code>defaults write com.apple.dock autohide-delay -float 0 &amp;&amp; defaults write com.apple.dock autohide-time-modifier -float 0.4 &amp;&amp; killall Dock</code></li>
+</ul></li>
+</ul></li>
+<li>iPhones 13 Pro Impressions
+
+<ul>
+<li>Setup experiences</li>
+<li><a href="https://support.apple.com/en-us/HT212828">Apple Watch unlock bug</a></li>
+<li>Colors &amp; Size
+
+<ul>
+<li><a href="https://mackweldon.com/products/ace-sweatshort-laurel-canyon">MackWeldon Ace Sweatshort</a></li>
+<li><a href="https://www.apple.com/shop/product/MM2F3ZM/A/iphone-13-pro-silicone-case-with-magsafe-clover">Apple Silicone Case</a></li>
+<li>Casey/Marco&#8217;s Cases: <a href="https://www.nudient.com/product/thin-v3-case-sky-blue-iphone-13-pro">Nudient Thin V3</a></li>
+<li><a href="https://twitter.com/MKBHD/status/1441086122839339015">MKBHD on the MagSafe Duo</a></li>
+</ul></li>
+<li>Camera System</li>
+</ul></li>
+<li>Post-show <code>#askatp</code>: On an ∞ timescale, when do we get neat under-screen tricks? (via <a href="https://twitter.com/alexjmurrell/status/1426828320927277060">Alex Murrell</a>)</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Get peace of mind knowing your files are backed up securely in the cloud. Start your 15-day free trial today.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Our iPhone 13 Pro impressions so far.</itunes:subtitle></item><item><guid isPermaLink="false">aufpmwnjlwstr241</guid><pubDate>Thu, 23 Sep 2021 16:36:49 +0000</pubDate><title>449: An Unclean Mouse</title><itunes:title> An Unclean Mouse</itunes:title><itunes:episode>449</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp449.mp3" length="124257636" type="audio/mpeg"/><link>https://atp.fm/449</link><description><![CDATA[<ul>
+<li><strong><a href="https://stjude.org/atp">Please donate to St. Jude</a></strong>. Cancer sucks, and childhood cancer sucks a lot. Please donate <strong>any</strong> amount of money, if you can.
+
+<ul>
+<li><a href="https://www.stjude.org/donate/crypto.html">Crypto donations</a> &mdash; Absolve yourself of guilt for destroying the planet by helping destroy cancer instead!</li>
+</ul></li>
+<li>Pre-show: A little bit more about <a href="https://www.electronjs.org/">Electron</a> and <a href="https://blog.1password.com/1password-8-for-mac-is-now-in-early-access/">1Password 8</a>
+
+<ul>
+<li><a href="https://tauri.studio/">Tauri</a></li>
+</ul></li>
+<li><a href="https://discover.garmin.com/en-US/inreach/personal/">Garmin InReach</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Iridium_satellite_constellation">Iridium satellites</a></li>
+</ul></li>
+<li>iPhone
+
+<ul>
+<li>&#8220;Thick iPhone is thicc&#8221; 🤣</li>
+<li><a href="https://twitter.com/rjonesy/status/1437976872927776770">Ryan Jones&#8217; camera bump chart</a></li>
+</ul></li>
+<li><em>An aside about how optics works</em>
+
+<ul>
+<li><a href="https://www.instagram.com/p/CRpfws7pW7R/">John&#8217;s &#8220;Portrait Mode&#8221; Example</a></li>
+<li><a href="https://ciechanow.ski/cameras-and-lenses/">Cameras and Lenses</a></li>
+<li><a href="https://ciechanow.ski/internal-combustion-engine/">Internal Combustion Engines</a></li>
+</ul></li>
+<li>iPhone [Reprise]
+
+<ul>
+<li><a href="https://twitter.com/adrianweckler/status/1440300995876065281">Adrian Weckler&#8217;s 13 Pro vs. 12 Pro</a></li>
+<li><a href="https://twitter.com/halidecamera/status/1438136058391191555">Halide on the evolution of iPhone cameras</a></li>
+<li><a href="https://twitter.com/geoffhackworth/status/1438149551135805450">Geoff Hackworth notes safe areas are the same size</a></li>
+<li>On using iPhones for filming movies</li>
+<li><a href="https://www.theverge.com/2021/9/17/22678607/iphone-13-reported-battery-sizes-increase-laptop-comparison">The Verge on battery sizes</a></li>
+<li><a href="https://daringfireball.net/2021/09/the_iphones_13">Gruber&#8217;s review (with streaming battery life information)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Low-temperature_polycrystalline_silicon">LPTO screens</a></li>
+<li><a href="https://sixcolors.com/post/2021/09/quick-reactions-to-apples-iphone-13-event/">Dual eSIMs</a></li>
+<li><a href="https://www.youtube.com/watch?v=HB64KvZld5o">1× ↔ 3× macro transition</a></li>
+<li><a href="https://twitter.com/Techmeme/status/1438026488280875009">On A15 performance</a>
+
+<ul>
+<li><a href="https://semianalysis.substack.com/p/apple-cpu-gains-grind-to-a-halt-and">More from SemiAnalysis</a></li>
+<li><a href="https://creativestrategies.com/iphone-13-and-apple-silicon/">More from Ben Bajarin</a></li>
+<li><a href="https://twitter.com/gavkar/status/1439298058164981763">Gokhan Avkarogullari notes</a> there is a <a href="https://developer.apple.com/videos/play/tech-talks/10876">A15 GPU Tech Talk</a></li>
+<li><a href="https://www.macworld.com/article/358585/a15-processor-iphone-13-ipad-mini-performance-benchmarks.html">Snell&#8217;s thoughts</a></li>
+<li><a href="https://www.macrumors.com/2021/09/15/a15-geekbench-cpu-gpu/">MacRumors&#8217; story</a></li>
+<li><a href="https://twitter.com/dhh/status/1440665734489640963">DHH on the iPad mini</a></li>
+</ul></li>
+<li>Photographic styles
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=1LCJrtuV9bE">Fonzie</a></li>
+</ul></li>
+</ul></li>
+<li>Marco&#8217;s iPhones
+
+<ul>
+<li><a href="https://www.nudient.com/product/thin-v3-case-sky-blue-iphone-13-pro">Casey&#8217;s forthcoming case</a></li>
+<li><a href="https://www.olixar.com/genuine-leather-iphone-12-pro-case-black">John&#8217;s case</a></li>
+</ul></li>
+<li><a href="https://twitter.com/jsnell/status/1440455181670354957">Snell has new info</a> on the <a href="https://www.apple.com/shop/product/MM0Q3ZM/A/iphone-leather-wallet-with-magsafe-golden-brown">iPhone Leather Wallet</a></li>
+<li>iPad
+
+<ul>
+<li>Power cables</li>
+<li><a href="https://www.theverge.com/2021/9/16/22678389/apple-ipad-mini-no-mmwave-downclocked-a15">iPad Mini doesn&#8217;t support mmWave 5G</a></li>
+<li><a href="https://www.macrumors.com/2021/09/16/ipad-mini-downclocked-a15-chip/">iPad Mini is downclocked?</a></li>
+</ul></li>
+<li>Apple Watch Series 7
+
+<ul>
+<li>Golf swing &amp; tennis serve speed</li>
+<li><a href="https://www.macrumors.com/2021/09/15/apple-watch-series-7-tidbits-s7-chip-storage/">On faster charging &amp; satellite navigation</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1437975564841803779">Steve Troughton-Smith on the SoC</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2021/06/07/apple-wont-make-you-upgrade-to-ios-15/">iOS 15 will <em>not</em> be a compulsory upgrade</a></li>
+<li>Post-show: John&#8217;s bad mouse pad [Reprise]</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: The standard in Apple Enterprise Management.</li>
+<li><a href="https://www.sanity.io/atp">Sanity.io</a>: The platform for structured content that lets you build better digital experiences.</li>
+<li><a href="https://stripe.com/">Stripe</a>: Learn more about how Stripe can support your business.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>More details about the iPhone 13 lineup, new iPad Mini, and Apple Watch Series 7.</itunes:subtitle></item><item><guid isPermaLink="false">q1zoohvudujmmjdp</guid><pubDate>Wed, 15 Sep 2021 04:36:46 +0000</pubDate><title>448: Next Year, Which Is Now</title><itunes:title>Next Year, Which Is Now</itunes:title><itunes:episode>448</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:29:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp448.mp3" length="144236740" type="audio/mpeg"/><link>https://atp.fm/448</link><description><![CDATA[<ul>
+<li><strong><a href="https://stjude.org/atp">Please donate to St. Jude</a></strong>. Cancer sucks, and childhood cancer sucks a lot. Please donate <strong>any</strong> amount of money, if you can.
+
+<ul>
+<li><a href="https://www.stjude.org/donate/crypto.html">Crypto donations</a> &mdash; Absolve yourself of guilt for destroying the planet by helping destroy cancer instead!</li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-events/">Apple Event</a>
+
+<ul>
+<li>Apple TV+</li>
+<li><a href="https://www.apple.com/ipad-10.2/">iPad</a></li>
+<li><a href="https://www.apple.com/ipad-mini/">iPad Mini</a></li>
+<li><a href="https://www.apple.com/apple-watch-series-7/">Apple Watch Series 7</a>
+
+<ul>
+<li><a href="https://ressencewatches.com/innovation/oil-filled">Ressence Oil-Filled Watches</a></li>
+<li><a href="http://www.deskdivers.com/Site/EZM.html">Marco&#8217;s Sinn</a></li>
+<li><a href="https://twitter.com/MichaelSteeber/status/1437856639504293892">CSS error</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/iphone-13/">iPhone 13</a>
+
+<ul>
+<li><a href="https://twitter.com/maxrudberg/status/1437835329134858246">Thinner but taller notch?</a></li>
+<li><a href="http://dfilmschool.com/using-rack-focus/">Rack focus</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/iphone-13-pro/">iPhone 13 Pro</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Unsane"><em>Unsane</em></a></li>
+<li><a href="https://www.red.com/">Red Cameras</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: iPhone 12 exit interview</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>iPhone 13 and 13 Pro series, Apple Watch Series 7, new iPad and iPad Mini, and our love of the great state of California.</itunes:subtitle></item><item><guid isPermaLink="false">cti5skjyt3azcvp4</guid><pubDate>Thu, 09 Sep 2021 20:14:46 +0000</pubDate><title>447: Lunchbox on Your Face</title><itunes:title>Lunchbox on Your Face</itunes:title><itunes:episode>447</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp447.mp3" length="128093243" type="audio/mpeg"/><link>https://atp.fm/447</link><description><![CDATA[<ul>
+<li><strong><a href="https://stjude.org/atp">Please donate to St. Jude</a></strong>. Cancer sucks, and childhood cancer sucks a lot. Please donate <strong>any</strong> amount of money, if you can.</li>
+<li>Pre-show:
+
+<ul>
+<li>Casey&#8217;s very big day
+
+<ul>
+<li><a href="https://richmond.com/news/this-statue-represents-division-the-nations-largest-confederate-statue-no-longer-stands-on-monument-avenue/article_08094df8-591e-5f84-b1fa-8b5d99c49522.html#tracking-source=home-breaking">Robert E. Lee Statue removed</a> from <a href="https://en.wikipedia.org/wiki/Monument_Avenue">Richmond&#8217;s Monument Avenue</a></li>
+<li><a href="https://hokiesports.com/sports/2018/4/19/whats-a-hokie.aspx">What is a Hokie?</a></li>
+</ul></li>
+<li>Teaching Marco geography
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Fire_Island">Fire Island</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Australians: <a href="https://covid19nearme.com.au/">Get your shot!</a></li>
+<li>More arguing about geography
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Long_Island">Long Island</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Boroughs_of_New_York_City">Boroughs of New York City</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2021/9/3/22655644/apple-delays-controversial-child-protection-features-csam-privacy">Apple delays CSAM protection features</a></li>
+<li><a href="https://twitter.com/PankajRu/status/1435254493390721028">HomeKit camera TV PiP can be enabled/disabled per camera</a>
+
+<ul>
+<li><a href="https://twitter.com/jonarogers/status/1433488160848154626">HomePods announce faces too!</a></li>
+</ul></li>
+<li><a href="https://twitter.com/fraserhess/status/1434188020568178690">App Store lawsuit is only for iOS apps?</a></li>
+<li>John&#8217;s &#8220;bad mouse pad&#8221; update
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=epe2zVlYZOM">Simpsons Chili Cook-Off</a></li>
+</ul></li>
+<li>John&#8217;s favorite percentage: 9.6%</li>
+<li><a href="https://www.google.com/drive/download/">Google Drive for Desktop</a></li>
+<li>Forcing Photos.app to download all your photos
+
+<ul>
+<li><code>Photos</code> → <code>Library</code> → <code>All Photos</code></li>
+<li>⌘A</li>
+<li><code>File</code> → <code>Play Slideshow</code></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-events/">Apple Event</a>
+
+<ul>
+<li>MacBook Pros? :(</li>
+<li><a href="https://9to5mac.com/2021/08/02/apple-watch-series-7-regulatory-redesign/">Apple Watch Series 7</a> (<a href="https://rendersbyian.com/apple-watch-series-7-prosser">renders based on rumors</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Airstream">Airstream</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Pippin">Apple Pippin</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Half-Life%3A_Alyx">Half-Life: Alyx</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microsoft_HoloLens">HoloLens</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Oculus_Quest">Oculus Quest</a></li>
+</ul></li>
+<li>Post-show <code>#askatp</code>: Will the iPhone ever drop the number? (via <a href="https://twitter.com/dougmcarthur/status/1430037029883088898">Doug McArthur</a>)</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://earnest.com/atp">Earnest</a>: Freedom of choice meets student loans.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="http://thingsapp.com/">Things</a>: The award-winning to-do app.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>A geographic dispute, important mouse updates, John's favorite percentage, and predictions for next week's Apple event.</itunes:subtitle></item><item><guid isPermaLink="false">ugs1bgrwd0dksmpo</guid><pubDate>Thu, 02 Sep 2021 03:03:18 +0000</pubDate><title>446: Dead From Fraud</title><itunes:title>Dead From Fraud</itunes:title><itunes:episode>446</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp446.mp3" length="120659388" type="audio/mpeg"/><link>https://atp.fm/446</link><description><![CDATA[<ul>
+<li><strong><a href="https://stjude.org/atp">Please donate to St. Jude</a></strong>. Cancer sucks, and childhood cancer sucks a lot. Please donate <strong>any</strong> amount of money, if you can.</li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.wsj.com/articles/new-york-times-wirecutter-product-review-site-moves-behind-paywall-11630436401">Wirecutter moves behind a paywall</a>
+
+<ul>
+<li><a href="https://twitter.com/mrgan/status/1432850059637362692">Neven&#8217;s tweet</a></li>
+</ul></li>
+<li>Best blender is <em>not</em> a wasteland&#8230; sometimes.</li>
+<li><a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function">Cryptographic hashes</a> vs. Apple&#8217;s CSAM Neural Hash</li>
+<li>What happens if governments get involved with CSAM detection?
+
+<ul>
+<li><a href="https://www.cs.cmu.edu/~rdriley/487/papers/Thompson_1984_ReflectionsonTrustingTrust.pdf">Reflections on Trusting Trust</a> (PDF link)</li>
+</ul></li>
+<li>More Apple PR own-goals: <a href="https://www.theverge.com/2021/8/31/22650751/apple-bans-pay-equity-slack-channel">Apple bans a pay equity Slack channel</a></li>
+<li>Music metadata
+
+<ul>
+<li><a href="https://musicbrainz.org/doc/MusicBrainz_Database/Schema">MusicBrainz&#8217;s schema</a></li>
+</ul></li>
+</ul></li>
+<li>Marco has a request: how do you get a 9-year-old coding?
+
+<ul>
+<li><a href="https://www.apple.com/swift/playgrounds/">Swift Playgrounds</a></li>
+<li><a href="https://www.gethopscotch.com/">Hopscotch</a></li>
+<li><a href="https://www.roblox.com/">Roblox</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=_gXlauRB1EQ">Video about how they rip off kids</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/QBasic">QBasic</a>
+
+<ul>
+<li><a href="https://yohan.es/swbasic/">Web-based BASIC</a></li>
+</ul></li>
+<li><a href="https://www.dosbox.com/">DOSBox</a></li>
+<li><a href="https://play.date/">Playdate</a>
+
+<ul>
+<li><a href="https://www.gamedeveloper.com/console/playdate-pulp-zero-to-video-game-in-60-seconds">How the Playdate Pulp IDE works</a></li>
+</ul></li>
+<li><a href="https://scratch.mit.edu/">Scratch</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Processing.js">Processing.js</a></li>
+</ul></li>
+<li><a href="https://stratechery.com/2021/apples-settlement-explicit-imprimatur-additional-notes/">Apple&#8217;s class-action settlement with &#8220;app developers&#8221;</a>
+
+<ul>
+<li><a href="https://www.bloomberg.com/news/articles/2021-08-27/apple-settlement-lets-app-developers-advertise-outside-payments">Bloomberg</a></li>
+<li><a href="https://www.relay.fm/radar/225">Under the Radar #225: The Fragmented Future</a></li>
+</ul></li>
+<li>📣 BREAKING 📣 <a href="https://www.apple.com/newsroom/2021/09/japan-fair-trade-commission-closes-app-store-investigation/">Apple will allow &#8220;reader&#8221; apps with their own purchase systems to link out</a> (details to be determined later)
+
+<ul>
+<li><a href="https://developer.apple.com/app-store/review/guidelines/#reader-apps">Apple&#8217;s definition of &#8220;reader&#8221; apps</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2021/8/31/22643800/apple-google-south-korea-app-store-payment-legislation-passes">Korea: Apple &amp; Google must allow developers to use other payment systems</a></li>
+<li>Home security cameras and HomeKit Secure Video
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B085HKNBSX/?tag=marcoorg-20">Logitech Circle View</a></li>
+<li><a href="https://www.amazon.com/dp/B089KCH58Y/?tag=marcoorg-20">Eufy Solo Indoor Cam C24</a></li>
+<li><a href="https://www.amazon.com/dp/B0978CBVJ1/?tag=marcoorg-20">Eufy SoloCam L20</a></li>
+<li><a href="https://www.synology.com/en-us/surveillance">Synology Surveillance Station</a></li>
+</ul></li>
+<li>Post-show: Casey&#8217;s Dock experiments
+
+<ul>
+<li><a href="https://www.relay.fm/connected/358">Connected #358: Roast My Dock</a></li>
+<li><a href="https://hypercritical.co/switchglass/">SwitchGlass</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://fastmail.com/atp">Fastmail</a>: Email for people who care about their privacy. Start a free, 30-day trial and get 10% off with this link. Check out the <a href="https://www.fastmail.com/digitalcitizen/">Digital Citizen podcast</a> as well!</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Coding for kids, Apple's class-action settlement, the "reader"-app rule change, and home security cameras.</itunes:subtitle></item><item><guid isPermaLink="false">znk1ug9jyvq1m1lc</guid><pubDate>Thu, 26 Aug 2021 18:23:28 +0000</pubDate><title>445: Best Blender Is a Wasteland</title><itunes:title>Best Blender Is a Wasteland</itunes:title><itunes:episode>445</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp445.mp3" length="119105760" type="audio/mpeg"/><link>https://atp.fm/445</link><description><![CDATA[<ul>
+<li><strong><a href="https://stjude.org/atp">Please donate to St. Jude</a></strong>. Cancer sucks, and childhood cancer sucks a lot. Please donate <strong>any</strong> amount of money, if you can.</li>
+<li>Follow-up:
+
+<ul>
+<li>Follow-up from <a href="https://5by5.tv/hypercritical/31">Hypercritical #31</a> on 24 August 2011 (via Philip Spedding)
+
+<ul>
+<li><a href="https://overcast.fm/+IpmsHz1A/1:01:04">Overcast timestamp link</a></li>
+</ul></li>
+<li>Casey apologizes to <a href="https://twitter.com/collindonnell/status/1427837451804971010">Collin Donnell</a>
+
+<ul>
+<li><a href="https://inessential.com/2020/03/19/proxyman">Brent Simmons&#8217; blog post</a></li>
+</ul></li>
+<li>Regarding 1Password and Electron
+
+<ul>
+<li>What about the dependencies? (via <a href="https://twitter.com/olegsfinest/status/1429712705993289730">KingOlegOne</a>)</li>
+<li><a href="https://www.npmjs.com/package/is-odd"><code>is-odd</code></a></li>
+<li><a href="https://twitter.com/roustem/status/1426315858561978374">Roustem Karimov&#8217;s response</a></li>
+<li><a href="https://www.craft.do/">Craft</a></li>
+</ul></li>
+<li><a href="https://www.reddit.com/r/MachineLearning/comments/p6hsoh/p_appleneuralhash2onnx_reverseengineered_apple/">CSAM Neural Hash algorithm extracted</a>?
+
+<ul>
+<li><a href="https://github.com/AsuharietYgvar/AppleNeuralHash2ONNX/issues/1">Example collision 1</a></li>
+<li><a href="https://twitter.com/matthew_d_green/status/1428421558037630980">More examples</a></li>
+<li><a href="https://www.theverge.com/2021/8/18/22630439/apple-csam-neuralhash-collision-vulnerability-flaw-cryptography">Apple&#8217;s Response</a></li>
+</ul></li>
+<li>Safari 15 Updates
+
+<ul>
+<li><a href="https://www.macrumors.com/2021/08/17/everything-new-in-ios-15-beta-6/">iOS 15β6</a>
+
+<ul>
+<li><a href="https://twitter.com/viticci/status/1427683610031702017">Federico&#8217;s coverage</a></li>
+</ul></li>
+<li><a href="https://512pixels.net/2021/08/the-safari-15-fight-isnt-over-yet/">Stephen Hackett&#8217;s take</a></li>
+<li><a href="https://www.relay.fm/upgrade/367">Upgrade #367: My Experience with the Floating Lozenges</a></li>
+</ul></li>
+</ul></li>
+<li><em>A quick aside about battery health</em></li>
+<li>Apple&#8217;s PR war against itself
+
+<ul>
+<li><em>Thursday, 15 July</em>: <a href="https://www.theverge.com/2021/7/15/22578804/apple-employees-work-from-home-request-denied-hybrid-model">Apple cracks down on remote work</a></li>
+<li><em>Wednesday, 4 August</em>: <a href="https://www.theverge.com/2021/8/4/22610112/apple-female-engineering-manager-leave-sexism-work-environment">Apple places female EPM on leave after tweeting about sexism in the office</a>
+
+<ul>
+<li>Ashley M. Gjøvik&#8217;s tweets <a href="https://twitter.com/ashleygjovik/status/1423014977661591552">1</a> <a href="https://twitter.com/ashleygjovik/status/1422380335703101443">2</a></li>
+</ul></li>
+<li><em>Thursday, 5 August</em>: <a href="https://techcrunch.com/2021/08/05/apple-icloud-photos-scanning/">Apple&#8217;s CSAM roll-out</a></li>
+<li><em>Monday, 9 August</em>: <a href="https://www.theverge.com/2021/8/9/22609687/apple-pay-equity-employee-surveys-protected-activity">Apple shuts down employee-run surveys on pay</a>
+
+<ul>
+<li><a href="https://cherscarlett.typeform.com/to/kGkjNEPy">Cher Scarlett&#8217;s Survey</a></li>
+</ul></li>
+<li><em>Monday, 16 August</em>: Apple forces <a href="http://www.flicktype.com/">FlickType for Watch</a> out of the App Store
+
+<ul>
+<li><a href="https://twitter.com/FlickType/status/1427292830523744257">FlickType&#8217;s statement</a></li>
+<li><a href="https://twitter.com/migueldeicaza/status/1427309929535246348">Miguel de Icaza&#8217;s take</a></li>
+</ul></li>
+<li><em>Monday, 23 August</em>: <a href="https://appletoo.us/"><code>#AppleToo</code></a>
+
+<ul>
+<li><a href="https://www.theverge.com/2021/8/23/22638150/apple-appletoo-employee-harassment-discord">The Verge&#8217;s coverage</a></li>
+</ul></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How does one manage a large library of photos? (via <a href="https://twitter.com/radiocolin/status/1424470587112558595">Colin</a>)</li>
+<li>How does one search for specific tech problems? (via <a href="https://twitter.com/isametry/status/1388950727389847576">Sam</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Rubber_duck_debugging">Rubber duck debugging</a></li>
+</ul></li>
+<li>Is there any point in updating Java anymore? (via <a href="https://twitter.com/totallyslutsky/status/1387146291969511435">Mark Slutsky</a>)</li>
+</ul></li>
+<li>Post-show: Marco went to a Phish concert!
+
+<ul>
+<li><a href="https://www.livephish.com/browse/music/0,1582">Phish at Atlantic City Beach, 2021-08-15</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=X-K5zYETVHY">Official video of a song that night</a></li>
+<li><a href="https://www.youtube.com/watch?v=uTlioh0w2r4">Aerial video of the beach venue</a></li>
+</ul></li>
+<li><a href="http://dmbalmanac.com/TourShowSet.aspx?id=453089796&amp;tid=8164">Dave Matthews Band also played somewhere on 2021-08-07</a> <em>(But you can&#8217;t listen to it, apparently. Probably for the best. –ed.)</em></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://madeincookware.com/atp">Made In</a>: Better cookware for better meals. Get 15% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>NeuralHash collisions, Safari design updates, Apple's recent PR war against itself, and Marco's experience at a Phish concert.</itunes:subtitle></item><item><guid isPermaLink="false">nu4xwllkew9hn1h3</guid><pubDate>Tue, 17 Aug 2021 16:02:57 +0000</pubDate><title>444: It Should Definitely Bother Apple</title><itunes:title>It Should Definitely Bother Apple</itunes:title><itunes:episode>444</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:22:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp444.mp3" length="136817618" type="audio/mpeg"/><link>https://atp.fm/444</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://disneyworld.disney.go.com/photopass/">Disney PhotoPass</a> (via <a href="https://twitter.com/lbwski/status/1426683506554507272">Ryan D</a>)</li>
+<li>Bug bounties (via Dan Chandler)</li>
+<li>Cryptocurrency and failed monetary systems</li>
+<li>CSAM
+
+<ul>
+<li><a href="https://www.apple.com/child-safety/pdf/Security_Threat_Model_Review_of_Apple_Child_Safety_Features.pdf">Security Threat Model Rview of Apple&#8217;s Child Safety Features</a></li>
+<li><a href="https://www.youtube.com/watch?v=OQUO1DSwYN0">Joanna Stern&#8217;s interview with Craig Federighi</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Patriot_Act">Patriot Act</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Digital_Millennium_Copyright_Act">Digital Millennium Copyright Act</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://blog.1password.com/1password-8-the-story-so-far/">1Password 8: The Story So Far</a>
+
+<ul>
+<li><a href="https://www.electronjs.org/">Electron</a></li>
+<li><a href="https://twitter.com/rmondello/status/1427329560937308161">iCloud for Windows</a></li>
+<li><a href="https://dteare.medium.com/behind-the-scenes-of-1password-for-linux-d59b19143a23">Dave Teare&#8217;s Medium Post</a></li>
+<li><a href="https://threadreaderapp.com/thread/1427246731847213059.html">Casey&#8217;s Twitter rant</a></li>
+<li><a href="https://daringfireball.net/linked/2020/03/20/mac-assed-mac-apps">Mac-assed Mac Apps</a></li>
+<li><a href="https://techcrunch.com/2021/07/27/1password-raises-100m-at-a-2b-valuation/">1Password&#8217;s funding</a></li>
+</ul></li>
+<li>On cross-platform UI frameworks
+
+<ul>
+<li><a href="https://www.rust-lang.org/">Rust</a></li>
+<li><a href="https://sixcolors.com/post/2021/08/not-important-enough-1password-abandons-its-native-mac-app/">Snell&#8217;s take</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rhapsody_(operating_system)">Rhapsody</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Carbon_(API)">Carbon</a></li>
+<li><a href="https://atp.fm/280">ATP #280: Extinction-Level Event</a></li>
+</ul></li>
+<li>Post-show: Marco&#8217;s stolen bike</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>1Password, Electron apps, and the difficult problem of cross-platform UI development — especially for Mac apps.</itunes:subtitle></item><item><guid isPermaLink="false">edbjv3qybnflzjrj</guid><pubDate>Thu, 12 Aug 2021 17:40:45 +0000</pubDate><title>443: A Storm of Asterisks</title><itunes:title>A Storm of Asterisks</itunes:title><itunes:episode>443</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:52:08</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp443.mp3" length="165691635" type="audio/mpeg"/><link>https://atp.fm/443</link><description><![CDATA[<ul>
+<li>Pre-show: Marco files a verbal Radar for Apple Music
+
+<ul>
+<li><a href="https://songwhip.com/crash-test-dummies/god-shuffled-his-feet1993">God Shuffled His Feet</a></li>
+<li><a href="https://songwhip.com/crash-test-dummies/a-worms-life">A Worm&#8217;s Life</a></li>
+<li><a href="https://songwhip.com/u2/the-joshua-tree">The Joshua Tree</a></li>
+<li><a href="https://songwhip.com/daysofthenew/illusion-is-now">Illusion is Now</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=Q2aaCDNjWEg&amp;t=870s">Why is there no weather/Calculator iPad app?</a> (via <a href="https://twitter.com/miyagawa/status/1424656633746001929">Tatsuhiko Miyagawa</a>)</li>
+<li><a href="https://twitter.com/hishnash/status/1423417736160448524">AMD W6xxx video cards <strong>are</strong> &#8220;workstation&#8221; cards</a></li>
+<li>Why Apple can&#8217;t pay bananas bug bounties (via <a href="https://twitter.com/techsuppork/status/1423463261392015361">Adrian</a>)</li>
+</ul></li>
+<li><a href="https://www.apple.com/child-safety/">Apple&#8217;s New Child Safety Features</a>
+
+<ul>
+<li><a href="https://www.apple.com/child-safety/pdf/Expanded_Protections_for_Children_Frequently_Asked_Questions.pdf">Apple&#8217;s FAQ</a></li>
+<li><a href="https://daringfireball.net/2021/08/apple_child_safety_initiatives_slippery_slope">Gruber&#8217;s explanation</a></li>
+<li><a href="https://techcrunch.com/2021/08/10/interview-apples-head-of-privacy-details-child-abuse-detection-and-messages-safety-features/">Matt Panzarino&#8217;s interview with Apple&#8217;s Head of Privacy</a></li>
+<li><a href="https://www.theverge.com/22617554/apple-csam-child-safety-features-jen-king-riana-pfefferkorn-interview-decoder">Decoder with Nilay Patel on Apple&#8217;s Child Safety features</a></li>
+<li><a href="https://en.wikipedia.org/wiki/2015_San_Bernardino_attack">2015 San Bernardino Attack</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fourth_Amendment_to_the_United_States_Constitution">Fourth American Amendment</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Law_%26_Order:_Special_Victims_Unit">Law &amp; Order: SVU</a></li>
+<li><a href="https://twitter.com/Pinboard/status/1424084688797241345">Pinboard&#8217;s Thread</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What&#8217;s our current thoughts on <span style="text-decoration: line-through">accelerating the heat death of the universe</span> cryptocurrency (via <a href="https://twitter.com/LaloVargasFilms/status/1415427541855264771">Lalo Vargas</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Pyramid_scheme">Pyramid scheme</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ponzi_scheme">Ponzi scheme</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Proof_of_work">Proof of work</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Proof_of_stake">Proof of stake</a></li>
+<li><a href="https://atp.fm/424">ATP #424: Ethernet Squid</a></li>
+<li><a href="https://www.youtube.com/watch?v=bBC-nXj3Ng4">But how does Bitcoin actually work?</a></li>
+</ul></li>
+<li>Is there any way to limit Messages&#8217; size on disk? (via Richie Aharonian)</li>
+<li>What camera/lens should I rent for a Disney World trip? (via <a href="https://twitter.com/MrPuraVida/status/1420118936574517249">Andrew Nelson</a>)
+
+<ul>
+<li><a href="https://www.shopmoment.com/iphone-lenses">Moment Lenses</a></li>
+<li><a href="https://www.lensrentals.com/rent/fuji-x100v">Fuji X100V</a></li>
+<li><a href="https://www.lensrentals.com/rent/leica-q2">Leica Q2</a></li>
+<li><a href="https://amzn.to/3iJppht">Sony A6600 camera</a>
+
+<ul>
+<li><a href="https://www.lensrentals.com/rent/sony-alpha-a6600">Sony A6600 rental</a></li>
+</ul></li>
+<li><a href="https://amzn.to/3xifHqi">Tamron 17-70mm lens</a>
+
+<ul>
+<li><a href="https://www.lensrentals.com/rent/tamron-17-70mm-f2.8-di-iii-a-vc-rxd-for-sony-e">Tamron 17-70mm lens rental</a></li>
+</ul></li>
+<li><a href="https://amzn.to/3xAgJ0E">Sony 16-55mm lens</a>
+
+<ul>
+<li><a href="https://www.lensrentals.com/rent/sony-e-16-55mm-f2.8-g">Sony 16-55mm lens rental</a></li>
+</ul></li>
+<li><a href="https://amzn.to/3iCRTJl">Sony A7C camera</a>
+
+<ul>
+<li><a href="https://www.lensrentals.com/rent/sony-alpha-a7c">Sony A7C camera rental</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Some more camera banter</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://burrow.com/atp">Burrow</a>: Setting a new standard in furniture. Get $75 off and free shipping.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Apple's controversial new child-safety features.</itunes:subtitle></item><item><guid isPermaLink="false">ofn6duhoqwtccfp4</guid><pubDate>Thu, 05 Aug 2021 17:11:20 +0000</pubDate><title>442: Bob’s Barbecue</title><itunes:title>Bob’s Barbecue</itunes:title><itunes:episode>442</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:19</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp442.mp3" length="112018153" type="audio/mpeg"/><link>https://atp.fm/442</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Phish is back. Yay? <em>(Yay. -ed.)</em></li>
+<li><a href="https://songwhip.com/daysofthenew/illusion-is-now">Days of the New&#8217;s new album</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Travis_Meeks">Travis Meeks</a></li>
+<li><a href="https://songwhip.com/daysofthenew/days-of-the-new-ii">Days of the New II</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Apple Music
+
+<ul>
+<li>Everyone (including Andrew Bement) pointed Casey to <a href="https://apps.apple.com/us/app/songshift/id1097974566">SongShift</a> (App Store link)</li>
+<li>There are lots of third-party music players, which <a href="https://barrowclift.me/post/third-annual-ios-music-player-showcase">Marc Barrowclift reviewed</a></li>
+</ul></li>
+<li>Photos
+
+<ul>
+<li>Regarding concert pairing
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=UThGcWBIMpU&amp;t=1765s">WWDC 2018 keynote, 29m25s</a> (via <a href="https://twitter.com/benjibum16/status/1422004604351418368">Benjamin</a>)</li>
+<li><a href="https://support.apple.com/en-us/HT207368">See also KBase</a></li>
+</ul></li>
+<li>Deleting all your photos from Google Photos is&#8230; the worst.</li>
+<li>Photo editing tips from <a href="https://twitter.com/helmers/status/1418516060735746050">Henrik</a>
+
+<ul>
+<li>See also <a href="https://developer.apple.com/documentation/photokit/phadjustmentdata"><code>PHAdjustmentData</code></a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.amd.com/en/graphics/radeon-apple-w6000x-series">AMD Radeon PRO W6000X-series GPUs</a> now available <a href="https://www.globenewswire.com/news-release/2021/08/03/2273927/0/en/New-AMD-Radeon-PRO-W6000X-Series-GPUs-Bring-Groundbreaking-High-Performance-AMD-RDNA-2-Architecture-to-Mac-Pro.html">for Mac Pro</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Brewster%27s_Millions_(1985_film)">Brewster&#8217;s Millions</a></li>
+</ul></li>
+<li><a href="https://arstechnica.com/information-technology/2021/07/apple-under-pressure-over-iphone-security-after-nso-spyware-claims/">Apple, NSO</a>, and <a href="https://developer.apple.com/security-bounty/">bug bounties</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Do we still use e-readers? (via Aryan Aneja)
+
+<ul>
+<li><a href="https://sixcolors.com/post/2021/05/kobo-libra-h2o-liberated-from-amazon/">Jason Snell on the Kobo Libra H2O</a></li>
+<li><a href="https://calibre-ebook.com/">Calibre</a></li>
+<li><a href="https://twitter.com/drwave">Michael B. Johnson</a></li>
+</ul></li>
+<li>Do we use a <a href="https://en.wikipedia.org/wiki/Virtual_Network_Computing">VNC</a> app to remote into our Macs? (via <a href="https://twitter.com/stephenrobles/status/1414232069840986112">Stephen Robles</a>)
+
+<ul>
+<li><a href="https://www.wireguard.com/">Wireguard</a></li>
+<li><a href="https://edovia.com/en/screens-ios/">Screens</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Back_to_My_Mac">Back to My Mac</a></li>
+<li><a href="https://en.wikipedia.org/wiki/X_Window_System">X Window System</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Display_PostScript">Display PostScript</a></li>
+</ul></li>
+<li>Why hasn&#8217;t Apple built their own <a href="https://en.wikipedia.org/wiki/Semiconductor_fabrication_plant">chip foundry</a>? (via <a href="https://twitter.com/PJWilkinson/status/1413231324282990602">Philip Wilkinson</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/TSMC">TSMC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/P.A._Semi">PA Semi</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: App Store keyword squatters
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/weather/id1137406490">Weather •</a> (App Store link)</li>
+<li><a href="https://9to5mac.com/2021/06/16/ipados-15-hands-on-with-apples-weather-app-for-ipad/">Review of iPadOS 15&#8217;s Weather App</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://madeincookware.com/atp">Made In</a>: Better cookware for better meals. Get 15% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Music apps, new Mac Pro GPUs, NSO and Apple's bug-bounty program, and how Apple knows you attended a concert.</itunes:subtitle></item><item><guid isPermaLink="false">z19wsxfiuvbkr0vh</guid><pubDate>Fri, 30 Jul 2021 15:13:49 +0000</pubDate><title>441: Meals at Home</title><itunes:title>Meals at Home</itunes:title><itunes:episode>441</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp441.mp3" length="105670339" type="audio/mpeg"/><link>https://atp.fm/441</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://www.livephish.com/">LivePhish.com</a></li>
+<li><a href="https://play.date/">Playdate</a>
+
+<ul>
+<li><a href="https://twitter.com/collindonnell">Collin Donnell</a></li>
+<li><a href="https://panic.com/blog/the-panic-status-board/">Status Board</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tamagotchi">Tamagotchi</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Everyone, but <em>especially</em> Americans, please <a href="https://www.vaccines.gov/">get vaccinated</a>!</li>
+<li>More Safari Updates
+
+<ul>
+<li><a href="https://twitter.com/ps3zocker/status/1420323891914944512">Stroke around window widgets on macOS</a></li>
+<li><a href="https://www.macrumors.com/2021/07/27/ipados-15-macos-monterey-safari-interface/">iPadOS Updates</a></li>
+<li><a href="https://daringfireball.net/linked/2021/07/27/ios-15b4-safari-changes">iOS Updates</a>
+
+<ul>
+<li><a href="https://twitter.com/SamTheGeek/status/1420157962350366722">Sam Gross&#8217; HIG observation</a></li>
+</ul></li>
+</ul></li>
+<li>Live Text <a href="https://sixcolors.com/post/2021/07/live-text-comes-to-intel-macs-in-monterey-beta-4/">will be available on Intel Macs too</a>!
+
+<ul>
+<li><a href="https://www.textsniper.app/">TextSniper</a></li>
+</ul></li>
+<li>&#8220;Scorch marks&#8221; on Lightning connectors
+
+<ul>
+<li><a href="https://amzn.to/3lb1SXP">Electrical contact cleaner</a></li>
+</ul></li>
+<li><a href="https://twitter.com/kj4evn/status/1420217987156652033">MagSafe &#8220;Soap Dish&#8221;</a></li>
+<li>Elective repairs for cosmetic damage at Apple stores</li>
+<li>RFSolution: How do I empty my Google Drive trash‽ </li>
+</ul></li>
+<li>Casey&#8217;s Apple Music impressions</li>
+<li>Casey&#8217;s iCloud Photo Library impressions</li>
+<li>Casey&#8217;s <a href="https://www.apple.com/shop/product/MJWY3AM/A/magsafe-battery-pack">MagSafe Battery Pack</a> review
+
+<ul>
+<li><a href="https://twitter.com/SnazzyQ/status/1417645424798670851">Quinn presses a button</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://www.caranddriver.com/features/a36877532/general-motors-ev-ultium-battery-electric-future/">GM&#8217;s new battery tech</a></li>
+<li>Marco is <em>going</em> to a Phish show!</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://fastmail.com/atp">Fastmail</a>: Email for people who care about their privacy. Start a free, 30-day trial and get 10% off with this link.</li>
+<li><a href="https://sanity.io">Sanity.io</a>: The platform for structured content that lets you build better digital experiences. Get a boosted free plan with this link.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Playdate, Photo Memories, MagSafe Battery review, and the "quick, very very brief topic" of Apple Music and Spotify.</itunes:subtitle></item><item><guid isPermaLink="false">dufwa0ozbmrllva0</guid><pubDate>Tue, 20 Jul 2021 16:00:00 +0000</pubDate><title>440: The Reality of Magnets</title><itunes:title>The Reality of Magnets</itunes:title><itunes:episode>440</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:26:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp440.mp3" length="141024211" type="audio/mpeg"/><link>https://atp.fm/440</link><description><![CDATA[<ul>
+<li>Pre-show: Marco&#8217;s accident
+
+<ul>
+<li><a href="https://dji.com/mavic-2">DJI Mavic 2</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://twitter.com/justanthonylee/status/1415516195197833216">There are dozens of people who like compact Safari</a> (via Anthony Lee)</li>
+<li>Perhaps wonky Safari is a nod to an AR future? (via Dan Blondell)
+
+<ul>
+<li><a href="https://www.folklore.org/StoryView.py?story=Round_Rects_Are_Everywhere.txt">Round Rects Are Everywhere!</a></li>
+</ul></li>
+<li>Mac Safari&#8217;s tab-close UI (via Guy English)</li>
+<li>Other multi-UI apps (via Daniel Jalkut)
+
+<ul>
+<li><a href="https://netnewswire.com/">NetNewsWire</a></li>
+</ul></li>
+<li>Photos Extensions
+
+<ul>
+<li><a href="https://darkroom.co/">Darkroom</a> flag &amp; reject workflow (via Ben Gollmer)
+
+<ul>
+<li><a href="https://medium.com/the-bergen-company/manage-your-growing-darkroom-photo-library-with-flag-reject-77c9e1816ef2">Write-up</a> (on Medium 🙄)</li>
+</ul></li>
+<li><a href="https://www.gentlemencoders.com/raw-power-for-macos/index.html">Raw Power</a> (via Kyle McMahon)
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=ME229JqbM48&amp;feature=youtu.be">Introductory video</a></li>
+<li><a href="https://tidbits.com/2019/06/14/the-ins-and-outs-of-non-destructive-editing-in-photos-for-mac-and-ios/">Caveats</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/OpenDoc">OpenDoc</a></li>
+</ul></li>
+<li><a href="https://twitter.com/getaaron/status/1415432451200008195">The best news about Monterey yet</a> (via Aaron Brager)</li>
+</ul></li>
+<li><a href="https://www.apple.com/shop/product/MJWY3AM/A/magsafe-battery-pack">Apple MagSafe Battery <span style="text-decoration: line-through">Case</span> <span style="text-decoration: line-through">Pack</span> <em>Thing</em></a>
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT212174">KBase document</a></li>
+<li><a href="https://sixcolors.com/link/2021/07/apple-releases-magsafe-battery-pack/">Six Colors Write-Up</a></li>
+<li><a href="https://us.anker.com/collections/portable-power/products/a1619">Anker PowerCore Magnetic 5K</a></li>
+<li><a href="https://twitter.com/panzer/status/1415000219087872003">Panzarino&#8217;s video</a></li>
+<li><a href="https://twitter.com/SnazzyQ/status/1415004883883728899">Quinn&#8217;s estimates</a></li>
+</ul></li>
+<li>State of iPhone <a href="https://www.apple.com/shop/accessories/all/magsafe">MagSafe</a>
+
+<ul>
+<li><a href="https://www.elevationlab.com/products/magbase">Elevation Lab MagBase</a></li>
+</ul></li>
+<li>Post-show: Casey needs the <a href="https://tv.apple.com/us/episode/the-diamond-dogs/umc.cmc.eaaizh8wdtnjuohaebw843ft?showId=umc.cmc.vtoh0mn0xn7t3c643xqonfzy">Diamond Dogs</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Ducking">Ducking</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tighten_Up_(Archie_Bell_%26_the_Drells_song)"><em>Tighten Up</em></a></li>
+<li><a href="https://pushover.net/">Pushover</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://burrow.com/atp">Burrow</a>: Setting a new standard in furniture. Get $75 off and free shipping.</li>
+<li><a href="https://memberful.com/atp">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>An extremely minor aviation accident, apps for iCloud Photo Library, the state of MagSafe, and a very special after-show about Apple Watch app development.</itunes:subtitle></item><item><guid isPermaLink="false">wxlpwjftwutfdejc</guid><pubDate>Thu, 15 Jul 2021 18:13:49 +0000</pubDate><title>439: Eventually Converge on Correctness</title><itunes:title>Eventually Converge on Correctness</itunes:title><itunes:episode>439</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp439.mp3" length="109091239" type="audio/mpeg"/><link>https://atp.fm/439</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Casey&#8217;s macOS Bug Report</li>
+<li><a href="https://emporium.vt.edu/">Math Emporium</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Power_Mac_G4_Cube">Power Mac G4 Cube</a></li>
+<li><a href="http://macintoshgarden.org/games/crystal-quest">Crystal Garden</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.macrumors.com/2021/07/14/macos-monterey-safari-redesign/">New Safari tab interface in Monterey beta 3</a>
+
+<ul>
+<li><a href="https://arstechnica.com/gadgets/2009/02/hands-on-safari-4-beta-fast-mixes-polish-rough-ui-edges/">Toppy Tabs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ribbon_(computing)">Ribbon</a></li>
+<li><a href="http://drops.caseyliss.com/VC9qbu">Word 6 Screenshot</a></li>
+</ul></li>
+<li>Elective AppleCare+ Repairs</li>
+<li>Photo Ingest
+
+<ul>
+<li><a href="https://home.camerabits.com/tour-photo-mechanic/">Photo Mechanic</a></li>
+<li><a href="https://www.apple.com/shop/product/MJYT2AM/A/lightning-to-sd-card-camera-reader">Lightning to SD Card Camera Reader</a></li>
+<li>&#8220;Made for Apple Photos&#8221;?</li>
+</ul></li>
+<li>The <a href="https://www.hermanmiller.com/products/seating/office-chairs/aeron-chairs/">Aeron</a> was revised in 2017 (via <a href="https://twitter.com/alexstu/status/1415307984717193221">Alexander</a>)
+
+<ul>
+<li><a href="https://www.btod.com/blog/aeron-classic-vs-remastered/">Differences</a></li>
+</ul></li>
+<li>Casey&#8217;s Shocking News</li>
+</ul></li>
+<li>Post-show bonus <code>#askatp</code>: Does Adam still wear his Apple Watch? (via <a href="https://twitter.com/AndrewB628/status/1412829839812268037">Andrew Blomquist</a>)
+
+<ul>
+<li><a href="https://www.apple.com/apple-watch-se/">Apple Watch SE</a></li>
+<li><a href="https://www.apple.com/newsroom/2020/09/apple-extends-the-apple-watch-experience-to-the-entire-family/">Family Setup</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://madeincookware.com/atp">Made In</a>: Better cookware for better meals. Get 15% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Spaces, Safari beta UI tweaks, the design feedback loop, photo-ingest updates, and shocking news from Casey.</itunes:subtitle></item><item><guid isPermaLink="false">mmxvzgz4qm55alpv</guid><pubDate>Thu, 08 Jul 2021 17:05:20 +0000</pubDate><title>438: Some Amount of Futzing</title><itunes:title>Some Amount of Futzing</itunes:title><itunes:episode>438</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:22:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp438.mp3" length="136550573" type="audio/mpeg"/><link>https://atp.fm/438</link><description><![CDATA[<ul>
+<li>Pre-show: Case-Liss Casey Liss
+
+<ul>
+<li><a href="https://www.zzqrva.com/">ZZQ</a></li>
+<li><a href="https://qbarbeque.com/">Q Barbeque</a></li>
+<li><a href="https://twitter.com/caseyliss/status/818483349165641728">Casey&#8217;s Shattered Windshield</a></li>
+<li><a href="https://www.olixar.com/genuine-leather-iphone-12-pro-case-black">John&#8217;s iPhone case</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>HomeKit and <a href="https://en.wikipedia.org/wiki/Bonjour_(software)">Bonjour</a>/<a href="https://en.wikipedia.org/wiki/Zero-configuration_networking">zeroconf</a>
+
+<ul>
+<li><a href="https://www.casetawireless.com/">Lutron Caseta</a></li>
+<li><a href="https://buildwithmatter.com/">Matter</a></li>
+<li><a href="https://www.threadgroup.org/">Thread</a></li>
+<li><a href="https://www.youtube.com/watch?v=85yH56DS5mg">Quinn&#8217;s Video</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security">HSTS</a> and Safari (via <a href="https://twitter.com/sonicdoe/status/1410983044031389696">Jakob</a>)
+
+<ul>
+<li><a href="https://spreadprivacy.com/duckduckgo-smarter-encryption/">DuckDuckGo Smarter Encryption</a></li>
+</ul></li>
+<li>Thoughts on Safari from <a href="https://twitter.com/scstsut/status/1411721491742445574">Scott Sutton</a>
+
+<ul>
+<li><a href="https://developer.apple.com/safari/technology-preview/">Safari Technology Preview</a> (&#8220;Purple Safari&#8221;)</li>
+</ul></li>
+<li><a href="https://twitter.com/dyountmusic/status/1402433116959084545">Eye-tracking Memoji?</a> (via Daniel Yount)
+
+<ul>
+<li><a href="https://www.theverge.com/2018/7/17/17580910/apple-memoji-executive-portraits-jony-ive-tim-cook">Executive images</a></li>
+</ul></li>
+<li>John mousepad update</li>
+</ul></li>
+<li>Managing Digital Documents (via Jason Abreu)
+
+<ul>
+<li><a href="https://1password.com/families/">1Password for Families</a></li>
+<li><a href="https://www.fujitsu.com/us/products/computing/peripheral/scanners/soho/">Fujitsu ScanSnap</a></li>
+<li><a href="https://www.raven.com/pages/raven-scanner">Raven Scanners</a></li>
+<li><a href="https://www.youneedabudget.com/">You Need a Budget</a></li>
+<li><a href="https://www.iggsoftware.com/atp/">Banktivity</a></li>
+<li><a href="https://www.backblaze.com/blog/the-3-2-1-backup-strategy/">Backblaze 3-2-1</a></li>
+</ul></li>
+<li>Casey&#8217;s <a href="https://www.apple.com/apple-one/">Apple One</a> Epiphany
+
+<ul>
+<li><a href="https://songwhip.com">Songwhip</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>What&#8217;s the desk chair update? (via Carlos Luis Portillo)
+
+<ul>
+<li><a href="https://store.hermanmiller.com/home-office-chairs/embody-chair/100147434.html">Embody</a></li>
+<li><a href="https://store.hermanmiller.com/office-chairs-aeron/aeron-chair/2195348.html">Aeron</a></li>
+<li><a href="https://seatingmind.com/steelcase-gesture-chair-4d-adjustable-arms-black-leather/">Steelcase Gesture</a></li>
+</ul></li>
+<li>How do we import photos taken on a &#8220;big&#8221; camera? (via Stephen Kim)
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/geotag/id1465180184?mt=12">GeoTag</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pipe_Mania">Pipe Dream</a></li>
+</ul></li>
+<li>Why wouldn&#8217;t Apple want to license the M1 to Nintendo? (via <a href="https://twitter.com/zzephyz/status/1412415659007516687">Zephyz Zhaar</a>)
+
+<ul>
+<li><a href="https://www.nintendo.com/switch/oled-model/">OLED Switch</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tegra#Tegra_X1">Tegra X1</a></li>
+<li><a href="https://en.wikipedia.org/wiki/The_Legend_of_Zelda:_Breath_of_the_Wild">Breath of the Wild</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Marco is a monster who doesn&#8217;t like air conditioning
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Energy_recovery_ventilation">ERV</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Make a name for yourself with Hover. Get 10% off your first purchase.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Cases, cars, content-color coordination, Casey's cloud considerations, camera conundrums, console chips, and climate-control conflicts.</itunes:subtitle></item><item><guid isPermaLink="false">uxflr1vudc1uunh0</guid><pubDate>Thu, 01 Jul 2021 18:41:46 +0000</pubDate><title>437: The Right Side of the Mouse Pad</title><itunes:title>The Right Side of the Mouse Pad</itunes:title><itunes:episode>437</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:01</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp437.mp3" length="113372918" type="audio/mpeg"/><link>https://atp.fm/437</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Nostalgia for compulsory technology
+
+<ul>
+<li><a href="http://www.walshcomptech.com/e740.htm">Toshiba e740</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microdrive">Microdrive</a></li>
+<li><a href="https://www.volvocars.com/us/v/cars/xc90">Volvo XC90</a></li>
+</ul></li>
+<li>Being old in a <a href="https://vt.edu/">college</a> town
+
+<ul>
+<li><a href="https://www.topofthestairs.com/">Top of the Stairs</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Safari reload update in Monterey beta 2</li>
+<li><a href="https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security">HTTP Strict Transport Security</a>
+
+<ul>
+<li><a href="https://hstspreload.org"><code>hstspreload.org</code></a></li>
+<li><a href="https://hstspreload.org/?domain=hypercritical.co">Report for <code>hypercritical.co</code></a></li>
+</ul></li>
+<li>iOS 15 can adjust more than just text size
+
+<ul>
+<li><code>Settings</code> → <code>Accessibility</code> → <code>Per-App Settings</code></li>
+</ul></li>
+<li>On the need for Apple to defend in-app purchase revenue (via Abel Demoz)
+
+<ul>
+<li><a href="https://hypercritical.co/2020/06/20/the-art-of-the-possible">The Art of the Possible</a></li>
+</ul></li>
+</ul></li>
+<li>John&#8217;s Mouse Pad Woes
+
+<ul>
+<li><a href="https://hypercritical.co/switchglass/">SwitchGlass</a></li>
+</ul></li>
+<li>Cool, Geeky Mac Apps
+
+<ul>
+<li><a href="https://boop.okat.best/">Boop</a></li>
+<li><a href="https://swiftbar.app">SwiftBar</a>
+
+<ul>
+<li><a href="https://getbitbar.com/">BitBar (the OG)</a>
+
+<ul>
+<li><a href="https://github.com/matryer/xbar/issues/513">Falling into disrepair</a></li>
+<li><a href="https://github.com/matryer/xbar/issues/607">Reboot</a></li>
+</ul></li>
+<li><a href="http://richsomerfield.com/apps/textbar/">TextBar (an alternative)</a></li>
+</ul></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>What&#8217;s the deal with <a href="https://buildwithmatter.com/">Matter</a> (née CHoIP)? (via Jon Strand)
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=piGlaGBWHHA">Comic Book Guy</a></li>
+<li><a href="https://www.ecobee.com/">Ecobee</a></li>
+<li><a href="https://www.casetawireless.com/">Lutron Caséta</a></li>
+<li><a href="https://www.ebay.com/itm/202339669273">Old-school timer</a></li>
+</ul></li>
+<li>What&#8217;s the deal with <a href="https://www.mightyapp.com/">Mighty</a>? (via Peter Waller)</li>
+<li>Would Apple ever release a M1 card for Intel Mac Pros? (via <a href="https://twitter.com/_brianhamilton/status/1405472117467009025">Brian Hamilton</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/MacCharlie">MacCharlie</a>
+
+<ul>
+<li><a href="https://pbs.twimg.com/media/EnKVK6jVoAAkE0O.jpg">Advertisement</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Dog boarding</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/atp12">HelloFresh</a>: America’s #1 meal kit. Use code <strong>atp12</strong> for 12 free meals, including free shipping.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Anti-skip CD players, mouse traction, outlet timers, BitBar, and other ancient technologies.</itunes:subtitle></item><item><guid isPermaLink="false">ym9maxlbmtj0rdlu</guid><pubDate>Thu, 24 Jun 2021 15:02:21 +0000</pubDate><title>436: Eddy Cue Shows Up at Your Door</title><itunes:title>Eddy Cue Shows Up at Your Door</itunes:title><itunes:episode>436</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp436.mp3" length="110286944" type="audio/mpeg"/><link>https://atp.fm/436</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://www.faa.gov/news/updates/?newsId=96839&amp;omniRss=news_updatesAoc&amp;cid=101_N_U">FAA&#8217;s TRUST program</a></li>
+<li><a href="https://www.faa.gov/uas/commercial_operators/">FAA Part 107</a></li>
+<li><a href="https://www.dji.com/mini-2">DJI Mini 2</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Safari page reloading
+
+<ul>
+<li>Pull-to-refresh</li>
+<li><a href="https://hypercritical.co/safari-reload-button/">John&#8217;s extension</a></li>
+<li><a href="https://twitter.com/finnvoorhees/status/1407646221280464896">Finn Voorhees&#8217; experiment</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2021/06/08/safari-ios-15-macos-monterey-https-upgrades/">Safari on iOS 15 &amp; Monterey automatically upgrades HTTP → HTTPS&#8230; kinda</a></li>
+<li>iCloud Private Relay
+
+<ul>
+<li><a href="https://twitter.com/raulirikama/status/1405607504462106631">Rauli Rikama&#8217;s observations</a></li>
+<li>What about embedded browsers? (via Maarten Hazewinkel)</li>
+<li>Private Relay is always used for known trackers (via Renaud Lienhart)</li>
+<li><a href="https://en.wikipedia.org/wiki/Federated_Learning_of_Cohorts">FLoC</a></li>
+</ul></li>
+<li>You monsters that use unnatural scrolling
+
+<ul>
+<li><a href="https://pilotmoon.com/scrollreverser/">Scroll Reverser</a></li>
+<li><a href="https://mos.caldis.me/">Mos</a></li>
+</ul></li>
+<li><a href="https://twitter.com/dcwatson/status/1406429244616589316">Avara source code</a> is available (via <a href="https://twitter.com/dcwatson/status/1406429244616589316">Dan Watson</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Descent_(1995_video_game)#/media/File:Descent_(1995_video_game).png">Descent screenshot</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Avara#/media/File:Avara-screenshot.png">Avara screenshot</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Star_Fox_(1993_video_game)#/media/File:SNES_Star_Fox_(Starwing).png">Star Fox screenshot</a></li>
+<li><a href="https://www.cosi.org/">COSI</a></li>
+<li><a href="https://web.archive.org/web/20100114191355/http://sega-16.com/feature_page.php?id=5&amp;title=Sega%20VR%3A%20Great%20Idea%20or%20Wishful%20Thinking%3F">Sega VR</a></li>
+</ul></li>
+<li>Apple Podcasts &amp; our show notes</li>
+<li><a href="https://www.extremetech.com/computing/323479-apples-macos-11-4-update-fixed-ssd-wear-reporting-on-m1-macs">SSD wear reporting in macOS</a></li>
+<li><a href="https://apps.apple.com/us/app/mailo-mail-to-self/id1177705087">Mailo</a></li>
+</ul></li>
+<li><a href="https://developer.apple.com/documentation/storekit/transaction">StoreKit refund API</a> (via <a href="https://twitter.com/jakemor/status/1402047383882637314">Jake Mor</a>)</li>
+<li><a href="https://twitter.com/zmknox/status/1402036455527096321">Per-app text size slider</a></li>
+<li>tvOS 15&#160;<a href="https://sixcolors.com/post/2021/06/wwdc-2021-tvos-15-will-let-you-sign-into-apps-with-on-an-iphone-or-ipad/">will allow sign-in via iPhone/iPad</a></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>Have we cut the cord? (via <a href="https://twitter.com/definitelyian/status/1382777111123988483">Ian</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Over-the-top_media_service">OTT</a></li>
+<li><a href="https://getchannels.com/">Channels</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/TV_Everywhere">TV Everywhere</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/CableCARD">CableCard</a></li>
+<li><a href="https://www.justwatch.com/us">JustWatch</a></li>
+</ul></li>
+<li>What keyboard do we use? (via Kyle Matson)
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MQ052LL/A/magic-keyboard-with-numeric-keypad-us-english-silver">Magic Keyboard with Numeric Keypad</a>
+
+<ul>
+<li><a href="https://amzn.to/3A2cOwf">Cherry MX Sampler</a></li>
+</ul></li>
+<li><a href="https://www.amazon.com/dp/B00CYX26BC/?tag=marcoorg-20">Microsoft Sculpt Keyboard for Business 5KV-00001</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Extended_Keyboard">Apple Extended Keyboard</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Wireless_Keyboard">Apple Wireless Keyboard</a>]</li>
+</ul></li>
+<li>What&#8217;s the deal with &#8220;side-loading&#8221;, anyway? (via Lewis O&#8217;Neil)
+
+<ul>
+<li><a href="https://www.apple.com/privacy/docs/Building_a_Trusted_Ecosystem_for_Millions_of_Apps.pdf">Apple&#8217;s FUD PDF</a></li>
+<li><a href="https://daringfireball.net/2021/06/annotating_apples_anti-sideloading_white_paper">Daring Fireball</a></li>
+<li>Gui Rambo tweets <a href="https://twitter.com/_inside/status/1407659883374186498">1</a> and <a href="https://twitter.com/_inside/status/1407660171363590145">2</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Taz-Mania_(video_game)">Taz-Mania</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Battletoads">Battletoads</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cool_Spot">Cool Spot</a></li>
+<li><a href="https://apps.apple.com/us/app/trapadventure-2-hardest-retro-game/id1110037150">TrapAdventure 2 (iOS)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Celeste_(video_game)">Celeste</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Dark_Souls">Dark Souls</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://madeincookware.com/atp">Made In</a>: Better cookware for better meals. Get 15% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="https://memberful.com/?utm_source=ATP&amp;utm_medium=Podcast%20Ad&amp;utm_campaign=H2%202021">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>More WWDC tidbits, John's lucrative App Store career, Sega VR, and the risks of sideloading on iOS.</itunes:subtitle></item><item><guid isPermaLink="false">dgtqn1mtmgtyrgns</guid><pubDate>Thu, 17 Jun 2021 18:05:19 +0000</pubDate><title>435: A Strong Number Four</title><itunes:title>A Strong Number Four</itunes:title><itunes:episode>435</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp435.mp3" length="125999530" type="audio/mpeg"/><link>https://atp.fm/435</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Freaks_and_Geeks">Freaks and Geeks</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Universal Control &amp; device arrangement (via Andreas Beyer Bowden)
+
+<ul>
+<li>More from <a href="https://twitter.com/viticci/status/1402332827069337609">Viticci</a></li>
+</ul></li>
+<li><a href="https://support.apple.com/en-us/HT212315">Center Stage</a></li>
+<li>Object Capture quality
+
+<ul>
+<li><a href="https://www.cephalopod.studio/blog/wwdc-2021-photogrammetry-make-your-own-3d-models-and-somehow-it-actually-worked">Matt Waller&#8217;s Baby Yoda</a></li>
+<li><a href="https://twitter.com/MikkoH/status/1402136906587070469">Mikko Haapoja&#8217;s pineapple</a></li>
+</ul></li>
+<li>macOS Monterey Live Text (OCR) <a href="https://twitter.com/kawaljit/status/1405048528976576514">works with captchas too</a>!</li>
+<li>App Library in the dock <a href="https://twitter.com/JasonAten/status/1402273099526152192">is optional</a></li>
+<li>Safari 15 and <a href="https://hypercritical.co/safari-reload-button/">Reload Button</a>
+
+<ul>
+<li><a href="https://gist.github.com/zhuowei/8ad1dd478df0efeb67baf2088e5cd85e">Instructions to restore old-style Safari tab bar</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Feature_toggle">Feature flag</a></li>
+</ul></li>
+</ul></li>
+<li>Many macOS Monterey features are <a href="https://www.macrumors.com/2021/06/09/macos-monterey-features-for-m1-macs-only/">Apple Silicon-only</a>
+
+<ul>
+<li><a href="https://www.apple.com/macos/monterey-preview/">Apple&#8217;s fine print</a></li>
+<li><a href="https://twitter.com/zhuowei/status/1402846536090984449">Maps app globe after toggling a debug flag</a></li>
+</ul></li>
+<li>A trip down DOS gaming memory lane
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Internetwork_Packet_Exchange">IPX</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Kali_(software)">Kali</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Null_modem">Null-modem cable</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Descent_(1995_video_game)">Descent</a></li>
+<li><a href="https://en.wikipedia.org/wiki/PhoneNet">PhoneNet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Bolo_(1987_video_game)">Bolo</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Stuart_Cheshire">Stuart Cheshire</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Zero-configuration_networking">Zero-configuration networking</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Avara">Avara</a></li>
+</ul></li>
+<li>Disk Utility has been updated in Monterey! 🎉</li>
+<li>Monterey <a href="https://www.macrumors.com/2021/06/09/macos-monterey-erase-all-content-settings/">lets you <code>Erase all content &amp; settings</code></a>!
+
+<ul>
+<li><a href="https://www.apple.com/macos/monterey-preview/features/">Apple&#8217;s explanation</a></li>
+</ul></li>
+<li><a href="https://sixcolors.com/post/2021/06/wwdc-2021-icloud-private-relay-plugs-a-few-more-privacy-loopholes">How iCloud Private Relay Works</a>
+
+<ul>
+<li><a href="https://pi-hole.net/">Pi-hole</a></li>
+</ul></li>
+<li><code>#askatp</code>:
+
+<ul>
+<li>How is being a developer on Apple Silicon? (via Abel Demoz)</li>
+<li>What year will be the final year of macOS on Intel? (via Ralf Krakowski)</li>
+<li>How do the low-power M1 cores use only 1/10th the power of the high-power M1 cores? (via Brian Pirie)
+
+<ul>
+<li><a href="https://dougallj.github.io/applecpu/icestorm.html">Icestorm cores</a></li>
+<li><a href="https://dougallj.github.io/applecpu/firestorm.html">Firestorm cores</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show <a href="https://neutral.fm/">Neutral</a>:
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Bugatti_Chiron">Bugatti Chiron</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Bugatti_Veyron">Bugatti Veyron</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rollout_(drag_racing)">Roll-out</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=TtLvv8399pg">Video</a></li>
+<li><a href="https://www.roadandtrack.com/car-culture/videos/a32681/how-tesla-got-to-60-2-28-seconds/">Tesla&#8217;s Test Strategies</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/National_Highway_Traffic_Safety_Administration">NHTSA</a></li>
+<li><a href="https://www.youtube.com/channel/UCLLpxcworT8275nBXODXyqw">M539 Restorations</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BMW_3_Series_(E46)">BMW E46</a></li>
+<li><a href="https://youtube.com/c/M539Restorations">M539 Restorations - YouTube</a></li>
+<li><a href="https://www.cargurus.com/Cars/l-Used-2014-Honda-Accord-Sport-t53221#listing=303471685">2014 Honda Accord Sport 6MT</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://wondery.com/shows/secret-sauce/">Secret Sauce by Wondery</a>: This season breaks down how Jony Ive and Steve Jobs reached the pinnacle of Silicon Valley success.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Our childhood sports achievements, plus a ton more from WWDC.</itunes:subtitle></item><item><guid isPermaLink="false">yxzitekzluphx2vj</guid><pubDate>Tue, 08 Jun 2021 04:50:42 +0000</pubDate><title>434: A Squirmy Soup of Rectangles</title><itunes:title>A Squirmy Soup of Rectangles</itunes:title><itunes:episode>434</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>03:04:02</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp434.mp3" length="176747375" type="audio/mpeg"/><link>https://atp.fm/434</link><description><![CDATA[<ul>
+<li><a href="https://www.apple.com/apple-events/june-2021/">Apple Worldwide Developers Conference 2021</a>
+
+<ul>
+<li><a href="https://www.textsniper.app/">TextSniper</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1401998757584064516">iPad Multitasking Video</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1401976451516223488">iPad Menu Screenshots</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1401997699092787204">iPad Menu Video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mosaic_(web_browser)">Mosaic</a></li>
+<li><a href="https://developer.apple.com/documentation/foundation/nsuseractivity">NSUserActivity</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Dun_%26_Bradstreet">DUNS Number</a></li>
+<li><a href="https://symless.com/synergy">Synergy</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fitts%27s_law">Fitt&#8217;s Law</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Universal_Scene_Description">USDZ</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Continuous_integration">Continuous Integration</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Continuous_delivery">Continuous Delivery</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=6SFNW5F8K9Y">Original Prince video</a>
+
+<ul>
+<li><a href="https://www.thecurrent.org/feature/2018/03/15/what-happened-to-princes-guitar-after-while-my-guitar-gently-weeps">What happened?</a></li>
+<li><a href="https://www.youtube.com/watch?v=dWRCooFKk3c">Remastered version</a> in which the outcome is more visible</li>
+</ul></li>
+<li><a href="https://twitter.com/tvaziri">Todd Vaziri</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://1password.com/">1Password</a>: Your passwords, done right. Check out 1Password for Families and 1Password for Business.</li>
+<li><a href="https://yesplz.coffee/">Yes Plz</a>: Banish bad coffee, upgrade your morning coffee game, and give YES PLZ a try today. Use promo code <strong>ACCIDENTAL</strong> for $5 off your first shipment.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Our WWDC 2021 spectacular!</itunes:subtitle></item><item><guid isPermaLink="false">a3rqmxvznuzmt0vv</guid><pubDate>Thu, 03 Jun 2021 15:00:00 +0000</pubDate><title>433: Before We Leave the Dump</title><itunes:title>Before We Leave the Dump</itunes:title><itunes:episode>433</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp433.mp3" length="123348705" type="audio/mpeg"/><link>https://atp.fm/433</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Casey&#8217;s <span style="text-decoration: line-through">HDMI</span> HOMI Update</li>
+<li><a href="https://www.tripplite.com/products/hdmi-cable-types">HDMI cable types</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IEEE_802.11ax-2021">Wi-Fi 6</a>
+
+<ul>
+<li><a href="http://5by5.tv/b2w/">Back to Work</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Thread_%28network_protocol%29">Thread</a></li>
+</ul></li>
+<li>Dolby Vision and raised blacks (via Kai Kontio)</li>
+<li><a href="https://www.youtube.com/watch?v=HLF8Qdq7eYs&amp;feature=youtu.be">iMac Fans</a></li>
+</ul></li>
+<li><a href="https://docs.google.com/spreadsheets/d/1tP9QzyKKH_B1f2-PQyGbkeB_2mw_Od_1ez4BMaSRy1w/edit?usp=sharing">Jonathan Dietz&#8217;s Apple Silicon cost-estimate spreadsheet</a></li>
+<li>Apple Podcasts issues:
+
+<ul>
+<li><a href="https://twitter.com/silvetti/status/1399717898428588039">Broken show notes</a>?</li>
+<li><a href="https://www.theverge.com/2021/5/28/22459129/apple-delays-podcasts-subscriptions-june">Apple Podcasts subscriptions delayed</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2021/06/apple-developers-grow-app-store-ecosystem-billings-and-sales-by-24-percent-in-2020/">🤮 Apple&#8217;s Self-Serving Puff Piece 🤮</a>
+
+<ul>
+<li><a href="https://web.archive.org/web/20200430094807/https://www.apple.com/hotnews/thoughts-on-flash/">Thoughts on Flash</a></li>
+<li><a href="https://www.caseyliss.com/2020/11/10/on-apples-pisspoor-documentation">On Apple&#8217;s Piss-Poor Documentation</a></li>
+<li><a href="https://developer.apple.com/documentation/accelerate/vdsp">vDSP Functions</a></li>
+</ul></li>
+<li><a href="https://developer.apple.com/wwdc">WWDC</a> 2021 Predictions
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Tick%E2%80%93tock_model">Tick-tock</a></li>
+<li><a href="https://en.wikipedia.org/wiki/WIMP_(computing)">WIMP</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Image_map">Image map</a></li>
+<li><a href="https://www.caseyliss.com/2021/5/11/wwdc-wishes">Casey&#8217;s WWDC 2021 Wishes</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Functional_reactive_programming">Functional Reactive Programming</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/2019/6/13/building-up-to-combine">Casey&#8217;s explanation of <code>Disposable</code>/<code>AnyCancellable</code></a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Async/await"><code>async</code>/<code>await</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Actor_model">Actors</a></li>
+<li><a href="https://www.hackingwithswift.com/">Hacking with Swift</a></li>
+<li><a href="https://swiftbysundell.com/">Swift by Sundell</a></li>
+<li><a href="https://www.meetcarrot.com/weather/">Carrot Weather</a></li>
+<li><a href="https://twitter.com/_saagarjha/status/1398959235954745346"><code>objc_msgSend</code> branch prediction</a></li>
+<li><a href="https://buildwithmatter.com/">Matter (formerly CHoIP)</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://hullopillow.com/atp">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>We funded a study that concluded that we are awesome.</itunes:subtitle></item><item><guid isPermaLink="false">oe9js1a3refftghg</guid><pubDate>Thu, 27 May 2021 16:31:30 +0000</pubDate><title>432: I Shouldn't Need to Wiggle</title><itunes:title>I Shouldn't Need to Wiggle</itunes:title><itunes:episode>432</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:21:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp432.mp3" length="137147823" type="audio/mpeg"/><link>https://atp.fm/432</link><description><![CDATA[<ul>
+<li>Pre-show: Compacted sugar
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Fun_Dip">Fun Dip</a></li>
+<li><a href="https://www.sweetartscandy.com/products.html">SweetTarts</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Candy_cigarette">Candy Cigarette</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Big_League_Chew">Big League Chew</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>John&#8217;s Jade/M1X <a href="https://twitter.com/siracusa/status/1395425815287013378">Twitter thread</a>
+
+<ul>
+<li><a href="http://hypercritical.co/2021/05/21/images/city-of-chiplets.png">High resolution image</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Multi-chip_module">Chiplet</a></li>
+<li><a href="https://www.anandtech.com/show/15590/amd-discusses-x3d-die-stacking-and-packaging-for-future-products-hybrid-25d-and-3d">AMD Discussing X3d Die stacking</a></li>
+<li><a href="https://www.wired.com/story/keep-pace-moores-law-chipmakers-turn-chiplets/">Keeping Up Moore&#8217;s Law with Chiplets</a></li>
+<li><a href="https://www.hardwaretimes.com/difference-between-intel-and-amd-ryzen-processors-chiplet-vs-monolithic/">Chiplet vs. Monolithic</a></li>
+</ul></li>
+<li><em>Some speculation about the next Mac Pro</em></li>
+<li>Base-model 24&#8221; iMacs <a href="https://www.ifixit.com/Teardown/iMac+M1+24-Inch+Teardown/142850#s288731">have only one fan</a></li>
+<li>MacBook Air&#8217;s rumored &#8220;ski feet&#8221;
+
+<ul>
+<li><a href="https://twitter.com/MrLordMatthew/status/1395733381808328709">Lord Matthew&#8217;s theory</a></li>
+</ul></li>
+<li>Apple <a href="https://support.apple.com/en-us/HT212183">support document</a> clarifies lossless streaming details
+
+<ul>
+<li><a href="https://www.macstories.net/news/apple-support-document-clarifies-lossless-streaming-details/">John Voorhees&#8217; take</a></li>
+</ul></li>
+<li>Bluetooth data transfer speeds</li>
+<li>Lossless vs. Lossy Encoding
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/MP3">MP3</a> &amp; <a href="https://en.wikipedia.org/wiki/Advanced_Audio_Coding">AAC</a> &amp; <a href="https://en.wikipedia.org/wiki/Opus_(audio_format)">Opus</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FLAC">FLAC</a> &amp; <a href="https://en.wikipedia.org/wiki/Apple_Lossless">ALAC</a></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2021/05/22/homepod-apple-music-lossless-support/">HomePod &amp; HomePod mini will support lossless</a></li>
+<li><a href="https://www.hdmi.org/spec21sub/enhancedaudioreturnchannel">HDMI eARC</a></li>
+<li>Spatial Audio and AirPods from David Steer</li>
+</ul></li>
+<li>Apple TV 4K (2021 edition)
+
+<ul>
+<li><a href="https://twitter.com/mattcraig/status/1395932185195073536">Matt Craig&#8217;s tweet</a></li>
+<li>Installation/Migration Process
+
+<ul>
+<li>One Home Screen
+
+<ul>
+<li><code>Settings</code> → <code>Users and Accounts</code> → [you] → <code>One Home Screen</code></li>
+</ul></li>
+<li><code>Accessibility</code> → <code>Increase Contrast</code> → <code>Focus Style</code></li>
+<li>Home-button function</li>
+</ul></li>
+<li>Remote
+
+<ul>
+<li><a href="https://twitter.com/davemark/status/1397538884238684173">Dave Mark&#8217;s jog wheel demo video</a></li>
+<li><a href="https://twitter.com/twostraws/status/1396074615315865600">Paul Hudson&#8217;s remote retrospective</a></li>
+<li><a href="https://5by5.tv/hypercritical/49">Hypercritical #49: Pinching the Harmonica</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Consumer_Electronics_Control">HDMI CEC</a></li>
+</ul></li>
+<li>Calibration
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=q2kf4vCzbfA&amp;feature=youtu.be">HDTVTest</a></li>
+<li><a href="https://www.thx.com/tune-up-app/">THX Tune-Up</a></li>
+<li><a href="https://www.rtings.com/"><code>rtings.com</code></a></li>
+<li><a href="https://www.youtube.com/watch?v=R3fH-v9NwKQ&amp;feature=youtu.be">DolbyVision raised blacks fixed?</a></li>
+</ul></li>
+</ul></li>
+<li>Casey&#8217;s Apple TV Woes
+
+<ul>
+<li><a href="http://drops.caseyliss.com/zEMfpv">Wiring Diagram</a></li>
+<li><a href="https://www.monoprice.com/product?p_id=42676">Forthcoming HDMI Cable</a></li>
+<li><a href="https://www.sonos.com/en-us/shop/amp.html">Sonos Amp</a></li>
+<li><a href="https://www.amazon.com/dp/B094LGLJB9/?tag=liismo-20">Belkin SoundForm Connect</a></li>
+</ul></li>
+<li>Post-show: Casey&#8217;s Fan Resolution
+
+<ul>
+<li><a href="https://www.kichler.com/kichler/products/ceiling-fans/indoor-ceiling-fans/56-inch-ried-fan-d3b02c61/">Casey&#8217;s fans</a></li>
+<li><a href="http://www.amazon.com/dp/B07N1GXM38/?tag=liismo-20">Lutron Caséta Smart Fan Speed Control</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://memberful.com">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Compacted sugar, Jade theories, TV-remote button feel, and looking — but not reaching! — very far upward.</itunes:subtitle></item><item><guid isPermaLink="false">rzgwt1rtswlhvu9p</guid><pubDate>Thu, 20 May 2021 15:07:58 +0000</pubDate><title>431: City of Chips</title><itunes:title>City of Chips</itunes:title><itunes:episode>431</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:28</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp431.mp3" length="123517217" type="audio/mpeg"/><link>https://atp.fm/431</link><description><![CDATA[<ul>
+<li><strong>ALL</strong> of ATP is &#8220;maxinated&#8221;! The vaccination train keeps a&#8217;chuggin&#8217;! Toot toot! 🚂💉</li>
+<li>Thank you, ATP Store purchasers!</li>
+<li>Follow-up:
+
+<ul>
+<li>Third-party menu bar items (via <a href="https://redsweater.com">Daniel Jalkut</a>)
+
+<ul>
+<li><code>NSStatusItemBehaviorRemovalAllowed</code> in <code>NSStatusItem.h</code></li>
+</ul></li>
+<li>Spatial Audio from <a href="https://rambo.codes">Gui Rambo</a>
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/coremotion/cmheadphonemotionmanager"><code>CMHeadphoneMotionManager</code></a></li>
+</ul></li>
+<li>24&#8221; iMac Reviews, including <a href="https://sixcolors.com/post/2021/05/24-inch-m1-imac-review/">Jason Snell&#8217;s</a>
+
+<ul>
+<li>Matching cords, accessories, desktop backgrounds, stickers, highlight colors, &#8220;hello&#8221; intro movie</li>
+<li><a href="https://twitter.com/sdw/status/1394877132690526210">Highlight colors via Sebastiaan de With</a></li>
+</ul></li>
+<li><a href="https://www.bobvila.com/articles/how-long-does-gasoline-last/">Gasoline stabilizers</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2021/05/apple-music-announces-spatial-audio-and-lossless-audio/">Apple Music adds Spatial Audio &amp; Lossless at No Cost</a>
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT211775">Listening to Spatial Audio with AirPods Pro and AirPods Max</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Super_Audio_CD">Super Audio CD</a></li>
+<li><a href="https://en.wikipedia.org/wiki/LaserDisc">LaserDisc</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=Eg8tK1LpLS8">Laserdisc: An Introduction</a></li>
+<li><a href="https://www.youtube.com/watch?v=TClRRMFZ7Sw">Laserdisc&#8217;s Failure: What Went Wrong</a></li>
+<li><a href="https://www.youtube.com/watch?v=cvwuAKi1ZB4">DVD: The Death Knell of Laserdisc</a></li>
+<li><a href="https://www.youtube.com/watch?v=behaBgwnB8M">MUSE Hi-Vision Laserdisc: The Blu-ray of 1994</a></li>
+<li><a href="https://www.youtube.com/watch?v=Nbo2QepTZNY">Laserdisc: Features, Follies &amp; Evolution</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/XM_Satellite_Radio">XM Radio</a></li>
+<li><a href="https://xiph.org/video/vid2.shtml">Xiph.org: wave/&#8221;stair-step&#8221; sample-rate explainer</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Digital-to-analog_converter">DAC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Loudness_war">Loudness war</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tidal_(service)">Tidal</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pono_(digital_music_service)">Pono</a></li>
+<li><a href="https://en.wikipedia.org/wiki/List_of_Bluetooth_profiles#Advanced_Audio_Distribution_Profile_(A2DP)">A2DP</a></li>
+<li><a href="https://en.wikipedia.org/wiki/AptX">aptX</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Advanced_Audio_Coding">AAC</a></li>
+<li><a href="https://twitter.com/MicahSingleton/status/1394349176020815875">AirPods Max and lossless over the cable (via Micah Singleton)</a></li>
+<li><a href="https://www.justmastering.com/article-masteredforitunes.php">Mastered for iTunes</a></li>
+<li><a href="https://www.livephish.com/">LivePhish</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FLAC">FLAC</a></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2021/04/21/2021-macbook-pro-ports-leak/">MacBook Pro Ransomware Leak</a>
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B072BD98CM/?tag=liismo-20">Casey&#8217;s battery/hub</a></li>
+</ul></li>
+<li><a href="https://www.macworld.com/article/346154/macbook-air-2021-macbook-colors-apple-silicon-mistakes-price.html">MacBook Air Rumors</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=KValV-drXw0">John Prosser&#8217;s Video</a></li>
+<li><a href="https://leancrew.com/all-this/2021/05/airtime/">Dr. Drang on Battery Life</a></li>
+</ul></li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-05-18/apple-readies-macbook-pro-macbook-air-revamps-with-faster-chips">Gurman&#8217;s Report</a>
+
+<ul>
+<li><a href="https://www.nvidia.com/en-us/geforce/graphics-cards/30-series/rtx-3090/">GeForce RTX 3090</a></li>
+<li><a href="https://9to5mac.com/2021/04/22/apple-releases-macos-11-4-beta/">macOS 11.4 beta supports new AMD graphics cards</a>
+
+<ul>
+<li><a href="https://www.amd.com/en/products/graphics/amd-radeon-rx-6900-xt">AMD 6900 XT</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Connection_Machine">The Connection Machine</a></li>
+</ul></li>
+<li>Post-show: Casey &amp; John&#8217;s Adventures with Eero
+
+<ul>
+<li><a href="https://support.eero.com/hc/en-us/articles/207908663-What-do-the-colors-of-the-LED-light-on-my-eero-mean-">Eero lights explanation</a></li>
+<li><a href="https://eero.com/compare">Eero&#8217;s comparison page</a>
+
+<ul>
+<li><em>Hint: use code <code>ATP</code> &mdash; it still works!</em></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://remote.com/atp">Remote</a>: Whether you want to hire one person or 100, Remote makes it easy. Use code <strong>ATP</strong> to get started.</li>
+<li><a href="https://aftershokz.com/atp">AfterShokz</a>: Headphones powered by bone-conduction technology. Get 15% off with this link.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Spatial audio, high-resolution music, lossless compression, the appeal of vinyl, and other completely safe topics that nobody will argue about.</itunes:subtitle></item><item><guid isPermaLink="false">q2jhbfl3efhleuuy</guid><pubDate>Thu, 13 May 2021 14:11:28 +0000</pubDate><title>430: Apple Did Not Eat That Food</title><itunes:title>Apple Did Not Eat That Food</itunes:title><itunes:episode>430</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp430.mp3" length="111083665" type="audio/mpeg"/><link>https://atp.fm/430</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store">ATP STORE</a> IS BACK!! Make your purchases until Friday, May 14.</strong></p>
+
+<ul>
+<li>Pre-show:
+
+<ul>
+<li>⅔ of ATP is &#8220;maxinated&#8221;! The vaccination train keeps a&#8217;chuggin&#8217;! Toot toot! 🚂💉</li>
+<li><a href="https://en.wikipedia.org/wiki/Colonial_Pipeline">Colonial Pipeline</a>
+
+<ul>
+<li><a href="https://www.thedrive.com/cars-101/38093/how-long-does-gas-last">How long does gas last?</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Overpriced AirTag mounts
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MHJ23ZM/A/airtag-leather-key-ring-baltic-blue">AirTag Leather Key Ring</a></li>
+<li><a href="https://www.apple.com/shop/product/MX4A2ZM/A/airtag-leather-loop-saddle-brown">AirTag Leather Loop</a></li>
+<li><a href="https://www.apple.com/shop/product/HNPR2ZM/A/belkin-secure-holder-with-key-ring-for-airtag-black">Belkin Secure Holder with Key Ring for AirTag</a></li>
+<li><a href="https://www.amazon.com/dp/B000FPAN3E/?tag=marcoorg-20">Marco&#8217;s recommended solution</a></li>
+</ul></li>
+<li>Unattended restart with FileVault enabled
+
+<ul>
+<li><code>sudo fdesetup authrestart</code>
+
+<ul>
+<li>Or, optionally, <code>sudo fdesetup authrestart -delayminutes 5</code></li>
+</ul></li>
+<li><code>softwareupdate -ia</code></li>
+</ul></li>
+<li>AppleTV and <a href="https://support.apple.com/en-us/HT211775">spatial audio</a></li>
+<li>AppleTV supports Wi-Fi 6</li>
+</ul></li>
+<li><a href="https://www.theverge.com/2021/5/12/22432909/apple-petition-hiring-antonio-garcia-martinez-chaos-monkeys-facebook">Apple&#8217;s bad hire</a>
+
+<ul>
+<li><a href="https://twitter.com/Sommer/status/1392544406666846210">Sommer Panage&#8217;s response</a></li>
+<li>🚨 SPOILER ALERT 🚨 <a href="https://www.theverge.com/2021/5/12/22433437/apple-hire-antonio-garcia-martinez-out-petition-investigation">He&#8217;s already fired</a></li>
+</ul></li>
+<li>Epic vs. Apple, and internal emails
+
+<ul>
+<li><a href="https://www.theverge.com/2021/4/27/22406303/imessage-android-eddy-cue-emails-apple-epic-deposition">Eddy Cue and Craig Federighi on iMessage for Android in 2013</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Common_carrier">Common carrier</a></li>
+<li><a href="https://www.youtube.com/watch?v=qdTUrFjKhcM">Steve Jobs 1997 Q&amp;A</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-05-03/apple-s-schiller-floated-cutting-app-store-fees-a-decade-ago">Schiller wondering about the 30% cut&#8230; in 2011</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Hiding the Dropbox menu-bar icon? (via Jason Bates-Brownsword)
+
+<ul>
+<li><a href="https://www.synology.com/en-global/dsm/feature/drive">Synology Drive</a></li>
+<li><a href="https://www.synology.com/en-us/dsm/feature/cloud_sync">Synology Cloud Sync</a></li>
+<li><a href="https://www.macbartender.com/">Bartender</a></li>
+<li><a href="https://matthewpalmer.net/rocket/">Rocket</a></li>
+<li><a href="https://matthewpalmer.net/vanilla/">Vanilla</a></li>
+</ul></li>
+<li>Could one swap a <a href="https://en.wikipedia.org/wiki/System_on_a_chip">SoC</a>? (via Chandler Kent)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Sarbanes%E2%80%93Oxley_Act">Sarbanes-Oxley</a></li>
+</ul></li>
+<li>How does one back up a MacBook without a <a href="https://en.wikipedia.org/wiki/AirPort_Time_Capsule">Time Capsule</a>? (via John Larson)
+
+<ul>
+<li><a href="https://www.kickstarter.com/projects/1342319572/the-nifty-minidrive">Nifty MiniDrive</a></li>
+<li><a href="https://hypercritical.co/fatbits/2005/11/05/the-case-for-raid">The Case for RAID</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Marco tried to use Ruby
+
+<ul>
+<li><a href="https://pages.github.com/">Github Pages</a></li>
+<li><a href="https://jekyllrb.com/">Jekyll</a></li>
+<li><a href="https://phiresky.github.io/blog/2021/hosting-sqlite-databases-on-github-pages/">Hosting SQLite Databases on Github Pages</a></li>
+<li><a href="https://xkcd.com/974/">xkcd: The General Problem</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://remote.com/atp">Remote</a>: Whether you want to hire one person or 100, Remote makes it easy. Use code <strong>ATP</strong> to get started.</li>
+<li><a href="https://memberful.com/">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>AirTag mounting options, Apple's bad hire, an epic (…😎) rant about Apple's in-app-purchase rules and developer relations, and discovering the slowest way to make a three-page website.</itunes:subtitle></item><item><guid isPermaLink="false">qkr4rjhwb09kwldh</guid><pubDate>Thu, 06 May 2021 15:49:15 +0000</pubDate><title>429: Digital Speedo</title><itunes:title>Digital Speedo</itunes:title><itunes:episode>429</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp429.mp3" length="119029325" type="audio/mpeg"/><link>https://atp.fm/429</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store">ATP STORE</a> IS BACK!! Make your purchases until Friday, May 14.</strong> (Don&#8217;t forget, <a href="https://atp.fm/join">members</a> get 15% off!)</p>
+
+<ul>
+<li>Pre-show: ⅓ of ATP is &#8220;maxinated&#8221;! The vaccination train keeps a&#8217;chuggin&#8217;! Toot toot! 🚂💉</li>
+<li>Follow-up:
+
+<ul>
+<li>Some notes about <a href="https://atp.fm/store">the ATP store</a>
+
+<ul>
+<li><a href="mailto:support@cottonbureau.com"><code>support@cottonbureau.com</code></a></li>
+</ul></li>
+<li>Casey&#8217;s <a href="https://www.kichler.com/kichler/products/ceiling-fans/indoor-ceiling-fans/56-inch-ried-fan-d3b02c61/">fans</a> (the spinny kind)
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B071GVGVVH/?tag=liismo-20">Bond Bridge</a></li>
+</ul></li>
+<li>Purchases last week
+
+<ul>
+<li>AirTag quick impressions</li>
+<li><a href="https://en.wikipedia.org/wiki/Spree_(candy)">Spree</a></li>
+<li><a href="https://whistle.com/">Whistle</a></li>
+</ul></li>
+<li>FileVault performance
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT208344">About encrypted storage on your new Mac</a></li>
+</ul></li>
+<li>FileVault and remote management</li>
+<li>John&#8217;s macOS 11.3 woes
+
+<ul>
+<li>FB9095615</li>
+</ul></li>
+<li>Jason Snell on <a href="https://sixcolors.com/link/2021/04/the-2021-ipad-pro-will-work-with-the-old-ipad-pro-magic-keyboard/">12.9&#8221; iPad and the old Magic Keyboard</a></li>
+<li>Jason Snell on <a href="https://www.relay.fm/upgrade/351">driving a Model 3</a></li>
+<li><a href="https://wheelbearings.media/">Sam Abuelsamid</a> on vehicle-to-load
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=A6RsmzCYB3I&amp;t=1130s">Jonny Smith&#8217;s review of the Hyundai Ioniq 5</a></li>
+</ul></li>
+</ul></li>
+<li>The Basecamp fiasco
+
+<ul>
+<li>Casey Newton&#8217;s summary posts
+
+<ul>
+<li>#1: <a href="https://www.theverge.com/2021/4/27/22406673/basecamp-political-speech-policy-controversy">Breaking Camp</a></li>
+<li>#2: <a href="https://www.theverge.com/2021/5/3/22418208/basecamp-all-hands-meeting-employee-resignations-buyouts-implosion">Inside the All-Hands Meeting that Led to a Third of Basecamp Employees Quitting</a></li>
+</ul></li>
+<li>Basecamp&#8217;s posts
+
+<ul>
+<li><a href="https://world.hey.com/jason/changes-at-basecamp-7f32afc5">Changes at Basecamp</a></li>
+<li><a href="https://world.hey.com/dhh/basecamp-s-new-etiquette-regarding-societal-politics-at-work-b44bef69">Basecamp&#8217;s new etiquette regarding societal politics at work</a></li>
+<li><a href="https://world.hey.com/dhh/let-it-all-out-78485e8e">Let it all out</a></li>
+<li><a href="https://world.hey.com/dhh/mosaics-of-positions-ae6d4d9e">Mosaics of positions</a></li>
+<li><a href="https://world.hey.com/jason/on-making-decisions-fb7adfbf">On making decisions</a></li>
+<li><a href="https://world.hey.com/jason/an-update-303f2f99">An Update</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Ruby_on_Rails">Ruby on Rails</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Woke">Woke</a></li>
+<li><a href="https://www.adl.org/sites/default/files/documents/pyramid-of-hate.pdf">Anti Defamation League&#8217;s Pyramid of Hate</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What do we use to take notes? (via <a href="https://twitter.com/MrDavidBarber/status/1383113472960032769">David Barber</a>)
+
+<ul>
+<li><a href="https://www.dueapp.com/">Due</a></li>
+<li><a href="https://www.anylist.com/">AnyList</a></li>
+<li><a href="https://dayoneapp.com/">Day One</a></li>
+</ul></li>
+<li>Would we prefer writing against an abandoned API or the new hotness? (via <a href="https://twitter.com/xarph/status/1383165021111287808">Xarph</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Adobe_ColdFusion">ColdFusion</a></li>
+<li><a href="https://daringfireball.net/linked/2021/05/05/berkshire-32-bit-ints">Berkshire Hathaway shares</a></li>
+<li>Marco&#8217;s .WAV-parsing bug: FB9097026</li>
+</ul></li>
+<li>Where are the APFS de-duping space-saving scripts? (via <a href="https://twitter.com/whophd/status/1385068026521800710">whophd</a>)
+
+<ul>
+<li><a href="https://apps.apple.com/app/diskdedupe/id1457961323"><code>diskDedupe</code></a> (App Store link)</li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes, our early-release, unedited &#8220;bootleg&#8221; feed, and 15% off our current merchandise!</p>
+]]></description><itunes:subtitle>Basecamp, AirTag impressions, notes apps, and a scientific balloon situation.</itunes:subtitle></item><item><guid isPermaLink="false">ahrymjbzmnfzq3fy</guid><pubDate>Thu, 29 Apr 2021 15:34:47 +0000</pubDate><title>428: A Series of Rectangles</title><itunes:title>A Series of Rectangles</itunes:title><itunes:episode>428</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp428.mp3" length="108834820" type="audio/mpeg"/><link>https://atp.fm/428</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store">ATP STORE</a> IS BACK!! Make your purchases until Friday, May 14.</strong></p>
+
+<ul>
+<li>Pre-show: ⅔ of ATP has completed their journey on the vaccination train! Toot toot! 🚂💉</li>
+<li>&#8220;Fully vaccinated&#8221;</li>
+<li><a href="https://www.youtube.com/watch?v=G05nEgsXgoI">Joanna Stern&#8217;s C-Fed Interview</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=G05nEgsXgoI&amp;t=436s">CEO question timestamp link</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-events/april-2021/">Spring 2021 Apple Event</a>
+
+<ul>
+<li>Apple TV
+
+<ul>
+<li>Calibration</li>
+<li>Remote Design &amp; <a href="https://twitter.com/ericweber7/status/1385326200445235200">Pricing</a></li>
+<li><a href="https://www.macrumors.com/2021/04/22/new-siri-remote-lacks-accelerometer-gyroscope/">No Acceleromter nor Gyroscope</a></li>
+<li><a href="https://twitter.com/Overlord_Odin/status/1385265492789694465">Apple TV pricing</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_TV#1st_generation_(2007)">Apple TV / iTV</a></li>
+</ul></li>
+<li>High-frame-rate HDR compatibility?</li>
+<li>AppleCare+ for Apple TV</li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2021/04/21/applecare-for-mac-extended-coverage/">Extended AppleCare+ for Macs</a></li>
+<li>iMac
+
+<ul>
+<li>Power brick/cable
+
+<ul>
+<li><a href="https://www.relay.fm/upgrade/350">Upgrade #350: The Time for Color is Now</a></li>
+<li>143 watts</li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Flat_Display_Mounting_Interface">VESA</a> mount</li>
+<li><a href="https://twitter.com/brynbehr/status/1386758908841271297">Why not put Ethernet on <em>all</em> Mac adapters?</a></li>
+<li><a href="https://twitter.com/sferik/status/1386374554612682753">Why have high-efficiency cores in a batteryLiss system?</a></li>
+</ul></li>
+<li>iPad
+
+<ul>
+<li>12MP front-facing wide camera with Center Stage
+
+<ul>
+<li><a href="https://twitter.com/viticci/status/1384584226050387970">Center Stage will have an API</a></li>
+</ul></li>
+<li>iPad RAM amount is listed 😱</li>
+<li><a href="https://www.theverge.com/2021/4/23/22399095/apple-12-9-inch-ipad-pro-2020-models-magic-keyboard-incompatible">12.9&#8221; iPad Pro and older Magic Keyboards</a></li>
+</ul></li>
+<li>AirTags: <a href="https://twitter.com/jame5on/status/1385369216572919813">for tracking your luggage</a></li>
+<li>Apple Premium Podcasts</li>
+<li>John&#8217;s Eero &amp; Smart Outlet update</li>
+<li>EV charging from Sam Abuelsamid of <a href="https://wheelbearings.media/">Wheel Bearings</a> and <a href="https://shirt-pocket.com/">Dave Nanian</a>
+
+<ul>
+<li><a href="https://afdc.energy.gov/stations/#/analyze?country=US&amp;fuel=ELEC&amp;ev_levels=dc_fast&amp;ev_connectors=J1772COMBO&amp;ev_networks=Electrify%20America">DoE Map Search</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Speedpass">Mobil Speedpass</a></li>
+</ul></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What would it take to get you into this [phantom] Mac Pro, today, John? (via Brian Ashe)</li>
+<li>Do we use FileVault on our personal Macs? How come? (via Lingxiu Zhang)
+
+<ul>
+<li><code>System Preferences</code> → <code>Security &amp; Privacy</code> → <code>FileVault</code></li>
+<li><a href="https://www.wired.com/2012/08/apple-amazon-mat-honan-hacking/">Mat Honan&#8217;s tale of woe</a></li>
+</ul></li>
+<li>What&#8217;s the longevity of the M1 look like? (via Johann Neubert)</li>
+</ul></li>
+<li>Post-show: Marco&#8217;s arms are on fire</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>A lot of follow-up in a race against an antihistamine.</itunes:subtitle></item><item><guid isPermaLink="false">nvnwvlpscfrqwvo2</guid><pubDate>Thu, 22 Apr 2021 14:01:07 +0000</pubDate><title>427: The Apology Remote</title><itunes:title>The Apology Remote</itunes:title><itunes:episode>427</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:37:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp427.mp3" length="150914003" type="audio/mpeg"/><link>https://atp.fm/427</link><description><![CDATA[<ul>
+<li>Pre-show: ⅓ of ATP has completed their journey on the vaccination train! Toot toot! 🚂💉</li>
+<li><a href="https://www.apple.com/apple-events/april-2021/">Spring 2021 Apple Event</a>
+
+<ul>
+<li><a href="https://www.apple.com/newsroom/2021/04/apple-introduces-apple-card-family-enabling-people-to-share-apple-card-and-build-credit-together/">Apple Card Family</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/04/apple-leads-the-next-chapter-of-podcasting-with-apple-podcasts-subscriptions/">Apple Podcasts App Updates &amp; Subscriptions</a>
+
+<ul>
+<li><a href="https://twitter.com/mijustin/status/1385017459309121539"><code>RSS Feed Access</code></a></li>
+<li><a href="https://podcastindex.org/">Podcast Index</a></li>
+<li><a href="https://www.theincomparable.com/robot/141/">Robot or Not #141: Podcasting</a></li>
+<li><a href="https://en.wikipedia.org/wiki/User_agent#Use_in_HTTP">User-Agent string</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Lossless">ALAC</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/airtag/">AirTag</a>
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MX8A2AM/A/airtag-herm%C3%A8s-luggage-tag">Hermès Luggage Tag</a></li>
+<li><a href="https://twitter.com/_inside/status/1384577990420537346">Gui Rambo&#8217;s discovered battery replacement video</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/04/apple-introduces-airtag/">Press release</a></li>
+<li><a href="https://support.apple.com/en-us/HT212227">What to do if you find an AirTag or get an alert that an AirTag is with you</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-tv-4k/">AppleTV</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=auxeLrtk7tk">Ted Lasso Season 2 Trailer</a></li>
+<li><a href="https://www.apple.com/v/apple-tv-4k/p/images/specs/touch_remote__cpilgtg4rf0i_large_2x.jpg">Siri Remote Image</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Thread_(network_protocol)">Thread radio</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/imac-24/">24&#8221; iMac</a>
+
+<ul>
+<li><a href="https://youtu.be/4X_IW3kqr3k">iMac ad featuring the rainbow Apple logo</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/ipad-pro/">iPad Pro</a>
+
+<ul>
+<li><a href="https://www.apple.com/pro-display-xdr/">Pro Display XDR</a></li>
+<li><a href="https://www.apple.com/shop/product/MJQJ3LL/A/magic-keyboard-for-ipad-pro-11-inch-3rd-generation-and-ipad-air-4th-generation-us-english">Magic Keybaord</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://www.david-smith.org/blog/2021/04/21/breadcrumbs/">Ted Lasso&#8217;s Secret Shortbread</a></li>
+<li><a href="https://www.houseofprimerib.net/">House of Prime Rib</a></li>
+<li><a href="https://www.originalgravitypub.com/">The beer-and-sausage place</a></li>
+<li><a href="https://goodkarmasj.com/">The vegan Indian place</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://yesplz.coffee/">Yes Plz</a>: Banish bad coffee, upgrade your morning coffee game, and give YES PLZ a try today. Use promo code <strong>TIMAPPLE</strong> for $5 off your first shipment.</li>
+<li><a href="https://pod.link/">pod.link</a> by <a href="https://podsights.com/atp">Podsights</a>: Easier podcast links that work for everyone.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>It really was a loaded baked potato!</itunes:subtitle></item><item><guid isPermaLink="false">buxqddjxvdhqnkxh</guid><pubDate>Thu, 15 Apr 2021 15:52:12 +0000</pubDate><title>426: Loaded Baked Potato</title><itunes:title>Loaded Baked Potato</itunes:title><itunes:episode>426</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:48:48</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp426.mp3" length="104689840" type="audio/mpeg"/><link>https://atp.fm/426</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>[Hopefully not] Burning Down the House </li>
+<li><strong>All</strong> of ATP is on the vaccination train! Toot toot! 🚂💉
+
+<ul>
+<li><a href="https://rogueamoeba.com/">Thanks, Paul</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Smart outlet update
+
+<ul>
+<li><a href="https://relay.fm/rd/">Reconcilable Differences</a></li>
+<li>For eero:<br />
+<code>Settings</code> → <code>Troubleshooting</code> → <code>My device won't connect</code> → <code>My device won't connect to my network</code> → <code>Temporarily pause 5 GHz</code></li>
+</ul></li>
+<li>Electrical resistive heating
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=7J52mDjZzto">Technology Connections: Heat Pumps</a></li>
+<li><a href="https://www.youtube.com/watch?v=7zrx-b2sLUs">Technology Connections: The Future of Heat Pumps is Underground</a></li>
+</ul></li>
+<li>Casey has a CarPlay <span style="text-decoration: line-through">apostrophe</span> epiphany</li>
+<li>Charging the i3
+
+<ul>
+<li><a href="https://www.shirtpocket.com/SuperDuper/SuperDuperDescription.html">Go buy SuperDuper</a>!</li>
+<li><a href="https://www.evgo.com/ev-drivers/types-of-evs/">Types of EVs</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-out: <a href="https://www.relay.fm/upgrade/347">Upgrade&#8217;s Discussion of TouchBar and HomePod</a></li>
+<li><a href="https://sixcolors.com/post/2021/04/apple-event-april-20/">Apple event on 20 April</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Single HomePod or dual HomePod Mini? What if there&#8217;s already a HomePod? (via Josh Errickson)</li>
+<li>What&#8217;s the point of <a href="https://en.wikipedia.org/wiki/Blind_carbon_copy"><code>BCC</code></a> in email? (via Chuma Nnaji)</li>
+<li>How long until we see Apple using <a href="https://www.arm.com/blogs/blueprint/armv9">Armv9</a>?
+
+<ul>
+<li><a href="https://www.arm.com/company/news/2021/03/arms-answer-to-the-future-of-ai-armv9-architecture">Armv9</a></li>
+<li><a href="https://www.anandtech.com/show/16584/arm-announces-armv9-architecture">AnandTech&#8217;s Write-Up</a></li>
+<li><a href="https://www.youtube.com/watch?v=hzfN-E5k5W0">Explore the Armv9 Architecture</a></li>
+<li><a href="https://developer.apple.com/library/archive/documentation/DeviceInformation/Reference/iOSDeviceCompatibility/DeviceCompatibilityMatrix/DeviceCompatibilityMatrix.html#//apple_ref/doc/uid/TP40013599-CH17-SW9">iOS Device Compatibility Reference</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show <a href="https://neutral.fm/">Neutral</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://alexweinstein.com/atp">Alex Weinstein</a>: Want to tell a better story? Start with better music. </li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Home electrical work, dumb Wi-Fi networks for allegedly smart devices, and predictions for next week's Apple event.</itunes:subtitle></item><item><guid isPermaLink="false">x214wg8wuufya3u1</guid><pubDate>Thu, 08 Apr 2021 15:08:58 +0000</pubDate><title>425: Hey Billionaire</title><itunes:title>Hey Billionaire</itunes:title><itunes:episode>425</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:30:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp425.mp3" length="144415852" type="audio/mpeg"/><link>https://atp.fm/425</link><description><![CDATA[<ul>
+<li>Pre-show: ⅔ of ATP is on the vaccination train! Toot toot! 🚂💉
+
+<ul>
+<li><a href="https://www.tiktok.com/@hotvickkrishna/video/6937457241968643334">Fork Hands</a>
+
+<ul>
+<li><a href="https://www.tiktok.com/@hotvickkrishna/video/6946300405756349702">FU: Why two doses?</a></li>
+</ul></li>
+<li><a href="https://berthub.eu/articles/posts/reverse-engineering-source-code-of-the-biontech-pfizer-vaccine/">Reverse Engineering the BioNTech/Pfizer SARS-CoV-2 Vaccine</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>How is John replacing a router with <a href="https://www.amazon.com/dp/B00C2H0YFU?&amp;linkCode=sl1&amp;tag=siracusa-20&amp;linkId=7f6ad51bbd0b9a9c56636bc5b811408a&amp;language=en_US&amp;ref_=as_li_ss_tl">a switch</a>?</li>
+<li><a href="https://store.ui.com/collections/unifi-network-routing-switching/products/usw-flex-mini">Ubiquiti Flex Mini</a></li>
+<li>Handoff vs. AirPlay 2</li>
+<li><a href="https://twitter.com/zmknox/status/1377947487181406214">Zach&#8217;s point about WWDC announcement date</a></li>
+<li>Yep, Apple uses <a href="https://www.webex.com/">Webex</a></li>
+<li><a href="https://www.microsoft.com/en-us/microsoft-teams/group-chat-software">Microsoft Teams</a>
+
+<ul>
+<li>Perhaps it&#8217;s too many <a href="https://en.wikipedia.org/wiki/User_Datagram_Protocol">UDP</a> packets?</li>
+</ul></li>
+<li>Heating your house via cryptomining?
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=7J52mDjZzto">Technology Connections: Heat Pumps</a></li>
+<li><a href="https://www.youtube.com/watch?v=7zrx-b2sLUs">Technology Connections: The Future of Heat Pumps is Underground</a></li>
+</ul></li>
+<li><a href="https://developer.apple.com/documentation/appkit/nsrunningapplication"><code>NSRunningApplication</code></a> was added in <a href="https://en.wikipedia.org/wiki/Mac_OS_X_Snow_Leopard">Snow Leopard</a></li>
+<li><code>FB7603765</code> is fixed!! 🎉</li>
+<li><a href="https://github.com/mykeln/teslaprep/blob/master/model_3_checklist.md">Tesla Model 3 Delivery Checklist</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cryptocurrency">Cryptocurrency 000</a> 101
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Proof_of_work">Proof of work</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Proof_of_stake">Proof of stake</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ethereum">Ethereum</a></li>
+<li><a href="https://www.youtube.com/watch?v=bBC-nXj3Ng4">But how does Bitcoin actually work?</a>
+
+<ul>
+<li><a href="https://github.com/3b1b/videos/blob/master/_2017/crypto.py">Github repo</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Fiat_money">Fiat currency</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pyramid_scheme">Pyramid scheme</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.techdirt.com/articles/20210405/09243546552/supreme-court-sides-with-google-decade-long-fight-over-api-copyright-googles-copying-java-api-is-fair-use.shtml">Supreme Court: Oracle vs. Google</a>
+
+<ul>
+<li><a href="https://arstechnica.com/tech-policy/2021/04/how-the-supreme-court-saved-the-software-industry-from-api-copyrights/">Ars Technica write-up</a></li>
+<li><a href="https://mjtsai.com/blog/2021/04/05/copying-the-java-api-was-fair-use/">MJ Tsai&#8217;s write-up</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Clean_room_design">Clean room</a></li>
+<li><a href="https://en.wikipedia.org/wiki/GNUstep">GNUstep</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Application_Kit">ApplicationKit</a></li>
+<li><a href="https://kotlinlang.org/">Kotlin</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Arial">Arial</a></li>
+<li><a href="https://en.wikipedia.org/wiki/New_York_(1983_typeface)">New York</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Geneva_(typeface)">Geneva</a></li>
+<li><a href="https://en.wikipedia.org/wiki/San_Francisco_(sans-serif_typeface)">San Francisco</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Swing_(Java)">Swing</a></li>
+<li><a href="https://en.wikipedia.org/wiki/POSIX">POSIX</a></li>
+</ul></li>
+<li><a href="https://www.nytimes.com/2021/04/05/opinion/apples-ceo-is-making-very-different-choices-from-mark-zuckerberg.html?showTranscript=1">Tim Cook Interview with Kara Swisher</a>
+
+<ul>
+<li><a href="https://overcast.fm/+m_rrV2bzk">Overcast link</a></li>
+<li><a href="https://dithering.fm/">Dithering</a> (see the 7 April episode)</li>
+<li><a href="https://www.relay.fm/upgrade/346">Upgrade #346: Float It Like a Hologram</a></li>
+<li><a href="https://www.outsideonline.com/2420733/tim-cook-apple-fitness-wellness-future">Outside Online Interview</a></li>
+<li><a href="https://www.macworld.com/article/342432/tim-cook-not-planning-on-staying-with-apple-through-the-decade.html">Tim Cook&#8217;s ∞ Timeline</a></li>
+<li><a href="https://www.apple.com/leadership/">Apple Leadership</a></li>
+<li><a href="https://knowyourmeme.com/memes/subcultures/webcomic-name">oh no</a></li>
+</ul></li>
+<li>Post-show <a href="https://neutral.fm/">Neutral</a>: Marco&#8217;s injured Tesla
+
+<ul>
+<li><a href="https://www.bmwusa.com/vehicles/bmwi/i3/sedan/overview.html">BMW i3</a></li>
+<li><a href="https://neutral.fm/4">Neutral #4: If You See a Cursor, They Blew It</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Oracle v. Google, Tim Cook's interview, the next Apple CEO, and BMW vs. CarPlay.</itunes:subtitle></item><item><guid isPermaLink="false">zmzft3kwbvowtuk3</guid><pubDate>Thu, 01 Apr 2021 18:32:08 +0000</pubDate><title>424: Ethernet Squid</title><itunes:title>Ethernet Squid</itunes:title><itunes:episode>424</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:29</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp424.mp3" length="114113043" type="audio/mpeg"/><link>https://atp.fm/424</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Read-only <a href="https://tapbots.com/tweetbot/">Tweetbot</a></li>
+<li><a href="https://developer.apple.com/documentation/watchconnectivity">WatchConnectivity</a>
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/watchconnectivity/wcsession/1615621-updateapplicationcontext"><code>applicationContext</code></a></li>
+<li><a href="https://developer.apple.com/documentation/watchconnectivity/wcsession/1615671-transferuserinfo"><code>userInfo</code></a></li>
+<li><a href="https://developer.apple.com/documentation/watchconnectivity/wcsession/1615687-sendmessage"><code>messages</code></a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>[More] Tesla wheels of shame
+
+<ul>
+<li><a href="https://twitter.com/alistairlogie/status/1377334171798888448">Belvedere, CA via Alistair Logie</a></li>
+</ul></li>
+<li>AirPods Max warranty repairs (via Harrison Krebs)</li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2021/03/apples-worldwide-developers-conference-is-back-in-its-all-online-format/">WWDC 2021 Announced</a>
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/appkit/nsrunningapplication"><code>NSRunningApplication</code></a> Radar Numbers
+
+<ul>
+<li>48190148</li>
+<li>25521354</li>
+<li>22088473</li>
+<li>18980463</li>
+<li>21253274</li>
+<li>18890642</li>
+</ul></li>
+</ul></li>
+<li><a href="https://techcrunch.com/2021/03/31/apple-adds-two-siri-voices/">New Siri Default Voices</a>
+
+<ul>
+<li><a href="https://twitter.com/viticci/status/1377366693979123719">Sample Recording</a></li>
+<li><a href="https://twitter.com/gruber/status/1377410922147274754">Another Sample Recording</a></li>
+</ul></li>
+<li><a href="https://krebsonsecurity.com/2021/03/whistleblower-ubiquiti-breach-catastrophic/">Ubiquiti Breach</a>
+
+<ul>
+<li><em>An aside about <a href="https://en.wikipedia.org/wiki/Cryptocurrency">cryptocurrency</a></em>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Collateralized_debt_obligation">CDO</a></li>
+<li><a href="https://twitter.com/Theophite/status/1030225104234373121">Bitcoin summary</a></li>
+<li><a href="https://www.youtube.com/watch?v=bBC-nXj3Ng4">But how does Bitcoin actually work?</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Air_gap_(networking)">Air gap</a></li>
+<li><a href="https://eero.com/atp">eero</a></li>
+<li><a href="https://www.pfsense.org/">pfSense</a>
+
+<ul>
+<li><a href="https://arstechnica.com/gadgets/2021/03/buffer-overruns-license-violations-and-bad-code-freebsd-13s-close-call/">Their recent &#8220;whoopsies&#8221;</a></li>
+</ul></li>
+</ul></li>
+<li>John&#8217;s Networking Situation
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Frequency_illusion">Baader-Meinhof Phenomenon</a></li>
+<li><a href="https://en.wikipedia.org/wiki/AirPort_Extreme">AirPort Extreme</a></li>
+<li><a href="https://www.amazon.com/dp/B086L7RJ3Q/?tag=marcoorg-20">USW Flex Mini</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Recurrent_laryngeal_nerve">Recurrent laryngeal nerve - Wikipedia</a></li>
+<li><a href="https://youtu.be/wzIXF6zy7hg">Recurrent laryngeal nerve - YouTube</a></li>
+<li><a href="https://en.wikipedia.org/wiki/High_availability#Percentage_calculation">Four Nines</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Should one use a non-administrator user account? (via <a href="https://twitter.com/michaellopata/status/1358123885233897482">Michael</a>)</li>
+<li>How do I mash together 400 video clips into one file? (via <a href="https://twitter.com/Dunks/status/1374569086793830407">Duncan Wilcock</a>)
+
+<ul>
+<li><a href="http://ffmpeg.org/"><code>ffmpeg</code></a></li>
+<li><a href="https://www.caseyliss.com/2017/8/17/ffmpeg">Casey&#8217;s primer on <code>ffmpeg</code></a></li>
+<li>In short:
+
+<ul>
+<li>Create a file that refers to all 400 file names. Call it, say, <code>files.txt</code></li>
+<li>Each line of that file reads <code>file 1.mp4</code>, <code>file 2.mp4</code>, etc. One file per line.</li>
+<li>Maybe something like this? <code>ffmpeg -f concat -i files.txt -vf scale=4096:2160 three-hour-movie.mp4</code></li>
+</ul></li>
+</ul></li>
+<li>How does Overcast scrape iTunes? (via Brandon Wees)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/SOAP">SOAP</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Bell follow-up</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/atp12">Hello Fresh</a>: America’s #1 meal kit. Use code <strong>atp12</strong> for 12 free meals.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>WWDC's announcement, WatchConnectivity, read-only Twitter apps, Ubiquiti's trouble, network-switch fashion, and the latest hot news about cryptocurrency.</itunes:subtitle></item><item><guid isPermaLink="false">ow1qdxjmodnwqmn4</guid><pubDate>Thu, 25 Mar 2021 15:46:53 +0000</pubDate><title>423: Fort of HomePods</title><itunes:title>Fort of HomePods</itunes:title><itunes:episode>423</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:41</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp423.mp3" length="112477131" type="audio/mpeg"/><link>https://atp.fm/423</link><description><![CDATA[<ul>
+<li>What would it take to get Marco into a concert?
+
+<ul>
+<li><a href="https://www.livephish.com/">LivePhish</a></li>
+<li><a href="http://dobyfriday.com/232">Do By Friday #232: Panatee</a></li>
+<li><a href="https://www.relay.fm/rd/152">Reconcilable Differences #152: Warnings of Gales in Trafalgar</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Tesla Wheel of Shame
+
+<ul>
+<li><a href="https://twitter.com/clemau/status/1372469547316355078">Hong Kong (via Cilver Aullet)</a></li>
+<li><a href="https://twitter.com/thunder_god_cid/status/1372729480356233218">DC (via TG Cid)</a></li>
+<li>Houston (via Aaron Farnham)</li>
+</ul></li>
+<li>App Store Pricing Policing (via <a href="https://twitter.com/timcarrphoto/status/1370499571927945216">Tim</a>)</li>
+<li>Games and <a href="https://developer.apple.com/documentation/xcode/notarizing_macos_software_before_distribution">Notarization</a>
+
+<ul>
+<li><a href="https://www.caseyliss.com/2020/11/10/on-apples-pisspoor-documentation">On Apple&#8217;s Piss-Poor Documentation</a></li>
+</ul></li>
+<li>HomePod follow-up
+
+<ul>
+<li><a href="https://www.theverge.com/2020/12/14/22175243/google-home-max-discontinued-smart-speaker-support">Google Home Max was also discontinued</a></li>
+<li><a href="http://www.amazon.com/dp/B07G9Y3ZMC/?tag=marcoorg-20">Echo Studio</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Nexus_Q">Nexus Q</a></li>
+</ul></li>
+</ul></li>
+<li>Some <a href="https://atp.fm/join">Membership</a> Housekeeping
+
+<ul>
+<li>Refunds for a very small group of you! 💰</li>
+<li>ATP Membership can be paid in 💶 or 💷! 💸</li>
+<li>ATP&#8217;s mid-year 👕 (&amp; more!) are coming soon! 🤑</li>
+</ul></li>
+<li>Mac OS X 10.0 is 20 years old today!
+
+<ul>
+<li><a href="https://hypercritical.co/2015/04/15/os-x-reviewed#links">John&#8217;s reviews &amp; retrospectives</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Robots_exclusion_standard"><code>robots.txt</code></a></li>
+</ul></li>
+<li><a href="https://techcrunch.com/2021/03/16/google-play-drops-commissions-to-15-from-30-following-apples-move-last-year/?guccounter=1">Google Play Drops Commissions 30% → 15% for first $1M in revenue</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Tax_rate#Marginal">Marginal tax rate</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>When did photos become more than just files? (via Matt Fenselau)</li>
+<li>What&#8217;s up with Apple&#8217;s awful user experience with OS updates? (via Dan Young)
+
+<ul>
+<li><a href="https://eclecticlight.co/2021/02/28/last-week-on-my-mac-users-are-losing-out-against-big-surs-sealed-system/">Users are losing out against Big Sur&#8217;s sealed System</a></li>
+<li><a href="https://eclecticlight.co/2021/03/12/hyperinflation-comparing-update-sizes-from-mojave-to-big-sur/">Comparing Update Sizes from Mojave to Big Sur</a></li>
+</ul></li>
+<li>How would we wire our houses if we could do it all over again? (via <a href="https://twitter.com/mattyouens/status/1371659545517289473">Matt Youens</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Category_6_cable">Cat6</a></li>
+<li><a href="https://www.ui.com/">Ubiquiti</a>
+
+<ul>
+<li><a href="https://unifi-network.ui.com/dreammachine">Dream Machine</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Post-show <a href="https://neutral.fm/">Neutral</a>:
+
+<ul>
+<li>Casey&#8217;s <a href="https://carlinkit.net/">new dongle</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://get.flatfile.io/atp/?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=accidental-tech-podcast_q1-2021-portal-promotion-episode-10&amp;utm_content=podcast-03-25&amp;utm_term=external-link">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Our walls are full of pipes and wires, our wheels are covered in spray paint, our photos have left the filesystem behind, and our HomePods need to lose a few amps.</itunes:subtitle></item><item><guid isPermaLink="false">sgewdwhsdxvlrhzr</guid><pubDate>Wed, 17 Mar 2021 20:17:54 +0000</pubDate><title>422: Sell a Third Box</title><itunes:title>Sell a Third Box</itunes:title><itunes:episode>422</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp422.mp3" length="116796168" type="audio/mpeg"/><link>https://atp.fm/422</link><description><![CDATA[<ul>
+<li>Neutral:
+
+<ul>
+<li>The Wheel(s) of Shame™</li>
+<li><a href="https://www.proclipusa.com/product/iphone-holder-for-magsafe-charger?utm_source=accidentaltechpodcast&amp;utm_medium=podcast&amp;utm_campaign=2020">ProClip USA MagSafe holder</a></li>
+<li><a href="https://youtu.be/lSmSiOo-v8s">Tesla Model Y vs. Ford Mach-E</a></li>
+<li><a href="https://www.tesla.com/modely">Tesla Model Y</a></li>
+<li><a href="https://www.ford.com/suvs/mach-e/">Ford Mach-E</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://twitter.com/wongmjane/status/1371138841906532355">Clubhouse no longer requires contacts access</a></li>
+<li>Apple/ARM/TSMC
+
+<ul>
+<li><a href="https://debugger.medium.com/why-is-apples-m1-chip-so-fast-3262b158cba2">Long writeup</a> (via Marc Kagan)</li>
+<li>Fabricators</li>
+<li><a href="https://arstechnica.com/gadgets/2009/09/retrospect-and-prospect-ten-years-of-risc-vs-cisc/">RISC vs. CISC</a></li>
+</ul></li>
+<li>Family photo sharing clarifications
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT202786">Shared Albums</a></li>
+<li><a href="https://support.apple.com/en-us/HT202299">Shared Album Limits</a></li>
+<li><a href="https://1password.com/families/">1Password for Families</a></li>
+<li><a href="https://www.youtube.com/watch?v=avtK9Bz0sPg">Grosse Point Blank</a></li>
+</ul></li>
+<li>Moving your data around
+
+<ul>
+<li><a href="https://privacy.apple.com/"><code>privacy.apple.com</code></a> (via Ezekiel Elin)</li>
+<li><a href="https://datatransferproject.dev/">Data Transfer Project</a> (via Igor Makarov)
+
+<ul>
+<li><a href="https://github.com/google/data-transfer-project/tree/master/extensions/data-transfer">Adapters</a></li>
+<li><a href="https://www.theverge.com/2019/7/30/20746868/apple-data-transfer-project-google-microsoft-twitter">Verge write-up</a></li>
+</ul></li>
+<li><a href="https://github.com/jay0lee/got-your-back/wiki">Got Your Back</a> (via Hung Nguyen)
+
+<ul>
+<li><a href="https://github.com/jay0lee/GAM">GAM</a></li>
+<li><a href="https://thehorcrux.com/">The Horcrux</a></li>
+</ul></li>
+</ul></li>
+<li>Why the iMac Pro was discontinued (via <a href="https://twitter.com/chucker/status/1370124835565797384">Sören</a>)
+
+<ul>
+<li><a href="https://wccftech.com/intel-discontinues-skylake-x-9th-gen-hedt-and-skylake-xeon-w-workstation-cpus/">Skylake-X and Skylake Xeon-W Discontinued</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://techcrunch.com/2021/03/12/apple-discontinues-original-homepod-will-focus-on-mini/">RIP HomePod</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/IPod_Hi-Fi">iPod Hi-Fi</a></li>
+<li><a href="https://www.anylist.com/">AnyList</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Why aren&#8217;t there more background notifications from apps <em>that aren&#8217;t running</em>? (via Nathanael Mol)</li>
+<li>Why does Overcast do processing server-side? (via Michael Hellwig)</li>
+<li>How much of iOS is still macOS? (via <a href="https://twitter.com/sskul353/status/1366441391010639874">Surabh Kulkarni</a>)</li>
+</ul></li>
+<li>Post-show: <a href="https://9to5mac.com/2021/02/24/redesigned-imac-colors/">iMac Color Rumor</a>
+
+<ul>
+<li><a href="https://www.relay.fm/20macs">20 Macs for 2020</a></li>
+<li><a href="https://512pixels.net/2016/05/all-13-colors/">13 Colors of iMac</a></li>
+<li><a href="https://images.techhive.com/images/article/2015/04/apple-studio-display-21-inch-01-100580360-orig.jpg">Blue Whale Montior</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://get.flatfile.io/atp/?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=accidental-tech-podcast_q1-2021-portal-promotion-episode-9&amp;utm_content=podcast-03-18&amp;utm_term=external-link">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>MagSafe in the car, more on family sharing, hope for colorful Macs, and a fond farewell to the HomePod.</itunes:subtitle></item><item><guid isPermaLink="false">luh1yxdntffpne13</guid><pubDate>Thu, 11 Mar 2021 20:15:06 +0000</pubDate><title>421: The First Miniboss</title><itunes:title>The First Miniboss</itunes:title><itunes:episode>421</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp421.mp3" length="119439867" type="audio/mpeg"/><link>https://atp.fm/421</link><description><![CDATA[<ul>
+<li>Pre-show: Marco is happy, though he shouldn&#8217;t be. ☯️</li>
+<li>The <a href="https://www.apple.com/imac-pro/">iMac Pro</a> is <a href="https://512pixels.net/2021/03/imac-pro-for-sale-while-supplies-last/">retired</a>
+
+<ul>
+<li><a href="https://daringfireball.net/linked/2021/03/06/imac-pro-discontinued">Gruber&#8217;s post</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>One reason to choose Audi</li>
+<li><a href="https://www.youtube.com/watch?v=TjVOWOKa-lY&amp;feature=youtu.be">Kiss Guy</a> is real!
+
+<ul>
+<li><a href="https://www.loudersound.com/features/i-am-the-kiss-guy-that-played-monkey-wrench-with-foo-fighters">Interview</a></li>
+</ul></li>
+<li><a href="https://twitter.com/BenPackard/status/1367944734430404620">Swift &#8220;header&#8221; views</a> (via Ben Packard)
+
+<ul>
+<li><code>⌃⌘↑</code> and <code>⌃⌘↓</code> or <code>Navigate</code> → <code>Jump to Next/Previous Counterpart</code></li>
+</ul></li>
+<li>Logging into <a href="https://vaccinate.virginia.gov"><code>vaccinate.virginia.gov</code></a></li>
+</ul></li>
+<li>Families: how do they work?
+
+<ul>
+<li><a href="http://5by5.tv/hypercritical/9">No iLife is an Island</a></li>
+</ul></li>
+<li><a href="https://support.apple.com/en-us/HT208514">Apple Launches Service for Transferring iCloud Photos and Videos to Google Photos</a>
+
+<ul>
+<li><a href="https://takeout.google.com/">Google Takeout</a></li>
+<li><a href="https://twitter.com/settings/download_your_data">Twitter Archive</a></li>
+<li><a href="https://atp.fm/155">ATP #155: Edit, Crop, Aspect, Original</a> for discussion of John&#8217;s workflow</li>
+</ul></li>
+<li><a href="https://9to5mac.com/2021/02/19/apple-cracks-down-on-apps-with-irrationally-high-prices-as-app-store-scams-are-exposed/">Apple cracks down on apps with &#8220;irrationally high prices&#8221;</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Whose fault is it that Apple Silicon is 🔥? (via Nick)
+
+<ul>
+<li><a href="https://dougallj.github.io/applecpu/firestorm.html">M1 architecture research</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wintel">Wintel</a></li>
+</ul></li>
+<li>What would Apple need to do to make macOS gaming competitive? (via Matt Chapman Jones)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/DirectX">DirectX</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cell_(microprocessor)">Cell</a></li>
+</ul></li>
+<li>Do we use battery backups for our desktops? What about other ancillary equipment? (via Ramanujan Srinath)
+
+<ul>
+<li><a href="https://amzn.to/3l4sOGC">What John and Marco use</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://get.flatfile.io/atp/?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=accidental-tech-podcast_q1-2021-portal-promotion-episode-8&amp;utm_content=podcast-03-11&amp;utm_term=external-link">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>A farewell to the iMac Pro (and a tire), the state of iCloud family awareness, scam pricing in the App Store, and the Halloween costume that may never be.</itunes:subtitle></item><item><guid isPermaLink="false">mzlpcuxhswrzr2vu</guid><pubDate>Thu, 04 Mar 2021 18:53:13 +0000</pubDate><title>420: I Have No Urge to Speak</title><itunes:title>I Have No Urge to Speak</itunes:title><itunes:episode>420</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:15:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp420.mp3" length="129882515" type="audio/mpeg"/><link>https://atp.fm/420</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>VPNs and Supervised devices</li>
+<li>Nickname preferences (via <a href="https://twitter.com/macintacos/status/1365344043090214916">Julian Torres</a>)</li>
+<li><a href="https://skydio.com/">Skydio</a>&#8217;s absolutely bananas <a href="https://www.youtube.com/watch?v=ncZmnfIRIWE">talk</a> on autonomous drone obstacle avoidance</li>
+<li><a href="https://daringfireball.net/thetalkshow/2021/02/27/ep-309">The Talk Show #309: Pinkies on the Semicolon</a></li>
+<li>More on Clubhouse
+
+<ul>
+<li>Chat room</li>
+<li>Gui Rambo&#8217;s <a href="https://twitter.com/_inside/status/1365292197344641029">investigations 🧵</a></li>
+<li>&#8220;Ephemeral&#8221; Clubhouse
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=5YRn41OnfPE&amp;feature=youtu.be">Steve Jobs Stories</a></li>
+<li><a href="https://www.inc.com/jason-aten/clubhouse-is-recording-your-conversations-thats-not-even-its-worst-privacy-problem.html">Clubhouse is recording you</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>John &#8220;tried&#8221; Twitter Spaces
+
+<ul>
+<li><a href="https://www.theverge.com/2021/2/25/22301375/twitter-super-follows-communities-paid-followers">Super Follows</a></li>
+<li>Twitter &#8220;Communities&#8221;</li>
+</ul></li>
+<li><a href="https://twitter.com/OvercastFM/status/1365313143816265730">Overcast 2021.1</a>
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/watchconnectivity">Watch Connectivity</a></li>
+<li><a href="https://developer.apple.com/documentation/watchkit">WatchKit</a></li>
+<li><a href="https://developer.apple.com/documentation/uikit/uiapplicationdelegate"><code>UIApplicationDelegate</code></a> &amp; <a href="https://developer.apple.com/documentation/uikit/uiscenedelegate/"><code>UISceneDelegate</code></a></li>
+<li><a href="https://developer.apple.com/documentation/audiotoolbox/deprecated_symbols/audio_unit_processing_graph_services?language=occ"><code>AUGraph</code></a> &amp; <a href="https://developer.apple.com/documentation/avfaudio/avaudioengine"><code>AVAudioEngine</code></a></li>
+<li><a href="https://developer.apple.com/documentation/avfoundation/avassetexportsession"><code>AVAssetExportSession</code></a></li>
+</ul></li>
+<li>How&#8217;s Swift going for us?
+
+<ul>
+<li><a href="https://www.caseyliss.com/2016/2/27/swift-enums">Swift <code>enum</code>s</a></li>
+<li><a href="http://goshdarnblocksyntax.com">🤬 Block Syntax</a></li>
+<li><a href="https://perldoc.perl.org/B">B</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Do we use non-ISP-provided DNS? (via Alex Guthman)
+
+<ul>
+<li><a href="https://pi-hole.net/">Pi-hole</a></li>
+</ul></li>
+<li>What&#8217;s our 🤬 problem with <a href="https://www.electronjs.org/">Electron</a>, anyway? (via Nathan Roberts)</li>
+<li>Would we enjoy an Uber clone powered by Apple autonomous EVs? (via Matt Steiner)</li>
+</ul></li>
+<li>Post-show: Why would one buy an <a href="https://www.audi.com/">Audi</a>?
+
+<ul>
+<li><a href="https://www.audiusa.com/us/web/en/models/a6/rs6-avant/2021/overview.html">Audi RS6</a></li>
+<li><a href="https://www.youtube.com/watch?v=K5CW-ev_Cao">Lexus vs. Mercedes</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://get.flatfile.io/atp/?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=accidental-tech-podcast_q1-2021-portal-promotion-episode-7&amp;utm_content=podcast-03-04&amp;utm_term=external-link​">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="http://awaytravel.com/accidentaltech">Away</a>: Start your 100-day trial and shop Away’s entire lineup of travel essentials, including their best-selling suitcases.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Clubhouse, Twitter Spaces, Overcast's latest update, how Swift is going, whether Electron apps are really that bad, and Apple's rumored car thing.</itunes:subtitle></item><item><guid isPermaLink="false">yww3mlbna3lvedhv</guid><pubDate>Thu, 25 Feb 2021 20:30:06 +0000</pubDate><title>419: This Week’s Gasp</title><itunes:title>This Week’s Gasp</itunes:title><itunes:episode>419</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:14:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp419.mp3" length="129563762" type="audio/mpeg"/><link>https://atp.fm/419</link><description><![CDATA[<ul>
+<li>Pre-show diversions:
+
+<ul>
+<li>Posting <a href="https://atp.fm/join">the bootleg</a></li>
+<li>Casey&#8217;s [hopefully useLiss] worries</li>
+<li>Marco&#8217;s ball situation
+
+<ul>
+<li><a href="https://www.sonos.com/en-us/shop/move.html">Sonos Move</a></li>
+</ul></li>
+<li>Casey&#8217;s Compulsory Icebreaker
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=R7yfISlGLNU">Requisite link</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://twitter.com/DeadLazlo/status/1362957129817055232">Jef e&#8217;s doubts about SMART tools</a></li>
+<li>Contacts API updates
+
+<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2020/10676/">Better Trust Through Better Privacy</a></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2020/10115/">Autofill Everywhere</a></li>
+</ul></li>
+<li><a href="https://www.androidauthority.com/google-pixel-4-astrophotography-tips-tricks-1065879/">Google&#8217;s astrophotography mode</a></li>
+<li>Magnets and MagSafe (via Ante Söderholm)</li>
+<li>More on Supervised iPhones (via Marc Wickens)
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT202837">Support document</a></li>
+</ul></li>
+<li>More on <a href="https://www.joinclubhouse.com/">Clubhouse</a>
+
+<ul>
+<li><a href="https://www.relay.fm/upgrade/340">Upgrade #340: Secret Sauce</a></li>
+<li><a href="https://www.hackingwithswift.com/">Hacking with Swift</a></li>
+<li><a href="https://www.youtube.com/watch?v=5YRn41OnfPE&amp;feature=youtu.be">Steve Jobs Stories</a></li>
+<li><a href="https://www.burnerapp.com/">Burner</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://support.apple.com/guide/security/memory-safe-iboot-implementation-sec30d8d9ec1/web">Memory safe iBoot implementation</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Rust_(programming_language)">Rust</a></li>
+</ul></li>
+<li>MacBook Pro models <a href="https://www.macrumors.com/2021/02/22/2021-macbook-pro-sd-hdmi-port-kuo/">with HDMI and SD card readers</a>?
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MUF82AM/A/usb-c-digital-av-multiport-adapter">Apple USB-C Digital AV Multiport Adapter</a></li>
+<li><a href="https://en.wikipedia.org/wiki/XJACK">XJACK</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Is it safe to use a High Sierra machine after security updates cease? (via John Hovland)</li>
+<li>How do we store our parents&#8217; names in our phone&#8217;s contacts? (via <a href="https://twitter.com/ContentScotland/status/1349393137526046720">Colin Meney</a>)</li>
+<li>How do I clean up my Dock? (via Harjas Monga)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Desk_accessory#Apple_Macintosh">Desk accessories</a></li>
+<li><a href="https://arstechnica.com/gadgets/2011/07/mac-os-x-10-7/8/#sudden-termination">Sudden Termination</a></li>
+<li><a href="https://arstechnica.com/gadgets/2011/07/mac-os-x-10-7/8/#automatic-termination">Automatic Termination</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Some more kvetching about app-quitting strategies</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://buzzsprout.com/promo">Buzzsprout</a>: Podcast hosting and a whole lot more. Get 3 months free.</li>
+<li><a href="https://fastmail.com/atp">Fastmail</a>: The very best in email. Try Fastmail free for 30 days and get 10% off your first year.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>John tried Clubhouse.</itunes:subtitle></item><item><guid isPermaLink="false">ufbwq3pftwzjczfh</guid><pubDate>Thu, 18 Feb 2021 18:07:06 +0000</pubDate><title>418: Dangerously Close to Being on a Phone Call</title><itunes:title>Dangerously Close to Being on a Phone Call</itunes:title><itunes:episode>418</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:21:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp418.mp3" length="135860628" type="audio/mpeg"/><link>https://atp.fm/418</link><description><![CDATA[<ul>
+<li>Pre-show: Join us in our <a href="https://www.joinclubhouse.com/">Clubhouse</a>! (<em>That&#8217;s a joke; not happening. &mdash;Ed.</em>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Chatroulette">Chatroulette</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Party_line_(telephony)">Party line</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Newton%27s_cradle">Newton&#8217;s cradle</a></li>
+<li>Should Apple remove the <a href="https://developer.apple.com/documentation/contacts">Contacts framework</a>?</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Living outside the east coast&#8230; or America.
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=rNu8XDBSn10">The UK explained</a></li>
+</ul></li>
+<li>The Concert for Charlottesville <a href="https://www.caseyliss.com/2021/2/14/a-concert-for-charlottesville">was posted</a></li>
+<li>Should timers sync? (via Richard Harris)</li>
+<li>What can <a href="https://support.apple.com/guide/mdm/welcome/web">Mobile Device Management</a> <em>really</em> do? (via Chris Harper)
+
+<ul>
+<li><a href="https://support.apple.com/guide/mdm/mdm-overview-mdmbf9e668/web">Support article</a></li>
+<li><a href="https://www.apple.com/business/docs/resources/Managing_Devices_and_Corporate_Data_on_iOS.pdf">Helpful PDF</a></li>
+</ul></li>
+<li>An alternate way to think about RAM vs. SSD-wear tradeoffs (via Jonathan Dietz)
+
+<ul>
+<li><a href="https://twitter.com/david_rysk/status/1361155414994407424">Example M1&#160;<code>smartctl</code> results</a>
+
+<ul>
+<li><a href="https://www.man7.org/linux/man-pages/man1/dd.1.html"><code>dd</code></a></li>
+<li><a href="https://ss64.com/osx/fs_usage.html"><code>fs_usage</code></a></li>
+</ul></li>
+</ul></li>
+<li>Ada and <a href="https://en.wikipedia.org/wiki/MISRA_C">MISRA C</a> for car-computer safety</li>
+<li>T568A vs. T568B myths revisited (via Jon B.)
+
+<ul>
+<li><a href="https://networkengineering.stackexchange.com/questions/16245/do-physical-wire-properties-impact-the-choice-between-t568a-t568b">Stack overflow theories</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2021/02/15/iphone-13-always-on-display-stronger-magesafe/">iPhone 13 rumors</a>
+
+<ul>
+<li><a href="https://answers.microsoft.com/en-us/windows/forum/windows_10-start-win_menu/live-tiles-what-are-they/71084023-f50b-4531-973d-3ba03d2c0d44">Live Tiles</a></li>
+<li><a href="https://www.amazon.com/dp/B01MRKXGVS/?tag=marcoorg-20">Marco&#8217;s microsuction mounting tape</a></li>
+</ul></li>
+<li>Post-show: Casey&#8217;s <a href="https://www.dji.com/mini-2">new toy</a>
+
+<ul>
+<li><a href="https://www.instagram.com/p/BpS8nXFFgxf/?igshid=ioblkxbqxwbj">Several-year-old Mavic footage</a></li>
+<li><a href="https://www.dji.com/mavic-2">Marco&#8217;s old toy</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://flatfile.io/?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=accidental-tech-podcast_q1-2021-concierge-ga-promotion-episode-6&amp;utm_content=podcast-02-18&amp;utm_term=external-link">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Clubhouse, the Contacts API, iPhone 13 rumors, and somebody's new drone.</itunes:subtitle></item><item><guid isPermaLink="false">cmdsv3vkqxpkbg91</guid><pubDate>Thu, 11 Feb 2021 16:09:34 +0000</pubDate><title>417: Sand and Water Interface</title><itunes:title>Sand and Water Interface</itunes:title><itunes:episode>417</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:23:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp417.mp3" length="138823119" type="audio/mpeg"/><link>https://atp.fm/417</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://sixcolors.com/link/2021/02/stalwart-call-recording-tool-succumbs-to-apple-silicon/">RIP, Call Recorder</a></li>
+<li>On re-installing or transferring macOS
+
+<ul>
+<li><a href="https://www.soma-zone.com/LaunchControl/">Launch Control</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Launchd"><code>launchd</code></a></li>
+<li><a href="https://www.pixelmator.com/pro/">Pixelmator Pro</a></li>
+</ul></li>
+<li>If we had to leave the eastern seaboard, where would we move?</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>DTKs are <a href="https://www.macrumors.com/2021/02/05/apple-dtk-credit-for-developers-increased/">worth more now</a>!</li>
+<li>iOS 14.5 Watch unlock</li>
+<li>Trying to <code>ls ~/.Trash</code> (via <a href="https://twitter.com/mpv/status/1358157228000366596">Mike Vosseller</a>)</li>
+<li>SSD traffic
+
+<ul>
+<li><a href="https://twitter.com/never_released/status/1358539964460511233">Two month old SSD</a></li>
+<li><a href="https://www.smartmontools.org/"><code>smartmontools</code></a></li>
+<li><code>smartctl --all /dev/disk0</code></li>
+<li>Casey&#8217;s computations
+
+<ul>
+<li><a href="https://www.wolframalpha.com/input/?i=54+terabytes+%2F+1295+hours+in+gigabytes+per+day">Casey&#8217;s data</a></li>
+<li><a href="https://www.wolframalpha.com/input/?i=246+terabytes+%2F+6969+hours+in+gigabytes+per+day">John&#8217;s data</a></li>
+</ul></li>
+</ul></li>
+<li>Marco accidentally invents <a href="https://www.docker.com/">Docker</a>
+
+<ul>
+<li><a href="https://docs.docker.com/docker-for-mac/apple-m1/">Docker on M1 Macs</a></li>
+<li><a href="https://blogs.vmware.com/euc/2020/12/apple-m1-chip-how-vmware-makes-it-work-for-the-enterprise.html">VMWare Fusion on M1 Macs</a></li>
+</ul></li>
+<li><a href="https://www.reuters.com/article/us-tesla-recall-idUSKBN2A21FC">Tesla recall 135,000 vehicles for touchscreen failures</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Boeing_737_MAX#Grounding_and_recertification">737 MAX</a></li>
+<li><a href="https://atp.fm/165">ATP #165: Time Was…</a> (<a href="https://overcast.fm/+R7DX7x0Q4/8:52">Overcast timestamp link</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Ada_(programming_language)">Ada Programming Language</a></li>
+</ul></li>
+<li>Mid-reboot turn signals in the Model 3 (via <a href="https://twitter.com/michaelswindler/status/1357667991413010434">Michael Swindler</a>)</li>
+</ul></li>
+<li><a href="https://www.theverge.com/2021/2/8/22272460/apple-ios-14-5-default-music-streaming-service-siri-spotify">iOS 14.5 beta lets you specify Spotify/others as Siri&#8217;s default music service</a>
+
+<ul>
+<li><a href="https://developer.apple.com/documentation/sirikit/inplaymediaintent"><code>INPlayMediaIntent</code></a></li>
+<li><a href="https://developer.apple.com/documentation/sirikit/inmediaitemtype"><code>INMediaItemType</code></a></li>
+</ul></li>
+<li>Marco rants about timers on the Apple Watch</li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-02-08/apple-s-riccio-shifts-from-hardware-chief-to-ar-vr-headsets">Dan Riccio&#8217;s new project</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/MicroLED">microLED</a></li>
+<li><a href="https://www.youtube.com/watch?v=811z3ktTh-U">Intel&#8217;s USB commercial</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Do we let our personal lives bleed onto corporate devices? (via Jordan Cosentino)</li>
+<li>What are our favorite or most obscure media files? (via Doc Davis)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/A_Concert_for_Charlottesville">A Concert for Charlottesville</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Vertical_Horizon">Vertical Horizon</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Crash_Test_Dummies">Crash Test Dummies</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Family_Force_5%27s_Christmas_Pageant">Family Force 5&#8217;s Christmas Pageant</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Achtung_Baby">Achtung Baby</a></li>
+</ul></li>
+<li>Is it rude to put another app&#8217;s name in your own app&#8217;s search keywords?
+
+<ul>
+<li><a href="https://www.relay.fm/radar/210">Under the Radar #210: Thinking Like a Business</a></li>
+<li><a href="http://hypercritical.co/switchglass/">SwitchGlass</a></li>
+<li><a href="http://hypercritical.co/front-and-center/">Front and Center</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Pupdate
+
+<ul>
+<li><a href="https://www.youtube.com/user/kikopup">Kikopup</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://flatfile.io/?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=accidental-tech-podcast_q1-2021-concierge-ga-promotion-episode-5&amp;utm_content=podcast-02-11&amp;utm_term=episode-5">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Beaches, California, resolved Apple drama, SSD wear, Docker, Tesla, Siri's music-service setting, timers on the Apple Watch, the AR rumor, corporate device management, prized personal media files, app-keyword spam, and puppy training. (Is that all?)</itunes:subtitle></item><item><guid isPermaLink="false">wnb2rgndudzpyk1f</guid><pubDate>Thu, 04 Feb 2021 16:24:14 +0000</pubDate><title>416: I Will Take Away Those Kudos</title><itunes:title>I Will Take Away Those Kudos</itunes:title><itunes:episode>416</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp416.mp3" length="122587196" type="audio/mpeg"/><link>https://atp.fm/416</link><description><![CDATA[<ul>
+<li>Pre-show: Strong corporate affinities
+
+<ul>
+<li><a href="https://neutral.fm/12">Neutral #12: Vomit Ruins Everything</a> &mdash; Marco &amp; Casey&#8217;s BMW European Delivery experience</li>
+<li><a href="https://neutral.fm/special-please-lose-control-of-your-car-now">Neutral Special: Please Lose Control of Your Car Now</a> &mdash; Marco, Casey, and <a href="https://david-smith.org">Underscore</a>&#8217;s BMW Driving School experience</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Tesla
+
+<ul>
+<li><a href="https://twitter.com/bigsurcraig/status/1354791253792104450">Model S/X round steering wheel</a></li>
+<li><a href="https://twitter.com/gurnam/status/1355007575687880708">Touch controlls are force-touch?</a></li>
+<li><a href="https://twitter.com/elonmusk/status/1354680585139187713">Elon says &#8220;no more stalks&#8221;</a></li>
+<li><a href="https://www.nhtsa.gov/">NHTSA</a></li>
+</ul></li>
+<li>Limiting Siri&#8217;s Messages Announcements</li>
+<li>Telling Siri to 🤫</li>
+<li>Developer Transition Kit returns</li>
+<li><a href="https://9to5mac.com/2021/02/01/unlock-iphone-face-id-mask-apple-watch/">iOS 14.5 Beta adds support for unlocking iPhone with Apple Watch while wearing a face mask</a>
+
+<ul>
+<li><a href="https://daringfireball.net/linked/2021/02/01/ios-14-5-face-masks">Gruber&#8217;s take</a></li>
+</ul></li>
+<li>Apple replies to one of John&#8217;s old Radars
+
+<ul>
+<li><a href="https://developer.apple.com/library/archive/technotes/tn/tn1150.html">TN1150</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.dpreview.com/articles/3386319853/sony-a1-what-you-need-to-know-about-this-powerful-full-frame-flagship">Sony ɑ1</a>
+
+<ul>
+<li><a href="https://www.usa.canon.com/internet/portal/us/home/products/details/cameras/eos-dslr-and-mirrorless-cameras/dslr/eos-1d-x">Canon EOS-1D X</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Do we use <a href="https://cleanmymac.com/">CleanMyMac X</a>/<a href="https://titanium-software.fr/en/onyx.html">OnyX</a>/etc? (via Donald Rabideau)
+
+<ul>
+<li><a href="https://daisydiskapp.com/">DaisyDisk</a></li>
+<li><a href="http://www.spacegremlinapp.com/">Space Gremlin</a></li>
+<li><a href="https://apps.apple.com/us/app/grandperspective/id1111570163?mt=12">Grand Perspective</a></li>
+</ul></li>
+<li>Does a small amount of RAM limit SSD lifespan? (via Dan Blondell)</li>
+<li>How do simultaneous writes to a SSD work? (via Jan Philipp)</li>
+<li>Would Apple ever offer iCloud Backup for macOS? (via Aidan Trager)
+
+<ul>
+<li><a href="https://www.backblaze.com/landing/podcast-atp.html">Backblaze</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Marco is snowed in
+
+<ul>
+<li><a href="https://fireisland.com/towns/point-o-woods-fire-island/">Point O&#8217; Woods</a></li>
+<li><a href="https://fireisland.com/towns/lonelyville-fire-island/">Lonelyville</a></li>
+<li><a href="https://rizebikes.com/products/blade">Rize Blade</a></li>
+<li><a href="https://sondors.com/">Sondors</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://flatfile.io">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://awaytravel.com/accidentaltech">Away</a>: Start your 100-day trial and shop Away’s entire lineup of travel essentials, including their best-selling suitcases.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Tech nostalgia, Apple developer drama, a special bug report, pro cameras, Tesla, Siri, filesystems, backups, and e-bikes: a typical ATP episode.</itunes:subtitle></item><item><guid isPermaLink="false">x3blvg9tvfu2x2rw</guid><pubDate>Thu, 28 Jan 2021 15:47:06 +0000</pubDate><title>415: Sent Without Pants</title><itunes:title>Sent Without Pants</itunes:title><itunes:episode>415</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:27:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp415.mp3" length="142162248" type="audio/mpeg"/><link>https://atp.fm/415</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Marco&#8217;s new computer <em>(This is not a joke. —Ed)</em></li>
+<li><code>T568A</code> vs. <code>T568B</code> myths busted</li>
+<li>Reminiscing about the PowerBook G4&#8217;s ethernet port (via <a href="https://twitter.com/tpouarz/status/1352989309951991808">Travis Pouarz</a>)</li>
+<li>The 30&#8221; Apple Cinema Display and print design (via Ted Barnes)</li>
+<li>Audio accommodations (via Christpher Klein)
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/mimi-hearing-test/id932496645">Mimi</a> (App Store link)</li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2021/01/dan-riccio-begins-a-new-chapter-at-apple/">Dan Riccio goes into a bunker</a>
+
+<ul>
+<li><a href="http://www.amazon.com/dp/1250194466/?tag=siracusa-20"><em>Creative Selection</em></a></li>
+</ul></li>
+<li>More Mac laptop rumors
+
+<ul>
+<li><a href="https://www.bloomberg.com/news/articles/2021-01-22/apple-aapl-plans-new-macbook-air-with-magsafe-macbook-pro-with-sd-card-slot">Bloomberg</a></li>
+<li><a href="https://www.patentlyapple.com/patently-apple/2021/01/apple-wins-a-patent-for-future-devices-like-a-macbook-using-titanium-with-a-low-gloss-matte-finish.html">Patently Apple</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How much do macOS and iOS cost? (via Brenden Becherer)</li>
+<li>Do we care about the <code>Sent with Siri</code> footnotes in Messages? (via Rohit Sharma)</li>
+</ul></li>
+<li>Post-show: <a href="https://www.theverge.com/2021/1/27/22252832/tesla-model-s-redesign-plaid-mile-range-interior-refresh">What is Tesla doing‽</a>
+
+<ul>
+<li><a href="https://www.caricos.com/cars/h/honda/2014_honda_accord_phev/images/82.html">John&#8217;s door handle</a></li>
+<li><a href="https://cdn.vox-cdn.com/thumbor/Ad1OpZ6a0_8M801Z_6MjLztAUCs=/0x0:3520x1816/1820x1213/filters:focal(1479x627:2041x1189):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/68730355/Screen_Shot_2021_01_27_at_3.26.14_PM.0.png">New Tesla Front</a></li>
+<li><a href="https://cdn.vox-cdn.com/thumbor/liUzTXcQiZJl--0fqBbMWddD6Yk=/1600x0/filters:no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22264608/Screen_Shot_2021_01_27_at_6.50.29_PM.png">New Tesla Rear</a></li>
+<li><a href="https://en.wikipedia.org/wiki/KITT#Knight_Industries_Two_Thousand_(KITT)">Knight Industries Two Thousand</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/KITT#/media/File:KITT_Interior_at_Toronto_Auto_Show_2011.jpg">&#8220;Steering Wheel&#8221;</a></li>
+</ul></li>
+<li><a href="https://www.roadandtrack.com/motorsports/a26827434/2019-mercedes-f1-steering-wheel-explained/">F1 Steering Wheels</a></li>
+<li><a href="https://cdn.vox-cdn.com/thumbor/OYbwSeB23i7ICKEsyr54w5UA9iA=/1600x0/filters:no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22264129/S_Yoke_Steering.jpg">Tesla Steering Yoke Close-Up</a>
+
+<ul>
+<li><a href="https://i.redd.it/4odftfec7yd61.png">&#8230;with icons illuminated</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://get.flatfile.io/atp">Flatfile</a>: The elegant import button for web apps.</li>
+<li><a href="https://HelloFresh.com/atp10">Hello Fresh</a>: America’s #1 meal kit. Use code <strong>atp10</strong> for 10 free meals.</li>
+<li><a href="https://lickability.com/atp">Lickability</a>: Developing delightful apps.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>By the way, did you know you can respond? Learn more…</itunes:subtitle></item><item><guid isPermaLink="false">umdwcg9wlutiany4</guid><pubDate>Thu, 21 Jan 2021 15:27:56 +0000</pubDate><title>414: Promoted Onto the Roof</title><itunes:title>Promoted Onto the Roof</itunes:title><itunes:episode>414</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp414.mp3" length="125717639" type="audio/mpeg"/><link>https://atp.fm/414</link><description><![CDATA[<ul>
+<li>Pre-show: John&#8217;s pecking order</li>
+<li>Follow-up:
+
+<ul>
+<li>Curved screens to solve off-axis viewing (via Nathaniel Cohen)</li>
+<li><a href="https://www.ifixit.com/Teardown/AirPods+Max+Teardown/139369#s278310">AirPods Max headband removal</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=4vb98s41__Y">Quinn&#8217;s video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Blind_men_and_an_elephant">Blind men and an elephant</a></li>
+<li><a href="https://www.sfbags.com/products/airpods-max-shield-case">Waterfield Designs AirPods Max Case</a></li>
+</ul></li>
+<li><a href="https://kidi.ng/wanna-see-a-whiter-white/">Brighter whites</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/OxiClean">OxiClean</a></li>
+<li><code>/System/Applications/Utilities/Digital Color Meter</code></li>
+</ul></li>
+<li>Wiring Gigabit Ethernet
+
+<ul>
+<li><a href="https://www.doitforme.solutions/blog/ethernet-wiring-t568a-versus-t568b/">T-568A vs. T-568B</a></li>
+<li><a href="https://www.diffen.com/difference/RJ11_vs_RJ45">RJ11 vs. RJ45</a></li>
+<li><a href="https://en.wikipedia.org/wiki/PhoneNet">PhoneNet</a></li>
+</ul></li>
+<li>Feedbacks, Casey&#8217;s Bug, and <a href="https://twitter.com/chrislhayes/status/1351363768605880321">Chris Hayes&#8217; tweet</a>
+
+<ul>
+<li>Attaching a <code>sysdiagnose</code> on iOS
+
+<ul>
+<li><a href="applefeedback://"><code>applefeedback://</code></a></li>
+<li>Open the feedback → <code>…</code> → <code>Add More Information</code> → <code>Add Attachment</code> → <code>Device Diagnosis</code></li>
+</ul></li>
+<li>FB8893003</li>
+<li>FB8952395</li>
+</ul></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2021/01/14/kuo-details-2021-macbook-pro-new-design-with-squared-off-sides-magsafe-connector-and-io-return-touch-bar-removed/">Ming-Chi Kuo</a> and <a href="https://www.bloomberg.com/news/articles/2021-01-15/apple-macbook-pros-with-magsafe-return-in-the-works">Bloomberg</a> laptop rumors
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=FdS3tjEIqUA">Jonathan Mann&#8217;s &#8220;I&#8217;m Pressing The Spacebar&#8221; song</a></li>
+<li><a href="https://sixcolors.com/post/2020/08/20-macs-for-2020-20-power-mac-g5/">20 Macs for 2020: Power Mac G5</a></li>
+</ul></li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-01-15/apple-plans-redesigned-imac-new-mac-pro-smaller-mac-pro-cheaper-monitor">Desktop Mac rumors</a>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2020/11/20-macs-for-2020-8-power-mac-g4-cube/">20 Macs for 2020: Power Mac G4 Cube</a></li>
+</ul></li>
+<li>Post-show: Casey has feelings about purchases</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>How much could we possibly say about the rumored 2021 Mac changes?</itunes:subtitle></item><item><guid isPermaLink="false">t1vmrelqmk0yrzzf</guid><pubDate>Thu, 14 Jan 2021 16:55:15 +0000</pubDate><title>413: Suddenly I'm the Marco</title><itunes:title>Suddenly I'm the Marco</itunes:title><itunes:episode>413</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:48</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp413.mp3" length="127334153" type="audio/mpeg"/><link>https://atp.fm/413</link><description><![CDATA[<ul>
+<li>Follow-up: Casey makes John reminisce about Atlanta[&#8217;s food]
+
+<ul>
+<li><a href="https://www.wafflehouse.com/">Waffle House</a></li>
+<li><a href="https://www.tacobell.com/">Taco Bell</a></li>
+<li><a href="https://cocoalove.org/">CocoaLove</a></li>
+<li><a href="https://www.steaknshake.com/">Steak &#8216;n Shake</a></li>
+<li><a href="https://www.dennys.com/">Denny&#8217;s</a></li>
+<li><a href="https://www.perkinsrestaurants.com/">Perkins</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="http://steveallen.com/author/book_pages/Breadbox.htm">&#8220;Is it bigger than a breadbox?&#8221;</a></li>
+<li>The Feedback app will automatically run a <code>sysdiagnose</code>
+
+<ul>
+<li>John&#8217;s bug (as <a href="https://twitter.com/siracusa/status/1349373720507379713">mentioned on Twitter</a>): FB8711530</li>
+</ul></li>
+<li>Casey&#8217;s bugs are still broken, even though Apple tried to 🤬 close them
+
+<ul>
+<li>FB8893003</li>
+<li>FB8952395</li>
+</ul></li>
+<li>The <em>shocking</em> conclusion to Marco&#8217;s Thunderbolt ethernet situation
+
+<ul>
+<li><a href="https://www.owcdigital.com/products/thunderbolt-dock">OWC Thunderbolt Dock</a></li>
+<li><a href="https://www.amazon.com/dp/B07CZPV8DF/?tag=marcoorg-20">CalDigit TS3 Plus</a></li>
+<li><a href="https://www.amazon.com/dp/B0000BVYT3/?tag=marcoorg-20">Netgear GS105</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2021/01/apple-launches-major-new-racial-equity-and-justice-initiative-projects-to-challenge-systemic-racism-advance-racial-equity-nationwide/">Apple&#8217;s Racial Equity and Justice Initiative</a> projects launched</li>
+<li>Marco&#8217;s <a href="https://www.apple.com/pro-display-xdr/">Pro Display XDR</a> review
+
+<ul>
+<li><a href="https://overcast.fm/+R7DU4qD6U/1:06:22">John&#8217;s review</a> (Overcast link) from <a href="https://atp.fm/360">Episode 360</a></li>
+<li><a href="https://aerialscreensaver.github.io/">Aerial Screensaver</a></li>
+<li><a href="https://www.samsung.com/us/televisions-home-theater/tvs/the-frame/highlights/">Samsung Frame TV</a></li>
+</ul></li>
+<li>John&#8217;s AirPod Anxiety
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=MLdt8qOIpfo">Ted Lasso Roundtable</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How is it going from shared-iTunes, separate-iCloud accounts to Family Sharing? (via Peter Yang)
+
+<ul>
+<li><a href="https://www.relay.fm/mpu/522">Mac Power Users #522: iCloud Family Sharing</a></li>
+</ul></li>
+<li>What are we using for computer speakers? (via Genaro Diaz)
+
+<ul>
+<li><a href="https://www.paradigm.com/en/passive/monitor-se-atom">Paradigm Atom</a></li>
+<li><a href="https://www.amazon.com/dp/B08G1T1CYZ/?tag=marcoorg-20">KEF LS50</a></li>
+<li><a href="https://www.amazon.com/dp/B0728GJWD9/?tag=marcoorg-20">KEF Q150</a> (Marco&#8217;s computer speakers)</li>
+<li><a href="https://www.amazon.com/dp/B072LTJPBB/?tag=marcoorg-20">KEF Q350</a> (Marco&#8217;s TV speakers)</li>
+<li><a href="https://www.amazon.com/dp/B07G4LNGSD/?tag=marcoorg-20">Kanto SUB8 subwoofer</a> (Marco&#8217;s computer subwoofer)</li>
+<li><a href="https://www.amazon.com/dp/B01M3ULDG9/?tag=marcoorg-20">SMSL AD18 amp</a> with subwoofer output</li>
+<li><a href="https://www.amazon.com/dp/B00F0H8TOC/?tag=marcoorg-20">SMSL SA50 amp</a></li>
+<li><a href="https://amzn.to/2XDkeUy">GigaWorks T40</a></li>
+<li><a href="https://amzn.to/3qfu8rN">Logitech Z625</a></li>
+</ul></li>
+<li>What do we use to keep track of finances? (via Gage Benne)
+
+<ul>
+<li><a href="https://www.banktivity.com/">Banktivity</a></li>
+<li><a href="https://www.quicken.com/">Quicken</a></li>
+<li><a href="https://ynab.com/referral/?ref=eYxzyYH3Xt72U5oR&amp;utm_source=customer_referral"><strong>Y</strong>ou <strong>N</strong>eed <strong>A</strong> <strong>B</strong>udget</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: <a href="http://hypercritical.co/2013/01/07/ces-worse-products-through-software">CES: Worse Products Through Software</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://flatfile.io">Flatfile</a>: Check out the full 2020 State of Data Onboarding report.</li>
+<li><a href="https://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Apple's REJI projects, Marco's Pro Display XDR, John's AirPods anxiety, the right way to do "computer" speakers, and the olfactory peril of the Waffle House.</itunes:subtitle></item><item><guid isPermaLink="false">y25qbnpvvhltt2dm</guid><pubDate>Thu, 07 Jan 2021 16:44:07 +0000</pubDate><title>412: Love Batteries</title><itunes:title>Love Batteries</itunes:title><itunes:episode>412</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:36:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp412.mp3" length="150806366" type="audio/mpeg"/><link>https://atp.fm/412</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Accommodating hearing loss (via &#8220;Phredd Phlinstone&#8221;)
+
+<ul>
+<li><code>Settings</code> → <code>Accessibility</code> → <code>Audio/Visual</code> → <code>Headphone Accommodations</code> → <code>Audiogram</code></li>
+<li><a href="https://apps.apple.com/pl/app/mimi-hearing-test/id932496645">Example app</a> from
+<a href="https://twitter.com/w1nmaciek/status/1344392319882174471">Maciej</a></li>
+</ul></li>
+<li>Big Sur Update</li>
+<li><a href="https://support.apple.com/en-us/HT203127">Apple guidance on SMC reset</a> via Tom Bridge
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT201295">How to do a SMC reset</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple-designed_processors#Apple_T2">Apple T2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BridgeOS">BridgeOS</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Nintendo_Entertainment_System">Nintendo Famicom</a> had a microphone built into the second controller
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=qJwdhfEzMFc">Video of Pols Voice &amp; the microphone</a></li>
+</ul></li>
+<li>PS5 controller weight and &#8220;following&#8221; games
+
+<ul>
+<li><a href="https://twitter.com/terenceyan_/status/1344468711906762752">Tip from terence</a></li>
+</ul></li>
+<li>The galaxy&#8217;s largest black hole
+
+<ul>
+<li><a href="https://www.jessesquires.com/blog/2018/02/08/how-to-sysdiagnose-ios/"><code>sysdiagnose</code></a></li>
+<li><a href="https://developer.apple.com/bug-reporting/profiles-and-logs/">Profiles and Logs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Stack_trace">Stack trace</a></li>
+<li>Casey&#8217;s MMS bugs FB8893003, FB8952395</li>
+<li>John&#8217;s bug FB8711530</li>
+</ul></li>
+</ul></li>
+<li>Marco Equipment Update
+
+<ul>
+<li><a href="https://eshop.macsales.com/shop/owc-thunderbolt-dock">OWC Thunderbolt Dock</a></li>
+<li><a href="https://www.amazon.com/dp/B07CZPV8DF/?tag=marcoorg-20">CalDigit Thunderbolt Dock</a></li>
+<li><a href="https://www.apple.com/shop/product/MD463LL/A/thunderbolt-to-gigabit-ethernet-adapter">Apple Thunderbolt to Gigabit Ethernet Adapter</a></li>
+<li><a href="https://www.apple.com/shop/product/MMEL2AM/A/thunderbolt-3-usb-c-to-thunderbolt-2-adapter">Apple Thunderbolt 3 (USB-C) to Thunderbolt 2 Adapter</a></li>
+</ul></li>
+<li>A brief <code>#askatp</code> interlude
+
+<ul>
+<li>How does Marco sell his unwanted computers? (via Brian)
+
+<ul>
+<li><a href="https://www.macmeanoffer.com/">Mac Me an Offer</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.razer.com/gaming-laptops/Razer-Blade-15/RZ09-03305E53-R3U1">Marco&#8217;s other Christmas gift</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Server_Message_Block">SMB</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ray_tracing_(graphics)">Ray tracing</a></li>
+<li><a href="https://www.gog.com/">GOG</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Total_Annihilation">Total Annihilation</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Worms_(1995_video_game)">Worms</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SimCity_3000">SimCity 3000</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SimCity_4">SimCity 4</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Transport_Tycoon">Transport Tycoon</a>
+
+<ul>
+<li><a href="https://www.openttd.org/">OpenTTD</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/MoonBase_Commander">Moonbase Commander</a>
+
+<ul>
+<li><a href="https://web.archive.org/web/20121217070133/http://m.ign.com/articles/382922">Best of 2002: The Game No One Played</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: <a href="https://www.instagram.com/p/CJZ1R9qJ32G/">New Liss</a>
+
+<ul>
+<li><a href="https://www.relay.fm/analogue/185">Analog(ue) #185: One of the Worst Things You Have Ever Done to Me</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://flatfile.io">Flatfile</a>: Check out the full 2020 State of Data Onboarding report.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>A deep dive into Apple's Feedback system, first impressions of the OWC Thunderbolt Dock, Marco's other Christmas gift, and the best Liss pun to date.</itunes:subtitle></item><item><guid isPermaLink="false">n1fmzm1vafzfnej2</guid><pubDate>Wed, 30 Dec 2020 02:03:55 +0000</pubDate><title>411: Are My Instructions Not Clear?</title><itunes:title>Are My Instructions Not Clear?</itunes:title><itunes:episode>411</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:32</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp411.mp3" length="122939583" type="audio/mpeg"/><link>https://atp.fm/411</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Casey&#8217;s MMS problems and Apple&#8217;s bug-reporting black hole (FB8893003, FB8952395)
+
+<ul>
+<li><a href="https://www.quora.com/What-is-a-sysdiagnose?share=1"><code>sysdiagnose</code></a>
+
+<ul>
+<li><code>Settings</code> → <code>Privacy</code> → <code>Analytics &amp; Improvements</code> → <code>Analytics Data</code></li>
+</ul></li>
+</ul></li>
+<li>More on Fitness+</li>
+<li>HDR photos
+
+<ul>
+<li><code>Settings</code> → <code>Photos</code> → <code>View Full HDR</code></li>
+</ul></li>
+<li>Screen brightness
+
+<ul>
+<li>iPhone 12: 625 nits typically / 1200 nits max</li>
+<li>iPhone 12 Pro: 800 / 1200</li>
+<li><a href="https://www.displaymate.com/iPhone_12Pro_ShootOut_1P.htm#Brightness"><code>displaymate.com</code></a> indicates 825 nits in full-white image</li>
+</ul></li>
+<li><a href="https://github.com/icloud-photos-downloader/icloud_photos_downloader">iCloud Photo Downloader</a> (via Matthew Smith)</li>
+<li><a href="https://eshop.macsales.com/shop/owc-thunderbolt-hub">OWC Thunderbolt Hub</a> requires Big Sur 11.<strong>1</strong></li>
+<li>Big Sur Update
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT201295">SMC Reset</a></li>
+<li><a href="https://www.shirt-pocket.com/blog/">SuperDuper</a></li>
+</ul></li>
+<li>AirPods Max audio settings (via Matthew Taylor)
+
+<ul>
+<li><code>Settings</code> → <code>Accessibility</code> → <code>Audio/Visual</code> → <code>Headphone Accomodations</code></li>
+<li><code>Tune Audio for Brightness, Strong</code></li>
+</ul></li>
+<li><a href="https://twitter.com/L0vetodream/status/1342274540169121792">AirPods Max &#8220;fat lightning&#8221; connector</a>
+
+<ul>
+<li><a href="https://www.ifixit.com/Teardown/AirPods+Max+Teardown/139369">Teardown</a></li>
+</ul></li>
+<li><a href="https://www.sfbags.com/products/airpods-max-shield-case">AirPods Max Shield Case</a></li>
+<li>John&#8217;s iPhone 12 Pro case
+
+<ul>
+<li><a href="https://www.senacases.com/products/leatherskin-for-iphone-12-pro-and-iphone-12-sfd486npus">Previously</a></li>
+<li><a href="https://www.mobilefun.com/olixar-genuine-leather-iphone-12-case-black-82207">Now</a></li>
+</ul></li>
+<li>The ghost of Marco&#8217;s computing past</li>
+</ul></li>
+<li>The ghost of Marco&#8217;s computing future</li>
+<li>Siracusa&#8217;s <a href="https://www.playstation.com/en-us/ps5/">Playstation 5</a> review
+
+<ul>
+<li><a href="https://www.bungie.net/7/en/Destiny/NewLight">Destiny</a></li>
+<li>John&#8217;s <a href="https://atp.fm/359">Windows on Mac Pro adventure</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Nintendo_Land">Nintendo Land</a></li>
+<li><a href="https://www.playstation.com/en-us/games/astros-playroom/">Astro&#8217;s Playroom</a></li>
+<li>iOS 14.3&#160;<a href="https://www.imore.com/ios-143-beta-adds-proraw-ps5-and-amazon-luna-controller-support">adds PS5 and Amazon Luna controller support</a></li>
+</ul></li>
+<li>Marco&#8217;s <a href="https://www.oculus.com/quest-2/">Christmas gift</a>
+
+<ul>
+<li><a href="https://www.beatsaber.com/">Beat Saber</a></li>
+<li><a href="https://www.oculus.com/experiences/quest/1995434190525828/">Eleven: Table Tennis</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pong">Pong</a></li>
+<li><a href="https://www.oculus.com/experiences/quest/2462678267173943/">Walkabout Mini Golf</a></li>
+<li><a href="https://www.oculus.com/experiences/quest/1921533091289407/">SUPERHOT VR</a></li>
+<li><a href="https://www.half-life.com/en/alyx">Half-Life: Alyx</a></li>
+<li><a href="https://store.steampowered.com/valveindex">Valve Index</a></li>
+</ul></li>
+<li>Post-show: More on the PS5</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://boxcryptor.com/">Boxcryptor</a>: Cloud encryption, made in Germany. Get 40% off the Personal plan through January 2021 with code <strong>ATP40</strong>.</li>
+<li><a href="https://art19.com/shows/techmeme-ridehome">Techmeme Ride Home</a>: Subscribe today in your podcast app of choice (<a href="https://itunes.apple.com/us/podcast/techmeme-ride-home/id1355212895?mt=2">Apple</a>, <a href="https://overcast.fm/itunes1355212895/techmeme-ride-home">Overcast</a>, <a href="https://pca.st/3yCG">Pocket Casts</a>, <a href="https://open.spotify.com/show/0xyL4fhg7CdUMsXS7BFvjs">Spotify</a>)</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Please attach a sysdiagnose to hear about Casey's endless bug, John's PS5 review, and Marco's first VR on the Oculus Quest 2.</itunes:subtitle></item><item><guid isPermaLink="false">vwtabxjxrtzouwyy</guid><pubDate>Tue, 22 Dec 2020 21:40:50 +0000</pubDate><title>410: The Comfort Is Killing Me</title><itunes:title>The Comfort Is Killing Me</itunes:title><itunes:episode>410</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:29:29</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp410.mp3" length="144010275" type="audio/mpeg"/><link>https://atp.fm/410</link><description><![CDATA[<ul>
+<li>Pre-show: Living the M1 lifestyle</li>
+<li>Follow-up:
+
+<ul>
+<li>AirPods Max
+
+<ul>
+<li>Battery situation (via <a href="https://twitter.com/barneyiam/status/1339483009557225472">Barney</a>)
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=FK5JXHZCcuY&amp;feature=youtu.be">Snazzy Labs video</a></li>
+</ul></li>
+<li>Smart Case ∆s
+
+<ul>
+<li><a href="https://9to5mac.com/2020/12/18/airpods-max-smart-case/">9to5mac</a></li>
+<li><a href="https://support.apple.com/en-us/HT211886">Apple Support</a></li>
+</ul></li>
+</ul></li>
+<li>Turns out, like the <a href="https://www.apple.com/pro-display-xdr/">Pro Display XDR</a>, the <a href="https://www.apple.com/shop/product/HMUB2LL/A/lg-ultrafine-5k-display">LG UltraFine 5K</a> <strong>does</strong> have a fan. (via <a href="https://twitter.com/Joe_Duffy/status/1339609400416342023">Joseph Duffy</a>)
+
+<ul>
+<li>Also, it has <a href="https://www.notebookcheck.net/LG-refreshes-the-UltraFine-5K-monitor-for-2019.428467.0.html">been revised</a> in the past.</li>
+<li><a href="https://twitter.com/Tinusg/status/1339903162111680512">Tinus</a>&#8217;s tweet</li>
+</ul></li>
+<li>Chrome <a href="https://bugs.chromium.org/p/chromium/issues/detail?id=1158402">bug report</a> and <a href="https://bugs.chromium.org/p/chromium/issues/detail?id=1158402#c18">comments</a></li>
+<li>Jonathan Dietz continues to school us on chip packaging</li>
+<li>&#8230;and Thunderbolt hubs/controllers
+
+<ul>
+<li><a href="https://eshop.macsales.com/shop/owc-thunderbolt-hub">OWC Thunderbolt Hub</a></li>
+<li><a href="https://eshop.macsales.com/shop/owc-thunderbolt-dock">OWC Thunderbolt Dock</a></li>
+<li><a href="https://www.youtube.com/watch?v=lnSMbgndFHo&amp;t=2m3s&amp;feature=youtu.be">OWC interview about TB4</a></li>
+</ul></li>
+</ul></li>
+<li>Casey has tried <a href="https://www.apple.com/apple-fitness-plus/">Apple Fitness+</a>
+
+<ul>
+<li><a href="https://www.beachbodyondemand.com/">BeachBody on Demand</a></li>
+<li><a href="https://www.onepeloton.com/">Peloton</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wii_Fit">Wii Fit</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ring_Fit_Adventure">Ring Fit Adventure</a></li>
+</ul></li>
+<li>All three of us are having <a href="https://www.apple.com/macos/big-sur/">dangerous thoughts</a>
+
+<ul>
+<li><a href="https://arstechnica.com/gadgets/2020/11/macos-11-0-big-sur-the-ars-technica-review/9/#h1">Ars Technica on Time Machine backup times</a></li>
+<li><a href="https://github.com/matryer/bitbar">BitBar</a> and <a href="https://swiftbar.app/">SwiftBar</a></li>
+<li><a href="https://developer.apple.com/sf-symbols/">SF Symbols</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Why do <a href="https://en.wikipedia.org/wiki/High-dynamic-range_video">HDR videos</a> look so great but <a href="https://en.wikipedia.org/wiki/High-dynamic-range_imaging#Photography">HDR photos</a>&#8230; not? (via Chris Lenart)</li>
+<li>Is there a way to prevent an application from stealing focus in macOS? (via Wes Chamness)</li>
+<li>What&#8217;s the best way to back up your iCloud Photo Library if it can&#8217;t fit on your Mac?
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Exif">EXIF data</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Living the M1 lifestyle (reprise)
+
+<ul>
+<li><a href="https://marco.org/2017/11/14/best-laptop-ever">The best laptop ever made</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://flatfile.io">Flatfile</a>: Check out the full 2020 State of Data Onboarding report.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Casey's Fitness+ review, Thunderbolt hubs, Big Sur upgrades, HDR photos, and a generous stack of M1-powered waffles.</itunes:subtitle></item><item><guid isPermaLink="false">ds03vtcxbi1wlxnx</guid><pubDate>Thu, 17 Dec 2020 18:20:06 +0000</pubDate><title>409: Midrange Snob</title><itunes:title>Midrange Snob</itunes:title><itunes:episode>409</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp409.mp3" length="124988110" type="audio/mpeg"/><link>https://atp.fm/409</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Group MMS issues persist, and Casey is over. it. (FB8893003)</li>
+<li>AirPods Max and its competitors
+
+<ul>
+<li><a href="https://www.bang-olufsen.com/en/headphones/beoplay-h95">Beoplay H95</a></li>
+<li><a href="https://marco.org/headphones-closed-portable">Marco&#8217;s Closed Headphones Mega-Review</a></li>
+<li>AirPods Max button and varying modes</li>
+<li>Passive (powerLiss operation)</li>
+</ul></li>
+<li>Marco&#8217;s Computing Situation
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/HMUB2LL/A/lg-ultrafine-5k-display">LG UltraFine 5K</a></li>
+<li><a href="https://bjango.com/articles/macexternaldisplays/">Marc Edwards on External Displays</a></li>
+<li><a href="https://www.amazon.com/dp/B07CZPV8DF/?tag=marcoorg-20">CalDigit Thunderbolt Dock</a></li>
+<li><a href="https://www.apple.com/pro-display-xdr/">Pro Display XDR</a></li>
+</ul></li>
+</ul></li>
+<li>Marco&#8217;s <a href="https://www.apple.com/airpods-max/">AirPods Max</a> review
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Headphones#Planar_Magnetic">Planar Magnetic / Orthodynamic Headphones</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Active_noise_control">ANC</a></li>
+<li><a href="https://www.apple.com/shop/product/MR2C2AM/A/lightning-to-35mm-audio-cable-12m">Apple Lightning to 3.5mm Audio Cable</a></li>
+<li>Competitors
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B0863TXGM3/?tag=marcoorg-20">Sony WH-1000XM4</a></li>
+<li><a href="https://www.hifiman.com/products/detail/75">HiFiMAN HE-6</a></li>
+<li><a href="https://www.danclarkaudio.com/headphones/aeon.html">Dan Clark Audio AEON 2</a></li>
+<li><a href="https://www.amazon.com/dp/B0006NL5SM/?tag=marcoorg-20">Beyerdynamic DT-770 Pro</a></li>
+<li><a href="https://www.amazon.com/dp/B07Q9MJKBV/?tag=marcoorg-20">Bose 700</a></li>
+</ul></li>
+<li>Bluetooth codecs
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/AptX">aptX</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Advanced_Audio_Coding">AAC</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://chromeisbad.com/">Chrome is Bad</a>?
+
+<ul>
+<li><a href="https://9to5mac.com/2020/12/14/chrome-slowing-down-mac-performance/">Guilherme Rambo&#8217;s take</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://flatfile.io/">Flatfile</a>: Check out the full 2020 State of Data Onboarding report.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>AirPods Max review, whether Chrome might be bad, and living the ultra… fine lifestyle.</itunes:subtitle></item><item><guid isPermaLink="false">vhnutmpoudjmtne3</guid><pubDate>Thu, 10 Dec 2020 17:44:39 +0000</pubDate><title>408: Feature Headphones</title><itunes:title>Feature Headphones</itunes:title><itunes:episode>408</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp408.mp3" length="125811759" type="audio/mpeg"/><link>https://atp.fm/408</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Casey&#8217;s great news!
+
+<ul>
+<li><a href="https://www.sounddevices.com/product/mixpre-3-ii/">Mix Pre3-ii</a></li>
+<li><a href="https://www.ecamm.com/mac/callrecorder/">Call Recorder for Skype</a></li>
+<li><a href="https://rogueamoeba.com/audiohijack/">Audio Hijack</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Internet_Relay_Chat">IRC</a></li>
+</ul></li>
+<li>Marco&#8217;s Slightly Unpopular Opinion
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/RealPlayer">RealPlayer</a></li>
+</ul></li>
+<li>Marco&#8217;s new &#8220;experience&#8221;</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://isapplesiliconready.com/">Is Apple-Silicon-Ready?</a></li>
+<li><code>brew</code> and Rosetta
+
+<ul>
+<li><a href="https://www.notion.so/Run-x86-Apps-including-homebrew-in-the-Terminal-on-Apple-Silicon-8350b43d97de4ce690f283277e958602">Duplicating <code>Terminal.app</code></a></li>
+<li><a href="https://soffes.blog/homebrew-on-apple-silicon"><code>brew</code> using <code>arch</code></a></li>
+</ul></li>
+<li>Chiplets &amp; Multi-chip Modules (via Adrian Sampson)
+
+<ul>
+<li><a href="https://en.m.wikipedia.org/wiki/Multi-chip_module">Multi-Chip Module</a></li>
+<li><a href="https://en.wikipedia.org/wiki/High_Bandwidth_Memory">High Bandwidth Memory</a></li>
+</ul></li>
+<li>Extracting images from a Google Doc</li>
+<li>In the defense of Apple News</li>
+</ul></li>
+<li><a href="https://www.apple.com/airpods-max/">AirPods Max</a>
+
+<ul>
+<li><a href="https://www.apple.com/newsroom/2020/12/apple-introduces-airpods-max-the-magic-of-airpods-in-a-stunning-over-ear-design/">Press Release</a></li>
+<li><a href="https://www.sony.com/electronics/headband-headphones/wh-1000xm4">Sony WH-1000XM4</a></li>
+<li><a href="https://www.bose.com/en_us/products/headphones/noise_cancelling_headphones/noise-cancelling-headphones-700.html#v=noise_cancelling_headphones_700_black">Bose Noise Cancelling Headphones 700</a></li>
+<li><a href="https://pro.sony/ue_US/products/headphones/mdr-7506">Sony MDR-7506</a></li>
+<li><a href="https://north-america.beyerdynamic.com/dt-770-pro.html">Beyerdynamic DT 770 Pro</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IPod_Hi-Fi">iPod Hi-Fi</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Front-end_bra">Car Bra</a></li>
+<li><a href="https://www.apple.com/shop/product/MR2C2AM/A/lightning-to-35mm-audio-cable-12m">Lightning ↔ 3.5mm Audio Cable</a></li>
+</ul></li>
+<li>Post-show: Marco has scheduled his walk of shame</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://get.flatfile.io/atp">Flatfile</a>: The elegant import button for your web app. Give your users the import experience you always dreamed of, but never had time to build.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>How much could we possibly say about headphones that we don't have yet?</itunes:subtitle></item><item><guid isPermaLink="false">vk9kmwlzy2pdyutj</guid><pubDate>Thu, 03 Dec 2020 18:50:36 +0000</pubDate><title>407: It Isn't a Big Grapefruit</title><itunes:title>It Isn't a Big Grapefruit</itunes:title><itunes:episode>407</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp407.mp3" length="105926725" type="audio/mpeg"/><link>https://atp.fm/407</link><description><![CDATA[<ul>
+<li>Pre-show: You heard it here first: Marco is <strong>really</strong> starting to justify a new Mac.</li>
+<li>Follow-up:
+
+<ul>
+<li>You can restore stuff from iCloud <a href="https://www.icloud.com/settings/">here</a> (via <a href="https://twitter.com/ryanfegley/status/1332700433278791680">Ryan Fegley</a>)</li>
+<li>Accelerated TensorFlow for macOS <a href="https://machinelearning.apple.com/updates/ml-compute-training-on-mac">probably just uses the GPU</a>
+
+<ul>
+<li>Neural Engine can be used as well, though. (via <a href="https://twitter.com/hishnash/status/1332835209759182848"><code>@hishnash</code></a>)</li>
+</ul></li>
+<li>Apple did make an ECC RAM controller in the past (via Max Lein)</li>
+<li>Lots of info about scaling the M1 via Jonathan Dietz
+
+<ul>
+<li><a href="https://docs.google.com/spreadsheets/d/1zI82qSb5E8C7_Ud6dzXdgq47B4F82Ahl1nspQq4wQlU/edit?usp=sharing">Die size spreadsheet</a></li>
+</ul></li>
+<li><a href="https://www.cerebras.net/">Cerebras</a>, the big-die ML accelerator (via Andrew Bunner)</li>
+<li>Memory bus thoughts from Wade Tregaskis
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/List_of_interface_bit_rates#Dynamic_random-access_memory">Memory interface bandwidth</a></li>
+</ul></li>
+<li>Dual M1 Macs</li>
+<li>&#8220;Low-effort&#8221; Mac Pro</li>
+<li><a href="https://www.techpowerup.com/274720/tsmc-achieves-major-breakthrough-in-2-nm-manufacturing-process-risk-production-in-2023">TMSC Achieves Breakthrough in 2nm Manufacturing</a>
+
+<ul>
+<li><a href="https://news.ycombinator.com/item?id=18189688">What is &#8220;risk production&#8221;?</a></li>
+</ul></li>
+<li>Alexander Graf <a href="https://the8-bit.com/developer-successfully-virtualizes-arm-windows-on-m1-macbook/">virtualizes ARM Windows on Apple Silicon</a>
+
+<ul>
+<li><a href="https://9to5mac.com/2020/12/02/windows-on-m1-macs-run-arm-virtualization/">9to5Mac</a></li>
+<li><a href="https://en.wikipedia.org/wiki/QEMU">QEMU</a></li>
+</ul></li>
+</ul></li>
+<li>Marco&#8217;s Mini Monologues
+
+<ul>
+<li><a href="https://www.ithinkdiff.com/homepod-mini-compared-echo-nest-speakers/">Smart Speaker Size Comparison</a> (scroll down a bit)</li>
+<li><a href="https://twitter.com/panzer/status/1325838099553816577">Panzarino&#8217;s observation about Qi chargers</a></li>
+<li><a href="https://twitter.com/panzer/status/1325845537808031744">&#8230;and his FU</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Is it possible to disable the fan on the new M1 MacBook Pro? (via Matthew Taylor)
+
+<ul>
+<li><a href="http://www.coolbook.se/CoolBook.html">CoolBook</a></li>
+<li><a href="https://www.tunabellysoftware.com/tgpro/">TG Pro</a></li>
+</ul></li>
+<li>What&#8217;s our deal with Apple News+ anyway? (via <a href="https://twitter.com/spigot/status/1319388775626100736">Bryan Hoffman</a>)</li>
+<li>Component Motherboards&#160;: SoC :: ICE&#160;: Electric Cars? (via Kevin Doran)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Very_Large_Scale_Integration">VLSI</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Very_high_frequency">VHF</a> / <a href="https://en.wikipedia.org/wiki/Ultra_high_frequency">UHF</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Yes, John is aware of breadboxes.</li>
+<li>Tesla&#8217;s &#8220;Mission Accomplished&#8221;</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://bombas.com/atp">Bombas</a>: From comfort, to kindness, and everything in between, Bombas aren’t just giveable — they were made to give. Get 20% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Marco's Mini reviews, more on M1 scaling, completely predictable computer waffling, and our problem with Apple News.</itunes:subtitle></item><item><guid isPermaLink="false">s3dmtxbomjitcxuw</guid><pubDate>Wed, 25 Nov 2020 17:00:00 +0000</pubDate><title>406: A Bomb on Your Home Screen</title><itunes:title>A Bomb on Your Home Screen</itunes:title><itunes:episode>406</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:36:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp406.mp3" length="150552349" type="audio/mpeg"/><link>https://atp.fm/406</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Fast resolution switching on M1 Macs
+
+<ul>
+<li><a href="https://twitter.com/gavkar/status/1329263147920756739">Apple engineer weighs in</a></li>
+<li><a href="https://twitter.com/DanielEran/status/1329752281957474304">Demo video</a></li>
+<li><a href="https://twitter.com/sylvainfilteau/status/1329846474604163083">What about external monitors?</a></li>
+</ul></li>
+<li>Mac-optimized <a href="https://blog.tensorflow.org/2020/11/accelerating-tensorflow-performance-on-mac.html">TensorFlow</a> 2.4 fork makes things fly</li>
+<li>M1 Mac 8K render test</li>
+<li><a href="https://www.macrumors.com/2020/11/18/apple-m1-mac-tidbits/">Running iOS apps with <code>IPA</code>s</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/.ipa"><strong>i</strong>OS <strong>A</strong>pp Store <strong>P</strong>ackage</a></li>
+</ul></li>
+<li><a href="https://www.codeweavers.com/crossover">CrossOver</a> runs Windows apps/games on M1 Macs &mdash; including 32-bit games!
+
+<ul>
+<li><a href="https://www.cultofmac.com/728344/crossover-windows-apps-m1-mac/">Cult of Mac coverage</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wine_(software)">WINE</a></li>
+<li><a href="https://www.vmware.com/products/fusion.html">VMWare Fusion</a></li>
+<li><a href="https://www.parallels.com/">Parallels</a></li>
+<li><a href="https://support.apple.com/boot-camp">Boot Camp</a></li>
+<li><a href="https://www.codeweavers.com/blog/jwhite/2020/11/18/okay-im-on-the-bandwagon-apple-silicon-is-officially-cool">Jeremy White&#8217;s explainer</a></li>
+<li><a href="https://twitter.com/realmrpippy/status/1329217526698426369">Brendan Shanks&#8217;s thoughts</a></li>
+</ul></li>
+<li>iOS 14.3&#160;<a href="https://www.reddit.com/r/shortcuts/comments/jw93sg/ios_143_beta_2_no_longer_opens_shortcuts_app/">no longer opens the shortcuts app</a> when launching apps from custom icons
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/widgetsmith/id1523682319">Widgetsmith</a> (App Store link)</li>
+<li><a href="https://healthviewapp.com/">HealthView</a></li>
+<li><a href="https://support.apple.com/apple-configurator">Apple Configurator</a></li>
+</ul></li>
+<li>GitHub&#8217;s ICE relationship <a href="https://github.blog/2019-10-09-github-and-us-government-developers/">is indirect</a></li>
+<li>De-duplicating Contacts
+
+<ul>
+<li><code>Card</code> → <code>Look for Duplicates...</code></li>
+</ul></li>
+</ul></li>
+<li>It&#8217;s been ≈10 years since <a href="http://5by5.tv/buildanalyze/1">Build &amp; Analyze #1</a>. What&#8217;s changed?
+
+<ul>
+<li><a href="https://xoxofest.com/2013/videos/marco-arment">Marco at XOXO 2013</a></li>
+<li><a href="https://www.theincomparable.com/theincomparable/">The Incomparable</a></li>
+<li><a href="http://5by5.tv/hypercritical">Hypercritical</a></li>
+<li><a href="https://arstechnica.com/author/john-siracusa/">Ars Technica</a></li>
+<li><a href="http://murverse.com/subscribe-to-podcasts/isbw/">I Should be Writing</a></li>
+</ul></li>
+<li>Scaling the M1 architecture to higher-end machines
+
+<ul>
+<li><a href="https://twitter.com/marcoarment/status/1330911709901561856">Marco&#8217;s tweet</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li><a href="https://www.theincomparable.com/robot/">Robot or Not</a>: Cache edition (via Chris Cioffi)</li>
+<li>Are we concerned about the longevity of M1 chips? (via Colin Devroe)</li>
+<li>Do we believe in cable management? (via Nick)</li>
+</ul></li>
+<li>Post-show: Marco&#8217;s ruined backpack
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B01M6C2Z91/?tag=marcoorg-20">Peak Design Everyday Backpack 30L v1 clearance</a> (<a href="https://www.peakdesign.com/collections/everyday-bags/products/everyday-backpack?variant=29743300804652">current v2 model</a>)</li>
+<li><a href="https://www.amazon.com/dp/B074R5Y7RD/?tag=marcoorg-20">Zojirushi SM-SD36 travel mug</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://purple.com/atp10">Purple</a>: Experience The Purple Grid and you’ll sleep like never before. Get 10% off any order of $200 or more with code <strong>atp10</strong>.</li>
+<li><a href="https://flatfile.io">Flatfile</a>: The elegant import button for your web app. Give your users the import experience you always dreamed of, but never had time to build.</li>
+<li><a href="https://hellofresh.com/atp90">Hello Fresh</a>: America’s #1 meal kit. Get $90 off including free shipping with code <strong>atp90</strong>.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Contact de-duping, rearranging apps, how the M1 architecture could scale to higher-end Macs, and reflections on a decade of podcasting.</itunes:subtitle></item><item><guid isPermaLink="false">wgpyejlntv93yxhz</guid><pubDate>Thu, 19 Nov 2020 02:12:55 +0000</pubDate><title>405: The Benevolence of the Powerful</title><itunes:title>The Benevolence of the Powerful</itunes:title><itunes:episode>405</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp405.mp3" length="112659213" type="audio/mpeg"/><link>https://atp.fm/405</link><description><![CDATA[<ul>
+<li>Pre-show: Why are we recording early?</li>
+<li>Follow-up:
+
+<ul>
+<li>Casey&#8217;s watch band</li>
+<li><code>youtube-dl</code> is <a href="https://github.com/ytdl-org/youtube-dl">back on Github</a>
+
+<ul>
+<li><a href="https://www.theatlantic.com/technology/archive/2020/01/ice-contract-github-sparks-developer-protests/604339/">Github works with ICE, which is gross and should stop</a>
+
+<ul>
+<li>Feel free to <a href="https://support.github.com/contact/feedback">tell Github this is gross</a></li>
+</ul></li>
+<li><a href="https://github.blog/2020-11-16-standing-up-for-developers-youtube-dl-is-back/">Github&#8217;s statement about <code>youtube-dl</code></a></li>
+<li><a href="https://github.com/github/dmca/blob/master/2020/11/2020-11-16-RIAA-reversal-effletter.pdf">EFF&#8217;s counterargument to the RIAA&#8217;s claim</a>
+
+<ul>
+<li><a href="https://www.eff.org/">Donate to the EFF</a></li>
+</ul></li>
+</ul></li>
+<li>M1&#160;<a href="https://overcast.fm/+R7DWeFZa0/1:24:35">chip name predictions</a> (Overcast link) (via <a href="https://twitter.com/camdeardorff/status/1326994267236024321">Cameron Deardorff</a>)</li>
+<li><a href="https://daringfireball.net/linked/2020/11/14/joz-federighi-ternus-independent">ARM Macs and Touch</a></li>
+<li><a href="https://512pixels.net/2020/11/macos-11-1-in-beta/">macOS 11.1 is in Beta</a></li>
+<li><a href="https://en.wikipedia.org/wiki/McGurk_effect">McGurk effect</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=2k8fHR9jKVM&amp;feature=youtu.be">Explainer Video</a></li>
+<li><a href="https://www.tiktok.com/@theparentnormal/video/6893951825339305222">Text-based TikTok</a> (via <a href="https://twitter.com/sferik/status/1327570892717584384">Erik Berlin</a>)</li>
+</ul></li>
+<li>Casey&#8217;s weird discovery</li>
+</ul></li>
+<li>Casey got new watches
+
+<ul>
+<li><a href="https://daringfireball.net/2020/09/more_adventures_in_solo_loop_sizing">Gruber&#8217;s sizing pictures</a></li>
+<li><a href="https://www.studioneat.com/products/materialdock">Studio Neat Material Dock</a></li>
+</ul></li>
+<li>M1 Mac Performance
+
+<ul>
+<li><a href="https://www.macrumors.com/2020/11/11/m1-macbook-air-first-benchmark/">Initial Benchmarks</a></li>
+<li><a href="https://www.macrumors.com/2020/11/15/m1-chip-emulating-x86-benchmark/">M1 emulating x86 is still silly fast</a></li>
+<li><a href="https://techcrunch.com/2020/11/17/yeah-apples-m1-macbook-pro-is-powerful-but-its-the-battery-life-that-will-blow-you-away/">Panzarino&#8217;s unxip&#8217;ing Xcode</a></li>
+<li><a href="https://twitter.com/reckless/status/1328724176979566592">Nilay Patel&#8217;s tweet</a></li>
+<li><a href="https://www.anandtech.com/show/16252/mac-mini-apple-m1-tested">AnandTech&#8217;s review</a></li>
+<li><a href="https://sixcolors.com/post/2020/11/m1-macs-review/">Snell&#8217;s Xcode benchmarks</a></li>
+</ul></li>
+<li>M1 MacBook reviews</li>
+<li><a href="https://www.apple.com/newsroom/2020/11/apple-announces-app-store-small-business-program/">App Store Small Business Program</a>
+
+<ul>
+<li><a href="https://sixcolors.com/link/2020/11/apple-reduces-app-store-cut-to-15-percent-for-small-businesses/">Six Colors Summary</a></li>
+<li><a href="https://twitter.com/DLeonhardt/status/1181004566088814594">US taxes over the years</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Casey is <strong>begging</strong> for help on FB8893003. Please, Apple. Please.</li>
+<li>John&#8217;s iPhone 12 Pro cases sitrep
+
+<ul>
+<li><a href="https://www.senacases.com/products/leatherskin-for-iphone-12-pro-max-sfd487npus">SENA case</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>First impressions of M1-based Macs, Casey's cutting-edge purchase, and hell freezing over at the App Store.</itunes:subtitle></item><item><guid isPermaLink="false">cllmzghsufd3wul3</guid><pubDate>Thu, 12 Nov 2020 02:11:36 +0000</pubDate><title>404: With Four Hands Tied Behind Its Back</title><itunes:title>With Four Hands Tied Behind Its Back</itunes:title><itunes:episode>404</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:43:45</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp404.mp3" length="157782987" type="audio/mpeg"/><link>https://atp.fm/404</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>THE <a href="https://atp.fm/store">ATP STORE</a> IS BACK, BABY. Until the 14th. Act now!
+
+<ul>
+<li>Remember that <a href="https://atp.fm/join">members</a> get 15% off!</li>
+</ul></li>
+</ul></li>
+<li>iPhone 12 Mini, Max press reviews are out
+
+<ul>
+<li><a href="https://daringfireball.net/2020/11/the_iphone_12_mini_and_iphone_12_pro_max">Gruber&#8217;s review</a></li>
+<li><a href="https://www.youtube.com/watch?v=qrzCLgDplTw">MKBHD&#8217;s review</a></li>
+<li><a href="https://twitter.com/reckless/status/1325831135675478016">Nilay&#8217;s tweet</a></li>
+<li><a href="https://twitter.com/panzer/status/1325847855223828482">Panzer on the OIS</a></li>
+<li><a href="https://twitter.com/panzer/status/1325847857811763201">Panzer on ISO range</a></li>
+<li><a href="https://halide.cam/">Halide</a></li>
+</ul></li>
+<li>Casey had an oops</li>
+<li><a href="https://www.apple.com/apple-events/november-2020/">Apple Event</a>
+
+<ul>
+<li>M1 Name
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_motion_coprocessors">Apple motion coprocessors</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BMW_M1">BMW M1</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BMW_1_Series_(E87)#1_Series_M_Coup%C3%A9">BMW 1 Series M Coupé</a></li>
+</ul></li>
+<li><a href="http://drops.caseyliss.com/eLRVk9">System on a Chip [Soc]</a></li>
+<li>Unified Memory Architecture
+
+<ul>
+<li>RAM on-package</li>
+<li><a href="https://www.anandtech.com/show/16226/apple-silicon-m1-a14-deep-dive">Anandtech die shot article</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sky_Shadow">Sky Shadow</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=qTRpY496dMA&amp;feature=youtu.be&amp;t=3m4s">Die Schwott</a></li>
+</ul></li>
+<li><a href="https://www.vulture.com/2020/11/jersey-reporter-tells-trump-supporter-to-f-off-on-live-tv.html">&#8220;Buzz Off&#8221;</a></li>
+</ul></li>
+<li>Custom Technologies
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/SIMD">SIMD</a></li>
+</ul></li>
+<li>M1 performance
+
+<ul>
+<li><a href="https://twitter.com/Catfish_Man/status/1326238434235568128">David Smith&#8217;s tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Reference_counting">Reference counting</a></li>
+<li><a href="https://mikeash.com/pyblog/friday-qa-2012-11-16-lets-build-objc_msgsend.html">Let&#8217;s Build <code>objc_msgSend</code></a></li>
+</ul></li>
+<li><a href="https://apple.com/macbook-air">MacBook Air</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Product_binning#Semiconductor_manufacturing">Binning</a></li>
+<li><a href="https://www.caseyliss.com/2017/6/25/macbook-adorable">Casey&#8217;s beloved MacBook Adorable</a></li>
+</ul></li>
+<li><a href="https://apple.com/mac-mini">Mac Mini</a></li>
+<li><a href="https://www.apple.com/macbook-pro-13/">MacBook Pro</a>
+
+<ul>
+<li><a href="https://dithering.fm/">Dithering</a></li>
+</ul></li>
+</ul></li>
+<li>The future of the Mac
+
+<ul>
+<li><a href="https://twitter.com/never_released/status/1326315741080150016">Longhorn&#8217;s tweet</a></li>
+</ul></li>
+<li>Post-show: What did we order?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://get.flatfile.io/atp">Flatfile</a>: The elegant import button for your web app. Give your users the import experience you always dreamed of, but never had time to build.</li>
+<li><a href="https://bombas.com/atp">Bombas</a>: From comfort, to kindness, and everything in between, Bombas aren’t just giveable — they were made to give. Get 20% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Apple's M1 chip, the first Macs equipped with it, and Casey's latest "oops".</itunes:subtitle></item><item><guid isPermaLink="false">ngn5rdvgdmlidutj</guid><pubDate>Thu, 05 Nov 2020 19:29:51 +0000</pubDate><title>403: A VCR for the Internet</title><itunes:title>A VCR for the Internet</itunes:title><itunes:episode>403</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp403.mp3" length="121048449" type="audio/mpeg"/><link>https://atp.fm/403</link><description><![CDATA[<ul>
+<li>The <a href="https://atp.fm/store">ATP Store</a> is back until 14 November!</li>
+<li>Follow-up:
+
+<ul>
+<li>Casey <a href="https://funfact.fm/episodes/23">is aware</a> of the <a href="https://en.wikipedia.org/wiki/United_States_National_Radio_Quiet_Zone">National Radio Quiet Zone</a>
+
+<ul>
+<li><a href="http://drops.caseyliss.com/iDZlD9">Verizon map</a></li>
+<li><a href="http://drops.caseyliss.com/pXYKRw">AT&amp;T map</a></li>
+</ul></li>
+<li>Apple leather case <a href="https://9to5mac.com/2020/11/03/video-gives-us-a-look-at-the-iphone-12-leather-magsafe-case/">covers the bottom</a>, which chaps John&#8217;s bottom</li>
+<li>Moving 2-Factor Authentication to new phones
+
+<ul>
+<li>Google Authenticator&#8217;s changes (via <a href="https://twitter.com/nzkoz/status/1322010957829136384">Michael Koziarski</a>)</li>
+</ul></li>
+<li>Reminders and Big Sur</li>
+<li>&#8220;Alexa&#8221; and &#8220;Siri&#8221; and using new hail words (via David Kenny)
+
+<ul>
+<li><a href="https://www.imdb.com/name/nm1519680/?ref_=fn_al_nm_1">Saoirse Ronan</a></li>
+</ul></li>
+<li>John&#8217;s 2x-camera usage</li>
+<li>iPhones and USB-C speeds over Lightning → USB-C cables</li>
+<li><a href="https://9to5mac.com/2020/10/08/apple-to-extend-apple-tv-free-year-trials-through-february-2021/">Apple extending Apple TV+ free trial to February 2021</a></li>
+<li>John&#8217;s too-long Apple Maps directions</li>
+<li>What are Xcode <code>xip</code> files, anyway? (via <a href="https://twitter.com/ZevEisenberg/status/1314652108885504006">Zev Eisen<span style="text-decoration: line-through">berg</span>boo</a>)</li>
+<li>&#8220;Small percentage&#8221; of <a href="https://support.xbox.com/en-US/help/hardware-network/controller/elite-controller-series-2-warranty">Xbox Elite 2 controller problems</a></li>
+<li>&#8220;Small percentage&#8221; of <a href="https://www.macrumors.com/2020/10/30/airpods-pro-sound-issues-service-program/">AirPod Pro problems</a>
+
+<ul>
+<li><a href="https://udel.edu/~mcdonald/mythearwax.html">Earwax type: The myth</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ear_candling">Ear candling</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://youtube-dl.org/"><code>youtube-dl</code></a>, <a href="https://en.wikipedia.org/wiki/Digital_Millennium_Copyright_Act">DMCA</a>, and the <a href="https://en.wikipedia.org/wiki/Recording_Industry_Association_of_America">RIAA</a>, oh my!
+
+<ul>
+<li><a href="https://www.bleepingcomputer.com/news/software/github-threatens-to-ban-users-who-bypass-youtube-dl-takedown/">GitHub warns about forks</a></li>
+<li><a href="https://www.caseyliss.com/2017/8/10/youtube-dl">Casey&#8217;s overview</a></li>
+<li><a href="https://99percentinvisible.org/episode/the-lost-cities-of-geo/">99 Percent Invisible: The Lost Cities of Geo</a></li>
+<li><a href="https://en.wikipedia.org/wiki/A_Concert_for_Charlottesville">Concert for Charlottesville</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Jack_Valenti">Jack Valenti</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Youtube-dl#History"><code>youtube-dl</code> History</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DeCSS"><code>DeCSS</code></a></li>
+</ul></li>
+<li><a href="https://sixcolors.com/post/2020/11/another-apple-event-is-coming-nov-10/">Apple&#8217;s &#8220;One More Thing&#8221; Event</a>
+
+<ul>
+<li><a href="https://www.bloomberg.com/news/articles/2020-11-02/apple-to-hold-nov-10-event-to-announce-macs-with-own-chips">Bloomberg Coverage</a></li>
+<li><a href="https://twitter.com/hishnash/status/1324052097478791168"><code>hishnash</code>&#8217;s tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Direct_memory_access">DMA</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://mklive.nintendo.com/">Mario Kart Live Home Circuit</a></li>
+<li><a href="https://www.youtube.com/watch?v=NKE39Tg9oQY">Trailer</a></li>
+<li><a href="https://www.velanstudios.com/">Velan Studios</a></li>
+<li><a href="https://www.youtube.com/watch?v=QnsR-kZUx6o">Anki Drive Demo</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Lakitu">Lakitu</a></li>
+<li><a href="https://labo.nintendo.com/">Nintendo Labo</a></li>
+<li><a href="https://www.youtube.com/watch?v=D6cpa-TvKn8">Mario Kart 64: The Quest for World Record Perfection</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://awaytravel.com/accidentaltech">Away</a>: Start your 100-day trial and shop Away&#8217;s entire lineup of travel essentials, including their best-selling suitcases.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>John's bottom-covering issues, the AirPods Pro repair program, RIAA vs. youtube-dl, and what we hope to see at Apple's event next week.</itunes:subtitle></item><item><guid isPermaLink="false">vzn5sfa4b29ardfw</guid><pubDate>Thu, 29 Oct 2020 17:36:23 +0000</pubDate><title>402: Flat-Side Promoter</title><itunes:title>Flat-Side Promoter</itunes:title><itunes:episode>402</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:21:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp402.mp3" length="136404707" type="audio/mpeg"/><link>https://atp.fm/402</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Please, please, <strong>please</strong> <a href="https://iwillvote.com/">vote</a>.</li>
+<li>The <a href="https://atp.fm/store">ATP Store</a> returns on 1 November until 14 November&#8230; in theory.</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Peter Pan: <a href="https://www.thefreedictionary.com/akimbo">Arms akimbo</a></li>
+<li><a href="https://twitter.com/definitelyian/status/1319787207788515328">5G upload speeds</a></li>
+<li>Verizon&#8217;s 5G lead</li>
+<li>Photos-related updates
+
+<ul>
+<li>Apple Photos file management options</li>
+<li>Image Capture can import HEIC files if you change a setting <strong>on your phone</strong>:
+
+<ul>
+<li><code>Settings</code> → <code>Photos</code> → <code>Transfer to Mac or PC</code> → <code>Keep originals</code></li>
+</ul></li>
+<li>Google Photos</li>
+</ul></li>
+<li>Marco is aware of the <a href="https://www.sonos.com/en-us/shop/move.html">Sonos Move</a></li>
+<li>HomePod tip: disable &#8220;Hey Siri&#8221; on all other devices</li>
+<li>Marco&#8217;s laptop repair covered by credit-card warranty</li>
+<li><a href="https://www.kickstarter.com/projects/peak-design/mobile-by-peak-design-phone-cases-mounts-chargers-magsafe">Peak Design combines MagSafe &amp; mechanical fasteners</a> (via <a href="https://twitter.com/mluisbrown/status/1319613705068417024">Michael Luís Brown</a>)</li>
+<li><a href="https://www.studioneat.com/products/materialdock">Studio Neat&#8217;s Material Dock</a></li>
+<li>Thoughts on Apple&#8217;s battery specs from <a href="https://twitter.com/JMoVS/status/1319375264716099605">Justin Scholz</a></li>
+</ul></li>
+<li>iPhone 12 Pro Reviews
+
+<ul>
+<li><a href="https://www.relay.fm/upgrade/323">Upgrade #323: The Edges are More Interesting</a></li>
+<li><a href="https://marco.org/2011/09/07/the-new-setup">Marco&#8217;s chamfered MacBook Pro edge blog post</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1321084901043638274">Potential Apple Watch unlock fix</a></li>
+<li>John&#8217;s case <a href="https://twitter.com/siracusa/status/1321114791784648709">request</a> and prospects:
+
+<ul>
+<li><a href="https://decodedbags.com/products/back-cover-black-1-iphone-12-pro">Decoded Back Cover</a></li>
+<li><a href="https://www.senacases.com/products/leatherskin-for-iphone-12-pro-and-iphone-12-sfd486npus">Sena Leatherskin</a></li>
+</ul></li>
+</ul></li>
+<li>MagSafe at 15W speeds
+
+<ul>
+<li><a href="https://www.macrumors.com/2020/10/26/magsafe-charger-needs-20w-power-adapter/">&#8230;requires Apple&#8217;s 20W adapter</a></li>
+<li><a href="https://www.youtube.com/watch?v=yDbcrbZdKGI&amp;feature=youtu.be">Alvin Lim&#8217;s video</a></li>
+<li><a href="https://en.m.wikipedia.org/wiki/USB_hardware#USB_Power_Delivery_(USB_PD)">USB Power Delivery specs</a></li>
+<li>Apple&#8217;s Adapters
+
+<ul>
+<li><strong>20W</strong>: 5V@3A (15W), 9V@2.2A (20W)</li>
+<li><strong>18W</strong>: 5V@3A (15W), 9V@2A (18W)</li>
+<li><strong>87W</strong>: 5.2V@2.4A (12W), 9V@3A (27W), 20.2V@4.3A (87W)</li>
+<li><strong>96W</strong>: 5.2V@3A (16W), 9V@3A (27W), 15V@3A (45W), 20.5V@4.3A (96W)</li>
+</ul></li>
+<li><a href="https://panic.com/blog/the-lightning-digital-av-adapter-surprise/">Lightning Digital AV Adapter Surprise</a></li>
+<li><a href="https://www.ifixit.com/Teardown/iPhone+12+and+12+Pro+Teardown/137669">iFixIt MagSafe Teardown</a></li>
+</ul></li>
+<li>Post-show: Marco&#8217;s iPhone 12 Thoughts</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.backblaze.com/landing/podcast-atp.html">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day trial today.</li>
+<li><a href="https://get.flatfile.io/atp">Flatfile</a>: The elegant import button for your web app. Give your users the import experience you always dreamed of, but never had time to build.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>iPhone 12 Pro: the official ATP review.</itunes:subtitle></item><item><guid isPermaLink="false">dmzzd21nzmlswtl4</guid><pubDate>Thu, 22 Oct 2020 18:29:36 +0000</pubDate><title>401: Sandwich-Closing Force</title><itunes:title>Sandwich-Closing Force</itunes:title><itunes:episode>401</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:21:02</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp401.mp3" length="135524959" type="audio/mpeg"/><link>https://atp.fm/401</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Dreaming in code</li>
+<li>Grand refactorings</li>
+<li><a href="https://www.apple.com/homepod/">HomePod</a>, <a href="https://www.apple.com/homepod-mini/">HomePod Mini</a>, and <a href="https://www.sonos.com/en-us/shop/one.html">Sonos One</a> (oh my!)</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.patentlyapple.com/patently-apple/2020/10/apple-invents-new-magnetic-connectors-for-future-idevices-macs-and-accessories.html">Apple&#8217;s Magnetic Connectors Patent</a></li>
+<li><a href="https://developer.apple.com/accessories/Accessory-Design-Guidelines.pdf">Accessory Design Guidelines for Apple Devices (PDF)</a> (via Michael Bettiol)</li>
+<li>Periscope lenses don&#8217;t have moving elements (via Timo Grün)</li>
+<li>iPhone 12 Pricing
+
+<ul>
+<li>T-Mobile joins the $30 off club</li>
+<li>Chargers &amp; earphones &amp; old phones</li>
+</ul></li>
+<li>Official battery specs for Apple products (via Roland Månsson)
+
+<ul>
+<li><a href="https://www.apple.com/legal/more-resources/gtc.html">Start here</a></li>
+<li><a href="https://secure.chemtrec.com/lbrequest.html">&#8230;which links here&#8230;</a></li>
+<li><a href="https://app.clickdimensions.com/blob/chemtreccom-aczvc/files/apis_bpisreportupdated20201014.pdf?1602688574393">&#8230;which can get you here</a></li>
+</ul></li>
+<li>Settling an old bet from <a href="https://atp.fm/291">episode 291</a> at <a href="https://overcast.fm/+R7DXrQ3FY/1:55:14">1:55:14</a> (via <a href="https://twitter.com/tchaten/status/1317855189605453824">Tim Chaten</a>)</li>
+<li>Marco&#8217;s Time Machine woes
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B07CQD6M5B/?tag=marcoorg-20">The 2.5&#8221; enclosure that supports large SSDs</a></li>
+</ul></li>
+<li>Determining how many photos you&#8217;ve taken with each iPhone 11 Pro lens
+
+<ul>
+<li><a href="https://sixcolors.com/post/2020/10/find-photos-taken-by-specific-iphone-lenses/">Jason&#8217;s write-up</a> on using Photos&#8217; Smart Albums</li>
+<li><a href="https://twitter.com/alexwlchan/status/1317518449371918338">Alex Chan&#8217;s post</a> about using <a href="https://exiftool.org/"><code>exiftool</code></a></li>
+<li>Casey (<a href="http://drops.caseyliss.com/gOOHQr">summarized results</a>) (<a href="https://gist.github.com/cliss/02a0cbdb48a942bfff3552cbae2a7a18">raw results</a>)
+
+<ul>
+<li>Ultra wide: 7%</li>
+<li>Wide: 83%</li>
+<li>Telephoto: 10%</li>
+</ul></li>
+<li>Marco
+
+<ul>
+<li>Ultra wide: 9%</li>
+<li>Wide: 75%</li>
+<li>Telephoto: 16%</li>
+</ul></li>
+</ul></li>
+<li>Buying decisions
+
+<ul>
+<li><a href="https://www.caseyliss.com/2016/9/9/gimme-dat-iphone">Tracking your iPhone shipment</a></li>
+</ul></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Have we tried watchOS sleep tracking? (via Eduardo Berner)
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/sleep-cycle-sleep-tracker/id320606217">Sleep Cycle (App Store link)</a></li>
+</ul></li>
+<li>What is taking up so much space on our phones‽ (via Jayanth Visweswaran)
+
+<ul>
+<li><a href="http://drops.caseyliss.com/KMK3PY">Casey&#8217;s storage</a></li>
+</ul></li>
+<li>Is John going to get an OLED TV? (via <a href="https://twitter.com/tobogranyte/status/1316346299202129920">Tobo Granyte</a>)</li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Ridiculousness in AT&amp;T&#8217;s coverage maps
+
+<ul>
+<li><a href="https://daringfireball.net/2020/10/the_iphone_12_and_iphone_12_pro">Gruber&#8217;s review</a></li>
+<li><a href="https://www.wired.com/2010/06/wireless-woes-rain-fail-on-steve-jobs-keynote/">&#8220;Please turn off your MiFis&#8221;</a></li>
+</ul></li>
+<li>An attempted intervention regarding Casey&#8217;s 🍌 photo management setup
+
+<ul>
+<li><a href="https://www.snafu.org/GeoTag/">GeoTag</a></li>
+<li><a href="https://dayoneapp.com/">Day One</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://hey.com/?utm=atp">Hey.com</a>: Email shouldn’t be overwhelming. Start your free 14-day trial.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>We thoroughly broke the format of the show with HomePods, Sonos, MagSafe, a generous peppering of follow-up, and a giant stack of iPhone 12 waffles.</itunes:subtitle></item><item><guid isPermaLink="false">n19kvjrtatq4nm4y</guid><pubDate>Thu, 15 Oct 2020 19:13:29 +0000</pubDate><title>400: Reach Is the Next Frontier</title><itunes:title>Reach Is the Next Frontier</itunes:title><itunes:episode>400</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:45:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp400.mp3" length="159886663" type="audio/mpeg"/><link>https://atp.fm/400</link><description><![CDATA[<ul>
+<li><a href="https://www.apple.com/apple-events/october-2020/">Apple Event</a> overview</li>
+<li>Have you heard the good word about <a href="https://www.verizon.com/">Verizon</a>&#8217;s 5G?
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Mobile_virtual_network_operator">MVNO</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/homepod-mini/">HomePod Mini</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple-designed_processors#Apple_S5">Apple S5</a></li>
+<li><a href="https://www.amazon.com/dp/B07XJ8C8F5?tag=marcoorg-20">Echo Dot ($50)</a></li>
+<li><a href="https://www.amazon.com/dp/B085HK4KL6?tag=marcoorg-20">Echo ($100)</a></li>
+<li><a href="https://www.amazon.com/Echo-Studio/dp/B07G9Y3ZMC?tag=marcoorg-20">Echo Studio ($150)</a></li>
+</ul></li>
+<li>No, but really. Have you heard the good word about Verizon&#8217;s 5G?
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/MMX_(instruction_set)">MMX</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/iphone-12/">iPhone 12 and 12 Mini</a>
+
+<ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1316121520880656384">Steve Troughton-Smith on resolutions</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_A14">A14</a></li>
+<li><a href="https://www.apple.com/iphone-12-pro/">iPhone 12 Pro</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Lidar">LiDAR</a></li>
+<li><a href="https://blog.halide.cam/iphone-12-event-all-the-camera-news-baed29486c47">ProRAW</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1316091404725166080">Size differences</a></li>
+</ul></li>
+<li>Grab Bag
+
+<ul>
+<li>&#8220;Environmental&#8221; changes</li>
+<li>USB-C cable ↔ Lightning
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MHJA3AM/A/20w-usb-c-power-adapter">Power Adapter ($20)</a></li>
+</ul></li>
+<li>$30 surcharge?</li>
+<li>MagSafe
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MHLR3/iphone-leather-wallet-with-magsafe-saddle-brown">Leather Wallet</a></li>
+</ul></li>
+<li>Ship Dates</li>
+<li>Leather Cases</li>
+</ul></li>
+<li>Purchasing Plans</li>
+<li><code>#askatp</code>
+
+<ul>
+<li>Is John going to get the new Apple sleeve? (via <a href="http://twitter.com/lewpiper/status/1316242967657508866">Lew Piper</a>)
+
+<ul>
+<li><a href="https://twitter.com/tiffanyarment/status/1316081413238722563">Tiff&#8217;s joke tweet</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Why is ATP worth it? A brief episode-400 introspection and retrospective.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://bombas.com/atp">Bombas</a>: The most comfortable socks in the history of feet.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>The iPhone 12, 12 Mini, 12 Pro, 12 Pro Max, and HomePod Mini, all brought to you by the Verizon 5G Nationwide Ultra Wideband network. Oh, and Apple helped a bit.</itunes:subtitle></item><item><guid isPermaLink="false">dhn0wgiwttb3s0lj</guid><pubDate>Thu, 08 Oct 2020 20:29:32 +0000</pubDate><title>399: Off the Pouch Lifestyle</title><itunes:title>Off the Pouch Lifestyle</itunes:title><itunes:episode>399</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:28:57</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp399.mp3" length="72193267" type="audio/mpeg"/><link>https://atp.fm/399</link><description><![CDATA[<ul>
+<li>Pre-show: Marco&#8217;s terrible, horrible, no good, very bad week.</li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.theverge.com/2020/8/28/21405140/apple-rejects-facebook-update-30-percent-cut">Facebook vs. Apple</a>
+
+<ul>
+<li><a href="https://www.theverge.com/platform/amp/2020/9/25/21455598/facebook-paid-events-apple-ios-30-percent-fees-waived">Apple is <strong>not</strong> taking the 30% cut after all</a></li>
+</ul></li>
+<li>Merchants have been allowed to add surcharges for credit card transactions <a href="https://news.yahoo.com/retailers-may-begin-charging-swipe-155839837.html">since January 2013</a> (via Jordan Ryan Moore)</li>
+<li>Adam&#8217;s watch battery update</li>
+<li>Cell tower &#8220;trees&#8221; (via Nathaniel)
+
+<ul>
+<li><a href="https://www.atlasobscura.com/articles/take-a-look-at-americas-least-convincing-cell-phone-tower-trees">Examples</a></li>
+<li><a href="https://www.nelloinc.com/wireless-cell-towers/monopalms.cfm">&#8220;Monopalms&#8221;</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/IBM_eFUSE">eFUSE</a></li>
+<li>Baby Monitors
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B07GBP3GH9/?tag=liismo-20">Eufy SpaceView</a>
+
+<ul>
+<li><a href="https://www.nytimes.com/wirecutter/reviews/best-baby-monitor/">Wirecutter</a></li>
+</ul></li>
+<li>Previous recommnedation: <a href="http://www.amazon.com/dp/B00ECHYTBI/?tag=liismo-20">Infant Optics DXR-8</a></li>
+</ul></li>
+</ul></li>
+<li>iPhone 11 Exit Interview</li>
+<li><a href="https://sixcolors.com/post/2020/10/its-official-apple-presentation-next-tuesday/">Apple Event</a>
+
+<ul>
+<li><a href="https://www.macrumors.com/2020/10/06/apple-iphone-event-october-13/">Potential iPhone 12 Sizes</a>
+
+<ul>
+<li>iPhone 11: 6.1&#8221;</li>
+<li>iPhone 11 Pro: 5.8&#8221; or 6.5&#8221;</li>
+<li>iPhone 12: 5.4&#8221; or 6.1&#8221;</li>
+<li>iPhone 12 Pro: 6.1&#8221; or 6.7&#8221;</li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2020/07/28/5-4-iphone-12-images-in-hand/">MacRumors 5.4-inch iPhone 12 Size Estimator</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Monday%27s_Child">Thursday&#8217;s child has far to go…</a></li>
+<li><a href="https://blog.natanrolnik.me/dispatch-work-item">John&#8217;s &#8220;code&#8221;</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2020-10-05/apple-stops-selling-rival-earphones-speakers-ahead-of-launches">Apple stops selling rival earphones/speakers</a></li>
+</ul></li>
+<li><a href="https://judiciary.house.gov/uploadedfiles/competition_in_digital_markets.pdf">House Judiciary Committee antitrust report</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What&#8217;s the deal with <a href="https://en.wikipedia.org/wiki/Apple_Disk_Image">disk images</a>, anyway? (via Andy)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Doom_modding"><code>WAD</code> file</a></li>
+<li><a href="https://en.wikipedia.org/wiki/.XIP"><code>XIP</code> file</a></li>
+</ul></li>
+<li>What&#8217;s the reasonable lifespan of a phone? (via <a href="https://twitter.com/iuymatiao/status/1300022827312185345">Ian Uymatiao</a>)</li>
+<li>What&#8217;s the point in a &#8220;real&#8221; camera? (via Luke Shulman)
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B0751NNZ7S/?tag=liismo-20">Casey&#8217;s Olympus O-MD E-M10</a>
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B009CNILX4/?tag=liismo-20">Casey&#8217;s Zoom Lens</a></li>
+<li><a href="http://www.amazon.com/dp/B0055N2L22/?tag=liismo-20">Casey&#8217;s Prime Lens</a></li>
+</ul></li>
+<li><a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-7c">Sony α7C</a></li>
+<li><a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-6600">Sony α6600</a></li>
+<li><a href="https://www.lensrentals.com/">Lensrentals</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: More on the <a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-7c">Sony α7C</a>
+
+<ul>
+<li><a href="https://www.sony.com/electronics/cyber-shot-compact-cameras/dsc-rx1-rx1r">Sony RX1</a></li>
+<li><a href="https://us.leica-camera.com/Photography/Leica-Q/LEICA-Q">Leica Q</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://mintmobile.com/atp">Mint Mobile</a>: Get your new unlimited wireless plan for just $30/month.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Start your business with a domain name. Get 10% off your first purchase.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Who are you, Speed?</itunes:subtitle></item><item><guid isPermaLink="false">ulfsctrlvhpmudhy</guid><pubDate>Thu, 01 Oct 2020 18:28:28 +0000</pubDate><title>398: The State of Your Baby</title><itunes:title>The State of Your Baby</itunes:title><itunes:episode>398</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:41</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp398.mp3" length="57234549" type="audio/mpeg"/><link>https://atp.fm/398</link><description><![CDATA[<ul>
+<li>Thank you for all your <a href="https://stjude.org/atp">donations to St. Jude</a>! 💙</li>
+<li>Pre-show: Desk Reconstruction Day
+
+<ul>
+<li><a href="https://www.upliftdesk.com/uplift-v2-standing-desk-v2-or-v2-commercial/">Uplift Desk V2</a> C-frame with <a href="https://www.upliftdesk.com/magnetic-cable-organizing-channel-by-uplift-desk/">magnetic cable channel</a> and <a href="https://www.upliftdesk.com/8-outlet-mountable-surge-protector-uplift-desk/">mountable surge strip</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>John&#8217;s Headphone Update
+
+<ul>
+<li><a href="https://www.amazon.co.uk/dp/B01LZFEVY8/">Correct pad replacements <code>EDT 1770D</code></a></li>
+</ul></li>
+<li>Sony&#8217;s digital vs. plastic-disc profits</li>
+<li>Apple <a href="https://daringfireball.net/linked/2020/09/24/solo-loop-band-swaps">now allows returning only Watch bands</a></li>
+</ul></li>
+<li><a href="https://blog.google/outreach-initiatives/sustainability/our-third-decade-climate-action-realizing-carbon-free-future/">Google&#8217;s Carbon-Free Plans</a></li>
+<li><a href="https://www.theverge.com/2020/8/24/21399611/unity-ipo-game-engine-unreal-competitor-epic-app-store-revenue-profit">Unity&#8217;s IPO filing shows the threat of app stores</a>
+
+<ul>
+<li><a href="https://www.sec.gov/Archives/edgar/data/1810806/000119312520227862/d908875ds1.htm">Actual filing</a></li>
+<li><a href="https://9to5mac.com/2020/08/20/news-publishers-including-wall-street-journal-join-attack-on-app-store-ask-for-apples-cut-to-be-halved/">Wall Street Journal calls for Apple&#8217;s cut to be halved</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2020/8/28/21405140/apple-rejects-facebook-update-30-percent-cut">Apple blocks Facebook update that tells users about Apple&#8217;s 30% cut</a></li>
+<li>Apple Watch <a href="https://support.apple.com/en-us/HT211768">Family Setup</a>
+
+<ul>
+<li><a href="https://www.macrumors.com/how-to/eliminate-distractions-schooltime-apple-watch/">Schooltime</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What&#8217;s the right way for someone who knows filesystems (🛎) to back up a Mac? (via <a href="https://twitter.com/mikepqr/status/1299178102635937792">Mike Lee Williams</a>)
+
+<ul>
+<li><a href="https://bombich.com/">Carbon Copy Cloner</a></li>
+<li><a href="https://shirt-pocket.com/SuperDuper/SuperDuperDescription.html">SuperDuper</a></li>
+</ul></li>
+<li>What&#8217;s the best baby monitor <em>experience</em>? (via <a href="https://twitter.com/karnigyan/status/1299721689165631489">Migirdich Karnigyan</a>)
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B00ECHYTBI/?tag=liismo-20">Infant Optics DXR-8</a><br />
+Note: Modern models do <em>not</em> use USB power input on the receiver, as was stated on the show</li>
+</ul></li>
+<li>Is Marco watching Tesla competition? (via <a href="https://twitter.com/metcalfjohn/status/1298058632106475527">John Metcalf</a>)
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=BAZX9p2oGOg">MKBHD&#8217;s Auto Focus on the Porsche Taycan</a></li>
+<li><a href="https://www.youtube.com/watch?v=zAo7IsZngDo">Rory Reid on the Polestar 2</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: How does USB-C even work?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="https://customer.io/atp">Customer.io</a></li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Desks, cables, game discs, app stores, and first impressions of Apple Watch Family Setup.</itunes:subtitle></item><item><guid isPermaLink="false">ri1oczv0te5mvvf0</guid><pubDate>Thu, 24 Sep 2020 15:25:38 +0000</pubDate><title>397: We Can't Wait To See What You Do To It</title><itunes:title>We Can't Wait To See What You Do To It</itunes:title><itunes:episode>397</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp397.mp3" length="64295157" type="audio/mpeg"/><link>https://atp.fm/397</link><description><![CDATA[<ul>
+<li>Please join ATP in <a href="https://stjude.org/atp">donating to St. Jude</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=UEuktMKaEq0&amp;">Podcastathon 2020 Video</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=UEuktMKaEq0&amp;t=5782s">Casey&#8217;s appearance</a></li>
+<li><a href="https://youtu.be/UEuktMKaEq0?t=23557">Siracusa&#8217;s appearance</a></li>
+</ul></li>
+</ul></li>
+<li>Pre-show:
+
+<ul>
+<li><a href="https://www.amazon.com/dp/B07H48TGYM/?tag=marcoorg-20">Beyerdynamic DT 770 Pro, 250Ω</a></li>
+<li>Light color temperatures
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B076HKH373/?tag=liismo-20">LED corn bulb</a></li>
+<li><a href="https://www.stalmanpodcast.com/95">The Stalman Podcast #95: Time Flies Apple Event</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=m-s-DnOi_Rw&amp;feature=youtu.be">Video</a></li>
+</ul></li>
+</ul></li>
+<li><a href="http://drops.caseyliss.com/0MlmlX">Casey&#8217;s electric meter lamp</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.playstation.com/en-us/ps5/">PlayStation 5</a> Digital Edition pricing
+
+<ul>
+<li><a href="https://twitter.com/siracusa/status/1307012958996881408">John&#8217;s savior</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2020/9/22/21451624/xbox-one-x-amazon-series-x-preorder-accident">Xbox One X sales up 747% at Amazon</a></li>
+<li><a href="https://www.apple.com/shop/buy-watch/apple-watch/solo-loop">Solo Loop</a> inversion
+
+<ul>
+<li><a href="https://daringfireball.net/2020/09/more_adventures_in_solo_loop_sizing">Gruber&#8217;s mapping onto traditional sports bands</a></li>
+<li><a href="https://www.youtube.com/watch?v=LoUSO_Mj1TQ">Apollo Robbins</a></li>
+</ul></li>
+<li>Apple Watch power adapters</li>
+<li><a href="https://www.publicspace.net/BoringOldMenuBar/">Boring Old Menu Bar</a></li>
+<li>Deleting APFS snapshots using <a href="https://www.titanium-software.fr/en/index.html">OnyX</a></li>
+<li><a href="https://www.imore.com/apple-one-will-play-nicely-different-icloud-and-apple-music-logins">Apple One and varying logins</a></li>
+<li>Some confusion about Apple Watch Sport Band sizes? (via <a href="https://twitter.com/ryan_fung/status/1306913163984531457">Ryan Fung</a>)
+
+<ul>
+<li><a href="https://www.macrumors.com/2020/09/21/entire-apple-watch-returned-solo-band-bad-fit/">Apple Watch band returns</a></li>
+</ul></li>
+<li><a href="https://twitter.com/FortniteStatus/status/1304161432888643584">Epic and Sign In with Apple</a></li>
+<li>Car demonstration videos
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=yYAw79386WI">Spinning Levers: How a Transmission Works (1936)</a></li>
+<li><a href="https://www.youtube.com/watch?v=yYAw79386WI">Around the Corner: How Differential Steering Works (1937)</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.polygon.com/2020/9/21/21448884/microsoft-buys-bethesda-zenimax-xbox-game-studios-starfield-fallout-doom">Microsoft Acquires ZeniMax</a>
+
+<ul>
+<li><a href="https://www.polygon.com/2018/1/29/16930892/xbox-one-exclusive-games-analysis-microsoft">January 2018: Xbox One has a serious exclusive games problem</a>
+
+<ul>
+<li><a href="https://twitter.com/plante/status/1308038937135460353">Chris Plante&#8217;s observation</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2020/9/21/21449121/microsoft-bethesda-ps5-playstation-5-xbox-series-x-s-consoles-exclusives">Future exclusives will be &#8220;case-by-case&#8221;</a></li>
+</ul></li>
+<li><a href="https://twitter.com/_DavidSmith/status/1306358410493992961">Widgetsmith</a> and home screen customization
+
+<ul>
+<li><a href="https://www.tiktok.com/@katamogz/video/6873862268413545730">Example TikTok</a></li>
+<li><a href="https://www.relay.fm/radar/201">Under the Radar #201</a> (if you see a 404, the episode has not been released yet)</li>
+<li><a href="https://panic.com/blog/candybar-mountain-lion-and-beyond/">CandyBar</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microsoft_Plus!">Microsoft Plus!</a></li>
+<li><a href="https://github.com/matryer/bitbar">BitBar</a></li>
+<li><a href="https://512pixels.net/2020/09/on-widget-shaming/">On Widget Shaming</a></li>
+</ul></li>
+<li>Post-show: <a href="http://www.attackoftheblog.net/2018/04/windows-31-hot-dog-stand-theme.html">Hotdog Stand</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://hey.com/?utm=atp">Hey.com</a>: Email shouldn’t be overwhelming. Start your free 14-day trial.</li>
+<li><a href="https://www.backblaze.com/landing/podcast-atp.html">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day trial today.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>We should all have the freedom to make our phones look like Hotdog Stand.</itunes:subtitle></item><item><guid isPermaLink="false">dwtwbuhqqlq1q2rh</guid><pubDate>Thu, 17 Sep 2020 19:16:36 +0000</pubDate><title>396: The World of Moving</title><itunes:title>The World of Moving</itunes:title><itunes:episode>396</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:26:35</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp396.mp3" length="70919339" type="audio/mpeg"/><link>https://atp.fm/396</link><description><![CDATA[<ul>
+<li>Please join ATP in <a href="https://stjude.org/atp">donating to St. Jude</a></li>
+<li>Pre-show:
+
+<ul>
+<li>Sleepy Shirts</li>
+<li>Headphone cups
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B000AJIF4E/?tag=siracusa-20">Sony MDR-7506</a></li>
+<li><a href="http://www.amazon.com/dp/B07MK6B9V4/?tag=siracusa-20">John&#8217;s new pads</a></li>
+<li><a href="https://www.amazon.com/dp/B07H48TGYM/?tag=marcoorg-20">Beyerdynamic DT 770 Pro, 250-ohm</a></li>
+<li><a href="https://www.amazon.de/dp/B01LZFEVY8/?th=1">Beyerdynamic EDT 1770D pads</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://blog.playstation.com/2020/09/16/playstation-5-launches-in-november-starting-at-399-for-ps5-digital-edition-and-499-for-ps5-with-ultra-hd-blu-ray-disc-drive/">PlayStation 5 pricing and availability</a></li>
+<li><a href="https://www.theverge.com/2020/9/16/21438782/sony-ps5-size-specs-dimensions-console-huge-large-big">PlayStation 5 sizes</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-events/september-2020/">Apple Event: Time Flies</a>
+
+<ul>
+<li><a href="https://www.apple.com/apple-watch-series-6/">Apple Watch Series 6</a>
+
+<ul>
+<li><a href="https://www.apple.com/newsroom/2020/09/apple-watch-series-6-delivers-breakthrough-wellness-and-fitness-capabilities/">U1 &amp; Ultra-wideband</a></li>
+<li><a href="https://support.apple.com/en-us/HT211027">Measuring Your Blood Oxygen</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=4pZZ5AEEmek">Technology Connections: How pulse oximeters work</a></li>
+<li><a href="http://www.amazon.com/dp/B086KZ8JVH/?tag=liismo-20">Casey&#8217;s pulse oximeter</a></li>
+</ul></li>
+</ul></li>
+<li>Bands
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MTP52AM/A/40mm-white-sport-band-regular">Sport Band</a></li>
+<li><a href="https://www.apple.com/shop/product/MUHJ2AM/A/38mm-silver-link-bracelet">Link Bracelet</a></li>
+<li><a href="https://www.apple.com/shop/product/MYNM2AM/A/40mm-white-solo-loop-size-1">Solo Loop</a>
+
+<ul>
+<li><a href="https://store.storeimages.cdn-apple.com/4982/store.apple.com/shop/Catalog/US/Images/bxxd/size-guide.pdf">Sizing PDF</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/shop/product/MY6V2AM/A/40mm-atlantic-blue-braided-solo-loop-size-1">Braided Solo Loop</a></li>
+<li><a href="https://www.apple.com/shop/product/MY9A2AM/A/40mm-black-leather-link-s-m">Leather Link</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/apple-watch-se">Apple Watch SE</a> and <a href="https://www.apple.com/apple-watch-series-3/">Series 3</a></li>
+<li><a href="https://www.apple.com/newsroom/2020/09/apple-extends-the-apple-watch-experience-to-the-entire-family/">Apple Watch Family Setup</a></li>
+<li><a href="https://www.apple.com/apple-fitness-plus/">Apple Fitness+</a>
+
+<ul>
+<li><a href="https://www.onepeloton.com/">Peloton</a></li>
+<li><a href="https://www.beachbodyondemand.com/">Beachbody On Demand</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Multi-level_marketing">Multi-level marketing</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/ipad-10.2/">iPad (8th generation)</a></li>
+<li><a href="https://www.apple.com/ipad-air/">iPad Air</a>
+
+<ul>
+<li><a href="https://twitter.com/markgurman/status/1305876984015122435">Gurman on CPUs</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Surprise! iOS 14 shipped!
+
+<ul>
+<li><a href="https://willhains.com/iOS-version-history">Will Hains&#8217;s Version History Chart</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://doordeck.com/atp">Doordeck</a>: A SaaS solution for smartphone keyless entry that integrates with all existing door-access-control brands.</li>
+<li><a href="https://stripe.com/checkout">Stripe Checkout</a>: A prebuilt, hosted payment page optimized for conversion, as seen in our Membership system. Stripe built Checkout so we didn&#8217;t have to.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Apple's event unveiling the Apple Watch Series 6, new iPad and iPad Air, Family Setup, and Fitness+.</itunes:subtitle></item><item><guid isPermaLink="false">c1ptv0pyq3fgrk1s</guid><pubDate>Thu, 10 Sep 2020 19:45:45 +0000</pubDate><title>395: Receive Their Honking</title><itunes:title>Receive Their Honking</itunes:title><itunes:episode>395</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp395.mp3" length="63903580" type="audio/mpeg"/><link>https://atp.fm/395</link><description><![CDATA[<ul>
+<li>Please join ATP in <a href="https://stjude.org/atp">donating to St. Jude</a></li>
+<li>Pre-show:
+
+<ul>
+<li>A heartfelt &#8220;thank you&#8221; from Casey</li>
+<li>Sand running</li>
+<li>Sorry, California</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>GUI method for deleting APFS snapshots
+
+<ul>
+<li>Boot Camp Assistant</li>
+<li><code>tmutil listlocalsnapshots /</code></li>
+<li><a href="https://bombich.com/">Carbon Copy Cloner</a></li>
+</ul></li>
+<li><a href="https://www.xbox.com/en-US/accessories/controllers/elite-wireless-controller-series-2">Xbox Elite Series 2</a> trigger adjustment
+
+<ul>
+<li><a href="https://direct.playstation.com/en-us/accessories/accessory/dualshock4-back-button-attachment.3004784">PS4 back-button attachment</a></li>
+</ul></li>
+<li>Deer apparently are &#8220;opportunistic omnivores&#8221; (via <a href="https://twitter.com/mattmoose21/status/1301708862601469952">Matt Harmon</a>)</li>
+<li><a href="http://www.amazon.com/dp/B07PLY3QBK/?tag=liismo-20">Casey&#8217;s flashlight</a> mini-review
+
+<ul>
+<li><a href="https://www.instagram.com/p/CEz917gpV5S/">Casey&#8217;s photos of his trip</a></li>
+<li><a href="http://blueridgetunnel.org/">Blue Ridge Tunnel</a></li>
+</ul></li>
+<li>Mac Pros and waking from sleep
+
+<ul>
+<li><code>(1554.40.13.0.0 (iBridge: 18.16.12370.5.1,0))</code></li>
+</ul></li>
+<li>Marco&#8217;s least-favorite iOS Mail bug is fixed! 🎉</li>
+<li><a href="https://developer.apple.com/news/?id=84w3e5bm">Apple implementing promised changes to App Reivew</a>
+
+<ul>
+<li><a href="https://developer.apple.com/contact/app-store/?topic=guideline">Suggest changes to guidelines</a></li>
+</ul></li>
+<li>Wait wait, John got a Finder bug fixed! 🎉</li>
+<li><a href="https://tyler.io/surtainly-not/">Surtainly Not: Big Sur menu bar hack</a></li>
+<li>Apple/Epic update
+
+<ul>
+<li><a href="https://twitter.com/EpicGames/status/1303716447831707649">Epic and Sign In with Apple</a>
+
+<ul>
+<li><a href="https://www.epicgames.com/help/en-US/epic-accounts-c74/connect-accounts-c110/how-do-i-retain-access-to-my-epic-games-account-after-sign-in-with-apple-ends-a6894">Epic&#8217;s Instructions</a></li>
+</ul></li>
+<li><a href="https://www.wsj.com/articles/apple-countersues-fortnite-maker-epic-games-seeking-to-halt-in-app-payments-11599592017">Apple Countersues Epic Games</a></li>
+<li><a href="https://twitter.com/migueldeicaza/status/1303481452600987651">Epic turned off IAP in Fortnite</a></li>
+<li><a href="https://www.courtlistener.com/recap/gov.uscourts.cand.364265/gov.uscourts.cand.364265.66.0_1.pdf">Court document</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://sixcolors.com/link/2020/09/apple-fall-event-happening-september-15/">Apple Event next week</a>
+
+<ul>
+<li><a href="https://www.relay.fm/clockwise/363">Clockwise #363: No Guinea Pig Applications</a></li>
+<li><a href="https://www.relay.fm/radar/199">Under the Radar #199: Spending Dan Riccio&#8217;s 2020 Battery Surplus</a></li>
+</ul></li>
+<li>Game consoles and the future of Apple TV
+
+<ul>
+<li><a href="https://www.theverge.com/2020/6/11/21212989/ps5-playstation-5-console-announcement-design-hardware-specs-sony">PS5 hardware reveal</a></li>
+<li><a href="https://www.polygon.com/xbox-series-x/2020/9/9/21271155/xbox-series-x-s-release-date-microsoft-announcement">Xbox Series X</a> and <a href="https://www.polygon.com/2020/9/8/21426993/xbox-series-s-price-confirmed-microsoft-leak">S</a></li>
+</ul></li>
+<li>Post-show Neutral: John teaches his son to drive</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://link.chtbl.com/bringbackbronco?sid=podcast.accidentaltechpodcast">Bring Back Bronco</a>: A new podcast about the rise, fall, and rebirth of the Ford Bronco.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for ad-free episodes and our early-release, unedited &#8220;bootleg&#8221; feed!</p>
+]]></description><itunes:subtitle>Hopes and dreams for next week's event, Epic's Sign In With Apple problem, and driving lessons from John.</itunes:subtitle></item><item><guid isPermaLink="false">muv2bwjcehl2szr0</guid><pubDate>Thu, 03 Sep 2020 20:58:36 +0000</pubDate><title>394: The Price of an ATP Sticker</title><itunes:title>The Price of an ATP Sticker</itunes:title><itunes:episode>394</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp394.mp3" length="57565410" type="audio/mpeg"/><link>https://atp.fm/394</link><description><![CDATA[<ul>
+<li>Please join us in <a href="https://tiltify.com/@relay-fm/relay-fm-for-st-jude">donating to St. Jude</a></li>
+<li>Follow-up:
+
+<ul>
+<li>John&#8217;s Mac Pro
+
+<ul>
+<li>Reviving a data-only volume</li>
+<li>bridgeOS updates</li>
+<li>Other Mac Pro Woes
+
+<ul>
+<li><a href="https://twitter.com/emmets11/status/1299171376696381441">John Sandilands</a></li>
+<li><a href="https://twitter.com/paulcolton/status/1299378913726980096">Paul Colton</a></li>
+<li><a href="https://twitter.com/Jobvo/status/1300380723568873474">Job</a></li>
+</ul></li>
+<li>Non-Mac-Pro Woes
+
+<ul>
+<li>Hagen Terschüren</li>
+<li><a href="https://twitter.com/DeusPigritae/status/1299387842704146443">Leeward</a></li>
+</ul></li>
+</ul></li>
+<li>Roland Månsson on Mac hardware tests
+
+<ul>
+<li><code>⌥D</code> and then <code>⌘E</code></li>
+<li><a href="https://support.apple.com/en-us/HT202731">Apple support article</a></li>
+</ul></li>
+<li><a href="https://eclecticlight.co/lockrattler-systhist/">SilentKnight</a></li>
+<li><code>/usr/libexec/remotectl dumpstate</code> (via <a href="https://twitter.com/paulgalow/status/1299665235759034368">Paul Galow</a>)</li>
+<li>Recycling cables
+
+<ul>
+<li><a href="https://www.apple.com/recycling/nationalservices/">Apple recycling programs</a></li>
+<li><a href="https://www.bestbuy.com/site/services/recycling/pcmcat149900050025.c?id=pcmcat149900050025">Best Buy recycling</a></li>
+</ul></li>
+<li><a href="https://www.ign.com/articles/2017/09/18/fortnite-accidentally-featured-ps4-xbox-one-cross-platform-play-this-weekend">Fortnite &#8220;Accidentally&#8221; Enables Cross-Play</a> (via <a href="https://twitter.com/djghostmare/status/1299162766406807553">DJ Ghostmare</a>)</li>
+<li><a href="https://www.govtrack.us/congress/bills/116/hr2683">US Bill for Unsubscribing to services</a> (via <a href="https://twitter.com/The_Dogcow/status/1299203141540478976">Clarus the Dogcow</a>)</li>
+<li><a href="https://www.theverge.com/2020/8/28/21406013/apple-epic-games-fortnite-developer-account-terminated-no-longer-available">Epic Games&#8217;s developer is terminated</a></li>
+</ul></li>
+<li>Marco&#8217;s <a href="https://synology.com/">Synology</a>
+
+<ul>
+<li>(Ours are <a href="https://www.storagereview.com/review/synology-ds1813-nas-review">DS1813+s</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Standard_RAID_levels#RAID_1">RAID 1</a></li>
+<li><a href="https://www.amazon.com/dp/B07JQ2F2WG/?tag=marcoorg-20">7.68&#160;TB SSD</a> and <a href="https://www.amazon.com/dp/B07CQ6C4MW/?tag=marcoorg-20">dual enclosure</a></li>
+<li><a href="https://starport75.com/podcast">Starport75</a></li>
+<li><a href="https://www.transintl.com/product/pro-caddy-v-new-mac-pro-2019-ten-drives-10-x-2-5-ssd/">Ten internal SSDs for your 2019 Mac Pro</a>
+
+<ul>
+<li><a href="https://www.transintl.com/product-category/mac-enhancements/pro-caddy-v-new-mac-pro-internal-storage/">More Mac Pro internal drive brackets from the same company</a></li>
+</ul></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How much disk space is left on my APFS-based storage‽ (via Ron Olson)
+
+<ul>
+<li><code>tmutil listlocalsnapshots</code></li>
+</ul></li>
+<li>Is the Mac menu bar going to become window chrome? (via Michael Grossmann)</li>
+<li>Does Marco have a target loudness? (via <a href="https://twitter.com/JakeBY1/status/1298374009957093378">Jake Bennett-Young</a>)</li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Marco&#8217;s Running</li>
+<li><a href="http://www.ricearoni.com/products/Rice-A-Roni/Creamy_Four_Cheese">Cooking with Casey</a> (oh no)</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/atp">Eero</a>: We’re asking a lot of our Wi-Fi. eero can help yours do more. Enter code <strong>ATP</strong> at checkout to get free next-day shipping.</li>
+<li><a href="https://www.cottonbureau.com/">Cotton Bureau</a>: Use the code <strong>ATP</strong> for 10% off anything on the site until September 10. One random buyer using that code will receive <a href="https://www.xbox.com/en-US/accessories/controllers/elite-wireless-controller-series-2">the same gift</a> that John did.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for an ad-free feed and our unedited &#8220;bootleg&#8221; feed, released about a day before the edited version of the show!</p>
+]]></description><itunes:subtitle>Supporting a good cause, replacing a Synology, an unexpected hardware review, and Cooking with Casey: The Virginia Treat.</itunes:subtitle></item><item><guid isPermaLink="false">whfock0tzjm1a1vf</guid><pubDate>Thu, 27 Aug 2020 17:44:46 +0000</pubDate><title>393: We’re the Bit Company</title><itunes:title>We’re the Bit Company</itunes:title><itunes:episode>393</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:41:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp393.mp3" length="77552843" type="audio/mpeg"/><link>https://atp.fm/393</link><description><![CDATA[<ul>
+<li>Black. Lives. Matter.</li>
+<li>Follow-up:
+
+<ul>
+<li>Bump starts and heel/toe</li>
+<li>Design resources for developers
+
+<ul>
+<li><a href="https://reddit.com/r/UI_Design"><code>/r/UI_Design</code></a></li>
+<li><a href="https://refactoringui.com/">Refactoring UI</a></li>
+</ul></li>
+<li>Fortnite/Epic
+
+<ul>
+<li>&#8220;Seasons&#8221;, and Chapter 2 Season 4
+
+<ul>
+<li><a href="https://twitter.com/TimSweeneyEpic/status/1298740814986858496">Tim Sweeney&#8217;s tweet</a></li>
+</ul></li>
+<li>Cross-play won&#8217;t work anymore (via <a href="https://www.theverge.com/2020/8/26/21402547/fortnite-epic-games-apple-ios-macos-two-different-games">The Verge</a>)</li>
+<li>Corporate Relationship Management
+
+<ul>
+<li><a href="https://fortniteintel.com/microsoft-says-they-are-working-with-epic-on-possible-fortnite-cross-play-for-xbox-one/641/">Microsoft on Cross-Play</a></li>
+<li><a href="https://www.theverge.com/2018/9/26/17905382/fortnite-ps4-cross-play-sony-console-wars">Sony on Cross-Play</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2020/08/23/microsoft-supports-epic-games-vs-apple/">Microsoft weighs in</a></li>
+<li><a href="https://www.courtlistener.com/docket/17442392/48/epic-games-inc-v-apple-inc/">Judge&#8217;s ruling</a>
+
+<ul>
+<li><a href="https://twitter.com/sarahjeong/status/1298031302357082112">Sarah Jeong&#8217;s tweet thread</a></li>
+<li><a href="https://daringfireball.net/linked/2020/08/24/epic-apple-zoom">John Gruber&#8217;s take</a></li>
+<li><a href="https://www.theverge.com/2020/8/25/21400240/epic-apple-ruling-unreal-engine-fortnite-temporary-restraining-order">The Verge&#8217;s coverage</a></li>
+</ul></li>
+</ul></li>
+</ul></li>
+<li>Apple&#8217;s gross and greedy behavior
+
+<ul>
+<li><a href="https://arstechnica.com/information-technology/2009/02/the-once-and-future-e-book/">The Once and Future e-book</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How much of the macOS reviews of yore changed during the writing process? (via <a href="https://twitter.com/jg_andrews/status/1285195918090928133">James Andrews</a>)</li>
+<li>What do we use to filter spam? (via Michael Boyle)</li>
+<li>How should we store our older cables? (via Chris Anderson)</li>
+</ul></li>
+<li>Post-show: John&#8217;s Mac Pro Tale of Woe</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://www.backblaze.com/landing/podcast-atp.html">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day trial today.</li>
+<li><a href="https://mintmobile.com/atp">Mint Mobile</a>: Get your new wireless plan for just $15/month with free shipping.</li>
+</ul>
+
+<p><a href="https://atp.fm/join">Become a member</a> for sponsor-free episodes and our &#8220;bootleg&#8221; feed released about a day before the edited version of the show!</p>
+]]></description><itunes:subtitle>Apple's continued battle with Epic, antitrust concerns, and trouble in John's computing paradise.</itunes:subtitle></item><item><guid isPermaLink="false">nwfurvloakrwntjv</guid><pubDate>Thu, 20 Aug 2020 20:10:19 +0000</pubDate><title>392: Corporate Relationship Counselor</title><itunes:title>Corporate Relationship Counselor</itunes:title><itunes:episode>392</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:30:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp392.mp3" length="72918403" type="audio/mpeg"/><link>https://atp.fm/392</link><description><![CDATA[<ul>
+<li>Pre-show: Marco spends Casey&#8217;s money
+
+<ul>
+<li><a href="https://danclarkaudio.com/headphones-22/aeon/aeon-flow-2-closed.html">Marco&#8217;s headphones</a></li>
+<li><a href="http://www.amazon.com/dp/B07PLY3QBK/?tag=marcoorg-20">Marco&#8217;s flashlight</a></li>
+<li><a href="https://www.youtube.com/watch?v=paf0B_zidZk&amp;t=5m20s">Video review by &#8220;SensiblePrepper&#8221;</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>John&#8217;s <a href="https://en.wikipedia.org/wiki/Cicada">🦗s</a></li>
+<li><a href="https://seekingalpha.com/news/3595698-apple-leaks-reveal-upcoming-product-launch-dates">Apple&#8217;s fall-event-dates rumor</a> is already wrong</li>
+<li><a href="https://twitter.com/NateMeyvis/status/1294434737201840129">Correction about Siracusa&#8217;s &#8220;Aristotle&#8221; quote</a> (Twitter thread)
+
+<ul>
+<li><a href="https://www.cambridge.org/core/journals/journal-of-hellenic-studies/article/apology-30b-24-socrates-money-and-the-grammar-of/6617F1595A5DA2B156067B93F36F2F21">Apology 30b 2-4 interpretation</a></li>
+</ul></li>
+<li><a href="https://www.youtube.com/watch?v=9E5M9qz4naQ">Big Sur touch screen gestures on Lenovo X250</a></li>
+<li><a href="https://twitter.com/morrick/status/1294316285417988097">Big Sur menu bar icon spacing</a></li>
+<li>John&#8217;s mouse woes continue</li>
+</ul></li>
+<li><a href="https://twitter.com/EpicNewsroom/status/1295430127455596544">Epic and Apple are still tusslin&#8217;</a>
+
+<ul>
+<li><a href="https://cdn2.unrealengine.com/epic-v-apple-8-17-20-768927327.pdf">Motion for Temporary Restraining Order</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Unreal_Engine">Unreal Engine</a></li>
+<li><a href="http://blog.charliemonroe.net/a-day-without-business/">Charlie Monroe</a></li>
+<li><a href="https://dithering.fm/">Dithering</a></li>
+<li><a href="https://www.relay.fm/radar/198">Under the Radar #198: Store Wars</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li><em>Special thanks to Brendon Reyell for creating <a href="https://askatp.fm"><code>askatp.fm</code></a></em></li>
+<li>Why doesn&#8217;t macOS let you place your windows <em>just so</em>? (via Nathaniel Cohen)</li>
+<li>How does a developer with no design skills get better at design? (via Mike Milinazzo)
+
+<ul>
+<li><a href="https://developer.apple.com/design/human-interface-guidelines/ios/">iOS Human Interface Guidelines</a></li>
+</ul></li>
+<li>Where does one start in the switch Windows → Mac? (via <a href="https://twitter.com/PulseTsar/status/1291014064102088706">A. Krishna Rao</a>)
+
+<ul>
+<li><a href="https://tumblr.caseyliss.com/tagged/switch/chrono">Casey and Marco argue about Mac vs. PC in a prior life</a></li>
+<li><a href="https://support.apple.com/en-us/HT201236">Mac keyboard shortcuts</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show <a href="https://neutral.fm/">Neutral</a>: How does one drive a stick?
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Gordon_Murray_Automotive_T.50">Gordon Murray Automotive T.50</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://buyraycon.com/accidentaltech">Raycon</a>: The next wave in wireless audio. Get 15% off with code <strong>ACCIDENT15</strong>.</li>
+<li><a href="https://hey.com/?utm=atp">Hey.com</a>: Email shouldn’t be overwhelming. Start your free 14-day trial.</li>
+</ul>
+]]></description><itunes:subtitle>Spending Casey's money, driving stick, and the continuing battle between Epic and Apple.</itunes:subtitle></item><item><guid isPermaLink="false">dwhzz3e4ufb6cduy</guid><pubDate>Fri, 14 Aug 2020 16:08:23 +0000</pubDate><title>391: Worse in Stupid Ways</title><itunes:title>Worse in Stupid Ways</itunes:title><itunes:episode>391</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp391.mp3" length="62874078" type="audio/mpeg"/><link>https://atp.fm/391</link><description><![CDATA[<ul>
+<li>Follow-up:
+
+<ul>
+<li>Tim Cook does <a href="https://www.cnbc.com/2016/08/24/apples-tim-cook-has-spread-his-political-money-to-both-sides-of-the-aisle.html">play both sides of the campaign-donation game</a></li>
+<li>Big Sur Beta 4 tweaks
+
+<ul>
+<li><a href="https://9to5mac.com/2020/08/05/macos-11-big-sur-disable-desktop-tinting/">&#8220;Wallpaper Tinting in Windows&#8221;</a></li>
+<li>Energy Saver Slider</li>
+</ul></li>
+<li>Single-shot Disabling Live Photos (via <a href="https://twitter.com/itisJames/status/1292575712180936706">James Cocker</a>)</li>
+<li><a href="https://developer.apple.com/documentation/xcode/allowing_apps_and_websites_to_link_to_your_content/preparing_your_app_to_be_the_default_browser_or_email_client">Preparing Your App to be the Default Browser or Email Client</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2020/08/phil-schiller-advances-to-apple-fellow/">Phil Schiller advances to Apple Fellow</a>
+
+<ul>
+<li><a href="https://atp.fm/317">ATP Appearance</a></li>
+<li><a href="https://marco.org/2011/02/04/ode-to-the-app-review-team">Ode to the App Review team</a></li>
+<li><a href="https://apple.fandom.com/wiki/Apple_Fellow">Apple Fellows</a></li>
+</ul></li>
+<li><a href="https://daringfireball.net/linked/2020/08/04/27-inch-imac-update">New iMacs</a>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2020/08/last-hurrah-imacs-get-intel-processor-upgrade-all-ssd-storage-t2-chip/">Jason Snell&#8217;s take</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2020/8/13/21366259/epic-fortnite-vbucks-mega-drop-discount-iphone-android">Epic declares war on Apple</a>
+
+<ul>
+<li><a href="https://www.theverge.com/2020/8/13/21366438/apple-fortnite-ios-app-store-violations-epic-payments">Apple boots Fortnite off the App Store</a></li>
+<li><a href="https://www.youtube.com/watch?v=euiSHuaw6Q4&amp;feature=youtu.be">Nineteen Eighty-Fortnite</a></li>
+<li><a href="https://www.theverge.com/2020/8/13/21368079/fortnite-epic-android-banned-google-play-app-store-rule-violation">Google boots Fortnite off the Google Play Store</a></li>
+<li><a href="https://cdn2.unrealengine.com/apple-complaint-734589783.pdf">Epic&#8217;s Lawsuit</a></li>
+<li><a href="https://dithering.fm/">Dithering</a></li>
+<li><a href="https://hypercritical.co/2020/06/20/the-art-of-the-possible">The Art of the Possible</a></li>
+</ul></li>
+<li><a href="https://www.theverge.com/2020/8/6/21357771/apple-cloud-gaming-microsoft-xcloud-google-stadia-ios-app-store-guidelines-violations">Apple nails the coffin shut</a> on <a href="https://www.xbox.com/en-US/xbox-game-streaming/project-xcloud">xCloud</a> and <a href="https://stadia.google.com/">Stadia</a>
+
+<ul>
+<li><a href="https://atp.fm/320">Previously on ATP</a></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li><a href="https://neutral.fm/">Neutral</a>: What car would John buy next?</li>
+<li>Casey&#8217;s doomed to get a dog</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="https://mackweldon.com/atppodcast">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+</ul>
+]]></description><itunes:subtitle>Epic goes to war with the App Store, Apple vs. game-streaming, and an ode to most of Phil Schiller's work.</itunes:subtitle></item><item><guid isPermaLink="false">cc1xodfwclo1vjdv</guid><pubDate>Mon, 03 Aug 2020 14:00:00 +0000</pubDate><title>390: I Invented This Anti-Pattern</title><itunes:title>I Invented This Anti-Pattern</itunes:title><itunes:episode>390</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp390.mp3" length="57570373" type="audio/mpeg"/><link>https://atp.fm/390</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://en.wikipedia.org/wiki/Cable_tie">Zip ties</a> vs. Velcro cable ties
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B008F28WB4/?tag=marcoorg-20">Monoprice 106463 cable ties</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.apple.com/public-policy-advocacy/">Apple&#8217;s Public Policy Advocacy</a> (via <a href="https://twitter.com/kylesethgray">Kyles the Gray</a>)</li>
+<li>macOS Catalina 10.15.6 can read Big Sur APFS volumes (via <a href="https://twitter.com/olebegemann/status/1286239719840505861">Ole Begemann</a>)</li>
+</ul></li>
+<li>Would we distribute our iOS apps outside the App Store? (via Wade Tregaskis)</li>
+<li><a href="https://www.hey.com/">HEY</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How do we move data between computers? (Yes, again.) (via Jon Aumann)
+
+<ul>
+<li><a href="https://www.caseyliss.com/2019/10/8/brew-bundle">Casey on Homebrew <code>bundle</code></a></li>
+</ul></li>
+<li>Will iPhone-only apps be rotated appropriately for usage on macOS/iPad OS? (via John Demco)</li>
+<li>How does John &#8220;back up&#8221; the <span style="text-decoration: line-through">junk</span> valuable artifacts in his attic? (via John Larson)</li>
+</ul></li>
+<li>Post-show: John&#8217;s incorrect photo-taking preferences</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: We&#8217;re asking a lot of our Wi-Fi. eero can help yours do more. Enter code <strong>ATP</strong> at checkout to get free next-day shipping.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://bombas.com/atp">Bombas</a>: The most comfortable socks in the history of feet. Give a pair when you buy a pair, and get 20% off your first purchase.</li>
+</ul>
+]]></description><itunes:subtitle>Whether we'd distribute our apps outside of the App Store, a deep dive on the Hey email service, and John's true feelings about our Live Photos.</itunes:subtitle></item><item><guid isPermaLink="false">serargh6ndnfsmjq</guid><pubDate>Thu, 30 Jul 2020 19:11:25 +0000</pubDate><title>389: One Branch Leads to Yes</title><itunes:title>One Branch Leads to Yes</itunes:title><itunes:episode>389</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:42:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp389.mp3" length="77972322" type="audio/mpeg"/><link>https://atp.fm/389</link><description><![CDATA[<ul>
+<li>Pre-show:
+
+<ul>
+<li>Working on Stuff that Doesn&#8217;t Matter
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Capability_Maturity_Model_Integration">CMMI</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Waterfall_model">Waterfall</a></li>
+</ul></li>
+<li><a href="https://dithering.fm/">Dithering</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://twitter.com/carlosefonseca/status/1286993676162531329/photo/1">Mac waking up for Reminders</a></li>
+<li><a href="https://www.tomshardware.com/news/intel-announces-delay-to-7nm-processors-now-one-year-behind-expectations">Intel is… not in a good place.</a></li>
+</ul></li>
+<li><a href="https://www.youtube.com/watch?v=T0gJYFX8WVc">Tech CEO Testimony to Congress</a>
+
+<ul>
+<li><a href="https://threadreaderapp.com/thread/1288151223028322304.html">Peter Steinberger on app entitlements</a></li>
+<li><a href="https://twitter.com/markgurman/status/1288621178945323010">Amazon Prime Video deal email</a></li>
+</ul></li>
+<li><a href="https://seekingalpha.com/news/3595698-apple-leaks-reveal-upcoming-product-launch-dates">Rumored Apple product-launch dates</a></li>
+<li>Big Sur&#8217;s New Look
+
+<ul>
+<li>Active Window
+
+<ul>
+<li><a href="http://hypercritical.co/atp/images/big-sur/dark-mode-active-window.png">Dark Mode Active Window</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/active-window-with-toolbar.png">Active Window With Toolbar</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/active-window.png">Active Window</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/active-window-separate.png">Active Window Separated</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/system-6-active-window.png">System 6 Active Window</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/system-7-active-window.jpg">System 7 Active Window</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/mac-os-9-active-window.png">Mac OS 9 Active Window</a></li>
+</ul></li>
+<li>Sliders
+
+<ul>
+<li><a href="http://hypercritical.co/atp/images/big-sur/slider.png">Slider</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/system-preferences-with-slider.png">System Preferences With Slider</a></li>
+</ul></li>
+<li>Battery
+
+<ul>
+<li><a href="http://hypercritical.co/atp/images/big-sur/battery-before-beta-3.png">Battery before beta 3</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/battery.png">Battery starting on beta 3</a></li>
+</ul></li>
+<li>Icons
+
+<ul>
+<li><a href="http://hypercritical.co/atp/images/big-sur/app-icons-1.png">App Icons 1</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/app-icons-2.png">App Icons 2</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/utility-apps.png">Utility App Icons</a></li>
+<li><a href="https://www.relay.fm/upgrade/308">Upgrade #308: The Adventures of Dr. Icon</a></li>
+</ul></li>
+<li>Toolbars
+
+<ul>
+<li><a href="https://developer.apple.com/design/human-interface-guidelines/sf-symbols/overview/">SF Symbols</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/toolbar-1.png">Toolbar 1</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/toolbar-2.png">Toolbar 2</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/toolbar-3.png">Toolbar 3</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/toolbar-hover.png">Toolbar Hover</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/customize-toolbar.png">Customize Toolbar</a></li>
+</ul></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/control-center.png">Control Center</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/alert.png">Alert</a></li>
+<li>Menu Bar
+
+<ul>
+<li><a href="http://hypercritical.co/atp/images/big-sur/menu-bar.png">Menu Bar</a></li>
+<li><a href="http://hypercritical.co/atp/images/big-sur/giant-menu-bar.png">Giant Menu Bar</a></li>
+<li><a href="https://twitter.com/siracusa/status/1276230169255165957">Animated GIF</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Marco accidentally reincarnated <a href="https://neutral.fm/">Neutral</a> for fifteen minutes</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://hey.com/?utm=atp">Hey</a>: Email shouldn&#8217;t be overwhelming. Start your free 14-day trial.</li>
+<li><a href="http://cryptopro.app/?r=ATP">Crypto Pro</a>: All-in-one cryptocurrency portfolio app. Get a free month of Premium with code <strong>ATP</strong>.</li>
+</ul>
+]]></description><itunes:subtitle>For some reason, nobody asked us to testify before Congress.</itunes:subtitle></item><item><guid isPermaLink="false">c1n3b1bvsknnywpn</guid><pubDate>Thu, 23 Jul 2020 19:43:25 +0000</pubDate><title>388: Riding the Autocomplete</title><itunes:title>Riding the Autocomplete</itunes:title><itunes:episode>388</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:23:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp388.mp3" length="69135944" type="audio/mpeg"/><link>https://atp.fm/388</link><description><![CDATA[<ul>
+<li><strong><a href="https://atp.fm/join">ATP Membership</a> Update!!</strong><br />
+Please consider joining, but we&#8217;re still cool if you don&#8217;t. 💙</li>
+<li>Pre-show: <a href="http://www.amazon.com/dp/B0788STCFR/?tag=marcoorg-20">Seltzer</a>: 1, Tiff: 0, Marco: 0
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Ideal_gas_law"><code>PV=nRT</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Channellock">Channellock</a></li>
+</ul></li>
+<li>Follow-up: <a href="https://en.wikipedia.org/wiki/Apple_Silicon#Apple_T2">T2</a> and TouchBar from <a href="https://twitter.com/_inside">Gui Rambo</a></li>
+<li>Apple&#8217;s priorities for 🔋/🏋️‍♀️ for Apple Silicon
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Thermal_design_power">TDP</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2020/07/apple-news-launches-new-audio-features-expands-local-news-offerings-for-readers/">Apple News &#8220;Podcast&#8221;</a>
+
+<ul>
+<li><a href="https://i.imgur.com/CwIpcbM.jpg">Marc Jacobs</a></li>
+<li><a href="https://www.nytimes.com/column/the-daily">The Daily</a></li>
+<li><a href="https://anchor.fm/techmeme-ride-home">Techmeme Ride Home</a></li>
+</ul></li>
+<li><a href="https://www.bloomberg.com/news/articles/2020-07-22/softbank-s-chip-company-arm-is-said-to-attract-nvidia-interest">SoftBank is selling ARM to Nvidia?</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/X86-64">x86-64</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Itanium">Itanium</a></li>
+<li><a href="https://en.wikipedia.org/wiki/RISC-V">RISC-V</a></li>
+<li><a href="https://blog.darksky.net/dark-sky-has-a-new-home/">Dark Sky</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2020/07/apple-commits-to-be-100-percent-carbon-neutral-for-its-supply-chain-and-products-by-2030/">Apple To Be 100% Carbon Neutral for Supply Chain &amp; Products by 2030</a>
+
+<ul>
+<li><a href="https://medium.com/@lisapjackson/apples-promise-for-2030-cadc10177595">Lisa Jackson&#8217;s Blog Post</a></li>
+<li><a href="https://www.vogue.com/article/apple-climate-change-carbon-neutral-goals-lisa-jackson-interview?utm_social-type=owned&amp;utm_medium=social&amp;utm_brand=vogue&amp;utm_source=twitter&amp;mbid=social_twitter">Lisa Jackson Vogue Interview</a></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2020/07/22/app-store-commission-study/">Apple says Apple&#8217;s 30% is Great [for Apple]</a></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>If we can go iOS → macOS, can we go macOS → iOS? (via Eduard Rozenberg)</li>
+<li>Will Apple offer CPU options on Apple Silicon powered Macs? (via <a href="https://twitter.com/abcxyz76/status/1282948981727924224">James</a>)</li>
+<li>Do we <em>really</em> know a lot about Obj-C/PHP/Perl/Javascript/Swift/etc? (via <a href="https://twitter.com/Colby_Todisco/status/1282098631974191105">Colby Todisco</a>)</li>
+</ul></li>
+<li>Post-show: Overcast&#8217;s iOS 14 &#8220;roadmap&#8221;</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://hellofresh.com/80atp">Hello Fresh</a>: America’s #1 meal kit. Use code <strong>80atp</strong> to get a total of $80 off, including free shipping on your first box.</li>
+<li><a href="https://mintmobile.com/atp">Mint Mobile</a>: Get your new wireless plan for just $15/month with free shipping.</li>
+<li><a href="https://buyraycon.com/accidentaltech">Raycon</a>: The next wave in wireless audio. Get 15% off with code <strong>ACCIDENT15</strong>.</li>
+</ul>
+]]></description><itunes:subtitle>How many podcasters does it take to open a bottle of seltzer?</itunes:subtitle></item><item><guid isPermaLink="false">vxbndf9smhc4ywdj</guid><pubDate>Thu, 16 Jul 2020 19:43:18 +0000</pubDate><title>387: It Might Not Be as Cool as You Think</title><itunes:title>It Might Not Be as Cool as You Think</itunes:title><itunes:episode>387</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:22:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp387.mp3" length="68603892" type="audio/mpeg"/><link>https://atp.fm/387</link><description><![CDATA[<ul>
+<li><strong><a href="https://atp.fm/join">ATP Membership</a> Update!</strong><br />
+Please consider joining, but we&#8217;re still cool if you don&#8217;t. 💙
+
+<ul>
+<li><a href="https://atp.fm/member">Bootleg feed</a> is live!! Some details:
+
+<ul>
+<li>We may @$*&amp;%ng swear</li>
+<li>No ads, chapters, or audio quality</li>
+<li>Show notes appear for each bootleg once the episode is published</li>
+</ul></li>
+</ul></li>
+<li>Pre-show:
+
+<ul>
+<li>Is FaceID working better with 😷?</li>
+<li>Beta stability</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>🚨 ATP Mugs are <strong>not</strong> dishwasher safe! 🚨
+
+<ul>
+<li><a href="https://twitter.com/walter25/status/1282784212236537857">Pencil holder</a></li>
+</ul></li>
+<li><a href="https://www.usb.org/sites/default/files/2019-09/USB-IF_USB4%20spec%20announcement_FINAL.pdf">USB4 vs. Thunderbolt 4</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/USB4#Data_transfer_modes">Summary on Wikipedia</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2020/07/10/kuo-first-apple-silicon-13-inch-macbook-pro-2020/">ARM Mac rumors</a></li>
+<li>An iPad Pro <em>is</em> an ARM Mac, right?</li>
+<li>Casey&#8217;s nameLiss computers <em>(ugh. –ed.)</em></li>
+</ul></li>
+<li>Casey&#8217;s defense of Big Sur&#8217;s look-and-feel
+
+<ul>
+<li><a href="http://drops.caseyliss.com/mEHz2e">Screenshot of TextEdit</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What is up with Intel, anyway? (via <a href="https://twitter.com/stevieled5/status/1278454071695941637">Steve Lederer</a>)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Die_shrink">Process shrink</a></li>
+<li><a href="https://en.wikipedia.org/wiki/TSMC">TSMC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/X86">x86</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ARM_architecture">ARM</a></li>
+<li><a href="https://en.wikipedia.org/wiki/P.A._Semi">P.A. Semi</a></li>
+</ul></li>
+<li>Could one replace an <strong>actual</strong> computer with an iPad/iPhone, particularly for relatives?</li>
+<li>What on earth is up with the grille on the <a href="https://www.caranddriver.com/bmw/4-series">new 4 series</a>?! (via <a href="https://twitter.com/GavShan/status/1268297781669658624">Gavan Shanley</a>)
+
+<ul>
+<li><a href="https://www.bmwgroup-classic.com/content/dam/grpw/websites/bmwgroup-classic_com/classic-heart/blog/classic-heart_pop-up-layer/2017/BMW-850i/AF-6095-1_2224x1482px.jpg">BMW 850i</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: <a href="https://jalopnik.com/2021-ford-bronco-trim-levels-and-option-packages-explai-1844371574">2021 Ford Bronco</a>
+
+<ul>
+<li><a href="https://www.ford.com/cmslibs/content/dam/brand_ford/en_us/brand/suvs-crossovers/bronco/pdf/21_Bronco_lineup_HR.pdf">Lineup (PDF)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tonka">Tonka</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://fully.com/atp">Fully</a>: Workplace furniture designed for health, flow, and balance.</li>
+<li><a href="https://notion.com/atp">Notion</a>: Stay on task, find what you need, and collaborate efficiently, all in one place. Get 10% off a team plan.</li>
+</ul>
+]]></description><itunes:subtitle>Guess which host likes the Big Sur UI redesign?</itunes:subtitle></item><item><guid isPermaLink="false">m2vhrk84enj2zgs0</guid><pubDate>Thu, 09 Jul 2020 20:32:10 +0000</pubDate><title>386: No More Holes in My House</title><itunes:title>No More Holes in My House</itunes:title><itunes:episode>386</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp386.mp3" length="57859683" type="audio/mpeg"/><link>https://atp.fm/386</link><description><![CDATA[<ul>
+<li><strong><a href="https://atp.fm/join">ATP MEMBERSHIP</a> IS LIVE!!</strong><br />
+Please consider joining, but we&#8217;re still cool if you don&#8217;t. 💙</li>
+<li>Pre-show:
+
+<ul>
+<li>Phisherman Relieph Phund
+
+<ul>
+<li><a href="https://duckduckgo.com/?q=fishman+donut&amp;iax=images&amp;ia=images">Fishman Donut</a></li>
+<li><a href="https://section119.com/products/donut-mask">Marco&#8217;s masks</a></li>
+</ul></li>
+<li><a href="https://www.disneyplus.com/movies/hamilton/3uPmBHWlO6HJ">Hamilton</a> is good. Turns out™.</li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://9to5mac.com/2020/06/24/apple-silicon-macs-new-macos-recovery-options/">No Target Disk Mode on ARM Macs</a>
+
+<ul>
+<li>But <a href="https://sixcolors.com/post/2020/06/macs-with-apple-silicon-will-get-new-refined-boot-and-recovery-mode/">Mac Sharing Mode</a> will replace it</li>
+</ul></li>
+<li>WidgetKit and Third-Party Watch Faces
+
+<ul>
+<li><a href="https://twitter.com/zhuowei/status/1277053429828014080/photo/1"><code>_clockHandRotationEffect</code></a></li>
+</ul></li>
+<li>Unified Memory Architecture &amp; the Mac Pro
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Cache_coherent_interconnect_for_accelerators">Cache Coherent Interconnect for Accelerators</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Heterogeneous_System_Architecture">Heterogeneous System Architecture</a></li>
+</ul></li>
+<li><a href="https://twitter.com/reneritchie/status/1280990374614401025?s=21">We&#8217;re getting Thunderbolt on ARM Macs</a></li>
+</ul></li>
+<li>Apple Platform Unification Part II: ARM Mac Hardware
+
+<ul>
+<li><a href="https://www.relay.fm/upgrade/304">Upgrade #304: Somebody&#8217;s Gotta Do It and It&#8217;s Gonna Be Us</a></li>
+<li><a href="https://sixcolors.com/post/2020/07/what-changes-might-be-coming-to-new-mac-hardware/">What changes might be coming to new Mac hardware</a></li>
+<li><a href="https://sixcolors.com/offsite/2020/07/touch-bar-mend-it-or-end-it/">Touch Bar: Mend It Or End It?</a></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2020/06/apple-reveals-new-developer-technologies-to-foster-the-next-generation-of-apps/">App Store changes</a>
+
+<ul>
+<li><a href="https://techcrunch.com/2020/06/18/interview-apples-schiller-says-position-on-hey-app-is-unchanged-and-no-rules-changes-are-imminent/">Phil Schiller digs his heels in</a></li>
+<li><a href="https://hey.com/apple/path/">Apple, HEY, and the Path Forward</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>How do we handle migration between Macs? (via Jacob Rosin)
+
+<ul>
+<li><a href="https://www.caseyliss.com/2019/10/8/brew-bundle">Casey on Homebrew <code>bundle</code></a></li>
+<li><a href="https://www.caseyliss.com/2016/7/2/new-mac-who-dis">Casey&#8217;s checklist</a></li>
+</ul></li>
+<li>What do our in-home <em>wired</em> networks look like? (via <a href="https://twitter.com/franckhertz/status/1269641099410358272">Franck Hertz</a>)
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B013J7OBUU/?tag=liismo-20">MoCA Bridge</a></li>
+</ul></li>
+<li>What&#8217;s the best unsung feature from WWDC? (via <a href="https://twitter.com/JPEGuin/status/1276868079985790978">Shihab</a>)
+
+<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2020/10640/">Design for the iPadOS pointer</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: The future of Vignette</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://bombas.com/atp">Bombas</a>: Bombas makes the most comfortable socks in the history of feet.</li>
+</ul>
+]]></description><itunes:subtitle>More from WWDC, ARM Mac hardware possibilities, the court of app review, and an imminent sunset in Virginia.</itunes:subtitle></item><item><guid isPermaLink="false">yv9yqu8yb2nvqktm</guid><pubDate>Thu, 02 Jul 2020 21:59:04 +0000</pubDate><title>385: Temporal Smear</title><itunes:title>Temporal Smear</itunes:title><itunes:episode>385</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:28:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp385.mp3" length="71899477" type="audio/mpeg"/><link>https://atp.fm/385</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://twitter.com/MrBeastYT/status/1278327137586614274">hey_z_ree</a></li>
+<li>Bootleg-feed update
+
+<ul>
+<li><strong><a href="https://atp.fm/join">ATP MEMBERSHIP</a> IS LIVE!!</strong><br />
+Please consider joining, but we&#8217;re still cool if you don&#8217;t. 💙</li>
+<li><a href="https://rogueamoeba.com/audiohijack/">Audio Hijack</a></li>
+<li><a href="https://www.iis.fraunhofer.de/en/ff/amm/consumer-electronics/mp3.html">Fraunhofer MP3 Licensing</a></li>
+<li><a href="https://ranchero.com/netnewswire/">NetNewsWire</a></li>
+</ul></li>
+<li>Overcast, Swift, and SwiftUI</li>
+<li>Follow-up:
+
+<ul>
+<li><a href="https://www.macrumors.com/2020/06/22/apple-silicon-transition-program/">DTK</a> update
+
+<ul>
+<li><a href="https://www.macrumors.com/2020/06/29/apple-rosetta-2-a12z-beats-surface-pro-x/">Benchmarks</a>
+
+<ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1277628592458006528">Steve Troughton-Smith&#8217;s Take</a></li>
+</ul></li>
+<li><a href="https://twitter.com/MehNitesh2/status/1275143072536461314">Pentium 4 DTK</a></li>
+</ul></li>
+<li>John ports to ARM</li>
+<li><a href="https://www.theverge.com/2020/6/24/21302213/apple-silicon-mac-arm-windows-support-boot-camp">Windows on ARM Macs</a></li>
+<li>Rosetta</li>
+</ul></li>
+<li><a href="https://developer.apple.com/wwdc">WWDC 2020</a>
+
+<ul>
+<li>Big Sur and APFS
+
+<ul>
+<li><a href="https://twitter.com/danielpunkass/status/1275270026648526848">Daniel Jalkut&#8217;s tweet</a></li>
+</ul></li>
+<li><a href="https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11-beta-release-notes">Big Sur release notes</a></li>
+<li>Messages in Big Sur
+
+<ul>
+<li><a href="https://twitter.com/andersnorberg/status/1275916281494016000">Starting screen sharing via ⌘K</a></li>
+<li><code>/System/Library/CoreServices/Applications/Screen Sharing.app</code></li>
+</ul></li>
+<li>&#8220;Play sound on startup&#8221; (Sound pane in System Preferences)</li>
+<li>Big Sur version number
+
+<ul>
+<li><a href="https://twitter.com/_inside/status/1276886603831693313">Gui Rambo&#8217;s finding</a></li>
+<li><a href="https://github.com/Homebrew/brew/pull/7791#issuecomment-647836238">Homebrew team&#8217;s discoveries</a></li>
+<li><a href="https://twitter.com/fraserhess/status/1276647707235348480">Fraser Hess&#8217;s take</a></li>
+</ul></li>
+<li>APFS, Time Machine, and booting changes
+
+<ul>
+<li><a href="https://twitter.com/caseyliss/status/1277040155900198912">Catalina error message</a></li>
+<li><a href="https://eclecticlight.co/2020/06/25/big-surs-signed-system-volume-added-security-protection/">Signed system volume</a></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2020/10686/">Explore the New System Architecture of Apple Silicon Macs</a></li>
+<li><a href="https://eclecticlight.co/2020/06/29/apfs-changes-in-big-sur-how-time-machine-backs-up-to-apfs-and-more/">Time Machine and APFS</a></li>
+<li><a href="https://developer.apple.com/support/downloads/Apple-File-System-Reference.pdf">APFS FIle System Reference</a></li>
+</ul></li>
+<li>Apple platform unification
+
+<ul>
+<li><a href="https://atp.fm/280">ATP #280: Extinction-Level Event</a></li>
+<li><a href="https://twitter.com/DarioRubik/status/1276848327859068929">Apple Development Technologies chart</a></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2020/10640">Design for the iPadOS pointer</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2020/06/24/ep-286">The Talk Show Remote from WWDC 2020</a></li>
+</ul></li>
+</ul></li>
+<li>Post-show: Fitness and calorie counting
+
+<ul>
+<li><a href="https://foodnoms.com/">FoodNoms</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Club_Crackers">Club Crackers</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+</ul>
+]]></description><itunes:subtitle>Audio nerdery, choosing an Apple UI framework, and filesystem changes in Big Sur.</itunes:subtitle></item><item><guid isPermaLink="false">azh1vhrhvulnetry</guid><pubDate>Tue, 23 Jun 2020 05:14:33 +0000</pubDate><title>384: Equal Emphasis</title><itunes:title>Equal Emphasis</itunes:title><itunes:episode>384</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>03:15:01</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp384.mp3" length="93742788" type="audio/mpeg"/><link>https://atp.fm/384</link><description><![CDATA[<ul>
+<li><a href="https://developer.apple.com/wwdc">WWDC 2020</a>
+
+<ul>
+<li><a href="https://www.apple.com/ios/ios-14-preview/">iOS 14</a>
+
+<ul>
+<li>Widgets
+
+<ul>
+<li><a href="https://twitter.com/jamesthomson/status/1275214397556903943?s=21">James Thomson</a></li>
+<li><a href="https://apps.apple.com/us/app/vidgets/id897374553">Vidgets</a> (App Store link)</li>
+</ul></li>
+<li>App Library</li>
+<li>Compact Siri/Call UIs/Picture-in-Picture</li>
+<li>Translation
+
+<ul>
+<li><a href="https://translate.google.com/">Google Translate</a></li>
+</ul></li>
+<li>Messages</li>
+<li>Maps</li>
+<li>Home
+
+<ul>
+<li><a href="https://pushover.net/">Pushover</a></li>
+</ul></li>
+<li>CarPlay &amp; CarKey
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple-designed_processors#Apple_U1">U1</a></li>
+</ul></li>
+<li>Safari
+
+<ul>
+<li><a href="https://1password.com/">1Password</a></li>
+<li><a href="https://haveibeenpwned.com/">Have I Been Pwned?</a></li>
+<li><a href="https://ghostery.com/">Ghostery</a></li>
+</ul></li>
+<li>App Clips</li>
+<li>Emoji 🔍</li>
+<li>Scribble</li>
+<li>Color Picker
+
+<ul>
+<li><a href="https://www.highcaffeinecontent.com/blog/20200610-Pastel">Pastel</a></li>
+</ul></li>
+<li>StoreKit Testing! 🥳
+
+<ul>
+<li><a href="https://stripe.com/">Stripe</a></li>
+<li><a href="https://inessential.com/2020/06/20/one_advantage_of_the_app_store_thats_gon">Brent Simmons&#8217; take on IAP</a></li>
+</ul></li>
+<li>Speed Round
+
+<ul>
+<li>iPadOS</li>
+<li>watchOS
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/watchsmith/id1483088503?ls=1">Watchsmith</a></li>
+<li><a href="http://www.meetcarrot.com/weather/">CARROT Weather</a></li>
+<li><a href="https://relay.fm/radar">Under the Radar</a></li>
+</ul></li>
+<li>AirPods</li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/macos/big-sur-preview/">macOS Big Sur</a>
+
+<ul>
+<li>New Look
+
+<ul>
+<li><a href="https://twitter.com/SnazzyQ/status/1275173242722893824">Dialog box</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Squircle">Squircle</a></li>
+<li><a href="http://hypercritical.co/switchglass/">SwitchGlass</a></li>
+<li><a href="https://arstechnica.com/gadgets/2011/07/mac-os-x-10-7/5/#crazy-ones">Puzzle pieces</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://www.apple.com/newsroom/2020/06/apple-announces-mac-transition-to-apple-silicon/">ARM Macs</a>
+
+<ul>
+<li><a href="https://developer.apple.com/programs/universal/">Developer Transition Kit</a>
+
+<ul>
+<li>&#8220;Compliment of Mac I/O Ports&#8221;
+
+<ul>
+<li>2x USB-C, 2x USB-A, HDMI, Ethernet</li>
+</ul></li>
+</ul></li>
+<li>Universal 2
+
+<ul>
+<li><a href="https://www.imore.com/app-thinning-ios-9-explained">App thinning</a></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Rosetta_(software)">Rosetta</a> 2
+
+<ul>
+<li><a href="https://twitter.com/MarkVillacampa/status/1275200446764912643">Contributions promised</a></li>
+</ul></li>
+<li>Virtualization
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Hypervisor">Hypervisor</a></li>
+<li><a href="https://parallels.com/">Parallels</a></li>
+</ul></li>
+<li>Unified memory</li>
+<li>iOS &amp; iPadOS apps</li>
+</ul></li>
+</ul></li>
+<li>Post-show:
+
+<ul>
+<li>Overcast on Catalyst</li>
+<li><code>11.0</code></li>
+<li>Challenging App Store rules</li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://basecamp.com/accidental">Basecamp</a>: The all-in-one toolkit for working remotely. Get 10% off your first six months.</li>
+</ul>
+]]></description><itunes:subtitle>Our WWDC 2020 special! (Three hours wasn‘t enough.)</itunes:subtitle></item><item><guid isPermaLink="false">ms1vbgi1cm1avdjg</guid><pubDate>Thu, 18 Jun 2020 16:52:15 +0000</pubDate><title>383: Demand-Paged Outrage</title><itunes:title>Demand-Paged Outrage</itunes:title><itunes:episode>383</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:25:30</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp383.mp3" length="69973708" type="audio/mpeg"/><link>https://atp.fm/383</link><description><![CDATA[<ul>
+<li>Pre-show: Guilt, self-care, and <a href="https://www.kensfoodservice.com/products/boom-boom-sauce">Boom Boom Sauce</a></li>
+<li>Follow-up:
+
+<ul>
+<li><strong><a href="https://atp.fm/join">ATP MEMBERSHIP</a> IS LIVE!!</strong><br />
+Please consider joining, but we&#8217;re still cool if you don&#8217;t. 💙</li>
+<li>ARM Mac dev kits
+
+<ul>
+<li><a href="https://www.journaldulapin.com/2019/01/21/power-mac-g5-sdk/">Xbox 360 &#8220;Dev Kit&#8221;</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple-designed_processors#Apple_T2">Apple T2</a></li>
+</ul></li>
+<li>Pitching an ARM MacBook Air versus an Intel MacBook Pro</li>
+<li><a href="https://twitter.com/tim_cook/status/1271113929754685441/video/1">Tim Cook announces Racial Equity and Justice Initiative</a></li>
+<li>&#8230;oh, P.S., <a href="https://sixcolors.com/link/2020/06/apples-head-of-diversity-and-inclusion-has-left/">Apple&#8217;s Head of Diversity and Inclusion left</a></li>
+</ul></li>
+<li>Casey&#8217;s new MacBook Pro
+
+<ul>
+<li><a href="https://www.caseyliss.com/2019/10/8/brew-bundle">Casey on Homebrew <code>bundle</code></a></li>
+<li><a href="https://folivora.ai/">BetterTouchTool</a></li>
+</ul></li>
+<li>A New Breed of Macs
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Rosetta_(software)">Rosetta</a></li>
+</ul></li>
+<li><a href="https://hey.com/">Hey.com</a>&#8217;s <a href="https://www.protocol.com/hey-email-app-store-rejection">App Store Rejection</a>
+
+<ul>
+<li><a href="https://twitter.com/dhh/status/1272968382329942017">DHH on Twitter</a></li>
+<li><a href="https://twitter.com/dhh/status/1272977217115443200">Other, not-banned email apps</a></li>
+<li><a href="https://www.apple.com/newsroom/2020/06/apples-app-store-ecosystem-facilitated-over-half-a-trillion-dollars-in-commerce-in-2019/">Apple Puff Piece</a></li>
+</ul></li>
+<li>Post-show: Brief WWDC predictions
+
+<ul>
+<li><a href="https://www.relay.fm/connected/299">Connected #299: The Rickies (Summer 2020)</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://fully.com/atp">Fully</a>: Workplace furniture designed for health, flow, and balance. Get $30 off your order of $300 or more.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>
+]]></description><itunes:subtitle>Marco discovers restaurants, Casey discovers the Touch Bar, and Hey discovers the App Store.</itunes:subtitle></item><item><guid isPermaLink="false">bkhzuxvfs0dpdjf2</guid><pubDate>Fri, 12 Jun 2020 00:46:11 +0000</pubDate><title>382: Static Ad Removal</title><itunes:title>Static Ad Removal</itunes:title><itunes:episode>382</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp382.mp3" length="58778852" type="audio/mpeg"/><link>https://atp.fm/382</link><description><![CDATA[<ul>
+<li>Reactions to last week&#8217;s show</li>
+<li>Follow-up:
+
+<ul>
+<li>Race/racism book list
+
+<ul>
+<li><a href="https://www.bustle.com/p/6-escapist-books-to-read-over-the-bank-holiday-22922984">Original listicle</a></li>
+<li><a href="https://www.amazon.com/gp/product/1580056776/"><em>So You Want to Talk About Race</em> by Ijeoma Oluo</a></li>
+<li><a href="https://www.amazon.com/gp/product/0991331303/"><em>Waking Up White, and Finding Myself in the Story of Race</em> by Debby Irving</a></li>
+<li><a href="https://www.amazon.com/White-Fragility-People-About-Racism/dp/0807047414"><em>White Fragility: Why It&#8217;s So Hard for White People to Talk About Racism</em> by Robin DiAngelo</a></li>
+<li><a href="https://www.amazon.com/Between-World-Me-Ta-Nehisi-Coates/dp/0812993543/"><em>Between the World and Me</em> by Ta-Nehisi Coates</a></li>
+</ul></li>
+<li>On writing into web forms
+
+<ul>
+<li><a href="https://www.smarttech.com/en/products/business-displays">SMART Board</a></li>
+<li><a href="https://www.nero.com/enu/">Nero Burning ROM</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Jaz_drive">Jaz Drive</a></li>
+<li><a href="https://en.wikipedia.org/wiki/XJACK">XJACK</a></li>
+<li><a href="https://en.wikipedia.org/wiki/WASTE">WASTE</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Justin_Frankel">Justin Frankel</a>
+
+<ul>
+<li><a href="https://1014.org/">Personal site</a></li>
+</ul></li>
+<li><a href="https://www.icecast.org/">Icecast</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SHOUTcast">SHOUTcast</a></li>
+<li><a href="https://www.rogueamoeba.com/audiohijackpro/">Audio Hijack</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cockos">Cockos</a></li>
+<li><a href="https://www.cockos.com/licecap/">LICEcap</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Gnutella">Gnutella</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://news.ycombinator.com/item?id=23324893">On Casey&#8217;s SMB issues</a></li>
+<li><a href="http://drops.caseyliss.com/jFycnL">Home.app <em>scenes</em> rather than <em>automations</em>, via Hugo Jobling</a></li>
+<li><a href="https://red-sweater.com/">Daniel Jalkut</a> corrects us about powerbox</li>
+<li>Android Live Captions <a href="https://twitter.com/thewetyeti/status/1268673067615694857">1</a> <a href="https://twitter.com/thewetyeti/status/1268677051164352513">2</a> (via <a href="https://twitter.com/thewetyeti/">David D&#8217;Arcy</a>)
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT210417">Voice Control on iOS</a></li>
+</ul></li>
+</ul></li>
+<li><strong>Donate to Black causes</strong>
+
+<ul>
+<li><a href="https://support.eji.org/give/153413/#!/donation/checkout">Equal Justice Initiative</a></li>
+<li><a href="https://secure.actblue.com/donate/ms_blm_homepage_2019">Black Lives Matter</a></li>
+<li><a href="https://www.blackgirlscode.com/">Black Girls Code</a></li>
+</ul></li>
+<li><strong><a href="https://atp.fm/join">ATP MEMBERSHIP</a> IS LIVE!!</strong><br />
+Please consider joining, but we&#8217;re still cool if you don&#8217;t. 💙
+
+<ul>
+<li><a href="https://overcast.fm/forecast">Forecast</a></li>
+</ul></li>
+<li><a href="https://www.bloomberg.com/news/articles/2020-06-09/apple-plans-to-announce-move-to-its-own-mac-chips-at-wwdc">ARM Macs are coming! For real this time!</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/OpenGL">OpenGL</a></li>
+<li><a href="https://www.apple.com/newsroom/2018/10/highlights-from-apples-keynote-event/">Apple @ Brooklyn Academy of Music</a></li>
+<li><a href="https://9to5mac.com/2020/06/09/new-imac-wwdc-bezels/">iMacs Getting Redesigned as Well?</a></li>
+<li><a href="https://www.macstories.net/stories/this-is-not-a-product-the-apple-developer-transition-kit/">Developer Transition Kit</a></li>
+<li><a href="https://daringfireball.net/2020/06/on_apple_announcing_the_mac_arm_transition_at_wwdc">John Gruber on ARM Transition</a></li>
+</ul></li>
+<li>Post-show: Membership Pricing Tiers that Never Were</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://notion.com/atp">Notion</a>: Stay on task, find what you need, and collaborate efficiently, all in one place. Get 10% off a team plan.</li>
+</ul>
+]]></description><itunes:subtitle>Reactions to last week's show, the latest ARM rumblings, and the technical road to our new membership program.</itunes:subtitle></item><item><guid isPermaLink="false">nfo4zeutnwtttvhl</guid><pubDate>Thu, 04 Jun 2020 16:11:30 +0000</pubDate><title>381: Uncomfortable Truths</title><itunes:title>Uncomfortable Truths</itunes:title><itunes:episode>381</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:37</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp381.mp3" length="53140335" type="audio/mpeg"/><link>https://atp.fm/381</link><description><![CDATA[<ul>
+<li>Black Lives Matter
+
+<ul>
+<li><a href="https://www.teenvogue.com/story/support-the-black-lives-matter-movement">11 Things You Can Do to Help Black Lives Matter End Police Violence</a></li>
+<li><a href="https://www.teenvogue.com/story/how-to-film-police-safely">How to Safely and Ethically Film Police Misconduct</a></li>
+<li><a href="https://www.teenvogue.com/story/how-to-be-an-activist-when-youre-unable-to-attend-protests">How to Be an Activist When You’re Unable to Attend Protests</a></li>
+<li><a href="https://www.wired.com/story/how-to-protest-safely-surveillance-digital-privacy/">How to Protest Safely in the Age of Surveillance</a></li>
+<li><a href="https://www.bustle.com/p/10-books-about-race-to-read-instead-of-asking-a-person-of-color-to-explain-things-to-you-8548796">Books About Race &amp; Racism</a></li>
+<li><a href="https://bellocollective.com/16-podcasts-that-confront-racism-in-america-f8f69baf529d">Podcasts that Talk About Racism</a></li>
+<li><a href="https://twitter.com/samswey/status/1180655701271732224">Research-Based Solutions to Stop Police Violence by Samuel Sinyangwe</a></li>
+<li><a href="https://www.youtube.com/watch?v=v4amCfVbA_c">Trevor Noah’s Take</a></li>
+<li><a href="https://www.obama.org/anguish-and-action">Obama’s list of resources and and ways to take action</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2020-05-31/apple-s-cook-says-painful-past-is-still-present-today-in-memo">Tim Cook’s statement</a></li>
+<li><strong><a href="https://eji.org/">Equal Justice Initiative</a></strong></li>
+<li>Talking to your kids about race and racism
+
+<ul>
+<li><a href="https://www.nytimes.com/2020/06/02/parenting/kids-books-racism-protest.html">Talking to Kids About Racism, Early and Often</a></li>
+<li><a href="https://www.npr.org/2020/06/03/869071246/how-white-parents-can-talk-to-their-kids-about-race">How White Parents Can Talk To Their Kids About Race</a></li>
+</ul></li>
+<li>Some developers:
+
+<ul>
+<li><a href="https://twitter.com/ishabazz">Ish Shabazz</a></li>
+<li><a href="https://twitter.com/ashleynh">Ashley Nelson</a></li>
+<li><a href="https://twitter.com/kthomas901">Kaya Thomas</a></li>
+<li><a href="https://twitter.com/griotspeak">TJ Usiyan</a>
+
+<ul>
+<li><a href="https://vimeo.com/173169405">Layers 2016 Presentation</a></li>
+</ul></li>
+<li><a href="https://twitter.com/lyndsey360">Lyndsey Scott</a></li>
+<li><a href="https://twitter.com/tiffanywhitedev">Tiffany White</a></li>
+</ul></li>
+<li>Some books:
+
+<ul>
+<li><a href="https://www.amazon.com/How-Be-Antiracist-Ibram-Kendi/dp/0525509283">How to Be an Antiracist by Ibram X. Kendi</a></li>
+<li><a href="https://www.amazon.com/Between-World-Me-Ta-Nehisi-Coates-ebook/dp/B00SEFAIRI">Between the World and Me by Ta-Nehisi Coates</a></li>
+</ul></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>Netscape Navigator, <a href="https://en.wikipedia.org/wiki/Lynx_(web_browser)">Lynx</a>, and <code>atp.fm</code> (via Alex Chan)</li>
+<li><a href="http://www.edm2.com/index.php/OpenDoc">OpenDoc <em>Parts</em></a></li>
+<li>Windows <a href="https://www.windowscentral.com/how-use-new-clipboard-windows-10-october-2018-update">has a clipboard manager</a> (via <a href="https://twitter.com/hutattedonmyarm/status/1266256483248791552">Max Nuding</a>)</li>
+</ul></li>
+<li><strong>LAST CHANCE</strong> for the <a href="https://atp.fm/store" rel="payment">ATP STORE</a>! Preorders end <strong>June 7</strong>!</li>
+<li>Casey’s <a href="https://www.lg.com/us/tvs/lg-OLED55C9AUA-oled-4k-tv">TV</a> issues
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Consumer_Electronics_Control">CEC - Consumer Electronics Control</a></li>
+</ul></li>
+<li>Android vs. iOS Speech-to-Text Speed
+
+<ul>
+<li><a href="https://twitter.com/jamescham/status/1265512829806927873">Initial demo</a> (via <a href="https://twitter.com/davemark/status/1265981005376229377">Dave Mark</a>)</li>
+<li><a href="https://twitter.com/davemark/status/1265998321820327936">Follow-up</a></li>
+</ul></li>
+<li>Catalina and <a href="https://en.wikipedia.org/wiki/Server_Message_Block">SMB</a> shares<br />
+
+<ul>
+<li><code>The operation can’t be completed because the original item for {RootFolder} can’t be found.</code></li>
+</ul></li>
+<li><a href="https://sigpipe.macromates.com/2020/macos-catalina-slow-by-design/">macOS 10.15: Slow by Design</a>
+
+<ul>
+<li><a href="https://lapcatsoftware.com/articles/catalina-executables.html">Jeff Johnson’s follow-up about shell scripts</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2019/12/30/sketchy-rumor-gaming-mac-wwdc-2020/">Gaming MacBook Pro</a>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=B_NoBsCPPSE">Quinn Nelson’s Video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Game_Sprockets">Game Sprockets</a></li>
+<li><a href="https://en.wikipedia.org/wiki/QuickDraw_3D">QuickDraw 3D</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What view do we use in Finder? (via <a href="https://twitter.com/thwkstmscl/status/1266669970718707712">The Weakest Muscle</a>)</li>
+<li>How do we clean our screens? (via <a href="https://twitter.com/DoubleST/status/1267398067508121600">Stefan</a>)
+
+<ul>
+<li><a href="http://www.amazon.com/dp/B01FG4S47K/?tag=liismo-20">Volvo Genuine Microfiber Polishing Cloth for Digital Displays</a></li>
+</ul></li>
+<li>How do we protect our kids from the internet? (via <a href="https://twitter.com/pstbrn/status/1266762543521050625">Peter</a>)
+
+<ul>
+<li><a href="https://support.google.com/youtube/answer/174084?co=GENIE.Platform%3DDesktop&amp;hl=en">YouTube SafeSearch</a></li>
+<li><a href="https://blog.cloudflare.com/introducing-1-1-1-1-for-families/">Cloudflare DNS for Families</a></li>
+</ul></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.tombihn.com/">Tom Bihn</a>: Now offering buy-one give-one <a href="https://www.tombihn.com/products/facemask?variant=32211287048255">Reusable Cloth Face Masks</a>. On Monday, June 8, pre-order the excellent <a href="https://www.tombihn.com/products/synik-22">Synik 22</a> or <a href="https://www.tombihn.com/products/synik-30">Synik 30</a> backpacks.
+
+<ul>
+<li><a href="https://docs.google.com/spreadsheets/d/14V_vow2qQi7rri9BB5ZVbX0TspkCL70cyJwKt44Eneo/edit#gid=522827966">Give a Mask Spreadsheet</a></li>
+</ul></li>
+</ul>
+]]></description><itunes:subtitle>Racism and police in the US, then some temporary escapism thanks to something we can always count on: Casey's overly complex, misbehaving technology.</itunes:subtitle></item><item><guid isPermaLink="false">dznbbdrou1pwtzbi</guid><pubDate>Thu, 28 May 2020 19:21:22 +0000</pubDate><title>380: Wires Are Great</title><itunes:title>Wires Are Great</itunes:title><itunes:episode>380</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:14:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp380.mp3" length="65067636" type="audio/mpeg"/><link>https://atp.fm/380</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store" rel="payment">ATP STORE</a> IS BACK!!</strong> Make your purchases until June 7th.</p>
+
+<ul>
+<li>Pre-show: Live-stream <a href="https://icecast.org/">icecast</a> saga</li>
+<li>New old-style websites
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/CSS_Flexible_Box_Layout">Flexbox</a></li>
+<li><a href="https://blog.nem.ec/2020/05/24/ebay-port-scanning/">Ebay port scanning</a></li>
+<li><a href="https://github.com/JohnSundell/Publish">Publish by John Sundell</a></li>
+</ul></li>
+<li>How do we trust clipboard managers‽
+
+<ul>
+<li><a href="https://obdev.at/products/littlesnitch">Little Snitch</a></li>
+</ul></li>
+<li><a href="https://www.macrumors.com/2020/05/27/sonnet-fusion-flex-j3i-mac-pro/">Sonnet Fusion Flex J3i</a></li>
+<li>Casey&#8217;s DNS Diversion
+
+<ul>
+<li><a href="https://discourse.pi-hole.net/t/disable-async-dns-resolver-in-google-chrome/9500">Disabling Chrome&#8217;s async DNS resolver</a></li>
+</ul></li>
+<li><a href="https://9to5mac.com/2020/05/27/hbo-now-leaves-apple-tv-channels/">HBO ditches Apple TV Channels</a></li>
+<li>Follow-up: <a href="https://www.theatlantic.com/entertainment/archive/2019/08/my-joe-rogan-experience/594802/">Joe Rogan himself</a></li>
+<li>Let&#8217;s buy Casey a <a href="https://www.apple.com/shop/buy-mac/macbook-pro/13-inch">13&#8221; MacBook Pro</a></li>
+<li><a href="https://www.theverge.com/2020/5/19/21260005/microsoft-office-fluid-web-document-features-build">Microsoft&#8217;s Fluid Office &#8220;document&#8221;</a>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/OpenDoc">OpenDoc</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Object_Linking_and_Embedding">Object Linking and Embedding</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What&#8217;s the best Wi-Fi/networking setup? (via Benjamin Sharbaugh)
+
+<ul>
+<li><a href="https://eero.com/atp">Eero</a></li>
+<li><a href="https://www.ui.com/products/#unifi">Ubiquiti UniFi</a>
+
+<ul>
+<li><a href="https://store.ui.com/collections/routing-switching/products/unifi-dream-machine">Dream Machine</a></li>
+<li><a href="https://store.ui.com/collections/unifi-network-access-points/products/unifi-nanohd-us">nanoHD Access Point</a></li>
+</ul></li>
+</ul></li>
+<li>How do we move Xcode signing assets between Macs? (via Jeffrey Wilkinson)
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Windows_Registry">Windows Registry</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DLL_Hell">DLL Hell</a></li>
+</ul></li>
+<li>But, like, really: Overcast for Mac? (via <a href="https://twitter.com/chrisjniles/status/1261414686085406720">Chris Niles</a>)</li>
+</ul></li>
+<li>Post-show: Face masks 😷
+
+<ul>
+<li><a href="https://www.tombihn.com/collections/facemasks">Tom Bihn masks</a></li>
+<li><a href="https://section119.com/products/donut-mask">Marco&#8217;s awesome Phish-donut mask</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Surgical_mask">Procedure masks</a></li>
+</ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://basecamp.com/accidental">Basecamp</a>: The all-in-one toolkit for working remotely. Get 10% off your first six months.</li>
+</ul>
+]]></description><itunes:subtitle>A live-stream saga, web-development complexity, spending Casey's money, and the macOS version of DLL hell.</itunes:subtitle></item><item><guid isPermaLink="false">zuruv1fhqwhpos1l</guid><pubDate>Thu, 21 May 2020 19:27:08 +0000</pubDate><title>379: The Everything’s OK Alarm</title><itunes:title>The Everything’s OK Alarm</itunes:title><itunes:episode>379</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp379.mp3" length="62941861" type="audio/mpeg"/><link>https://atp.fm/379</link><description><![CDATA[<p><strong>THE <a href="https://atp.fm/store" rel="payment">ATP STORE</a> IS BACK!!</strong> Make your purchases until June 7th.</p>
+
+<ul>
+<li>Pre-show: ATP has a <a href="https://atp.fm/">new website</a>. (<a href="https://neutral.fm/">Neutral</a> too!)
+
+<ul>
+<li><a href="https://www.theincomparable.com/sophomorelit/89/">John talks about Flatland on Sophomore Lit</a></li>
+</ul></li>
+<li>Follow-up:
+
+<ul>
+<li>MiniDV import details
+
+<ul>
+<li><a href="https://handbrake.fr/docs/en/1.3.0/cli/command-line-reference.html"><code>HandBrakeCLI</code></a></li>
+<li><a href="https://exiftool.org/"><code>exiftool</code></a></li>
+</ul></li>
+<li>Causes for soliciting promo codes
+
+<ul>
+<li><a href="https://www.beeradvocate.com/beer/profile/29/82948/">Lime-a-Rita</a></li>
+</ul></li>
+<li><a href="https://youtu.be/zp4NZ8i80QI">Destiny &amp; Cursors</a></li>
+<li><a href="https://9to5mac.com/2020/03/24/apple-debuts-shared-ipad-for-business-assessment-mode-for-mac-custom-school-apps-and-more/">iOS 13.4 adds Shared iPad for Business</a> (via <a href="https://twitter.com/sircathywise/status/1262211074595553280">Sir Cathy</a>)</li>
+<li>Are Casey&#8217;s Raspberry Pis hardened?
+
+<ul>
+<li><a href="https://overcast.fm/+IpmIw6Vo/1:36:06">John&#8217;s smoke detector story from Hypercritical</a></li>
+</ul></li>
+</ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Joe_Rogan">Joe Rogan</a> takes <a href="http://podcasts.joerogan.net/">his show</a> to Spotify
+
+<ul>
+<li><a href="https://ranchero.com/netnewswire/">NetNewsWire</a></li>
+</ul></li>
+<li><code>#askatp</code>
+
+<ul>
+<li>What clipboard managers do we use? (via <a href="https://twitter.com/NezaPlayMySongs/status/1257878192741851138">Play My Jam</a>)
+
+<ul>
+<li><a href="https://www.alfredapp.com/">Alfred</a></li>
+<li><a href="https://tapbots.com/pastebot/">Pastebot</a></li>
+<li><a href="https://obdev.at/products/launchbar/index.html">LaunchBar</a></li>
+</ul></li>
+<li>Is iOS 13 ready yet? (via Luke Arthur)</li>
+<li>Would dropping <a href="https://support.apple.com/boot-camp">Boot Camp</a> bring backlash? (via <a href="https://twitter.com/Trombonerman/status/1262377768932777988">someone</a>)</li>
+</ul></li>
+<li>Post-show: Life at home status updates</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+</ul>
+]]></description><itunes:subtitle>Our business, the promo-code scammer's business, Spotify's business, and Joe Rogan's business.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ebcb5ea6a9e73720bbe1dad</guid><pubDate>Thu, 14 May 2020 19:20:56 +0000</pubDate><title>378: Whale Quench</title><itunes:title>Whale Quench</itunes:title><itunes:episode>378</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp378.mp3" length="60399884" type="audio/mpeg"/><link>https://atp.fm/378</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://www.youtube.com/watch?v=Ls1t93VSh9k">Dave Matthews Band was live</a><ul>
+<li><em>Totally unrelated</em>: <a href="https://www.caseyliss.com/2017/8/10/youtube-dl"><code>youtube-dl</code></a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Casey's Garage Project<ul>
+<li><a href="https://instagram.com/stories/caseyliss/2308471854436083790?utm_source=ig_story_item_share&amp;igshid=xx79y30x21vl">Instagram Story</a></li>
+<li><a href="https://www.raspberrypi.org/blog/new-product-raspberry-pi-high-quality-camera-on-sale-now-at-50/">Raspberry Pi High Quality Camera</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/derekvan/status/1258891696139644928">Synology Cloud Sync &amp; Dropbox</a></li>
+<li>RSI and voice control<ul>
+<li><a href="https://www.youtube.com/watch?v=YKuRkGkf5HU&amp;feature=youtu.be">Writing Perl by voice by Emily Shea</a> (via <a href="https://twitter.com/miyagawa/status/1259050017710473222">Tatsuhiko Miyagawa</a>)</li>
+<li><a href="https://youtu.be/fg6Q3r2p_yE">Hand free computing</a> via Philip Brocoum</li>
+<li><a href="https://en.wikipedia.org/wiki/NATO_phonetic_alphabet">Phonetic Alphabet</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://appstories.net/episodes/162/">Craig Federighi on AppStories #162</a><ul>
+<li><a href="https://overcast.fm/+I5Cmj9tMo/19:26">Cursor control</a><ul>
+<li><a href="https://youtu.be/97_jvSPoRDo">Coyote time</a> (<a href="https://www.youtube.com/watch?v=8GUKmvzRoMA">code example</a>) and other <a href="https://www.polygon.com/2017/9/2/16247112/video-game-developer-secrets">game developer tricks</a></li>
+<li><a href="https://youtu.be/yorTG9at90g">Celeste platforming mechanics design</a></li>
+<li><a href="https://www.relay.fm/playingforfun/2">Playing for Fun #2: Celeste</a></li>
+</ul>
+</li>
+<li><a href="https://overcast.fm/+I5Cmj9tMo/33:12">Closing apps</a></li>
+</ul>
+</li>
+<li>"Give me your app for free"<ul>
+<li><a href="https://www.dnb.com/">Dun &amp; Bradstreet</a></li>
+</ul>
+</li>
+<li>John digitizes <a href="https://en.wikipedia.org/wiki/DV">Mini-DV</a> tapes<ul>
+<li><a href="https://www.macupdate.com/app/mac/15547/idive">iDive</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Super_8_film_camera">Super 8</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Camcorder#/media/File:RCA_VHS_shoulder-mount_Camcorder_(lighter_filter_NR_etc">RCA VHS Camcorder</a>.jpg)</li>
+<li><a href="https://en.wikipedia.org/wiki/JVC_GR-C1">CVC GR-C1</a><ul>
+<li><a href="https://www.youtube.com/watch?v=kMtN9KJHn5Y">MKBHD's video</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>If Apple releases an ARM-based Mac, would we buy first-gen machines? (via <a href="https://twitter.com/J65Productions/status/1253396771524554753">Jamie Bender</a>)</li>
+<li>What file system (🛎) should one use for external backups? (via <a href="https://twitter.com/unaiherran/status/1253368022347251712">Unai Herrán</a>)</li>
+<li>Will iPadOS ever become multi-user? (via Pascal Lindelauf)<ul>
+<li><a href="https://developer.apple.com/education/shared-ipad/">Optimizing Apps for Shared iPad</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: <a href="https://arstechnica.com/cars/2020/05/the-2022-golf-gti-will-have-a-much-smarter-brain-for-more-driving-fun/">2022 Golf GTI</a><ul>
+<li>Isn't Tesla cancelled now?</li>
+<li><a href="https://en.wikipedia.org/wiki/Honda_EV_Concept">Honda Urban EV Concept</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="https://notion.com/atp">Notion</a>: Stay on task, find what you need, and collaborate efficiently, all in one place. Get 10% off a team plan.</li>
+</ul>]]></description><itunes:subtitle>More Casey solutions to problems, voice-control superhumans, scams targeting app developers, and the etymology of "camcorder".</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5eb37ce06fd71a32082955ac</guid><pubDate>Thu, 07 May 2020 18:57:55 +0000</pubDate><title>377: $10 Worth of Headaches</title><itunes:title>$10 Worth of Headaches</itunes:title><itunes:episode>377</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp377.mp3" length="57612446" type="audio/mpeg"/><link>https://atp.fm/377</link><description><![CDATA[<ul>
+<li>Pre-show: Getting financial information from Apple<ul>
+<li><a href="https://appfigures.com/">AppFigures</a></li>
+<li>Changing App Store company names<ul>
+<li><a href="https://en.wikipedia.org/wiki/Limited_liability_company">LLC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Trade_name">DBA</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Casey's Garage Project<ul>
+<li><a href="https://instagram.com/stories/caseyliss/2303441867635137620?utm_source=ig_story_item_share&amp;igshid=12xb0qt54cqk8">Instagram Story</a></li>
+<li><a href="https://www.raspberrypi.org/products/raspberry-pi-zero-w/">Raspberry Pi Zero W</a></li>
+<li><a href="https://www.raspberrypi.org/products/raspberry-pi-4-model-b/">Raspberry Pi 4</a></li>
+</ul>
+</li>
+<li>Debugging memory problems in Xcode</li>
+<li>ARM Predictions (via Colin McKellar)<ul>
+<li><a href="https://overcast.fm/+R7DWFdemI/3:48">ATP #285 @ 3m48s</a></li>
+<li><a href="https://overcast.fm/+R7DUwkxng/1:36:00">ATP #306 @ 1h36m</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2018/08/01/ep-227">The Talk Show #227</a></li>
+</ul>
+</li>
+<li>Installing an OS on a computer without a monitor<ul>
+<li><a href="https://www.balena.io/etcher/">Etcher</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2020/05/apple-to-host-virtual-worldwide-developers-conference-beginning-june-22/">WWDC date announced</a></li>
+<li>Hats<ul>
+<li><a href="https://en.wikipedia.org/wiki/Fedora">Fedora</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cowboy_hat">Cowboy hat</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Flat_cap">Flat cap</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2020/05/apple-updates-13-inch-macbook-pro-with-magic-keyboard-double-the-storage-and-faster-performance/">New 13" MacBook Pro!</a><br>🎉 GOODBYE BUTTERFLY KEYBOARD! 🎉<ul>
+<li><a href="https://sixcolors.com/post/2020/05/apple-updates-13-inch-macbook-pro-with-new-processors-magic-keyboard/">Six Colors review</a></li>
+<li><a href="https://www.youtube.com/watch?v=W175faaIh4U">Rene Ritchie's video review</a></li>
+<li><a href="https://www.youtube.com/watch?v=LmpQB8Gg2Ic">Rene Ritchie's comparison vs. MacBook Air</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Turbo_button">Turbo button</a></li>
+</ul>
+</li>
+<li><a href="https://www.tunabellysoftware.com/tgpro/">TGPro</a> fan control app</li>
+<li><code>#askatp</code><ul>
+<li>After the obvious, what should one do to alleviate RSI? (via <a href="https://twitter.com/thomanthony/status/1254055101586706434">Thom Anthony</a>)</li>
+<li>How do I make my videoconferences sound better? (via <a href="https://twitter.com/JackJNYC/status/1248510856696078336">Jack Johnson</a>)<ul>
+<li><a href="https://www.audio-technica.com/cms/wired_mics/55eee3e0b0d5a960/index.html">ATR2100x</a></li>
+<li><a href="https://marco.org/podcasting-microphones">Microphone Mega-Review</a><ul>
+<li><a href="https://lileks.com/bleats/archive/18/0418/3/misc/kerry.jpg">Kerry</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show:<ul>
+<li><a href="https://www.youtube.com/watch?v=QpEZFp_IZJs">Unbox Therapy</a></li>
+<li><a href="https://www.porsche.com/international/accessoriesandservice/classic/genuineparts/producthighlights/pccm/">Porsche Classic Communication Management</a></li>
+<li><a href="https://f80.bimmerpost.com/forums/showthread.php?t=1717729">BMW stops European Delivery for American customers</a><ul>
+<li><a href="http://neutral.fm/episodes/12-vomit-ruins-everything">Neutral #12: Vomit Ruins Everything</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>The butterfly keyboard is dead! Rst in ppeace.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5eaa40d78aa0b52dec51b77a</guid><pubDate>Thu, 30 Apr 2020 20:45:06 +0000</pubDate><title>376: Monogamous Gaming Lifestyle</title><itunes:title>Monogamous Gaming Lifestyle</itunes:title><itunes:episode>376</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp376.mp3" length="64204507" type="audio/mpeg"/><link>https://atp.fm/376</link><description><![CDATA[<ul>
+<li>Pre-show: Casey makes his life [more] difficult for himself</li>
+<li>Dropping Dropbox<ul>
+<li><a href="https://global.download.synology.com/download/Tools/SynologyDriveClient/2.0.1-11061/Mac/Installer/synology-drive-client-11061.dmg">Synology Drive</a></li>
+<li><a href="https://panic.com/transmit/">Transmit</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.apple.com/shop/product/MW662AM/A/radeon-pro-w5700x-mpx-module">John's new video card</a><ul>
+<li><a href="https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/MW662_AV3?wid=1144&amp;hei=1144&amp;fmt=jpeg&amp;qlt=80&amp;op_usm=0.5%2C0.5&amp;.v=1584660440099">It's big</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/jereremy/status/1254065480807129088">Mac Pro Wheels &amp; Feet Measurement</a></li>
+<li>iPad Pro Magic Keyboard<ul>
+<li><a href="https://twitter.com/mattbirchler/status/1254760427277475841">Dangerous keyboard use</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/b3_john/status/1253947233390809090">Car alternators do generate AC</a></li>
+<li><a href="https://twitter.com/kingtbird/status/1254152283782184961">Really really use an unpainted post when jump-starting a car</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2020/04/apple-and-google-partner-on-covid-19-contact-tracing-technology/">COVID-19 <del>Contact Tracing</del> Exposure Notification</a><ul>
+<li><a href="https://nshipster.com/contact-tracing/">NSHipster's Overview</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2020/04/ios-135-will-bring-group-facetime-face-id-improvements/">iOS 13.5 Improvements</a></li>
+<li><a href="https://www.axios.com/scoop-google-readies-its-own-chip-for-future-pixels-chromebooks-e5f8479e-4a38-485c-a264-9ef9cf68908c.html">Google Making its own Chips</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2020-04-23/apple-aims-to-sell-macs-with-its-own-chips-starting-in-2021">ARM chips in Macs</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+</ul>]]></description><itunes:subtitle>Dropping Dropbox, gaming on the Mac Pro, contact tracing, and "fixing" Casey's unbroken house.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ea25b1d5d4e0778fb626aa9</guid><pubDate>Fri, 24 Apr 2020 20:03:12 +0000</pubDate><title>375: Wobbly Goblin</title><itunes:title>Wobbly Goblin</itunes:title><itunes:episode>375</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:21:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp375.mp3" length="68163044" type="audio/mpeg"/><link>https://atp.fm/375</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://en.wikipedia.org/wiki/Homeowner_association">Homeowners associations</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Lien">Lien</a></li>
+<li><a href="https://twitter.com/caseyliss/status/747432114023436294">Law of large pull requests</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Mac Pro wheel stability</li>
+<li>W5700X is a decent deal after all</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/ipad-keyboards/">iPad Pro Magic Keyboard</a> impressions</li>
+<li><code>#askatp</code><ul>
+<li>Is it a bad idea to prevent hard drives from sleeping? (via Andreas Beyer Bowden)</li>
+<li>What was it like for old dudes to graduate from college? (via Nate J)<ul>
+<li><a href="https://en.wikipedia.org/wiki/SOAP">SOAP</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Web_Services_Description_Language">WSDL</a></li>
+<li><a href="https://www.joelonsoftware.com/2006/10/25/the-guerrilla-guide-to-interviewing-version-30/">The Guerilla Guide to Interviewing (Joel on Software)</a></li>
+<li><a href="https://leetcode.com/problems/fizz-buzz/">Fizz Buzz</a></li>
+<li><a href="https://www.buzzfeednews.com/article/alexkantrowitz/always-day-one-exclusive-excerpt-apple">Apple's IS&amp;T</a></li>
+</ul>
+</li>
+<li>PHP is nuked from orbit. The world rejoices. What does Marco do? (via <a href="https://twitter.com/Asajz/status/1242845369718853635">Asajz</a>)</li>
+</ul>
+</li>
+<li>Post-show: Neutral</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+</ul>]]></description><itunes:subtitle>Magic Keyboard for iPad impressions, getting your first job after college, and corrupting your homeowner association from the inside.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e97cc9493b8617043a2f769</guid><pubDate>Thu, 16 Apr 2020 19:24:04 +0000</pubDate><title>374: Screwdriver Testing Harness</title><itunes:title>Screwdriver Testing Harness</itunes:title><itunes:episode>374</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:14</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp374.mp3" length="58807428" type="audio/mpeg"/><link>https://atp.fm/374</link><description><![CDATA[<ul>
+<li>Pre-show: Modern PHP<ul>
+<li><a href="https://eev.ee/blog/2012/04/09/php-a-fractal-of-bad-design/">PHP: A Fractal of Bad Design</a></li>
+<li><a href="https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/establishing_a_token-based_connection_to_apns">Apple Push Notification Service: Token Authentication</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm">ECDSA</a></li>
+<li><a href="https://jwt.io/">JWT</a></li>
+<li><a href="https://gist.github.com/marcoarment/1d84a2619b3bc1a8216e443c9a0fa269">Marco's resulting APNS-JWT PHP function</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Retro Gaming<ul>
+<li><a href="http://openemu.org/">OpenEmu</a></li>
+<li><a href="https://github.com/Provenance-Emu/Provenance">Provenance</a></li>
+<li><a href="https://github.com/MiSTer-devel/Main_MiSTer/wiki">MiSTer</a> (via <a href="https://www.pcalc.com/">James Thomson</a>)</li>
+<li>Light guns and CRTs</li>
+</ul>
+</li>
+<li><a href="https://www.sony.com/electronics/360-reality-audio">360° audio</a> (via <a href="https://twitter.com/iboalali/status/1246010169089306626/photo/1">Ibrahim Al-Alali</a>)<ul>
+<li><a href="https://www.nugs.net/">nugs.net</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Completing the Mac Pro Rollout<ul>
+<li><a href="https://512pixels.net/2020/04/mac-pro-feet-and-wheels-now-for-sale/">Mac Pro feet/wheels</a></li>
+<li><a href="https://512pixels.net/2020/04/radeon-pro-w5700x-option-now-available-for-mac-pro-orders/">Radeon Pro W5700X</a></li>
+</ul>
+</li>
+<li>iPad Pro Magic Keyboard <a href="https://www.apple.com/us/shop/goto/product/MXQT2">now available for ordering</a><ul>
+<li><a href="https://edovia.com/en/screens-ios/">Screens</a></li>
+<li><a href="https://leancrew.com/all-this/2020/04/weighing-in-as-an-apple-pundit/">Dr. Drang's keyboard-weight speculation</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/iphone-se/">New iPhone SE</a></li>
+<li><code>#askatp</code><ul>
+<li>How do we make time for listening to our favorite shows? (via Aadi Bhure)<ul>
+<li><a href="https://twitter.com/OvercastFM/status/1247586822525538305">Overcast usage</a></li>
+</ul>
+</li>
+<li>Do we automate our recording setups? (via <a href="https://twitter.com/huntwillholl/status/1239958116835434496">Hunter Holland</a>)<ul>
+<li><a href="https://folivora.ai/">BetterTouchTool</a></li>
+<li><a href="https://folivora.ai/bettersnaptool">BetterSnapTool</a></li>
+<li><a href="https://atp.fm/episodes/96">ATP #96: Windows of Siracusa County</a></li>
+<li><a href="https://arstechnica.com/staff/2005/09/1200/">The state of Mac web browsing</a></li>
+</ul>
+</li>
+<li>What podcast episode are we most proud of having recorded, and why?<ul>
+<li><a href="https://atp.fm/205-chris-lattner-interview-transcript">ATP #205: Chris Lattner Interview</a></li>
+<li><a href="https://atp.fm/episodes/317">ATP #317: We're Customers Too</a></li>
+<li><a href="https://atp.fm/episodes/371">ATP #371: Four-Letter Technologies</a></li>
+<li><a href="https://www.relay.fm/analogue/5">Analog(ue) #5: The Only Way Out is Through</a></li>
+<li><a href="https://5by5.tv/hypercritical/37">Hypercritical #37: A Story of Triumph</a></li>
+<li><a href="https://www.relay.fm/rd/102">Reconcilable Differences #102: Preparing the Way</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Newfound home computer needs<ul>
+<li><a href="https://arstechnica.com/gaming/2020/04/minecrafts-ray-traced-version-launches-april-16-on-windows-10/">Ray-traced Minecraft RTX</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+<li><a href="https://fully.com/atp">Fully</a>: Workplace furniture designed for health, flow, and balance. Get $50 off the Jarvis standing desk.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>John pours even more money into his Mac Pro, Casey buys a $300 keyboard for his tertiary computer, and Marco realizes he may not be a programmer.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e8e99bf98ae344efa9556f8</guid><pubDate>Thu, 09 Apr 2020 22:08:46 +0000</pubDate><title>373: This Jerk, Right Here</title><itunes:title>This Jerk, Right Here</itunes:title><itunes:episode>373</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:28:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp373.mp3" length="72146019" type="audio/mpeg"/><link>https://atp.fm/373</link><description><![CDATA[<ul>
+<li>Pre-show: Search Engines before Google<ul>
+<li><a href="https://en.wikipedia.org/wiki/MSN_TV">WebTV</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BNC_connector">BNC connector</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Synology RAID rebuild time<ul>
+<li><a href="https://www.mcleanit.ca/blog/synology-how-to-check-raid-rebuild-progress/">Getting progress</a><br><code>cat /proc/mdstat</code></li>
+<li><a href="https://en.wikipedia.org/wiki/Logical_Volume_Manager_%28Linux%29"><code>lvm</code></a></li>
+</ul>
+</li>
+<li>Dark Sky acquisition &amp; location data</li>
+<li>Weather data consolidation<ul>
+<li><a href="https://darksky.net/dev/docs/sources">Dark Sky's data sources</a></li>
+<li><a href="https://www.bloomberg.com/news/features/2018-06-14/trump-s-pick-to-lead-weather-agency-spent-30-years-fighting-it">Trump continues to fill the swamp</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Casey's Computer Corner<ul>
+<li><a href="https://www.barebones.com/products/bbedit/">BBEdit</a></li>
+<li><a href="https://www.arqbackup.com/">Arq Backup</a></li>
+</ul>
+</li>
+<li><a href="https://blog.us.playstation.com/2020/04/07/introducing-dualsense-the-new-wireless-game-controller-for-playstation-5/">New PS5 controller</a><ul>
+<li><a href="http://5by5.tv/hypercritical/49">Hypercritical #49: Pinching the Harmonica</a></li>
+<li><a href="https://xscopeapp.com/">xScope</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Force_Touch">Force Touch</a></li>
+</ul>
+</li>
+<li><a href="https://www.raspberrypi.org/">Raspberry Pi</a><ul>
+<li><a href="https://pi-hole.net/">Pi-Hole</a><ul>
+<li><a href="https://www.smarthomebeginner.com/pi-hole-setup-guide/#Raspberry_Pi_Pi-Hole_Installation">Installation instructions</a> that Casey used</li>
+</ul>
+</li>
+<li><a href="https://www.amazon.com/dp/B07XPHWPRB/?tag=liismo-20">CanaKit</a> — the kit Casey bought</li>
+<li><a href="https://www.raspberrypi.org/downloads/raspbian/">Raspbian</a></li>
+</ul>
+</li>
+<li>Retro gaming<ul>
+<li>Special guest <a href="http://www.tiffanyarment.com/">Tiff Arment</a> joins us</li>
+<li>Emulation:<ul>
+<li><a href="https://retropie.org.uk">RetroPie</a></li>
+<li><a href="http://www.amazon.com/dp/B07BNR6HG9/?tag=marcoorg-20">8bitdo SN30 Pro</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wave_Race_64">Wave Race 64</a></li>
+<li><a href="https://en.wikipedia.org/wiki/32X">32X</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Neo_Geo_%28system%29">Neo Geo</a></li>
+<li><a href="https://en.wikipedia.org/wiki/3DO_Interactive_Multiplayer">3DO</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sega_Saturn">Sega Saturn</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rotary_dial">Rotary phone</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Konami_Code">Kontra/Konami Code</a></li>
+</ul>
+</li>
+<li><a href="http://thegamekun.com/top-6-differences-famicom-nes-controllers/">Famicom vs. NES controllers</a></li>
+<li>Improving the original experience<ul>
+<li><a href="https://www.nintendo.com/switch/online-service/nes/">Nintendo Switch Online</a></li>
+<li><a href="https://en.wikipedia.org/wiki/NES_Classic_Edition">NES Classic Edition</a></li>
+<li><a href="https://www.analogue.co">Analogue Console</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Field-programmable_gate_array">FPGA</a></li>
+</ul>
+</li>
+<li><a href="https://www.8bitdo.com/m30-2-4g/">8bitdo M30 2.4G for SEGA Genesis</a></li>
+<li><a href="https://krikzz.com/store/">Everdrive flash cartridges</a></li>
+</ul>
+</li>
+<li>Connecting to the TV<ul>
+<li><a href="https://www.youtube.com/playlist?list=PLv0jwu7G_DFUGEfwEl0uWduXGcRbT7Ran">Technology Connections: How Did Old TVs Work?</a><ul>
+<li><a href="https://www.amazon.com/dp/B0032N1UMY/ref=as_li_ss_tl?_encoding=UTF8&amp;btkr=1&amp;linkCode=sl1&amp;tag=siracusa-20&amp;linkId=569777171df47e5f90dca1224a1a3f01&amp;language=en_US">Racing the Beam</a></li>
+<li><a href="https://i.redd.it/gc0vsn8zqky11.jpg">CRT skeletons</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/RF_modulator">RF modulator</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Composite_video">Composite video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/S-Video">S-Video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Component_video">Component video</a></li>
+<li>RGB over <a href="https://en.wikipedia.org/wiki/SCART">SCART</a></li>
+</ul>
+</li>
+<li>Scaling console video output to modern TVs<ul>
+<li><a href="https://www.retrotink.com/shop">RetroTINK</a></li>
+<li><a href="https://videogameperfection.com/products/open-source-scan-converter/">OSSC</a></li>
+<li><a href="https://solarisjapan.com/collections/micomsoft/products/xrgb-mini-framemeister-compact-up-scaler-unit-eur-scart-adapter">XRGB Framemeister</a></li>
+<li><a href="https://www.retrorgb.com/gscartsw.html">gscartsw</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://eero.com/atp">Eero</a>: The Wi-Fi your home deserves. Use code <strong>ATP</strong> for free overnight shipping with this link.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Start your business with a domain name. Get 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Casey's ridiculously Casey storage waffling, John's ridiculously John evaluation of the PS5 controller, and Marco's ridiculously Marco retro-gaming setup. With special guest Tiff Arment!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e855bfb3aaa81004cb52201</guid><pubDate>Thu, 02 Apr 2020 18:56:09 +0000</pubDate><title>372: Things Are Degraded</title><itunes:title>Things Are Degraded</itunes:title><itunes:episode>372</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:19:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp372.mp3" length="67458273" type="audio/mpeg"/><link>https://atp.fm/372</link><description><![CDATA[<ul>
+<li>Pre-show: Retro-gaming next week<ul>
+<li>Homework for listeners: play with <a href="https://retropie.org.uk/">RetroPie</a> and a <a href="https://www.amazon.com/dp/B07PHMSDH1/?tag=marcoorg-20">retro gamepad</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.notebookcheck.net/The-Apple-A12Z-Bionic-SoC-is-just-a-renamed-A12X-with-an-enabled-GPU-core.458883.0.html">A12Z is the A12X with all GPU cores working properly</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Product_binning">Chip binning</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2020/03/18/all-2020-ipad-pro-models-feature-6gb-of-ram-same-u1-chip-as-iphone-11/">All 2020 iPad Pros have 6 GB RAM</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1242298592930430976">Part-name theories</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Casey's Synology Catastrophe<ul>
+<li><a href="https://www.synology.com/en-us/support/download/DS1813+">DS1813+</a></li>
+<li><a href="https://en.wikipedia.org/wiki/S.M.A.R.T.">S.M.A.R.T.</a></li>
+<li><a href="https://www.backblaze.com/blog/hard-drive-stats-for-2019/">Backblaze Hard Drive Stats for 2019</a></li>
+</ul>
+</li>
+<li><a href="https://www.macstories.net/news/dark-sky-has-been-acquired-by-apple-and-its-api-will-be-discontinued-at-the-end-of-2021/">Apple Acquires Dark Sky</a><ul>
+<li><a href="http://www.meetcarrot.com/weather/">CARROT Weather</a></li>
+<li><a href="https://weatherlineapp.com/">Weather Line</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2020/04/did-apple-and-amazon-just-settle-their-in-app-purchase-dispute/">You can buy/rent video from the Amazon iOS app without using in-app purchase</a><ul>
+<li><a href="https://jamesdempsey.net/tag/james-dempsey-and-the-breakpoints/">Breakpoints</a></li>
+</ul>
+</li>
+<li>Post-show follow-up:<ul>
+<li><a href="https://www.youtube.com/watch?v=ph8LyNIT9sg">The Road to PS5</a></li>
+<li><a href="https://www.youtube.com/watch?v=7Fjn4GRw8qE">Xbox Series X Hands On, Gameplay &amp; Controller!</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Head-related_transfer_function">Head Related Transfer Function</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Binaural_recording">Binaural recording</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://postmates.com/">Postmates</a>: Anything you need, anytime you need it. Postmate it. Use code <strong>ATP</strong> for $100 in free delivery credit for your first 7 days.</li>
+<li><a href="https://eero.com/atp">Eero</a>: The Wi-Fi your home deserves. Use code <strong>ATP</strong> for free overnight shipping with this link.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Casey's storage tale of woe, Apple buying Dark Sky, and Amazon's in-app-purchase policy exception.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e7c25c512ac263f7d5e86b7</guid><pubDate>Thu, 26 Mar 2020 19:51:33 +0000</pubDate><title>371: Four-Letter Technologies</title><itunes:title>Four-Letter Technologies</itunes:title><itunes:episode>371</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:34:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp371.mp3" length="74493865" type="audio/mpeg"/><link>https://atp.fm/371</link><description><![CDATA[<ul>
+<li>Special guest <a href="http://www.nondot.org/sabre/">Chris Lattner</a>!<ul>
+<li><a href="https://amzn.to/2JeyUCl"><em>High Output Management</em></a></li>
+<li><a href="https://www.tensorflow.org">TensorFlow</a><ul>
+<li><a href="http://caffe.berkeleyvision.org">Caffe</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tensor_processing_unit">TPU</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Python_%28programming_language%29">Python</a></li>
+<li><a href="https://pytorch.org/">PyTorch</a></li>
+<li><a href="https://www.tensorflow.org/swift/">Swift for TensorFlow</a></li>
+<li><a href="https://github.com/tensorflow/swift#tutorials-">Swift TensorFlow tutorials</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fortran">Fortran</a></li>
+</ul>
+</li>
+<li><a href="https://www.tensorflow.org/swift/">Swift for TensorFlow</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Clang">Clang</a></li>
+<li><a href="https://jupyter.org/">Jupyter</a></li>
+<li><a href="https://colab.research.google.com/github/tensorflow/swift/blob/master/docs/site/tutorials/python_interoperability.ipynb">Python interop workbook</a></li>
+<li><a href="https://github.com/apple/swift-evolution/blob/master/proposals/0216-dynamic-callable.md">Dynamic Callable</a></li>
+<li><a href="https://github.com/apple/swift-evolution/blob/master/proposals/0195-dynamic-member-lookup.md">Dynamic Member Lookup</a></li>
+<li><a href="https://numpy.org/">NumPy</a></li>
+</ul>
+</li>
+<li><a href="https://mlir.llvm.org">MLIR: Multi-Level Intermediate Representation</a><ul>
+<li><a href="https://github.com/apple/swift/blob/master/docs/SIL.rst">SIL: Swift Intermediate Language</a></li>
+</ul>
+</li>
+<li><a href="https://www.sifive.com/">SiFive</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Application-specific_integrated_circuit">ASIC: Application-specific integrated circuit</a></li>
+<li><a href="https://en.wikipedia.org/wiki/RISC-V">RISC-V</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Berkeley_Software_Distribution">BSD</a></li>
+<li><a href="https://en.wikipedia.org/wiki/PA-RISC">PA-RISC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mach_%28kernel%29">Mach</a></li>
+<li><a href="https://en.wikipedia.org/wiki/KHTML">KHTML</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc">WWDC</a></li>
+<li>Status of Swift's world domination<ul>
+<li><a href="https://github.com/twostraws/Brisk">Brisk</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Self-hosting_%28compilers%29">Self-hosting</a></li>
+</ul>
+</li>
+<li>Swift's future<ul>
+<li><a href="https://github.com/apple/swift/blob/master/docs/OwnershipManifesto.md">Swift Ownership Manifesto</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Rust_%28programming_language%29">Rust</a></li>
+<li><a href="https://llvmdevmtg2019.sched.com/event/W2ki/ownership-ssa">2019 LLVM Dev Meeting: Ownership SSA</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/C%2B%2B20">C++20</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Clang">Clang</a></li>
+</ul>
+</li>
+<li>Is Swift a... jerk?</li>
+<li><a href="https://developer.apple.com/xcode/swiftui/">SwiftUI</a></li>
+<li><a href="https://developer.apple.com/documentation/combine">Combine</a></li>
+<li>ABI stability<ul>
+<li><a href="https://github.com/apple/swift/blob/master/docs/GenericsManifesto.md#variadic-generics">Variadic generics</a> </li>
+<li><a href="https://gist.github.com/lattner/31ed37682ef1576b16bca1432ea9f782#part-1-asyncawait-beautiful-asynchronous-apis">Swift Concurrency Manifesto</a></li>
+</ul>
+</li>
+<li>Recent woodworking projects<ul>
+<li><a href="https://twitter.com/clattner_llvm/status/1218420257607438338">Treasure box</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Quarantined unproductivity</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="https://www.indeed.com/career-advice/coronavirus-job-resources">Indeed.com</a>: A guide to help those whose jobs have been affected by coronavirus.</li>
+</ul>]]></description><itunes:subtitle>A VERY nerdy technical interview with Chris Lattner, and forgiving ourselves for our lack of productivity during the quarantine.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e72e868824c026bd670b82f</guid><pubDate>Thu, 19 Mar 2020 18:22:02 +0000</pubDate><title>370: Ghost Finger</title><itunes:title>Ghost Finger</itunes:title><itunes:episode>370</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:19:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp370.mp3" length="67252646" type="audio/mpeg"/><link>https://atp.fm/370</link><description><![CDATA[<ul>
+<li><a href="https://developer.apple.com/wwdc20/">WWDC 2020</a> will be online-only<ul>
+<li><a href="https://www.apple.com/newsroom/2020/03/apples-wwdc-2020-kicks-off-in-june-with-an-all-new-online-format/">Press release</a></li>
+<li><a href="http://originalgravitypub.com/">Original Gravity</a> ("the beer-and-sausage place")</li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Rebinding Xcode commands via <a href="https://twitter.com/Koalemos/status/1237915986210234368">Incoherent Toots</a></li>
+<li><a href="https://books.apple.com/us/book/apple-style-guide/id1161855204">Apple Style Guide</a></li>
+</ul>
+</li>
+<li>New Apple Hardware<ul>
+<li><a href="https://www.apple.com/mac-mini/">Mac mini</a> (not really new)</li>
+<li><a href="https://www.apple.com/macbook-air/">MacBook Air</a></li>
+<li><a href="https://www.apple.com/ipad-pro">iPad Pro</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Lidar">LiDAR</a></li>
+<li><a href="https://www.apple.com/us/shop/goto/product/MXQT2">Magic Keyboard for iPad Pro</a></li>
+<li><a href="https://www.apple.com/us/shop/goto/product/MXNK2">Smart Keyboard Folio</a><ul>
+<li><a href="https://www.youtube.com/watch?v=jijhJj_rNDI">iPad Pro Cursor with Craig Federighi</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Consoles<ul>
+<li><a href="https://www.relay.fm/testdrivers/3">The Test Drivers #3: Xbox Series X Exclusive, and the Z Flip Gang</a></li>
+<li><a href="https://www.youtube.com/watch?v=7Fjn4GRw8qE">Xbox Series X Hands On, Gameplay &amp; Controller!</a></li>
+<li><a href="https://www.youtube.com/watch?v=ph8LyNIT9sg">The Road to PS5</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/atp">Eero</a>: The Wi-Fi your home deserves. Use this link and code <strong>ATP</strong> for free overnight shipping.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: The fastest and most reliable VPN. Get an extra three months free with a 1-year package.</li>
+</ul>]]></description><itunes:subtitle>New MacBook Air and iPad Pro, and Magic Keyboards for (almost) everyone!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e69aa7b0425cf4f280b6976</guid><pubDate>Fri, 13 Mar 2020 00:29:09 +0000</pubDate><title>369: Brown Big Bear</title><itunes:title>Brown Big Bear</itunes:title><itunes:episode>369</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:16:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp369.mp3" length="65780304" type="audio/mpeg"/><link>https://atp.fm/369</link><description><![CDATA[<ul>
+<li>Pre-show: Marco's Problem<ul>
+<li><a href="https://marco.org/rmbp-irtest.html">Marco's image-retention test</a></li>
+<li><a href="https://everymac.com/monitors/apple/studio_cinema/specs/apple_cinema_hd_display.html">Apple Cinema Display HD</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>The "coronavirus" virus itself is named SARS-CoV-2. COVID-19 is the disease it causes (formerly called "2019 novel coronavirus" or "2019-nCoV" in some places).</li>
+<li><strong>Recommended info sources on COVID-19:</strong><ul>
+<li><a href="https://www.flattenthecurve.com/">Flatten the Curve</a></li>
+<li><a href="https://www.cdc.gov/coronavirus/2019-ncov/index.html">CDC: COVID-19</a> (continuously updated)</li>
+<li>Video: <a href="https://www.youtube.com/watch?v=Kas0tIxDvrg">Exponential Growth and Epidemics</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc">WWDC</a> still not canceled<ul>
+<li><a href="https://www.sccgov.org/sites/phd/DiseaseInformation/novel-coronavirus/Pages/order-cancellation-mass-gatherings.aspx">Santa Clara County bans gatherings of 1000+</a></li>
+</ul>
+</li>
+<li>John's internal storage situation</li>
+<li>Mac shortcuts<ul>
+<li>Ellipsis is <code>⌥ ;</code></li>
+<li><a href="https://english.stackexchange.com/questions/1155/what-is-the-rule-for-adjective-order">Adjective order</a><ul>
+<li><code>⌘ ⌥ ⌃ ⇧</code></li>
+<li><code>⌃ ⌥</code>?</li>
+<li><a href="https://en.wikipedia.org/wiki/Command_key">Command key</a></li>
+</ul>
+</li>
+<li>Xcode symbol popup: <code>⌃ 6</code></li>
+<li>Drag and drop open/save dialog<ul>
+<li><a href="https://www.stclairsoft.com/DefaultFolderX/">DefaultFolder X</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/CoreyGinnivan/status/1187209574303973376">Screen shotting/screen capture</a></li>
+<li>Hot Corners and modifier keys<ul>
+<li><code>System Preferences</code> → <code>Desktop &amp; Screen Saver</code> → <code>Hot Corners...</code></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Casey's Computer Corner<ul>
+<li><a href="https://twitter.com/brianwski/status/1235841704940326915">Brian Ski's tweet</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Huge rumor dumps<ul>
+<li><a href="https://9to5mac.com/2020/03/10/ios-14-home-screen-list-view/">New homescreen</a></li>
+<li><a href="https://9to5mac.com/2020/03/10/ios-14-wallpapers-third-parties-improved-accessibility-alipay-apple-pay/">Accessibility features, wallpapers, and <code>#shotoniphone</code></a><ul>
+<li><a href="https://gifwrapped.co/">GIFWrapped</a></li>
+</ul>
+</li>
+<li><a href="https://www.macrumors.com/2020/03/09/ios-14-ocr-apple-pencil-text-conversion/">OCR capabilities</a><ul>
+<li>Video: <a href="https://www.youtube.com/watch?v=v2_gX0iSMPg">Transcriber in Windows Mobile</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Graffiti_%28Palm_OS%29">Graffiti</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Inkwell_%28Macintosh%29">Inkwell</a></li>
+<li><a href="https://red-sweater.com/blackink/">Black Ink</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2020/03/11/watchos-7-watch-face/">Apple Watch flag faces</a></li>
+<li><a href="https://9to5mac.com/2020/03/09/apple-watch-series-6-watchos-7-features/">General Apple Watch improvements</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Tachymeter_%28watch%29">Tachymeter</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Is the 2015 15" MBP still <a href="https://marco.org/2017/11/14/best-laptop-ever">the best laptop ever made</a> (via James Scariati)</li>
+<li>Do we have hard-drive icons on our desktop? (via Rob Fiorendino)</li>
+<li>How does one get hardware to make iOS apps on the cheap? (via <a href="https://twitter.com/mvpetri/status/1227261615462068227">Marcos Petri</a>)</li>
+</ul>
+</li>
+<li>Post-show: Marco's new adventures... deep underground<ul>
+<li><a href="https://www.penny-arcade.com/comic/2010/09/20/mine-all-mine-part-two">Penny Arcade</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://getbluevine.com/ATP">BlueVine</a>: Get a $100 gift card when you take out a loan or open a line of credit.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Better than whatever you’re wearing right now. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://linode.com/atp?utm_source=podcast&amp;utm_medium=podcast&amp;utm_content=free-obj&amp;utm_campaign=podcast-accidental_tech_podcast-2020">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2020</strong>.</li>
+</ul>]]></description><itunes:subtitle>More useful Mac shortcuts, modifier-key symbols, and a bunch of new iOS and watchOS rumors.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e607f99aecefd6c5305b210</guid><pubDate>Thu, 05 Mar 2020 05:38:02 +0000</pubDate><title>368: A Jacket and Some Pins</title><itunes:title>A Jacket and Some Pins</itunes:title><itunes:episode>368</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:08</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp368.mp3" length="69707305" type="audio/mpeg"/><link>https://atp.fm/368</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Feedback &amp; Radar</li>
+<li>Casey's Catalina Catastrophe</li>
+<li><a href="https://www.promise.com/us/Promotion/PegasusStorage">Pegasus J2i</a><ul>
+<li><a href="https://appgineers.de/mountain/index.html">Mountain</a></li>
+</ul>
+</li>
+<li>Certificate revocation</li>
+<li><a href="https://www.stratechery.com/">Ben Thompson</a> and <a href="https://brettterpstra.com/projects/nvalt/">nvALT</a></li>
+<li><a href="https://developers.google.com/tech-writing/one/just-enough-grammar">Just Enough Grammar</a></li>
+</ul>
+</li>
+<li>How does one back up a <a href="https://www.synology.com/en-us">Synology</a>?<ul>
+<li><a href="https://www.backblaze.com/b2/cloud-storage-pricing.html">Backblaze B2</a></li>
+<li><a href="https://aws.amazon.com/glacier/">Amazon Glacier</a></li>
+<li><a href="https://www.arqbackup.com/">Arq</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc">WWDC</a> cancellation?<ul>
+<li><a href="https://www.relay.fm/radar/186">Under the Radar #186: Replacing WWDC</a></li>
+<li><a href="https://aneventapart.com/">An Event Apart</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What are some of our favorite macOS keyboard shortcuts?<ul>
+<li>⌘ K for VNC/SMB</li>
+<li>⇧ ⌘ A for Applications</li>
+<li>⇧ ⌘ 4 for screenshot</li>
+<li>⌥ ⇧ ⌘ V for Paste and Match Style<ul>
+<li><a href="https://apps.apple.com/us/app/plain-text-paste/id699658222">Plain Text app for iOS</a></li>
+</ul>
+</li>
+<li>⎋ during drag</li>
+<li>Drag onto a Finder column heading</li>
+<li>⌘ Click on the title of a Finder window</li>
+<li>⌘ ↑ and ⌘ ↓ to go up/down the folder hierarchy</li>
+<li>Xcode<ul>
+<li>⌥ ⌘ / for creating documentation</li>
+<li>⇧ ⌘ O for quick open</li>
+<li>⌥ ⇧ ⌘ ⌃ C for Copy Qualified Symbol Name</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Is there a difference between an app's <code>Open at login</code> and <code>System Preferences</code> → <code>User &amp; Groups</code> → <code>Login Items</code>? (via <a href="https://twitter.com/ablaze/status/1232667517719580673">Jon Mitchell</a>)</li>
+<li>If you had to use a co-hosts's machine, whose would it be? (via <a href="https://twitter.com/ngaffney/status/1231217951094853633">Nicholas Gaffney</a>)</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: <a href="https://www.bmw.com/en/automotive-life/bmw-logo-meaning-history1.html">New BMW logo</a><ul>
+<li><a href="https://www.bmwusa.com/concept-vehicles/concept-i4.html">Concept i4</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://awaytravel.com/accidentaltech">Away</a>: Whoever you are, and whatever you need to pack, Away has luggage that will help make your next trip more seamless.</li>
+<li><a href="https://kolide.com">Kolide</a>: User-focused security for teams that Slack.</li>
+</ul>]]></description><itunes:subtitle>Fixing Casey's computer, managing (and backing up) NAS-sized data, and WWDC's potential cancellation due to COVID-19.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e573fb43589c5496ff051f6</guid><pubDate>Thu, 27 Feb 2020 22:57:00 +0000</pubDate><title>367: Antitrust Relief Valve</title><itunes:title>Antitrust Relief Valve</itunes:title><itunes:episode>367</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:57</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp367.mp3" length="54833255" type="audio/mpeg"/><link>https://atp.fm/367</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://hypercritical.co/switchglass/">SwitchGlass</a> desktop-image update</li>
+<li>Apple Music <a href="https://twitter.com/htmlarson/status/1230727357213724673">high-quality streaming</a><br><code>Settings</code> → <code>Music</code> → <code>Cellular Data</code> → <code>High Quality Streaming</code></li>
+<li><a href="https://twitter.com/afarnham/status/1231638121151897600">Swift and static analysis</a></li>
+<li>Overcast and UI state restoration</li>
+<li><a href="https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-atp/microsoft-defender-atp-mac">Microsoft Defender ATP</a><ul>
+<li><a href="https://www.theverge.com/2020/2/20/21145388/microsoft-antivirus-ios-android-apps-software-defender-security-malware">Coming for iOS</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2020/02/safari-will-reject-long-lived-https-certificates-starting-september-1/">Safari and long-lived HTTPS certificates</a><ul>
+<li><a href="https://letsencrypt.org/">Let's Encrypt</a></li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2020-02-20/apple-weighs-loosening-restrictions-on-rival-iphone-music-apps">Apple considering allowing users switch default apps</a><ul>
+<li><a href="https://www.spotify.com/">Spotify</a>'s <a href="http://www.timetoplayfair.com">Time to Play Fair</a></li>
+<li><a href="https://culturedcode.com/things/">Things</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>How do we handle the business side of the App Store? (via Stephen Gerstacker)</li>
+<li>Do we shop TVs based on primary usage? (via <a href="https://twitter.com/starsasumi/status/1228688718535548929">starsasumi</a>)<ul>
+<li><a href="https://developer.nvidia.com/g-sync">G-SYNC</a></li>
+</ul>
+</li>
+<li>When do we use a notes app vs. a flat file? (via <a href="https://twitter.com/futureben/">Future Ben</a>)</li>
+</ul>
+</li>
+<li>Post-show: Casey's Computer Woes</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://indeed.com/podcast">Indeed</a>: Post a job today. Get a free sponsored job upgrade on your first posting.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://www.proclipusa.com?utm_source=accidentaltechpodcast&amp;utm_medium=podcast&amp;utm_campaign=2020">ProClip USA</a>: High-quality, two-part phone mounts. Get 10% off with code <strong>atp10</strong>.</li>
+</ul>]]></description><itunes:subtitle>Apple possibly adding default-app choice on iOS, shorter HTTPS-certificate lifespans, and Casey's humongous-gust-of wind.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e4e09502921b265cf80464c</guid><pubDate>Thu, 20 Feb 2020 21:00:51 +0000</pubDate><title>366: There’s Nothing You Can Fix in a Day</title><itunes:title>There’s Nothing You Can Fix in a Day</itunes:title><itunes:episode>366</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp366.mp3" length="65375620" type="audio/mpeg"/><link>https://atp.fm/366</link><description><![CDATA[<ul>
+<li>Pre-show: Catalina. 🙄 × ∞ <ul>
+<li><a href="https://twitter.com/caseyliss/status/1229488602536665088">Machine-gun trackpad</a></li>
+<li><a href="https://twitter.com/marcoarment/status/1228420238561161222">Marco on OS upgrades</a></li>
+<li><a href="rdar://FB7585056">Casey's Radar</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://grasshopper.app/">Grasshopper</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Logo_%28programming_language%29">Logo</a></li>
+</ul>
+</li>
+<li>Butterfly keyboards and ergonomics</li>
+<li>Finder toolbar bug... defeated?</li>
+<li><a href="https://sixcolors.com/post/2020/02/more-adware-targets-the-mac-but-apple-swings-the-hammer/">Mac malware getting worse?</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/counternotions/status/1210587390772826113">What does Apple need to make most?</a></li>
+<li>iOS 13.4<ul>
+<li><a href="https://twitter.com/bzamayo/status/1225139871410462720">Mail toolbar fixes</a></li>
+<li><a href="https://twitter.com/cabel/status/1225143769852329985">Cabel's take</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What one trivial bug would you fix if you could? (via <a href="https://twitter.com/Mantia/status/1227351116788092929">Louie Mantia</a>)<ul>
+<li><a href="https://twitter.com/caseyliss/status/1227922445274959876">Casey's answer</a></li>
+</ul>
+</li>
+<li>How should one partition an onboard SSD? (via James Irwin)</li>
+<li>Would you narrate your favorite author's audiobook? (via <a href="https://twitter.com/_brianhamilton/status/1225072866456211463">Brian Hamilton</a>)</li>
+</ul>
+</li>
+<li>Post-show: John's [continued] adventures in programming<ul>
+<li><a href="https://github.com/mczachurski/wallpapper">Wallpaper creation tool</a></li>
+</ul>
+</li>
+<li>Post-post show: <a href="https://allenpike.com/2019/guide-to-cold-med-complex">Cold medicines</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.handy.com/atp">Handy</a>: The most reliable name in house cleaning. Get your first 3-hour cleaning for only $29 when you sign up for a cleaning plan.</li>
+<li><a href="https://www.indeed.com/podcast">Indeed</a>: Post a job today. Get a free sponsored job upgrade on your first posting.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>We invent new Apple products and fix some bugs for them, and John implements a seemingly trivial feature.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e44cf5e84e5fe5d9c71dc73</guid><pubDate>Fri, 14 Feb 2020 01:35:33 +0000</pubDate><title>365: Day-One Cowboy</title><itunes:title>Day-One Cowboy</itunes:title><itunes:episode>365</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp365.mp3" length="62783006" type="audio/mpeg"/><link>https://atp.fm/365</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>SwiftUI previews of UIKit<ul>
+<li><a href="https://dev.to/gualtierofr/preview-uikit-views-in-xcode-3543">Gualtiero Frigerio</a></li>
+<li><a href="https://nshipster.com/swiftui-previews/">NSHipster</a></li>
+</ul>
+</li>
+<li>Folder aliases in the Dock<ul>
+<li><a href="https://arstechnica.com/gadgets/2009/08/mac-os-x-10-6/17/">Snow Leopard Review</a><ul>
+<li>Radar #59289423</li>
+</ul>
+</li>
+<li>Shell scripts<ul>
+<li><a href="https://gist.github.com/jan4843/9d2be97af41610c4c11f0775b4c42ea8">Jan Vitturi</a></li>
+<li><a href="https://github.com/rkanson/atp-downloads">Richard Kanson</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://hypercritical.co/2020/02/12/switchglass">John's new app (‼️)</a><ul>
+<li><a href="https://www.keyboardmaestro.com/main/">Keyboard Maestro</a></li>
+<li><a href="https://tapbots.com/pastebot/">Pastebot</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/variety/status/1226710675554091008">Taika Waititi on Apple Keyboards</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Model_M_keyboard">IBM Model M</a></li>
+<li>Marco's <a href="https://marco.org/2017/11/14/best-laptop-ever">Best Laptop Ever Made</a></li>
+</ul>
+</li>
+<li><a href="https://apps.apple.com/us/app/swift-playgrounds/id1496833156?mt=12">Swift Playgrounds on macOS</a></li>
+<li><code>#askatp</code><ul>
+<li>What's the situation with macOS security? (via Anthony Scardapane)<ul>
+<li><a href="http://drops.caseyliss.com/PTBthH">Gatekeeper</a></li>
+</ul>
+</li>
+<li>What does Marco do to avoid recursive Voice Boost? (via <a href="https://twitter.com/rare__faction/status/1217019179489873920">Chris Wright</a>)</li>
+<li>How do we use show notes as a listener? (via Simo Isto)</li>
+</ul>
+</li>
+<li>Post-show: John's adventures in programming</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://getbluevine.com/ATP">BlueVine</a>: Get a $100 gift card when you take out a loan or open a line of credit.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://bombas.com/atp">Bombas</a>: The most comfortable socks in the history of feet. Get 20% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Butterflies went mainstream, Marco gave up a fight, and John can't stop making new apps.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e3b92c9fe4a570a610b58a0</guid><pubDate>Thu, 06 Feb 2020 19:32:01 +0000</pubDate><title>364: A Casey Settings Screen</title><itunes:title>A Casey Settings Screen</itunes:title><itunes:episode>364</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:59</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp364.mp3" length="63423276" type="audio/mpeg"/><link>https://atp.fm/364</link><description><![CDATA[<ul>
+<li>Pre-show: Docks</li>
+<li>Follow-up:<ul>
+<li>Pro Display XDR reference modes</li>
+<li>Mac Pro internal disk options</li>
+<li>iPad Multitasking and recent apps</li>
+</ul>
+</li>
+<li><a href="https://apps.apple.com/us/app/peek-a-view/id1491554407?ls=1">Casey's new app (‼️)</a><ul>
+<li><a href="https://nshipster.com/guided-access/">Detecting Guided Access</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/xcode/swiftui/">SwiftUI</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Knife_switch">Knife Switch</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2020/2/4/21122044/google-photos-privacy-breach-takeout-data-video-strangers">Google Photos Privacy Breach</a></li>
+<li><code>#askatp</code><ul>
+<li>What do we think about <a href="https://brew.sh">homebrew</a>? (via Stephan Jacobs)<ul>
+<li><a href="https://www.macports.org/">MacPorts</a></li>
+</ul>
+</li>
+<li>What's the difference between ⇧/⌘/⌥ keys?<ul>
+<li><a href="https://en.wikipedia.org/wiki/Command_key#Origin_of_the_symbol">Origin of the ⌘ key</a></li>
+<li><a href="http://www.tin.org/"><code>tin</code></a></li>
+<li><a href="https://saveforwebclaws.tumblr.com/">Save for Web Claws</a></li>
+</ul>
+</li>
+<li>What do we name our Wi-Fi networks? (via Jesse in South Dakota)<ul>
+<li><a href="https://twitter.com/caseyliss/status/1214205091718279168"><code>Silence Of The LANS</code></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Auto-joining Wi-Fi networks<ul>
+<li><a href="https://www.npr.org/2010/10/09/130451369/the-zombie-network-beware-free-public-wifi">"Free Public WiFi"</a></li>
+<li><a href="https://www.reddit.com/r/ATT/comments/8lmsg6/attwifi_passpoint/">iOS auto-joins AT&amp;T Wi-Fi networks without user permission</a><ul>
+<li><a href="https://pirosap.hatenablog.com/entry/20180203/1517657985">The mechanism by which Apple does this: carrier bundles</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="https://kolide.com">Kolide</a>: User-focused security for teams that Slack.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Casey surprises everyone with a new app, John fixes Dock folders, and Marco names Wi-Fi networks.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e325e4c8a92c82fc8098040</guid><pubDate>Thu, 30 Jan 2020 22:16:24 +0000</pubDate><title>363: The Floor is Lava</title><itunes:title>The Floor is Lava</itunes:title><itunes:episode>363</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:29:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp363.mp3" length="72211030" type="audio/mpeg"/><link>https://atp.fm/363</link><description><![CDATA[<ul>
+<li>Casey's Complaints about his Co-Hosts Corner<ul>
+<li><a href="https://www.bmwusa.com/build-your-own.html#/studio/e3xo5rdh/summary">Marco's replaced BMW link</a></li>
+<li><a href="https://www.bmwusa.com/build-your-own.html#/studio/e4395jw7/summary">The <em>actual</em> link</a></li>
+<li><a href="https://www.relay.fm/rd/121">Reconcilable Differences #121: Impotent Hydra</a></li>
+<li><a href="https://www.wegmans.com/">Wegmans</a></li>
+</ul>
+</li>
+<li>Update on Marco's iMac Pro fan issues<ul>
+<li><a href="https://support.apple.com/en-us/HT201295">SMC reset</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT210435">Pro Display XDR reference modes</a></li>
+<li>Rack-mount Mac Pro videos from Neil Parfitt<ul>
+<li><a href="https://www.youtube.com/watch?v=xNrG2mwt4Uo&amp;feature=youtu.be">Unboxing</a></li>
+<li><a href="https://www.youtube.com/watch?v=Iq9vZP4TDcA&amp;feature=youtu.be">Fan noise</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/chrisipedia/status/1220295522994610176">A pro's thoughts on TrueTone</a><ul>
+<li><a href="https://www.iso.org/standard/57311.html">ISO 12646</a></li>
+</ul>
+</li>
+<li>Xcode layout advice<ul>
+<li><a href="https://youtu.be/bhhWI0BofEg">Video demo</a></li>
+<li><a href="https://twitter.com/alxknt/status/1221159017797619720">Localization warnings</a></li>
+</ul>
+</li>
+<li>Marco's Overcast Bug-Finding Mission<ul>
+<li><a href="https://developer.apple.com/library/archive/qa/qa1606/_index.html">Technical Q&amp;A QA1606</a></li>
+<li><a href="https://developer.apple.com/documentation/audiotoolbox/1534199-generic_audio_unit_properties/kaudiounitproperty_maximumframesperslice"><code>kAudioUnitProperty_MaximumFramesPerSlice</code></a></li>
+<li><a href="https://developer.apple.com/documentation/avfoundation/avaudiosession/1616589-setpreferrediobufferduration"><code>AVAudioSession
+setPreferredIOBufferDuration</code></a></li>
+</ul>
+</li>
+<li>Apple's API documentation<ul>
+<li><a href="https://nooverviewavailable.com">No Overview Available</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2019-11-21/apple-ios-14-features-changes-testing-after-ios-13-bugs">iOS 14 Shakeup</a></li>
+</ul>
+</li>
+<li><a href="https://daringfireball.net/2020/01/the_ipad_awkwardly_turns_10">The iPad Awkwardly Turns 10</a><ul>
+<li><a href="https://workingcopyapp.com/">Working Copy</a></li>
+<li><a href="https://en.wikipedia.org/wiki/WIMP_(computing%29">WIMP</a></li>
+<li><a href="https://twitter.com/JrodWilliams/status/1221906617589010433">Surface/iPad Lineup in 2020</a></li>
+</ul>
+</li>
+<li>Post-show: John's Bug-Finding Mission<ul>
+<li><a href="https://developer.apple.com/documentation/appkit/nswindow"><code>NSWindow</code></a></li>
+<li><a href="https://developer.apple.com/documentation/appkit/nswindow/1419062-isreleasedwhenclosed"><code>isReleasedWhenClosed</code></a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://yesplz.coffee/">YES PLZ</a>: Upgrade your morning coffee game and you’ll upgrade your whole day. Get 25% off your first shipment with code <strong>MARCOSENTME</strong>.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2020</strong>.</li>
+<li><a href="https://getbluevine.com/ATP">BlueVine</a>: Get a $100 gift card when you take out a loan or open a line of credit.</li>
+</ul>]]></description><itunes:subtitle>We fix two big bugs, and use the adrenaline rush to solve iPad multitasking. You're welcome, Apple.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e2919b675cc1852160d48ed</guid><pubDate>Fri, 24 Jan 2020 03:26:42 +0000</pubDate><title>362: Xcode in Anger</title><itunes:title>Xcode in Anger</itunes:title><itunes:episode>362</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:23</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp362.mp3" length="63804541" type="audio/mpeg"/><link>https://atp.fm/362</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://twitter.com/b_t_walsh/status/1218009678770098177/photo/1">That's the Microsoft logo, you fools</a><ul>
+<li><a href="https://blogs.windows.com/windowsexperience/2012/02/17/redesigning-the-windows-logo/">Redesigning the Windows Logo</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/setu4993/status/1219398874302840832">Removing the Dropbox Finder extension</a><ul>
+<li><code>System Preferences</code> → <code>Extensions</code> → <code>Dropbox</code> → <code>Finder Extension</code></li>
+</ul>
+</li>
+<li>Pro Display XDR display profiles<ul>
+<li><a href="https://github.com/JohnCoates/Aerial">Aerial screensaver</a></li>
+</ul>
+</li>
+<li><a href="https://www.logitechg.com/en-us/products/gaming-mice/g305-lightspeed-wireless-gaming-mouse.html">Logitech G305 mouse</a> review<ul>
+<li><a href="https://www.charlessoft.com/">Pacifist</a></li>
+</ul>
+</li>
+<li><a href="https://overcast.fm/+WCfXYG-rw">Jonathan Mann on his post-WWDC song</a></li>
+<li><a href="http://hypercritical.co/2020/01/08/front-and-center">Front and Center</a> update</li>
+<li>Marco's iMac Pro update</li>
+</ul>
+</li>
+<li><a href="https://www.reuters.com/article/us-apple-fbi-icloud-exclusive-idUSKBN1ZK1CT">Apple acquiesces to the FBI regarding encrypted iCloud backups?</a><ul>
+<li><a href="https://daringfireball.net/2020/01/reuters_report_on_apple_dropping_plan_for_encrypted_icloud_backups">Gruber's initial reaction</a></li>
+<li><a href="https://daringfireball.net/linked/2020/01/21/cook-der-spiegel">Gruber on Tim Cook on Der Spiegel</a></li>
+<li><a href="https://daringfireball.net/linked/2020/01/22/wsj-icloud-encryption-2016">Apple on end-to-end encryption in 2016</a></li>
+<li><a href="https://daringfireball.net/linked/2020/01/21/android-encrypted-backups">Android does encrypt backups</a></li>
+<li><a href="https://stratechery.com/2020/icloud-backups-and-encryption-facts-principles-and-concerns-determining-defaults/">Ben Thompson's take</a></li>
+</ul>
+</li>
+<li>Xcode layout hell</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: What cars would we each take on a cross-country trip?<ul>
+<li>🚨 SPOILER ALERT 🚨 </li>
+<li><a href="https://www.bmwusa.com/build-your-own.html#/studio/e3xo5rdh/summary">Casey's answer</a></li>
+<li><a href="https://www.tesla.com/models">Marco's answer</a> (and <a href="https://www.bmwusa.com/vehicles/m-models/m5-sedan/overview.html">backup answer</a>)</li>
+<li><a href="https://www.mbusa.com/en/vehicles/model/s-class/sedan/s63v4">John's answer</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.clearme.com/accidentaltech">Clear</a>: Get through security even faster. Get your first 2 months free with code <strong>accidentaltech</strong>.</li>
+<li><a href="https://healthiq.com/atp">HealthIQ</a>: Using science and data to secure lower life-insurance rates for people like you.</li>
+<li><a href="https://casper.com/atp2019">Casper</a>: Expertly designed products to help you get your best rest, one night at a time. Get $100 toward select mattresses with code <strong>atp2019</strong>. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>John tries to use Interface Builder.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e1fe563f8c3503a17270978</guid><pubDate>Thu, 16 Jan 2020 21:20:33 +0000</pubDate><title>361: A Button in the Thumb Shelf</title><itunes:title>A Button in the Thumb Shelf</itunes:title><itunes:episode>361</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp361.mp3" length="63714847" type="audio/mpeg"/><link>https://atp.fm/361</link><description><![CDATA[<ul>
+<li>AirPods vs. AirPlanes<ul>
+<li><a href="http://neverssl.com/"><code>neverssl.com</code></a> &amp; <a href="http://www.alwayshttp.com/"><code>alwayshttp.com</code></a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Camera ergonomics (via Henrik Helmers)<ul>
+<li><a href="https://en.wikipedia.org/wiki/PopSockets">PopSockets</a></li>
+</ul>
+</li>
+<li>Jumpy mice (via Scott Simpson)<ul>
+<li><a href="https://usb.org/sites/default/files/327216.pdf">USB 3.0 Radio Frequency Interference Impact on 2.4 GHz Wireless Devices</a></li>
+</ul>
+</li>
+<li>Photo sharing<ul>
+<li><a href="https://twitter.com/mpanighetti/status/1215402294713319424">Mario Panighetti</a></li>
+<li><a href="https://twitter.com/4ndrew3lliott/status/1216849024608661504">Andrew Elliott</a></li>
+<li><a href="https://twitter.com/jwcounts/status/1215452194926989313">Jared Counts</a></li>
+</ul>
+</li>
+<li>Using a PS4 controller wirelessly with a PC/Mac<ul>
+<li><a href="http://www.amazon.com/dp/B01KYVLKG2/?tag=siracusa-20">DUALSHOCK 4 USB wireless adapter, Japanese version</a></li>
+<li><a href="https://developer.apple.com/programs/mfi/">MFi</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>The <a href="https://www.apple.com/shop/buy-mac/mac-pro/rack">rack-mount Mac Pro</a> is now available</li>
+<li>Pro Display XDR TrueTone</li>
+<li>Mac Pro Ethernet wonkiness</li>
+<li>iMac Pro Ethernet wonkiness<ul>
+<li><a href="http://www.mocalliance.org">MoCa</a></li>
+<li><a href="http://www.amazon.com/dp/B008C1JC4O/?tag=liismo-20">Casey's MOCA Bridge</a></li>
+<li><a href="http://www.amazon.com/dp/B077Y3SQXR/?tag=liismo-20">Gigabit MOCA Bridge</a></li>
+<li><a href="http://www.amazon.com/dp/B00A121WN6/?tag=liismo-20">Casey's New Switch</a></li>
+</ul>
+</li>
+<li>John's sleep/wake battles<ul>
+<li><a href="https://eclecticlight.co/">The Eclectic Light Company</a></li>
+<li><a href="https://eclecticlight.co/2017/01/20/power-management-in-detail-using-pmset/">Howard Oakley on <code>pmset</code></a></li>
+</ul>
+</li>
+<li>John's Finder toolbar battles</li>
+<li><a href="https://marco.org/2020/01/13/macos-low-power-mode-redux">Making the case for macOS Low Power Mode</a><ul>
+<li><a href="https://www.macrumors.com/2020/01/13/pro-mode-macos-catalina-beta/">Pro Mode rumor</a></li>
+<li><a href="https://www.rugarciap.com/turbo-boost-switcher-for-os-x/">Turbo Boost Switcher Pro</a></li>
+<li><a href="https://www.tripmode.ch/">TripMode</a></li>
+</ul>
+</li>
+<li>John's mouse and keyboard reviews<ul>
+<li><a href="https://amzn.to/2u7aqXl">Microsoft Precision Mouse</a></li>
+<li><a href="https://amzn.to/2FV6ADv">Logitech Marathon Mouse M705</a></li>
+<li><a href="https://amzn.to/375AYHg">Logitech MX Master 3</a></li>
+<li><a href="https://amzn.to/30rTib1">Logitech G305 Lightspeed Wireless Gaming Mouse</a></li>
+<li><a href="https://amzn.to/2R4Jf8w">Logitech MX Keys Advanced Wireless Illuminated Keyboard</a></li>
+<li><a href="http://www.plentycom.jp/en/steermouse/">SteerMouse</a></li>
+<li><a href="http://www.amazon.com/dp/B00CYX26BC/?tag=marcoorg-20">Microsoft Sculpt Ergonomic Keyboard</a></li>
+</ul>
+</li>
+<li><a href="https://quoteinvestigator.com/2012/02/24/telegraph-cat/">Cat reference</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.mackweldon.com/">Mack Weldon</a>: The most comfortable underwear, socks, shirts, undershirts, hoodies, sweat pants, and more that you will ever wear. Get 20% off your first order with code <strong>atppodcast</strong>.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2020</strong>.</li>
+</ul>]]></description><itunes:subtitle>In-flight entertainment, Ethernet drama, restless Macs, and sanding off a Windows logo.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e16b2ea108c2c1815af3bd2</guid><pubDate>Thu, 09 Jan 2020 21:23:40 +0000</pubDate><title>360: Big Hole in the Middle</title><itunes:title>Big Hole in the Middle</itunes:title><itunes:episode>360</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:16:19</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp360.mp3" length="66224260" type="audio/mpeg"/><link>https://atp.fm/360</link><description><![CDATA[<ul>
+<li>Intro: Casey was not consulted<ul>
+<li><a href="https://www.youtube.com/watch?v=LruaD7XhQ50">CGP Grey</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Boot camp on external drives<ul>
+<li><a href="https://www.easyuefi.com/wintousb/">WinToUSB</a></li>
+<li><a href="https://rufus.ie/">Rufus</a> (via <a href="https://twitter.com/archagon/status/1212870876531548165">Alexei</a>)</li>
+<li>Was the boot restriction issue the one from the start? (via <a href="https://twitter.com/bftsystems/status/1212716599557459968">Brad</a>)</li>
+</ul>
+</li>
+<li>Dual-booting with Bluetooth (via <a href="https://twitter.com/twasink/status/1214120868172849153">Robert Watkins</a>)</li>
+<li><a href="https://www.ifixit.com/Teardown/Mac+Pro+2019+Teardown/128922#s253356">2019 Mac Pro speaker module cable</a></li>
+<li><a href="https://twitter.com/SnazzyQ/status/1209241020803641344/video/1">Removing the Mac Pro case while it's running</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Harmonia_axyridis">Asian ladybeetle</a></li>
+<li>Full-resolution iCloud photo sharing<ul>
+<li><a href="https://support.apple.com/en-au/guide/icloud/mm93a9b98683/icloud">KBase article</a> (via Kyles the Gray)</li>
+<li><a href="https://twitter.com/mpanighetti/status/1212829440155086848">Great summary photos</a></li>
+</ul>
+</li>
+<li>Swift is a 🍆<ul>
+<li><a href="https://medium.com/@chris_dus/type-erasure-in-swift-84480c807534">Type erasure in Swift</a></li>
+<li><a href="https://nshipster.com/method-swizzling/">Method swizzling</a></li>
+<li><a href="https://developer.apple.com/library/archive/documentation/General/Conceptual/CocoaEncyclopedia/ClassClusters/ClassClusters.html">Class clusters</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://hypercritical.co/2020/01/08/front-and-center">John's new app, Front and Center</a><ul>
+<li><a href="https://apps.apple.com/us/app/front-and-center/id1493996622?ls=1&amp;mt=12">Buy Front and Center on the Mac App Store</a></li>
+<li><a href="https://dragthing.com/">DragThing</a></li>
+<li><a href="https://atp.fm/96">ATP #96: The Windows of Siracusa County</a></li>
+<li><a href="https://flyingmeat.com/">Flying Meat</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/circuitbreaker/2019/12/9/21002605/apple-tv-remote-salt-swiss-tv-company-replacement-buttons-normal">Salt remote for Apple TV</a> (via <a href="https://twitter.com/roessli">David Roessli</a>)</li>
+<li>John's <a href="https://www.apple.com/pro-display-xdr/">Pro Display XDR</a><ul>
+<li><a href="https://twitter.com/j_salvo/status/1213220980912541702">Comparison thread to "real" reference screens by Juan Salvo</a></li>
+</ul>
+</li>
+<li>Marco's vacation tech experiences</li>
+<li>Post-show: Casey's Disney Trip<ul>
+<li><a href="https://dvcrequest.com/">David's Vacation Club Rentals</a></li>
+<li><a href="https://disneyworld.disney.go.com/resorts/bay-lake-tower-at-contemporary/">Bay Lake Tower</a></li>
+<li><a href="https://disneyworld.disney.go.com/dining/plans/">Disney Dining Plans</a></li>
+<li><a href="https://gardengrocer.com/">Garden Grocer</a></li>
+<li><a href="https://www.orlandostrollerrentals.com/">Orlando Stroller Rentals</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/accidentaltech">Away</a>: Get your suitcase and shop other travel essentials.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Make a name for yourself. Get 10% off your first purchase.</li>
+<li><a href="https://art19.com/shows/techmeme-ridehome">Techmeme Ride Home</a>: Subscribe today in your podcast app of choice (<a href="https://itunes.apple.com/us/podcast/techmeme-ride-home/id1355212895?mt=2">Apple</a>, <a href="https://overcast.fm/itunes1355212895/techmeme-ride-home">Overcast</a>, <a href="https://pca.st/3yCG">Pocket Casts</a>, <a href="https://open.spotify.com/show/0xyL4fhg7CdUMsXS7BFvjs">Spotify</a>).</li>
+</ul>]]></description><itunes:subtitle>John's Pro Display XDR and new app (!), Salt's Apple TV remote, and the untimely death of a 16-inch MacBook Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5e06d68631a7876caf36201e</guid><pubDate>Wed, 01 Jan 2020 05:35:53 +0000</pubDate><title>359: I Could Live in There</title><itunes:title>I Could Live in There</itunes:title><itunes:episode>359</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp359.mp3" length="64290775" type="audio/mpeg"/><link>https://atp.fm/359</link><description><![CDATA[<ul>
+<li>John's Computer Situation</li>
+<li>State of Catalina</li>
+<li>Audiophiles <a href="http://www.amazon.com/dp/B004LR7HP4/?tag=liismo-20">are bananas</a><ul>
+<li><a href="https://www.monoprice.com/product?p_id=5437">Monoprice equivalent</a></li>
+</ul>
+</li>
+<li>Follow-up: MagSafe connectors</li>
+<li>John's Mac Pro setup experience<ul>
+<li>Storage/RAM effects</li>
+<li>Cable-free internals</li>
+<li>Time Machine</li>
+<li><a href="https://support.apple.com/boot-camp">Boot Camp</a> ideas—<em>none</em> of which work as described <a href="https://blog.macsales.com/40947-tech-tip-how-to-use-boot-camp-on-an-external-drive/">1</a>, <a href="https://9to5mac.com/2017/08/31/how-windows-10-mac-boot-camp-external-drive-video/">2</a>, <a href="https://blog.macsales.com/40947-tech-tip-how-to-use-boot-camp-on-an-external-drive/comment-page-1/#comment-103368">3</a>, <a href="https://apple.stackexchange.com/questions/374703/unable-to-verify-macos-when-i-try-installing-the-os-on-an-external-ssd/374711#374711">4</a><ul>
+<li><a href="https://support.apple.com/en-au/HT208198">Don't forget about this, too</a>!</li>
+</ul>
+</li>
+<li>Peripherals<ul>
+<li><a href="http://www.amazon.com/dp/B07DRK7HJS/?tag=siracusa-20">Microsoft Precision Mouse</a></li>
+<li><a href="http://www.amazon.com/dp/B0034XRDUA/?tag=siracusa-20">Logitech Marathon Mouse M705</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=I0PnVHHTX1E&amp;feature=youtu.be">Quinn Nelson's (Snazzy Labs) video</a> and <a href="https://twitter.com/SnazzyQ/status/1209229177750089728">observation</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Is iCloud photo sharing really this much of a mess? (via Dzmitry Tabakerau)<ul>
+<li><a href="https://twitter.com/tvaziri/status/1208869263672430592">Todd's tweet</a></li>
+</ul>
+</li>
+<li>Is Swift really a 🍆? (via <a href="https://twitter.com/JK_Kross/status/1184879175145902081">JK Kross</a>)<ul>
+<li><a href="https://arstechnica.com/gadgets/2014/10/os-x-10-10/21/#swift">John's Swift review</a></li>
+<li><a href="http://wiki.c2.com/?BondageAndDisciplineLanguage">Bondage and Discipline Language</a></li>
+</ul>
+</li>
+<li>If the ATP hosts took a road trip together, who is sitting where? (via <a href="https://twitter.com/timbornholdt/status/1209100870559916032">Tim Bornholdt</a>)</li>
+</ul>
+</li>
+<li>Post-show: John visits a Microsoft Store</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://kolide.com/?utm_source=ATP&amp;utm_medium=podcast&amp;utm_campaign=ATP">Kolide</a>: User-focused security for teams that Slack.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2020</strong>.</li>
+</ul>]]></description><itunes:subtitle>The greatest sales pitch for a gaming PC that we've ever inadvertently made.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5dfd89638c6e911e4fdcc52a</guid><pubDate>Mon, 23 Dec 2019 02:45:40 +0000</pubDate><title>358: Emotional-Support Mac Pro</title><itunes:title>Emotional-Support Mac Pro</itunes:title><itunes:episode>358</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:35</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp358.mp3" length="57531924" type="audio/mpeg"/><link>https://atp.fm/358</link><description><![CDATA[<ul>
+<li>John's Computer Situation<ul>
+<li><a href="https://www.relay.fm/rd/120">Reconcilable Differences #120: Where the Packages Sleep</a></li>
+</ul>
+</li>
+<li>Mac Pro tidbits and follow-up:<ul>
+<li><a href="https://www.ifixit.com/Teardown/Mac+Pro+2019+Teardown/128922#s253349">Mac Pro feet are removable</a></li>
+<li>580X has two HDMI ports on the back<ul>
+<li><a href="https://en.wikipedia.org/wiki/3dfx_Interactive#Mainstream_success">3dfx Voodoo</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sound_Blaster">Sound Blaster</a></li>
+</ul>
+</li>
+<li><a href="https://www.blackmagicdesign.com/products/blackmagicegpu/">Blackmagic eGPUs</a> and <a href="https://www.apple.com/pro-display-xdr/">Pro Display XDR</a><ul>
+<li><a href="https://egpu.io/forums/thunderbolt-enclosures/blackmagic-egpu-review-apples-ultrafine-curse/">Teardown</a></li>
+<li><a href="https://www.gigabyte.com/us/Motherboard/GC-TITAN-RIDGE-rev-10#kf">Thunderbolt 3 Add-in Card</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/VirtualLink">Virtual Link</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Half-Life:_Alyx">Half-Life: Alyx</a></li>
+<li><a href="https://www.razer.com/gaming-laptops/razer-blade">Razer Blade 15</a></li>
+<li><a href="https://www.nvidia.com/en-us/geforce/graphics-cards/rtx-2080/">Nvidia GeForce RTX Max-Q</a></li>
+<li><a href="https://www.eurogamer.net/articles/digitalfoundry-2019-02-28-psa-the-usb-c-port-on-rtx-graphics-cards-isnt-just-for-vr">Deep Dive</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/KyleStay/status/1207292514052591618">Connecting a Cinema Display to the new Mac Pro</a><ul>
+<li><a href="http://www.amazon.com/dp/B01N2ORP84/?tag=siracusa-20">USB-C → Mini DisplayPort</a></li>
+</ul>
+</li>
+<li>Rat tails and monitors<ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Display_Connector">Apple Display Connector</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.hbo.com/watchmen">Watchmen</a><ul>
+<li><a href="https://www.youtube.com/watch?v=2ejnulsLLyI">Doug DeMuro on the Grand National</a></li>
+<li><a href="https://www.youtube.com/watch?v=6u8xlg-q5Xc">Regular Car Reviews on the Grand National</a></li>
+<li><a href="https://www.caranddriver.com/features/a23739443/buick-regal-grand-national-gnx-history/">Car &amp; Driver on the history of the Grand National</a></li>
+</ul>
+</li>
+<li><a href="https://www.connectedhomeip.com/">Project CHIP</a><ul>
+<li><a href="https://www.apple.com/newsroom/2019/12/amazon-apple-google-and-the-zigbee-alliance-to-develop-connectivity-standard/">Apple's announcement</a></li>
+<li><a href="https://github.com/apple/HomeKitADK"><code>HomeKitADK</code></a></li>
+<li><a href="https://xkcd.com/927/">Compulsory xkcd</a></li>
+</ul>
+</li>
+<li>The "Pro Workflow Group" and getting Apple's attention<ul>
+<li><a href="https://en.wikipedia.org/wiki/CUDA">CUDA</a></li>
+</ul>
+</li>
+<li>What would an ARM transition look like?<ul>
+<li><a href="https://en.wikipedia.org/wiki/Common_Hardware_Reference_Platform">CHRP</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What's the deal with clamshell mode, anyway? (via <a href="https://twitter.com/justwes/status/1204341218257317888">Wes</a>)<ul>
+<li><a href="https://www.amazon.com/dp/B01LPNKFK0/?tag=liismo-20">Casey's old work monitors</a></li>
+<li><a href="https://www.varidesk.com/">Varidesk</a></li>
+</ul>
+</li>
+<li>What's the deal with external backup drive noise, anyway? (via Hans Scneider)<ul>
+<li><a href="http://www.dynamat.com/">Dynamat</a></li>
+</ul>
+</li>
+<li>What's the deal with the new [pro] Mac design language, anyway? (via <a href="https://twitter.com/mennokiel/status/1207675365138845696">Kiel</a>)</li>
+</ul>
+</li>
+<li>Post-show: Teaching John's son to drive</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp2019">Casper</a>: Get $100 toward select mattresses with code <strong>atp2019</strong>. Terms and conditions apply.</li>
+<li><a href="http://hellofresh.com/atp9">Hello Fresh</a>: Easy, seasonal recipes and pre-measured ingredients delivered right to your door. Get 9 meals free with code <strong>ATP9</strong>.</li>
+<li><a href="https://burrow.com/atp">Burrow</a>: Ring in the new decade with up to $500 off fresh furniture with code <strong>NYE</strong>.</li>
+</ul>]]></description><itunes:subtitle>Cheese, wheels, rat tails, and a Buick.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5df859215619880ca4249217</guid><pubDate>Wed, 18 Dec 2019 03:52:40 +0000</pubDate><title>357: A Giant Green Field</title><itunes:title>A Giant Green Field</itunes:title><itunes:episode>357</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:23:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp357.mp3" length="69170255" type="audio/mpeg"/><link>https://atp.fm/357</link><description><![CDATA[<ul>
+<li>Pre-show: John continues preparing the way</li>
+<li>Mice<ul>
+<li><a href="http://www.amazon.com/dp/B000HCT12O/?tag=marcoorg-20">Logitech MX Revolution</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Thank you, listeners!</li>
+<li>Casey iMac !Pro offers</li>
+<li>Casey's Catalina Conundrum</li>
+<li>Marco's lamp update (thanks, <a href="https://twitter.com/DanEngler/status/1199429773811834880">Dan Engler</a>!)</li>
+</ul>
+</li>
+<li>First-generation Apple products<ul>
+<li><a href="https://twitter.com/caseyliss/status/1206713322730590208">Casey's iMac Pro tweet</a></li>
+</ul>
+</li>
+<li>Downgrades from the old Mac Pro</li>
+<li>GPU options for the Mac Pro and Pro Display XDR<ul>
+<li>GPU in the <a href="https://www.apple.com/shop/product/HMUJ2ZM/A/belkin-aux-power-cable-kit-for-mac-pro">Belkin image</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Display_Connector">Apple Display Connector</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Mac Pro <a href="https://twitter.com/mladenny/status/1205193537236733958">RAM options</a></li>
+<li><a href="https://www.popularmechanics.com/technology/gadgets/a30170910/apple-mac-pro/">Mac Pro Thermodynamics</a></li>
+<li>LG UltraFine 5K is maybe not "fine"</li>
+<li>Expandable Macs and the history of Mac towers</li>
+<li><code>#askatp</code><ul>
+<li>Is an AppleTV <em>really</em> necessary in the world of smart TVs? (via <a href="https://twitter.com/zachpruitt/status/1200464436433235968">Zach Pruitt</a>) </li>
+<li>How does <a href="https://developer.apple.com/documentation/uikit/app_and_environment/scenes/preparing_your_ui_to_run_in_the_background/updating_your_app_with_background_app_refresh">background app refresh</a> work? (via <a href="https://twitter.com/AdamJaffrey/status/1199142442303283201">Adam Jaffrey</a>)</li>
+<li>How does one archive a shedload of old email? (via <a href="https://twitter.com/ComboTwist/status/1192563285104742400">ComboTwist</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Post_Office_Protocol">POP</a></li>
+<li><a href="https://support.google.com/accounts/answer/3024190">Google: Downloading your data</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://en.wikipedia.org/wiki/The_Leftovers_%28TV_series%29">The Leftovers</a><ul>
+<li>Reconcilable Differences episodes that discuss The Leftovers: <a href="https://www.relay.fm/rd/16">16</a>, <a href="https://www.relay.fm/rd/20">20</a>, <a href="https://www.relay.fm/rd/38">38</a>, <a href="https://www.relay.fm/rd/53">53</a>, <a href="https://www.relay.fm/rd/59">59</a></li>
+<li><a href="http://dobyfriday.com/157">Do By Friday #157: (That's the Leftovers)</a> </li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online activity. Get 3 months free with a 1-year package.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>We have a bit more to say about the Mac Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5df1bdef366bea65d9c8bce2</guid><pubDate>Thu, 12 Dec 2019 17:43:58 +0000</pubDate><title>356: With a Heavy Heart</title><itunes:title>With a Heavy Heart</itunes:title><itunes:episode>356</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp356.mp3" length="58921871" type="audio/mpeg"/><link>https://atp.fm/356</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Casey's Computer Corner Footnote</li>
+<li><a href="https://twitter.com/Japester/status/1202698868074242049">Bendy extended keyboards</a></li>
+<li><a href="https://twitter.com/jayman16/status/1202667028689162241">Destiny on Stadia</a></li>
+<li><a href="https://twitter.com/martinfeld/status/1202800961158172674">iPad Remote Control &amp; Apple Classroom</a></li>
+</ul>
+</li>
+<li>The <a href="https://www.apple.com/shop/buy-mac/mac-pro/tower#">Mac Pro Configurator</a><ul>
+<li><a href="https://www.apple.com/shop/mac/mac-accessories/mac-components">Mac Pro Components</a></li>
+<li><a href="https://www.apple.com/shop/product/HMUJ2ZM/A/belkin-aux-power-cable-kit-for-mac-pro">Belkin AUX Power Cable Kit</a></li>
+<li><a href="https://support.apple.com/en-us/HT210556">Install and replace parts in your Mac Pro (2019)</a><ul>
+<li><a href="https://www.youtube.com/watch?v=YUIt-YrFOKw&amp;feature=youtu.be">GPU Upgrade Video</a></li>
+<li><a href="https://www.youtube.com/watch?v=RAC9NPSYzCk&amp;feature=youtu.be">RAM Upgrade Video</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Field-programmable_gate_array">Field Programmable Gate Array (FPGA)</a></li>
+<li><a href="https://support.apple.com/en-us/HT210229">Cleaning the nano-texture glass</a></li>
+<li><a href="https://www.tax.ny.gov/pdf/current_forms/st/st121_3_fill_in.pdf">New York Form ST-121.3</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: The Wi-Fi your home deserves. Get free overnight shipping with code <strong>ATP</strong>.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="https://bombas.com/atp">Bombas</a>: The most comfortable socks in the history of feet. Get 20% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>We configure a Mac Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5de879e5f365a474da45ef00</guid><pubDate>Thu, 05 Dec 2019 16:06:08 +0000</pubDate><title>355: The Way Corn Grows</title><itunes:title>The Way Corn Grows</itunes:title><itunes:episode>355</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:05</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp355.mp3" length="53951585" type="audio/mpeg"/><link>https://atp.fm/355</link><description><![CDATA[<ul>
+<li>Pre-show: Marco's artificial ☀️<ul>
+<li><a href="http://www.amazon.com/dp/B076HKH373/?tag=liismo-20">Casey's garage light</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Dyson_sphere">Dyson sphere</a></li>
+<li><a href="http://www.xledia.com/">Xledia bulbs</a> (thanks, <a href="https://twitter.com/marinaepelman/status/1199456316407894018">Marina Epelman</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Seasonal_affective_disorder">Seasonal affective disorder</a></li>
+</ul>
+</li>
+<li>Casey's Computer Corner Conclusion<ul>
+<li>Casey's busted Mojave installer due to an <a href="https://9to5mac.com/2019/10/24/macos-application-damaged/">expired certificate</a>?</li>
+<li><a href="https://www.apple.com/shop/trade-in">Apple Trade-In Evaluator</a></li>
+</ul>
+</li>
+<li>Marco travels with the 16" MBP<ul>
+<li><a href="https://www.rugarciap.com/turbo-boost-switcher-for-os-x/">Turbo Boost Switcher Pro</a></li>
+<li><a href="https://www.tripmode.ch/">TripMode</a></li>
+<li><a href="https://marco.org/2018/07/31/mac-low-power-mode">Low Power Mode on the Mac</a></li>
+</ul>
+</li>
+<li>Casey's <a href="https://www.lg.com/us/tvs/lg-OLED55C9AUA-oled-4k-tv">other new toy</a><ul>
+<li><a href="https://twitter.com/caseyliss/status/1201837854349025282">Casey's error message</a></li>
+<li><a href="https://flixed.io/install-plex-smart-tvs/">Plex installation guide</a></li>
+<li><a href="https://www.rtings.com/tv/reviews/lg/c9-oled/settings">Rtings calibration guide</a></li>
+</ul>
+</li>
+<li>John tries <a href="https://stadia.google.com/">Google Stadia</a><ul>
+<li><a href="https://www.nvidia.com/en-us/geforce-now/">GeForce Now</a></li>
+<li><a href="https://symless.com/synergy">Synergy</a></li>
+</ul>
+</li>
+<li><a href="https://www.macworld.com/article/3487723/the-mac-pro-is-an-important-symbol-but-you-probably-shouldnt-buy-it.html">John doesn't need a Mac Pro</a></li>
+<li><code>#askatp</code><ul>
+<li>Should developers be fun in release notes? (via <a href="https://twitter.com/probablyJoell/status/1201966470986641410">Joell, probably</a>)<ul>
+<li><a href="https://gifwrapped.co/">GIFwrapped</a></li>
+</ul>
+</li>
+<li>How should one set up iPads for out-of-state grandparents? (via <a href="https://twitter.com/mbollichziegler/status/1201717109643833344">Mike Bollich-Ziegler</a>)</li>
+<li>Any chance of Alexa support for Overcast? (via <a href="https://twitter.com/themarranator/status/1201193215065559049">Greg</a>)</li>
+</ul>
+</li>
+<li>Post-show: Marco goes appliance-shopping<ul>
+<li><a href="https://www.relay.fm/rd/102">Reconcilable Differences #102: Preparing the Way</a></li>
+<li><a href="https://www.lg.com/us/refrigerators/lg-LRFXC2406D-french-3-door-refrigerator#none">Casey's approximate fridge</a></li>
+<li><a href="https://speedqueen.com/speed-queens-tc5-brings-a-classic-wash-back-to-your-laundry/">Speed Queen TC5</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://handy.com/atp">Handy</a>: The easy and convenient way to book home cleanings on a schedule that works for you.</li>
+<li><a href="http://awaytravel.com/accidentaltech">Away</a>: Because this season, everyone wants to get Away. Get $20 off a suitcase with code <strong>atp20</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Casey's Computer Corner concludes, we celebrate the season of giving (to ourselves) with Black Friday shopping, John tries Stadia, and Marco tries to buy an appliance.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ddca5cbc833493f05643627</guid><pubDate>Tue, 26 Nov 2019 16:51:55 +0000</pubDate><title>354: Casey's Computer Corner</title><itunes:title>Casey's Computer Corner</itunes:title><itunes:episode>354</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp354.mp3" length="62269913" type="audio/mpeg"/><link>https://atp.fm/354</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://www.barebones.com/products/bbedit/index.html">BBEdit</a> to the rescue</li>
+<li>Casey's Computer Corner<ul>
+<li><a href="https://www.apple.com/shop/help/returns_refund">Apple Holiday Return Policy</a></li>
+<li><a href="https://www.amazon.com/dp/B01LPNKFK0/?tag=liismo-20">Casey's theoretical monitor</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Next_Unit_of_Computing">NUC</a></li>
+</ul>
+</li>
+<li>Marco's Office Lighting <a href="https://www.relay.fm/upgrade/273">Follow-out</a><ul>
+<li><a href="https://www.ikea.com/us/en/p/not-floor-uplight-reading-lamp-white-white-30145129/">IKEA !lamp</a></li>
+<li><a href="https://amzn.to/35yp47u">John's lamp</a></li>
+</ul>
+</li>
+<li>MS Office and Catalina</li>
+<li>Follow-up: Amazon's customer support "phone tree"<ul>
+<li><a href="https://www.gethopscotch.com/">Hopscotch</a></li>
+<li><a href="https://gethuman.com/">GetHuman</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Is AppleScript dead? (via <a href="https://twitter.com/askdrtuna/status/1184181547395702786">@askdrtuna</a>)<ul>
+<li><a href="https://scratch.mit.edu/">Scratch</a></li>
+</ul>
+</li>
+<li>How do we keep our computers in sync? (via <a href="https://twitter.com/chriskast/status/1197981026288459776">Chris Kast</a>)<ul>
+<li><a href="https://www.noodlesoft.com/">Hazel</a></li>
+<li><a href="https://textexpander.com/">TextExpander</a></li>
+<li><a href="https://www.keyboardmaestro.com/main/">Keyboard Maestro</a></li>
+<li><a href="https://folivora.ai/">BetterTouchTool</a></li>
+</ul>
+</li>
+<li>Should we enable iMessage read receipts? (via <a href="https://twitter.com/RyanMorey/status/1195533572553220097">Ryan Morey</a>)</li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li>Casey's Car Corner<ul>
+<li><a href="http://neutral.fm/episodes/6-alternate">Thumbs Down</a></li>
+</ul>
+</li>
+<li><a href="https://www.tesla.com/cybertruck">Cybertruck</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Subaru_BRAT">Subaru BRAT</a></li>
+<li><a href="https://automobiles.honda.com/ridgeline">Honda Ridgeline</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Factions_of_Halo#United_Nations_Space_Command">Halo Warthog</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online activity. Get 3 months free with a 1-year package.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>We like computers so much that we need everyone to buy all of them.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5dd60ec18bcf197a9a49593b</guid><pubDate>Thu, 21 Nov 2019 22:08:10 +0000</pubDate><title>353: Modern-Day Dialup</title><itunes:title>Modern-Day Dialup</itunes:title><itunes:episode>353</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp353.mp3" length="62629337" type="audio/mpeg"/><link>https://atp.fm/353</link><description><![CDATA[<ul>
+<li><a href="http://neutral.fm">Neutral</a>: The inevitable death of the stick<ul>
+<li><a href="http://drops.caseyliss.com/ypGWYT">Casey's Bumper</a></li>
+</ul>
+</li>
+<li><a href="https://paperlike.com/blogs/paperlikers-insights/the-paperlike-2-with-nanodots-a-dream-come-true-for-ipad-apple-pencil-users">Paperlike 2</a> (note: <a href="https://www.kickstarter.com/projects/jansapper/paperlike-ipad-screen-protector-with-nanodots">order from Kickstarter</a> to get Paperlike 2; their website is currently only selling the first-gen)</li>
+<li>16-inch MacBook Pro follow-up: <ul>
+<li>Pricing</li>
+<li>What did Marco buy?</li>
+<li><a href="https://www.youtube.com/watch?v=1VV8e3BOOzc">Phil Schiller on a 14" MacBook Pro</a></li>
+<li><a href="https://twitter.com/peterwells/status/1194811976318275584">Keyboard repairability</a><ul>
+<li><a href="https://www.youtube.com/watch?v=a1Lyv0gpGak&amp;feature=youtu.be">iFixIt Demo</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Incremental improvement for Macs<ul>
+<li><a href="https://marco.org/2018/07/31/mac-low-power-mode">Low Power Mode on the Mac</a></li>
+<li><a href="https://www.anandtech.com/show/15050/samsung-develops-intel-lakefield-based-galaxy-book-s">Lakefield SoC and cellular laptops</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2019/11/13/20963294/motorola-razr-new-foldable-smartphone-android-hands-on-flip-phone-photos-video">Motorola Razr Returns</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Motorola_Razr">Original Razr</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Motorola_StarTAC">StarTAC</a></li>
+</ul>
+</li>
+<li>Casey's Catalina Catastrophe</li>
+<li>Casey's Computing Conundrum</li>
+<li><code>#askatp</code><ul>
+<li>When is a language ready for use on servers? (via <a href="https://twitter.com/BastianInuk/status/1190181038879842304">Bastian Inuk</a>)</li>
+<li>Can Marco track total listen time for an Overcast account? (via <a href="https://twitter.com/ReneFerguson/status/1191967125080023040">René Ferguson</a>)</li>
+<li>Could Adobe's iOS apps be used as a basis for ARM-native apps? (via <a href="https://twitter.com/fil_teq/status/1191527179819073536">filteq</a>)</li>
+</ul>
+</li>
+<li>Post-show:<ul>
+<li><a href="https://www.relay.fm/rd/102">Reconcilable Differences #102: Preparing the Way</a></li>
+<li><a href="https://amzn.to/37sYjDh">John's UPS</a></li>
+<li>John's "pigtails" - <a href="https://amzn.to/2D8PksQ">one</a> and <a href="https://amzn.to/2OAS3AF">two</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.doordash.com/">DoorDash</a>: Let dinner come to you with DoorDash. Get $5 off your first order of $15 or more with promo code <strong>ATP</strong> in the app.</li>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>Solving Casey's conundrums, one at a time.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5dcb6ec38471b349439a995f</guid><pubDate>Wed, 13 Nov 2019 13:30:15 +0000</pubDate><title>352: No One Else Had Calipers</title><itunes:title>No One Else Had Calipers</itunes:title><itunes:episode>352</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:36:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp352.mp3" length="46519463" type="audio/mpeg"/><link>https://atp.fm/352</link><description><![CDATA[<ul>
+<li><a href="https://atp.fm/store"><strong>ATP HOLIDAY SHIRTS</strong></a> available until <strong>Sunday, November 17</strong></li>
+<li>Follow-up: <ul>
+<li>Mac Pro available "December"<ul>
+<li><a href="https://www.macrumors.com/2019/11/10/mac-pro-spotted-calvin-harris-dj-studio/">Mac Pros appearing in the wild</a></li>
+</ul>
+</li>
+<li>iOS 13.2.2</li>
+<li>Casey's Catalina Catastrophe</li>
+</ul>
+</li>
+<li>16-inch MacBook Pro: Initial Impressions<ul>
+<li><a href="https://marco.org/2019/11/13/mbp16">Marco's blog post</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chiclet_keyboard">Chiclet Keyboard</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IBM_PCjr">PCjr</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_Portable">Macintosh Portable</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="https://hellofresh.com/">Hello Fresh</a>: A meal kit delivery service so you can just cook, eat, and enjoy. Use code <strong>ATP30</strong> for $30 off your first week.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>The 16-inch MacBook Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5dc39917ded97a273c734e6f</guid><pubDate>Thu, 07 Nov 2019 23:23:05 +0000</pubDate><title>351: The Floor Is High</title><itunes:title>The Floor Is High</itunes:title><itunes:episode>351</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:48:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp351.mp3" length="52487584" type="audio/mpeg"/><link>https://atp.fm/351</link><description><![CDATA[<ul>
+<li>Pre-show: 🐛💇🏻‍♂️</li>
+<li><a href="https://atp.fm/store"><strong>ATP HOLIDAY SHIRTS</strong></a> available until <strong>Sunday, November 17</strong></li>
+<li>Marco's AirPods Pro Review</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.ifixit.com/Teardown/AirPods+Pro+Teardown/127551#s247981">AirPods Pro use a button-cell battery</a></li>
+<li><a href="https://support.apple.com/en-us/HT207012">AirPods Pro charging light</a></li>
+<li><a href="https://twitter.com/mattcassinelli/status/1189995316541394944">AirPods Pro case-jiggle click</a></li>
+<li><a href="https://twitter.com/kieransenior/status/1189708598101725184">"Hey Siri, Be Quiet"</a></li>
+</ul>
+</li>
+<li><a href="https://www.aarp.org/health/conditions-treatments/info-2019/otc-hearing-aids.html">FDA clears way for over-the-counter hearing aids</a><ul>
+<li><a href="https://education.ti.com/en/products/calculators/graphing-calculators/ti-84-plus">TI-84</a></li>
+<li>Hearing aids <a href="https://twitter.com/budish/status/1190251769202237442">are actually pretty fancy</a></li>
+</ul>
+</li>
+<li>16" MacBook Pro speculation:<ul>
+<li><a href="https://twitter.com/MacRumors/status/1189893181644689409/photo/1">Is there more space between 16" MacBook Pro keys</a>?</li>
+<li><a href="https://imgur.com/gallery/osudTR0">More inverted-T fire?</a></li>
+<li>An aside about MacBook Pro wishes and dreams</li>
+<li>An aside about migrating Mac Pros and televisions</li>
+</ul>
+</li>
+<li>Return to Follow-up:<ul>
+<li><a href="https://twitter.com/JPStratford/status/1191458755772387331">APFS for Time Machine theories</a></li>
+<li><a href="https://letterboxd.com/pro/">Letterboxd Pro</a> and import/export</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-tv-plus/">AppleTV+</a> initial reviews<ul>
+<li><a href="https://www.relay.fm/upgrade/270">Upgrade #270: The Toughest Compare</a></li>
+<li><a href="https://www.relay.fm/liftoff/111">Liftoff #111: Escape of the Mole</a></li>
+<li><a href="https://www.relay.fm/rd/117">Reconcilable Differences #117 (Not available at this time)</a></li>
+<li><a href="https://www.flatpanelshd.com/flatforums/viewtopic.php?f=31&amp;t=12779">Streaming Quality</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Is <a href="https://www.geekbench.com/">Geekbench</a> a good metric when comparing across architectures? (via <a href="https://twitter.com/CyberMonk/status/1186836438270136320">Josh Hattersley</a>)</li>
+<li>What's the state of podcast marketshare? (via <a href="https://twitter.com/glinn07/status/1183791336064983047">glinn07</a>)<ul>
+<li><a href="https://thefeed.libsyn.com/">The Feed</a></li>
+</ul>
+</li>
+<li>Should one get a Mac Mini now or wait? (via Paul Dunahoo)</li>
+</ul>
+</li>
+<li>Post-show Neutral: Marco's Wheel of Shame</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: Get free overnight shipping with code <strong>ATP</strong>.</li>
+<li><a href="http://awaytravel.com/atp20">Away</a>: Because this season, everyone wants to get Away. Get $20 off a suitcase with code <strong>atp20</strong>.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>The Apple TV+ launch, more MacBook Pro sleuthing, and a week with AirPods Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5dba4c2c6fc93e3e33a958cc</guid><pubDate>Thu, 31 Oct 2019 20:53:28 +0000</pubDate><title>350: Wax Buddies</title><itunes:title>Wax Buddies</itunes:title><itunes:episode>350</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:48:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp350.mp3" length="52760393" type="audio/mpeg"/><link>https://atp.fm/350</link><description><![CDATA[<ul>
+<li>Accidental Sports Podcast<ul>
+<li><a href="https://www.theincomparable.com/robot/">Robot or Not</a></li>
+</ul>
+</li>
+<li><a href="https://atp.fm/store"><strong>ATP HOLIDAY SHIRTS</strong></a> available until <strong>Sunday, November 17</strong></li>
+<li><a href="https://9to5mac.com/2019/10/30/exclusive-16-inch-macbook-pro-touch-bar-and-touch-id-layout-confirmed/">16" Key Layout Leak?</a></li>
+<li>iOS 13.2 issues</li>
+<li><a href="https://www.theverge.com/2019/10/29/20938647/samsung-foldable-phone-compact-concept-device-flip">Samsung's new foldable flip-phone</a></li>
+<li><a href="https://www.apple.com/airpods-pro/">Airpods Pro</a><ul>
+<li><a href="https://www.apple.com/newsroom/2019/10/apple-reveals-new-airpods-pro-available-october-30/">Press release</a></li>
+</ul>
+</li>
+<li>Mac Pros in stores?<ul>
+<li><a href="https://www.macrumors.com/2019/10/30/2019-mac-pro-fcc-approval/">FCC approval</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Should I wait to buy a new Mac until they're on ARM? (via James Shield)</li>
+<li>Why hasn't Time Machine been updated to use symbolic links? (via Adam Spelbring)<ul>
+<li><a href="https://atp.fm/episodes/330">ATP's recap on the APFS WWDC session</a></li>
+</ul>
+</li>
+<li>How does one get started with <a href="https://www.letterboxd.com">Letterbox D</a>? (via <a href="https://twitter.com/andrewmeyers/status/1186677157445230594">Andrew Myers</a>)<ul>
+<li><a href="https://letterboxd.com/welcome/">Welcome</a></li>
+<li><a href="https://letterboxd.com/about/frequent-questions/">FAQ</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: 🚙⚡<ul>
+<li><a href="https://www.instagram.com/p/B4SNAhYpqvv/">Tiff's</a> new <a href="https://www.bmwusa.com/vehicles/bmwi/i3/sedan/overview.html">BMW i3s</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://handy.com/atp">Handy</a>: Handy – The easy and convenient way to book home cleanings on a schedule that works for you.</li>
+<li><a href="https://bombas.com/atp">Bombas</a>: The most comfortable socks in the history of feet. Save 20% on your first purchase.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Unlimited cloud backup for your Mac or PC for just $6/month.</li>
+</ul>]]></description><itunes:subtitle>Did you ever wish we'd do a sports podcast? After this, you won't.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5dae70d146f15f2ffeac5d04</guid><pubDate>Tue, 22 Oct 2019 18:58:56 +0000</pubDate><title>349: Formative Tech Dystopia</title><itunes:title>Formative Tech Dystopia</itunes:title><itunes:episode>349</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp349.mp3" length="53601621" type="audio/mpeg"/><link>https://atp.fm/349</link><description><![CDATA[<ul>
+<li>Pre-show: Star Wars Episode X.10.1</li>
+<li>Follow-up: <ul>
+<li><a href="https://pi-hole.net/">Pi-hole</a><ul>
+<li><a href="https://www.reddit.com/r/pihole/comments/bvq5aq/pihole_quick_enabledisable_toggle_for_apples_ios/">Workflow/Shortcut</a></li>
+<li><a href="https://github.com/wbrawner/Pi-Helper">SwiftUI app</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=n9AFJlrhGqs">Microsoft progress-indicator graph</a></li>
+</ul>
+</li>
+<li><a href="https://swift.org/blog/new-diagnostic-arch-overview/">Swift's New Diagnostic Architecture Overview</a></li>
+<li><a href="https://nooverviewavailable.com/">No Overview Available</a><ul>
+<li><a href="https://github.com/NSHipster/NoOverviewAvailable.com#methodology">Methodology</a></li>
+<li><a href="http://www.folklore.org">Folklore.org</a></li>
+</ul>
+</li>
+<li>No October event?</li>
+<li><a href="https://www.macg.co/mac/2019/10/macos-10151-renferme-le-macbook-pro-16-109123">Image of 16" MBP in 10.15.1 beta?</a><ul>
+<li><a href="https://forums.macrumors.com/threads/16-inch-macbook-pro-possibly-referenced-in-macos-catalina-10-15-1-beta.2206447/page-7?post=27888807#post-27888807">Animated GIF comparing old to new</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2019/10/15/heres-everything-google-just-announced-at-the-made-by-google-2019-event/">New Google Stuff</a></li>
+<li><code>#askatp</code><ul>
+<li>How can I tell if I would benefit most from higher single core or multicore performance? (via <a href="https://twitter.com/TomZosh/status/1185577068681146369">Tom Zosh</a>)</li>
+<li>Is wired CarPlay crummy? (via <a href="https://twitter.com/kennylong/status/1185283786168139777">Kenny Long</a>)<ul>
+<li><a href="https://www.edmunds.com/bmw/3-series-gran-turismo/">BMW 3 Series Gran Turismo</a></li>
+</ul>
+</li>
+<li>🙉 Destiny stuff 🙉 (blame <a href="https://twitter.com/TomZosh/status/1185577068681146369">tobogranyte</a>)</li>
+</ul>
+</li>
+<li>Post-show: 🚙⚡<ul>
+<li><a href="https://www.chevrolet.com/electric/bolt-ev-electric-car">Chevy Bolt</a></li>
+<li><a href="https://www.bmwusa.com/vehicles/bmwi/i3/">BMW i3</a></li>
+<li><a href="https://www.caranddriver.com/kia/soul-ev">Kia Soul EV</a></li>
+<li><a href="https://www.vw.com/models/e-golf/">Volkswagen e-Golf</a></li>
+<li><a href="https://www.tesla.com/model3">Tesla Model 3</a></li>
+<li><a href="https://www.audiusa.com/models/audi-e-tron">Audi eTron</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.doordash.com/">DoorDash</a>: Let dinner come to you with DoorDash. Get $5 off your first order of $15 or more with promo code <strong>ATP</strong> in the app.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>]]></description><itunes:subtitle>Why everyone makes everything now, developer documentation, and the seemingly imminent 16" MacBook Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5da7d8d2d5a903190c738012</guid><pubDate>Thu, 17 Oct 2019 04:48:15 +0000</pubDate><title>348: Panic Shutdown</title><itunes:title>Panic Shutdown</itunes:title><itunes:episode>348</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp348.mp3" length="55734264" type="audio/mpeg"/><link>https://atp.fm/348</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://en.wikipedia.org/wiki/El_Camino:_A_Breaking_Bad_Movie">El Camino</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Jesse_Pinkman#Character_biography">Jesse Pinkman's character bio</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://zatznotfunny.com/2019-10/opt-out-of-tivo-pre-roll-ads/">Opting out of TiVo pre-roll ads</a></li>
+<li><a href="https://www.oxo.com/professional-8-chefs-knife-349.html">Oxo Chef's Knife</a></li>
+<li><a href="https://techcrunch.com/2019/10/10/apple-rolls-out-new-siri-audio-clip-grading-opt-in-and-request-history-deletion-feature-in-beta/">Siri opt-in &amp; grading</a></li>
+<li><a href="https://www.optimusplayer.com/">Optimus Player</a></li>
+</ul>
+</li>
+<li>Casey's <a href="https://www.docker.com/">Docker</a> adventures<ul>
+<li><a href="https://pi-hole.net/">Pi-Hole</a><ul>
+<li><a href="https://twitter.com/Ianmurren/status/1124774447259496451">Inspiration</a></li>
+<li><a href="https://blog.codinghorror.com/an-exercise-program-for-the-fat-web/">Jeff Atwood's article</a></li>
+</ul>
+</li>
+<li><a href="https://homebridge.io/">Homebridge</a></li>
+</ul>
+</li>
+<li>Marco's networking adventures<ul>
+<li><a href="https://www.ui.com/edgemax/edgerouter-lite/">Ubiquiti EdgeRouter Lite</a> (previous router)</li>
+<li><a href="https://www.ui.com/unifi-routing/unifi-security-gateway-pro-4/">Security Gateway Pro 4</a> (new router)</li>
+<li><a href="https://store.ui.com/products/unifi-cloud-key-gen2">UniFi Cloud Key Gen2</a> (runs management software)</li>
+<li><a href="https://www.ui.com/unifi-switching/unifi-switch-poe/">UniFi 250W PoE Switch</a></li>
+<li><a href="https://unifi-nanohd.ui.com/">UniFi nanoHD Wi-Fi APs</a></li>
+</ul>
+</li>
+<li>Folding phones<ul>
+<li><a href="https://www.relay.fm/connected/265">Connected #265: What Are You, a Dictionary?</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Game_Boy_Advance_SP">Game Boy Advance SP</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/10/10/apples-relationship-with-china/">Apple and China</a><ul>
+<li><a href="https://stratechery.com/2019/the-china-cultural-clash/">Ben Thompson's summary</a></li>
+<li><a href="https://arstechnica.com/staff/2005/09/1372/">Avoiding Copland 2010</a></li>
+<li><a href="https://arstechnica.com/gadgets/2010/06/copland-2010-revisited/">Copland 2010 Revisited</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Will progress bars ever become more accurate? (via <a href="https://twitter.com/rare__faction/status/1181439490008600577">Chris Wright</a>)</li>
+<li>What app(s) do we use to write prose? (via Charles Clements)<ul>
+<li><a href="https://code.visualstudio.com">Visual Studio Code</a></li>
+<li><a href="https://workingcopyapp.com">Working Copy</a></li>
+<li><a href="https://macromates.com">TextMate</a></li>
+<li><a href="http://www.barebones.com/products/bbedit/">BBEdit</a></li>
+</ul>
+</li>
+<li>Does a computer really need a UPS? (via <a href="https://twitter.com/tomhartnett/status/1183439971392327680">Tom Hartnett</a>)<ul>
+<li><a href="http://www.amazon.com/dp/B01HDC21FE/?tag=liismo-20">Newer version</a> of <a href="http://www.amazon.com/dp/B000Z80ICM/?tag=liismo-20">Casey's UPS</a></li>
+<li><a href="https://www.amazon.com/dp/B00429N19M/?tag=marcoorg-20">Marco's UPS</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: John's Google problems</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp2019">Casper</a>: Casper is a sleep brand that makes expertly designed products to help you get your best rest, one night at a time. Get $100 toward select mattresses with code <strong>atp2019</strong>. Terms and conditions apply.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online activity. Get 3 months free with a 1-year package.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Apple's China problem, adventures in home networking, and the future of progress bars.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d9e9f680bbfa367a022f346</guid><pubDate>Thu, 10 Oct 2019 18:25:44 +0000</pubDate><title>347: Not Enough Carrot to Take the Stick</title><itunes:title>Not Enough Carrot to Take the Stick</itunes:title><itunes:episode>347</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:07</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp347.mp3" length="59399869" type="audio/mpeg"/><link>https://atp.fm/347</link><description><![CDATA[<ul>
+<li>Pre-show: Casey's computer and 👽</li>
+<li>Follow-up: <ul>
+<li>Where is FaceTime attention correction?</li>
+<li><a href="https://www.apple.com/macos/catalina/features/">"Coming this Spring"</a></li>
+</ul>
+</li>
+<li>October expectations<ul>
+<li><a href="https://9to5mac.com/2019/10/02/new-in-ear-airpods-with-noise-cancelling-found-in-ios-13-2-beta/">Noise-canceling AirPods</a></li>
+</ul>
+</li>
+<li>Disposable AirPods<ul>
+<li><a href="https://www.idownloadblog.com/2019/10/08/fix-airpods-batteries-cheap">"Battery service"</a></li>
+<li><a href="https://99percentinvisible.org/episode/national-sword/">99% Invisible: National Sword</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/macos/catalina/">Catalina</a><ul>
+<li><a href="https://www.caseyliss.com/2019/10/8/brew-bundle">Homebrew Bundle</a></li>
+<li><a href="https://www.stclairsoft.com/Go64/index.html">Go64</a></li>
+</ul>
+</li>
+<li><em>An aside about Apple's [lack of] API documentation of late</em></li>
+<li><code>#askatp</code><ul>
+<li>Why can't we family share contacts? (via Dan Stanton)<ul>
+<li><a href="http://5by5.tv/hypercritical/9">Hypercritical #9: No iLife is an Island</a></li>
+</ul>
+</li>
+<li>Why don't Casey and John join the <a href="https://www.apple.com/shop/iphone/iphone-upgrade-program">iPhone Upgrade Program</a>? (via Cameron)</li>
+<li>What non-high-tech tech do we enjoy? (via Phillipp)<ul>
+<li><a href="https://www.amazon.com/dp/B079VYSF5Z/?tag=liismo-20">Sonicare Protective Clean Rechargable Toothbrushes</a></li>
+<li><a href="https://www.amazon.com/dp/B00JMULS0A/?tag=liismo-20">Cast Iron Apple Peeler</a></li>
+<li><a href="http://dobyfriday.com/152">Do By Friday #152: The Law of Hot Places</a></li>
+<li><a href="https://www.amazon.com/dp/B009NONQMS/?tag=marcoorg-20">Fenix PD25</a></li>
+<li><a href="https://www.amazon.com/dp/B00Y18AF6Q/?tag=marcoorg-20">Fenix LD12</a></li>
+<li><a href="https://www.patagonia.com/product/mens-micro-puff-hoody/84030.html">Patagonia Micro Puff Hoody</a></li>
+<li><a href="http://www.amazon.com/dp/B008M5U1C2/?tag=siracusa-20">Victorinox Fibrox Pro Chef's Knife, 8"</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: 🛎️<ul>
+<li><a href="https://www.amazon.com/dp/B000XR835Y/?tag=marcoorg-20"><strong>The</strong> Bell</a></li>
+<li><a href="https://atp.fm/174">ATP #174: A Ding in the Room</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://clearbanc.com/atp">Clearbanc</a>: The fastest and most affordable way to raise money for your business. Get your 20-minute term sheet.</li>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>macOS Catalina, disposable AirPods, and the bells of Arment county.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d9563212eb88a6b2374498e</guid><pubDate>Thu, 03 Oct 2019 20:32:17 +0000</pubDate><title>346: Go Back and Pop Myself</title><itunes:title>Go Back and Pop Myself</itunes:title><itunes:episode>346</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp346.mp3" length="55634717" type="audio/mpeg"/><link>https://atp.fm/346</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Casey's broken iMac</li>
+<li>Casey's broken Apple Watch<ul>
+<li><a href="https://twitter.com/caseyliss/status/1179336899162456066">Improved battery life</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Apple software quality</li>
+<li>iPhone X/XS → 11 Pro Transfer</li>
+<li><a href="https://www.macrumors.com/2019/09/29/kuo-mini-led-ipad-macbook-2020-21/">XDR Display Tech in iPads and MacBook Pros?</a></li>
+<li><a href="https://www.macrumors.com/2019/09/24/hollywood-mac-pros-hit-by-avid-issue/">Mac Pros + Avid + Chrome = 💀</a><ul>
+<li><a href="https://support.apple.com/en-us/HT204899">System Integrity Protection</a></li>
+<li><a href="https://blog.codinghorror.com/the-infinite-version/">The Infinite Version</a></li>
+<li><a href="https://support.google.com/chrome/thread/15235262">Update from the Chrome team</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2019/9/21/20876976/tivo-pre-roll-ads-commercials-dvr-recordings">TiVo shows commercials before DVR recordings</a></li>
+<li><a href="https://www.theverge.com/2019/10/2/20895128/microsoft-surface-duo-phone-foldable-screen-features-specs-price-release-date">New Microsoft hardware</a><ul>
+<li><a href="https://www.microsoft.com/en-us/surface/devices/surface-neo">Surface Neo</a></li>
+<li><a href="https://www.microsoft.com/en-us/surface/devices/surface-duo">Surface Duo</a></li>
+</ul>
+</li>
+<li>Post-show: Marco's UISearchController woes</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: The Wi-Fi your home deserves. Get free overnight shipping with code <strong>ATP</strong>.</li>
+<li><a href="https://burrow.com/atp">Burrow</a>: Settle into a comfy new Burrow sofa. Get $75 off a new sofa and free one-week shipping.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Microsoft's hardware concepts, Apple's software issues, microLED laptops, and TiVo's proposed innovation.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d8d7a3cab02b674c05172f6</guid><pubDate>Fri, 27 Sep 2019 21:01:48 +0000</pubDate><title>345: Unapologetically Digital</title><itunes:title>Unapologetically Digital</itunes:title><itunes:episode>345</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp345.mp3" length="54075532" type="audio/mpeg"/><link>https://atp.fm/345</link><description><![CDATA[<ul>
+<li>Last chance for <a href="https://stjude.org/atp">September donations to St. Jude</a><ul>
+<li><a href="https://www.relay.fm/analogue/166">Analog(ue) #166</a> (to be released Sunday, 29 September)</li>
+<li><a href="https://www.youtube.com/watch?v=P8tcvzg4Zbs">Podcastathon video</a></li>
+</ul>
+</li>
+<li>Pre-show: The fine art of literature, and staying young.<ul>
+<li><a href="http://www.amazon.com/dp/1524759783/?tag=liismo-20">Recursion</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.apple.com/support/products/iphone/">AppleCare+</a> refunds/enrollment details<ul>
+<li><a href="https://support.apple.com/iphone/repair/service">Apple repair cost</a></li>
+<li><a href="http://drops.caseyliss.com/616F1B">Casey's poor phone</a></li>
+<li><a href="https://www.youtube.com/watch?v=RjaxxC2bys0">Brand new iPhone drop</a></li>
+</ul>
+</li>
+<li><a href="https://www.cultofmac.com/652900/iphone-11-battery-ram-details/">iPhone 11 battery/RAM details</a><ul>
+<li><a href="https://www.ifixit.com/Teardown/iPhone+11+Pro+Max+Teardown/126000">iFixIt iPhone 11 Pro Max</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/elkmovie/status/1174003718188142592">A13 is 🍌 fast</a></li>
+</ul>
+</li>
+<li>Casey's iMac Update</li>
+<li>Apple Watch Series 5 impressions<ul>
+<li><a href="https://twitter.com/caseyliss/status/1175559138899877888">Casey's battery life</a>, <a href="https://twitter.com/caseyliss/status/1177288172201492481">more</a>, <a href="https://twitter.com/caseyliss/status/1177290588942721031">more still</a></li>
+</ul>
+</li>
+<li>iPhone 11 Pro impressions</li>
+<li>Post-show: 🐭</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp/">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://getchannels.com/atp/">Channels</a>: Stream live TV from inside or outside your house, using software written by people who really care. Get your first month of Channels Plus free.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>Our experiences with Series 5 Apple Watches, iPhones 11 Pro, and… AppleCare.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d819ed65655af4b732d85ea</guid><pubDate>Wed, 18 Sep 2019 20:02:46 +0000</pubDate><title>344: Peace in the Battery Kingdom</title><itunes:title>Peace in the Battery Kingdom</itunes:title><itunes:episode>344</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:23</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp344.mp3" length="53164648" type="audio/mpeg"/><link>https://atp.fm/344</link><description><![CDATA[<ul>
+<li><a href="https://stjude.org/atp">Donate to St. Jude</a><ul>
+<li><a href="https://stjude.org/relay">Running campaign total</a></li>
+</ul>
+</li>
+<li>Follow-up: <ul>
+<li>Bank of America and ShopSafe</li>
+<li>Gruber's theory on Apple presenter names</li>
+<li>Midnight Green: Not a China thing</li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2019/09/the-u1-chip-in-the-iphone-11-is-the-beginning-of-an-ultra-wideband-revolution/">SixColors on the U1 and UWB chips</a></li>
+<li>More iPhone 11 details<ul>
+<li><a href="https://twitter.com/beninato/status/1173733466984181761">iPhone thickness over time</a></li>
+<li><a href="https://twitter.com/rjonesy/status/1172574898918756353?s=20">Alleged specs</a><ul>
+<li><em>Note: 6GB has been mostly debunked after this tweet was posted</em></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2019/09/17/iphone-11-pro-disney-after-dark/">TechCrunch review</a></li>
+<li><a href="https://www.macrumors.com/2019/09/13/iphone-11-two-way-charging-software-disabled/">Two-way charging hardware is there but disabled?</a></li>
+</ul>
+</li>
+<li><a href="https://www.macstories.net/news/apple-announces-release-dates-for-os-updates-new-iphones-and-apple-watch-2/">Apple software-releases matrix</a></li>
+<li><a href="https://www.theverge.com/2019/9/11/20860645/apple-applecare-plus-iphone-ipad-apple-watch-indefinite-subscription">AppleCare+ goes subscription</a></li>
+<li>iPhone 11 press reviews<ul>
+<li><a href="https://daringfireball.net/2019/09/the_iphone_11_and_iphones_11_pro">John Gruber</a><ul>
+<li><a href="https://daringfireball.net/misc/2019/09/iphones-11-review/ultra-wide-grip.jpeg">Gruber's grip</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2019/09/17/iphone-11-pro-disney-after-dark/">Matthew Panzarino</a></li>
+<li><a href="https://www.theverge.com/2019/9/17/20868727/apple-iphone-11-pro-max-review-camera-battery-life-screen-midnight-green-price">Nilay Patel</a></li>
+<li><a href="https://www.wsj.com/articles/iphone-11-11-pro-and-11-pro-max-review-the-battery-life-weve-been-dying-for-11568714400">Joanna Stern</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-arcade/">Apple Arcade</a> soft-launches<ul>
+<li><a href="http://simogo.com/work/sayonara-wild-hearts/">Sayonara Wild Hearts</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Why do external drives eject after sleep? (via Stever)</li>
+<li>We revisit the "communities" question from Marco Silva</li>
+<li>What game controller should one buy for Apple Arcade? (via <a href="https://twitter.com/mmmmat/status/1173836382667714560">Matthias Lüdtke</a>)</li>
+</ul>
+</li>
+<li>Post-show: Casey's tale of woe</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online activity. Get 3 months free with a 1-year package.</li>
+<li><a href="https://clearbanc.com/atp">Clearbanc</a>: The fastest and most affordable way to raise money for your business. Get your 20-minute term sheet.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>]]></description><itunes:subtitle>iPhone 11 details and reviews, Apple Arcade's soft-launch, and Casey's tale of woe.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d79c21d1ad8f0183beddf42</guid><pubDate>Thu, 12 Sep 2019 19:20:06 +0000</pubDate><title>343: The Stand Is Your Hand</title><itunes:title>The Stand Is Your Hand</itunes:title><itunes:episode>343</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:31:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp343.mp3" length="72876030" type="audio/mpeg"/><link>https://atp.fm/343</link><description><![CDATA[<ul>
+<li><a href="https://stjude.org/atp">Please donate to St. Jude Childrens Research Hospital</a><ul>
+<li><a href="https://stjude.org/relay"><strong>After you donate</strong>, check out the march to Relay's $75k goal</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-events/september-2019/">Apple September Event</a><ul>
+<li><a href="https://www.nytimes.com/2019/09/11/opinion/apple-keynote-2019.html">New York Times Op-Ed</a></li>
+<li><a href="https://www.youtube.com/watch?v=Lxdgo1rFcxU">Halo at MacWorld 1999</a></li>
+<li><a href="https://www.youtube.com/watch?v=nyp_PczrqFE">Opening Video</a><ul>
+<li><a href="https://www.youtube.com/watch?v=TJ1SDXbij8Y"><em>Perspective</em></a></li>
+<li><a href="https://www.youtube.com/watch?v=kyQfye4vAQ8"><em>Designed by Apple in California</em></a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=fmJXbIKIV7E"><em>See</em> Trailer</a></li>
+<li><a href="https://www.relay.fm/upgrade/262">Upgrade #262: The Skyskrapers of Camera Bump City</a></li>
+<li><a href="https://www.youtube.com/watch?v=mx1by12-oF4"><em>Dear Apple: Face to Face — Apple Watch</em></a></li>
+<li><a href="https://www.apple.com/newsroom/2019/09/apple-announces-three-groundbreaking-health-studies/">New Apple Health Studies</a></li>
+<li><a href="https://9to5mac.com/2018/09/19/apple-watch-series-4-unboxing-video/">Apple Watch Series 4 Unboxing</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_QuickTake">QuickTake</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IEEE_802.11ax">WiFi 6</a></li>
+<li><a href="https://stratechery.com/2019/the-iphone-and-apples-services-strategy/">Ben Thompson's take, including cost</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>iPhone 11, iPhone 11 Pro, Apple Watch Series 5, and our impressions of the event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d69e2dd35affe0001ea4f74</guid><pubDate>Wed, 04 Sep 2019 16:14:29 +0000</pubDate><title>342: The Opposite of Con</title><itunes:title>The Opposite of Con</itunes:title><itunes:episode>342</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp342.mp3" length="57311768" type="audio/mpeg"/><link>https://atp.fm/342</link><description><![CDATA[<ul>
+<li>Casey, DMB, and Sirius XM</li>
+<li>Follow-up:<ul>
+<li>Drawbacks to Apple using opt-in privacy</li>
+<li>Apple card activation videos<ul>
+<li><a href="https://youtu.be/WrybAHup-Sc">≤ iPhone X</a></li>
+<li><a href="https://youtu.be/VdYXLUjwPhc">≥ iPhone XS/XR</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/franckhertz/status/1167227832759672833">Credit cards advertising based on the weight of the cards</a></li>
+<li><a href="https://kerfcase.com/products/apple-card-case">Kerf bespoke Apple Card cases</a> (via <a href="https://www.youtube.com/channel/UCBkL03Y0hIZAsv3rWyrSCtw">The Kavalier</a>)<ul>
+<li><a href="https://dbrand.com/shop/apple-card-skins">dbrand Skin</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-events/">Apple September Event</a><ul>
+<li><a href="https://512pixels.net/projects/default-mac-wallpapers-in-5k/">Old Apple Wallpapers</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Motorola_Razr">Motorola Razr</a></li>
+<li><a href="https://www.autoblog.com/2018/08/15/2019-vw-golf-r-us-gets-40-spektrum-colors/">Volkswagen Spektrum</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Anchoring#In_negotiations">Anchoring</a></li>
+<li><a href="https://www.relay.fm/radar/170">Under the Radar #170: Spending Dan Riccio's Battery Surplus</a></li>
+</ul>
+</li>
+<li>Post-show: The Summer of Marco</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/atp20">Away</a>: Because this season, everyone wants to get Away. Get $20 off a suitcase with code <strong>ATP20</strong>.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Never think about Wi-Fi again. Use code <strong>ATP</strong> at checkout for free overnight shipping.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Apple's probably pretty busy, so we designed the iPhone 11 for them.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d673df4cffcc6000166279d</guid><pubDate>Thu, 29 Aug 2019 20:51:50 +0000</pubDate><title>341: John Is My Default</title><itunes:title>John Is My Default</itunes:title><itunes:episode>341</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp341.mp3" length="52695564" type="audio/mpeg"/><link>https://atp.fm/341</link><description><![CDATA[<ul>
+<li>Pre-show: Marco <a href="https://twitter.com/marcoarment/status/1166735980747022339">ran out of dog food at the beach</a><ul>
+<li>He is well-aware that his <a href="https://twitter.com/marcoarment/status/1166827664109449216">temporary food</a> is not perfect and has not been reviewed by a vet or dog nutritionist, and will resume using "real" dog food when he gets home in 3 days</li>
+<li><a href="https://www.instagram.com/stories/highlights/17865949567466076/">Marco's breakfast story-highlight on Instagram</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Disabling auto-boot on keypress: <code>sudo nvram AutoBoot=%00</code><ul>
+<li><a href="https://www.mrclean.com/en-us/shop-products/magic-erasers">Mr. Clean Magic Eraser</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Melamine_foam">Melamine foam</a></li>
+</ul>
+</li>
+<li>John's <a href="https://www.apple.com/apple-card/">Apple Card</a></li>
+</ul>
+</li>
+<li>Apple Card <a href="https://support.apple.com/en-us/HT210399">care &amp; feeding instructions</a><ul>
+<li><a href="https://qph.fs.quoracdn.net/main-qimg-a14d3edabc777ce91facfeb4c18f8dd6-c">Global entry card &amp; sleeve</a> (The card is sitting <em>under</em> the sleeve in this shot)</li>
+</ul>
+</li>
+<li><a href="https://www.sonyalpharumors.com/sony-has-officially-announced-the-new-a6100-and-a6600-cameras-16-55mm-f-2-8-and-70-350mm-lenses/">New Sony APS-C cameras</a><ul>
+<li><a href="https://www.sonyalpharumors.com/press-release-sony-strengthens-aps-c-mirrorless-camera-line-up-with-launch-of-two-new-models/">John's potential new camera</a></li>
+<li><a href="https://www.sony.com/electronics/camera-lenses/sel70350g">John's potential new lens</a></li>
+<li><a href="https://www.sonyalpharumors.com/wp-content/uploads/2019/08/Bildschirmfoto-2019-08-28-um-10.57.24.png">Comparison chart</a></li>
+</ul>
+</li>
+<li>Tesla's Supercharger advantage vs. other chargers<ul>
+<li><a href="https://afdc.energy.gov/stations/#/find/nearest">Government search engine</a><ul>
+<li><a href="http://drops.caseyliss.com/INYnuD">Tesla</a></li>
+<li><a href="http://drops.caseyliss.com/WizWij">Others</a></li>
+</ul>
+</li>
+<li><a href="https://wheelbearings.media/">Wheel Bearings</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1166139982827966466">Casey tries to take a level take on Tesla</a></li>
+<li><a href="https://twitter.com/danieltiger/status/1166440941772664832">Arik's windshield story</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2019/08/improving-siris-privacy-protections/">Apple's Siri Statement</a></li>
+<li><code>#askatp</code>:<ul>
+<li>When would we hire a professional photographer? (via James Gates)</li>
+<li>What do we think about message apps/services for communities? (via <a href="https://twitter.com/marcosilva0000/status/1165994423118962690">Marco Silva</a>)</li>
+<li>What color scheme do we use for <code>Terminal</code>? (via <a href="https://twitter.com/MikeTaffet/status/1163515747403874304">Mike Taffet</a>)<ul>
+<li><a href="https://github.com/tonsky/FiraCode">Fira Code</a></li>
+<li><a href="http://drops.caseyliss.com/c6Y8vX">John's terminal</a></li>
+<li><a href="http://drops.caseyliss.com/bYidq8">Casey's terminal</a></li>
+<li><a href="http://drops.caseyliss.com/gA2q1t">Marco's terminal</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="https://www.doordash.com/">DoorDash</a>: Let dinner come to you with DoorDash. Get $5 off your first order of $15 or more with promo code <strong>ATP</strong> in the app.</li>
+<li><a href="https://anchor.fm/techmeme-ride-home">Techmeme Ride Home</a>: Subscribe today in your podcast app of choice (<a href="https://itunes.apple.com/us/podcast/techmeme-ride-home/id1355212895?mt=2">Apple</a>, <a href="https://overcast.fm/itunes1355212895/techmeme-ride-home">Overcast</a>, <a href="https://pca.st/3yCG">Pocket Casts</a>, <a href="https://open.spotify.com/show/0xyL4fhg7CdUMsXS7BFvjs">Spotify</a>).</li>
+</ul>]]></description><itunes:subtitle>Actual dogfooding, credit-card care, Tesla Superchargers vs. others, Siri privacy, and Terminal. That's right, Terminal.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d5a15e0e3a3b00001b3a306</guid><pubDate>Mon, 19 Aug 2019 18:53:54 +0000</pubDate><title>340: You Are a Computer Athlete</title><itunes:title>You Are a Computer Athlete</itunes:title><itunes:episode>340</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:24</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp340.mp3" length="58879234" type="audio/mpeg"/><link>https://atp.fm/340</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Store-brand <a href="https://www.kroger.com/p/velveeta-original-cheese/0002100061161">Velveeta</a><ul>
+<li><a href="https://www.walmart.com/ip/Great-Value-Original-Melt-n-Dip-Easy-Melt-Cheese-32-oz/10452425?wl13=1523&amp;selectedSellerId=0">WalMart store brand</a></li>
+<li><a href="https://www.kroger.com/product/images/xlarge/front/0001111086900">Kroger store brand</a></li>
+</ul>
+</li>
+<li><a href="https://folivora.ai/keyboardcleantool">KeyboardCleanTool</a></li>
+</ul>
+</li>
+<li><a href="https://www.wired.com/story/exclusive-sony-next-gen-console/">PlayStation 5 hardware</a><ul>
+<li><a href="https://www.xbox.com/en-US/xbox-one-s">Xbox One S</a></li>
+<li><a href="https://www.xbox.com/en-US/xbox-one-x">Xbox One X</a></li>
+<li><a href="https://www.xbox.com/en-us/xbox-one/consoles/xbox-one-s/all-digital-edition">Xbox One S All-Digital</a></li>
+<li><a href="https://www.nintendo.com/games/detail/forager-switch/">Forager</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Stardew_Valley">Stardew Valley</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sega_Saturn">Sega Saturn</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Dreamcast">Sega Dreamcast</a></li>
+</ul>
+</li>
+<li><a href="https://www.macrumors.com/2019/07/16/apple-rainbow-logo-products-rumor/">Apple Rainbow Apple Logo Returning?</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Think_different">Think different</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>What are some techniques to avoid <a href="https://en.wikipedia.org/wiki/Repetitive_strain_injury">RSI</a>? (via <a href="https://twitter.com/mcbramhill/status/1162050004053188608">Mark Bramhill</a>)<ul>
+<li><a href="https://www.macintosh.fm/">Welcome to Macintosh</a></li>
+<li><a href="http://www.amazon.com/dp/B00CYX26BC/?tag=marcoorg-20">Microsoft Sculpt Keyboard</a></li>
+<li><a href="https://www.amazon.com/dp/B000W1A83G?tag=marcoorg-20">Dynaflex Gyro Hand Exerciser</a></li>
+<li><a href="https://engineered.network/pragmatic/episode-50-accidental-clicking/">Pragmatic #50: Accidental Clicking</a></li>
+<li><a href="http://www.amazon.com/dp/0471595330/?tag=siracusa-20">Repetitive Strain Injury: A Computer User's Guide</a></li>
+<li><a href="https://funfact.fm/episodes/19">Fun Fact #19: Hit Me with Your Pet Shark</a></li>
+</ul>
+</li>
+<li>What year will USB-C ports be mainstreamed in cars? (via <a href="https://twitter.com/ngaffney/status/1159216078314229760">Nicholas Gaffney</a>)</li>
+</ul>
+</li>
+<li>Post-show: What does Marco look for in a watch? (via James)<ul>
+<li><a href="https://marco.org/2016/02/05/watch">Marco's blog post</a></li>
+<li>Under $200:<ul>
+<li><a href="https://www.timex.com">Timex</a></li>
+</ul>
+</li>
+<li>$200–700:<ul>
+<li><a href="https://www.seikowatches.com/us-en">Seiko</a></li>
+<li><a href="https://www.citizenwatch.com/us/en/eco-drive.html">Citizen Eco Drive</a></li>
+<li><a href="https://shop.hamiltonwatch.com/hamilton-collection/field.html">Hamilton Khaki Field</a></li>
+</ul>
+</li>
+<li>$700–1,500:<ul>
+<li>Dressy:<ul>
+<li><a href="https://www.seikowatches.com/global-en/products/presage">Seiko Presage</a></li>
+<li><a href="https://www.longines.com">Longines</a></li>
+</ul>
+</li>
+<li>Cool:<ul>
+<li><a href="https://nomos-glashuette.com/en#/en/watches/families">Nomos</a></li>
+<li><a href="https://www.junghans.de/en/junghans-collection/watches/maxbill/detail.html">Junghans Max Bill</a></li>
+</ul>
+</li>
+<li>Utilitarian:<ul>
+<li><a href="https://www.sinn.de/en/">Sinn</a></li>
+<li><a href="https://www.damasko-watches.com/en/">Damasko</a></li>
+</ul>
+</li>
+<li>Micro-brands:<ul>
+<li><a href="https://halioswatches.com/">Halios</a></li>
+<li><a href="https://farer.com">Farer</a></li>
+<li><a href="https://www.oakandoscar.com/">Oak and Oscar</a></li>
+<li><a href="https://wornandwound.com/">Worn &amp; Wound Watch Fair</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>$4,000-5,000:<ul>
+<li><a href="https://www.grand-seiko.com/us-en">Grand Seiko</a><ul>
+<li><a href="https://www.grand-seiko.com/global-en/collections/SBGA211G">Snowflake</a></li>
+</ul>
+</li>
+<li><a href="https://www.omegawatches.com/en-us/">Omega</a><ul>
+<li><a href="https://www.omegawatches.com/planet-omega/watchmaking/the-master-chronometer-certification/">Master Chronometer</a></li>
+<li><a href="https://www.omegawatches.com/watches/seamaster/aqua-terra-150m/product">Seamaster Aqua Terra 150m</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>"Fashion watches"<ul>
+<li><a href="https://www.mvmtwatches.com/">MVMT</a></li>
+<li><a href="https://www.fossil.com/us/en.html">Fossil</a></li>
+<li><a href="https://www.shinola.com">Shinola</a></li>
+</ul>
+</li>
+<li>Unattainable grail: <a href="https://www.patek.com/en/collection/nautilus/5711-1A-010">Patek Philippe Nautilus 5711</a><ul>
+<li><a href="https://twitter.com/HasBezosDecided">Has Bezos Decided?</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online activity. Get 3 months free with a 1-year package.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Rainbow Apple logos, RSI treatment and prevention, game-console hardware, store-brand cheese* loafs, and breaking Marco's silence on fancy watches.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d54cd7ffc2e7e0001c1e319</guid><pubDate>Thu, 15 Aug 2019 20:30:01 +0000</pubDate><title>339: Ketchup Momentum</title><itunes:title>Ketchup Momentum</itunes:title><itunes:episode>339</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp339.mp3" length="59271571" type="audio/mpeg"/><link>https://atp.fm/339</link><description><![CDATA[<ul>
+<li>John's cheese-grater update<ul>
+<li><a href="https://en.wikipedia.org/wiki/Nickel%E2%80%93cadmium_battery">NiCad battery</a><ul>
+<li><a href="https://www.batteriesplus.com/product-details/commercial-other/battery/werker/cot10001">NiCad battery example</a></li>
+</ul>
+</li>
+<li><a href="http://www.amazon.com/dp/B00EHAXSOO/?tag=liismo-20">Hunt's 100% Natural Tomato Ketchup</a></li>
+<li><a href="https://www.heinz.com/products/heinztomatoketchup">Heinz Ketchups</a></li>
+</ul>
+</li>
+<li>More on Apple Card<ul>
+<li><a href="https://twitter.com/czeins/status/1159950234081824768">Opting out of arbitration for Apple Card</a></li>
+<li><a href="https://mjtsai.com/blog/2019/08/13/apple-card-lacks-web-interface-sends-push-notifications/">Apple Card has no web interface</a></li>
+</ul>
+</li>
+<li>Follow-up: JSON streaming<ul>
+<li><a href="https://en.wikipedia.org/wiki/JSON_streaming#Length-prefixed_JSON">Length-prefixed JSON</a></li>
+<li><a href="https://en.wikipedia.org/wiki/JSON_streaming#Line-delimited_JSON">Line-delimited JSON</a></li>
+</ul>
+</li>
+<li><a href="https://www.relay.fm/upgrade/258">Upgrade bets on Marco and John buying the Mac Pro and Pro Display XDR</a><ul>
+<li><a href="https://overcast.fm/+Fcm_DUPXM/1:21:12">Overcast timestamp link</a></li>
+</ul>
+</li>
+<li>Apple at <a href="https://blackhat.com/">Black Hat</a><ul>
+<li><a href="https://twitter.com/rmogull/status/1159553426998476800/photo/1">Announcement summary</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT201150">Apple laptops can turn on by any key or track pad press</a></li>
+<li><a href="https://www.apple.com/shop/product/HMUB2LL/A/lg-ultrafine-5k-display">New LG UltraFine 5K Display</a></li>
+<li><code>#askatp</code>:<ul>
+<li>What non-Apple tech makes us happy/excited? (via Colin Devroe)<ul>
+<li><a href="https://en.wikipedia.org/wiki/BMW_i3">BMW i3</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BMW_i8">BMW i8</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Nissan_Leaf">Nissan Leaf</a></li>
+<li><a href="https://zoom-na.com/products/field-video-recording/field-recording/zoom-f6-multitrack-field-recorder">Zoom F6</a></li>
+<li><a href="https://www.sounddevices.com/products/">Sound Devices</a></li>
+<li><a href="https://store.dji.com/product/osmo-mobile-3?from=menu_products&amp;vid=83691">DJI Osmo Mobile 3</a></li>
+<li><a href="https://gopro.com/en/us/shop/cameras">GoPro</a></li>
+<li><a href="https://automobiles.honda.com/accord">Honda Accord</a></li>
+<li><a href="https://www.sony.com/electronics/cameras">Sony Cameras</a></li>
+</ul>
+</li>
+<li>Do we use portrait orientation lock on our iPads &amp; iPhones? (via Tom Tubbs)</li>
+<li>Introducing children to video games, and the correct order of Zelda games (via [the other] David Sparks)<ul>
+<li><a href="https://medium.com/message/playing-with-my-son-e5226ff0a7c3">Andy Baio's approach</a></li>
+<li><a href="http://openemu.org/">OpenEmu</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://www.theverge.com/2019/8/12/20802639/tumblr-verizon-sold-wordpress-blogging-yahoo-adult-content">Automattic buying Tumblr</a><ul>
+<li><a href="https://www.theverge.com/2019/8/14/20804894/tumblr-acquisition-matt-mullenweg-ceo-automattic-wordpress-verizon-changes-vergecast">The Vergecast: Exclusive: Automattic CEO Matt Mullenweg on what's next for Tumblr</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="http://casper.com/atp">Casper</a>: A sleep brand that makes expertly designed products to help you get your best rest, one night at a time. Get $50 toward select mattresses with code <strong>atp2019</strong>. Terms and conditions apply.</li>
+<li><a href="https://mackweldon.com">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Cheese graters, condiment battles, competitive electric cars, then maybe some tech stuff if we have time.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d4b8b97b51b220001386323</guid><pubDate>Thu, 08 Aug 2019 20:27:29 +0000</pubDate><title>338: Double Chunking</title><itunes:title>Double Chunking</itunes:title><itunes:episode>338</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:39:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp338.mp3" length="48009141" type="audio/mpeg"/><link>https://atp.fm/338</link><description><![CDATA[<ul>
+<li><a href="https://twitter.com/OvercastFM/status/1159177107534204929">Overcast beta</a> and sync changes<ul>
+<li><a href="https://en.wikipedia.org/wiki/HTTP_ETag">ETag</a></li>
+<li><a href="https://en.wikipedia.org/wiki/JSON">JSON</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Protocol_Buffers">Protocol buffers</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Simple_API_for_XML">SAX parser</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chunked_transfer_encoding">Chunking</a></li>
+</ul>
+</li>
+<li>Vignette duplicate-image-detection update<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2019/222/">WWDC 2019 #222</a></li>
+<li><a href="http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html">Casey's current algorithm</a> as suggested by <a href="https://twitter.com/chockenberry">Craig Hockenberry</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Exclusive_or">XOR</a></li>
+</ul>
+</li>
+<li>A quick aside about <a href="https://developer.apple.com/xcode/swiftui/">SwiftUI</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Domain-specific_language">DSL</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1155932053990334464">Casey on complexity</a></li>
+<li><a href="https://twitter.com/johnsundell/status/1156503468082958336">John Sundell's web DSL</a></li>
+<li><a href="https://www.swiftbysundell.com/podcast/53">Swift by Sundell #53: "The Swift Apple" with Brent Simmons</a><ul>
+<li><a href="https://inessential.com/">Inessential by Brent Simmons</a></li>
+</ul>
+</li>
+<li><a href="https://www.swiftbysundell.com/podcast/52">Swift by Sundell #52: "Diving into Combine" with Casey Liss</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.mimeophotos.com/">Mimeo Photos</a> and watermarking</li>
+<li>Sony cameras<ul>
+<li><a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-6400">α6400</a></li>
+<li><a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-7rm4">α7R IV</a></li>
+<li><a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-7m3-body-kit">α7 III</a></li>
+<li><a href="https://www.sony.com/electronics/cyber-shot-compact-cameras/dsc-rx10m4">RX10 IV</a></li>
+</ul>
+</li>
+<li>Geographic location of Intel's modem business</li>
+<li>Marco's <code>iCloud Drive/Dropbox</code> → <code>~/Dropbox</code> idea<ul>
+<li><a href="https://mjtsai.com/blog/2019/08/02/excluding-from-icloud-drive/">Excluding From iCloud Drive</a></li>
+<li><a href="https://apple.stackexchange.com/questions/254313/how-to-exclude-a-sub-folder-from-icloud-drive-in-macos-sierra/295929#295929">Exclusion list</a></li>
+<li><a href="https://unix.stackexchange.com/questions/275883/add-trailing-slash-in-bash-completion-of-directory-symbolic-links">Getting <code>bash</code> tab completion to work with the trailing <code>/</code></a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2019/8/2/20751270/apple-stops-contractors-siri-voice-recordings-privacy-opt-out">Apple suspends contractors listening to Siri voice recordings</a></li>
+<li><a href="https://techcrunch.com/2019/08/02/google-ordered-to-halt-human-review-of-voice-ai-recordings-over-privacy-risks/">Google ordered to halt human review due to GDPR</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-card/">Apple Card</a><ul>
+<li><a href="https://twitter.com/panzer/status/1159230705987014656">Opting out of arbitration</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li><a href="https://faceapp.com/app">FaceApp</a> and tin-foil hats (via Brad Siefert)</li>
+<li>How does one play <a href="https://en.wikipedia.org/wiki/Real-time_strategy">RTS</a> games on a Mac without a gaming PC? (via Nathan)</li>
+<li>How does one deal with <a href="https://en.wikipedia.org/wiki/Impostor_syndrome">impostor syndrome</a> (via Ryan Monaghan)</li>
+</ul>
+</li>
+<li>Post-show: 🧀-grater updates<ul>
+<li><a href="https://www.amazon.de/gp/product/B01LZ77WE2/">ROMMELSBACHER MR 6 elektrische Käsereibe</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount on your first order.</li>
+<li><a href="https://clearbanc.com/atp">Clearbanc</a>: The fastest and most affordable way to raise money for your business. Get your 20-minute term sheet.</li>
+</ul>]]></description><itunes:subtitle>Two of us fail to adhere to the very simple show format that we've been doing for a long time.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d43a9a2764d7700010693ad</guid><pubDate>Fri, 02 Aug 2019 16:30:30 +0000</pubDate><title>337: Sea Conditions Are Calm</title><itunes:title>Sea Conditions Are Calm</itunes:title><itunes:episode>337</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:20</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp337.mp3" length="63703544" type="audio/mpeg"/><link>https://atp.fm/337</link><description><![CDATA[<ul>
+<li>Pre-show: John's vacation wrap-up<ul>
+<li><a href="https://en.wikipedia.org/wiki/Channel_Tunnel">Chunnel</a></li>
+<li><a href="https://www.amtrak.com/auto-train">Auto Train</a></li>
+</ul>
+</li>
+<li>Follow-up: <ul>
+<li>John's Apple sticker on his Civic</li>
+<li><a href="https://en.wikipedia.org/wiki/Freediving_blackout#Shallow_water_blackout">Shallow water blackout</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Thunder_in_Paradise">Thunder in Paradise</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Dropbox alternatives<ul>
+<li><a href="https://www.synology.com/en-us/dsm/feature/drive">Synology Drive</a></li>
+<li><a href="https://www.resilio.com/">Resilio</a></li>
+<li><a href="http://growl.info">Growl</a></li>
+<li><a href="https://www.synology.com/en-global/knowledgebase/DSM/tutorial/Network/What_network_ports_are_used_by_Synology_services">Port forwarding information</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2019/07/29/ep-258">The Talk Show #258</a> with discussion about iCloud Drive wonkiness</li>
+<li><a href="https://daringfireball.net/thetalkshow/2019/07/31/ep-259">The Talk Show #259</a> with Marco</li>
+</ul>
+</li>
+<li>How does the Overcast recommendation algorithm avoid promoting awful people, unlike YouTube's algorithm? (via <a href="https://twitter.com/justincardinal/status/1154163842168918017">Justin Cardinal</a>)<ul>
+<li><a href="https://www.youtube.com/watch?v=rE3j_RHkqJc">This Video Will Make You Angry</a></li>
+</ul>
+</li>
+<li>Casey needs some advice about <a href="https://www.caseyliss.com/2019/5/22/vignette">Vignette</a> duplicate-photo detection<ul>
+<li><a href="https://en.wikipedia.org/wiki/Hamming_distance">Hamming distance</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2019/07/apple-to-acquire-the-majority-of-intels-smartphone-modem-business/">Apple acquires most of Intel's smartphone modem business</a></li>
+<li><a href="https://sixcolors.com/link/2019/07/apple-employees-listen-to-siri-audio-samples/">Apple Employees/Contractors Listen to Siri Audio Samples</a><ul>
+<li><strong>Update after recording:</strong> <a href="https://www.theverge.com/2019/8/2/20751270/apple-stops-contractors-siri-voice-recordings-privacy-opt-out">Apple temporarily suspending "Siri grading", and will provide an opt-out</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Testing headphones &amp; iOS 13's politeness (via <a href="https://twitter.com/pronetobits/status/1152068559746416640">Prone to Bits</a>)<ul>
+<li><a href="https://open.spotify.com/user/dominiquejamesphotography/playlist/2mnB7akpj1DlqFliyEiTHd">Audio Quality Tests playlist</a></li>
+<li><a href="https://www.youtube.com/watch?v=oaZ4_tSfRgQ"><em>Kashmir</em> by Kevin Gilbert</a></li>
+<li><a href="https://combine.fm/spotify/track/5K1olDj9jbsPpIxcbFrYe7"><em>Last Plane Out</em> by Toy Matinee</a></li>
+</ul>
+</li>
+<li>Making suggestions as part of the Pro Workflow Team (via <a href="https://twitter.com/aaronbushnell/status/1152187153058807814">Aaron Bushnell</a>)</li>
+<li>Siracusa ranks Tennists (via Anthony Roberts)</li>
+</ul>
+</li>
+<li>Post-show: Endangered Camera Species<ul>
+<li><a href="https://www.hardwarezone.com.sg/tech-news-sony-new-a7r4-full-frame-mirrorless-camera-61-megapixel-sensor">Sony A7R4</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://awaytravel.com/atp20">Away</a>: Because this season, everyone wants to get Away. Get $20 off a suitcase with code <strong>atp20</strong>.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Never think about Wi-Fi again. Use code <strong>ATP</strong> for free overnight shipping.</li>
+<li><a href="https://molekule.com/">Molekule</a>: Reimagining the future of clean air, starting with the air purifier. Get $75 off your first order with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Car ferries, Dropbox alternatives, algorithmic challenges in our apps, and the Great 2019 Beach-Camera Report.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d3287e1c6e12e00012b99b8</guid><pubDate>Wed, 24 Jul 2019 15:54:56 +0000</pubDate><title>336: Your Face Is Not Your Face</title><itunes:title>Your Face Is Not Your Face</itunes:title><itunes:episode>336</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp336.mp3" length="57187208" type="audio/mpeg"/><link>https://atp.fm/336</link><description><![CDATA[<ul>
+<li>Pre-show: Nutrition is hard when you're in high school.<ul>
+<li><a href="https://www.relay.fm/topfour/19">Top Four #19: Cereals From a Van</a></li>
+<li><a href="https://www.wsj.com/articles/SB124381591156970663">WSJ Grape-Nuts article</a></li>
+</ul>
+</li>
+<li>Follow-up: <ul>
+<li>iOS 13 optimized-battery-charging specifics</li>
+<li>Apple TV remote's influence on product box size</li>
+<li>Time Machine reliability when hosted on a NAS<ul>
+<li><a href="https://en.wikipedia.org/wiki/RAID">RAID</a></li>
+</ul>
+</li>
+<li>"Dropbox" on the Synology?</li>
+<li>Big WWDC</li>
+</ul>
+</li>
+<li><a href="https://www.amazon.com/dp/B07P7VVCDD/?tag=marcoorg-20">Marco's AR glasses</a><ul>
+<li><a href="https://www.amazon.com/dp/B07BN1XD4G?tag=siracusa-20">John's suggested glasses for Marco</a></li>
+</ul>
+</li>
+<li>Overcast State of the Union</li>
+<li><a href="https://www.macrumors.com/2019/07/11/apple-ar-glasses-reportedly-terminated-digitimes/">AR glasses cancelled?</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1149310878199746565">Steve Troughton-Smith says "not so fast my friend"</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2019/7/3/20680681/ios-13-beta-3-facetime-attention-correction-eye-contact">FaceTime Attention Correction</a><ul>
+<li><a href="http://5by5.tv/hypercritical/65">Hypercritical #65: Look Right into the Eyes of Your Sweetie</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>What is our one true iMessage address? (via <a href="https://twitter.com/MatthewLoewen/status/1152070329793011712">Matthew Loewen</a>)</li>
+<li>Does Siracusa use LFG sites? (via <a href="https://twitter.com/HassanAlAmiri/status/1149689470549204993">Hassan Al Amiri</a>)</li>
+<li>Most bang-for-your-buck $1000 Mac (via BJ Nemeth, among others)</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: <a href="https://jalopnik.com/2020-chevrolet-c8-mid-engine-corvette-everything-we-kn-1836485708">The C8 Corvette</a><ul>
+<li><a href="https://www.everydaydriver.com/films">American Original</a></li>
+<li><a href="https://www.roadandtrack.com/new-cars/future-cars/a28433801/c8-corvette-mid-engine-engineering-design-interview/">Road &amp; Track Interview</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online activity. Get 3 months free with a 1-year package.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Why wait for Apple's not-canceled project when you can get your own AR glasses today?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d2fdaa499630900015e19cd</guid><pubDate>Thu, 18 Jul 2019 18:57:53 +0000</pubDate><title>335: Withhold the Fun</title><itunes:title>Withhold the Fun</itunes:title><itunes:episode>335</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:35:19</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp335.mp3" length="45879541" type="audio/mpeg"/><link>https://atp.fm/335</link><description><![CDATA[<ul>
+<li><a href="https://www.extras.relay.fm/blog/2019/5/22/celebrating-relay-fms-5th-birthday-with-a-live-show-in-san-francisco-on-thursday-august-22">Relay FM 5th Anniversary Show</a></li>
+<li>iOS 13 charging optimization</li>
+<li>Follow-up: <ul>
+<li>APFS volumes for photos instead of <a href="https://en.wikipedia.org/wiki/Sparse_image">sparse disk images</a><ul>
+<li>Dave Nanian tweets: <a href="https://twitter.com/dnanian/status/1149815063764721670">1</a> <a href="https://twitter.com/dnanian/status/1150007105056858113">2</a></li>
+<li><a href="https://shirt-pocket.com/SuperDuper/SuperDuperDescription.html">SuperDuper</a></li>
+</ul>
+</li>
+<li><a href="https://funfact.fm/episodes/17">Fun Fact</a> on the <code>root</code> group being named <code>wheel</code></li>
+<li><code>shall</code>/<code>should</code>/<code>may</code>/<code>can</code></li>
+<li>iPhone SE &amp; headphones<ul>
+<li><a href="https://www.beatsbydre.com/earphones/powerbeats-pro">Powerbeats Pro</a></li>
+<li><a href="https://www.beatsbydre.com/headphones/studio3-wireless">Beats Studio</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2019-07-16/apple-plans-to-bankroll-original-podcasts-to-fend-off-rivals">Apple Bankrolling Original Podcasts?</a></li>
+<li><a href="https://twitter.com/marcoarment/status/1151600604227211264">Dropbox pulls some forking bullshirt</a><ul>
+<li><a href="https://twitter.com/marcoarment/status/1151601688047947777">More from Marco</a></li>
+<li><a href="https://twitter.com/ashkendo/status/1151607346554167297">Dropbox vs. Twitter</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Do our cars or our iPads have more stickers? (via <a href="https://twitter.com/joshrlewis/status/1077273284474011654">Josh Lewis</a>)</li>
+<li>Do we fill up our 256 GB phones? (via <a href="https://twitter.com/ErikNeu/status/1053828949984321536">Erik Neu</a>)</li>
+<li>What is the most valuable language to learn for modern students? (via <a href="https://twitter.com/4simplicities/status/1003943640488542209">Sarah Anne</a>)</li>
+</ul>
+</li>
+<li>Post-show: 🌊🏊‍♂️🏖</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://hullopillow.com/atp">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://lumen5.com/atp">Lumen5</a>: Start creating your thumb-stopping, attention grabbing videos today. Get 50% off your first month.</li>
+</ul>]]></description><itunes:subtitle>Apple making exclusive podcasts, Dropbox's blunder, best languages for computer science, and John's attempts to drown Marco.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d26a74d346b88000106f490</guid><pubDate>Thu, 11 Jul 2019 20:54:03 +0000</pubDate><title>334: Mechanical Disadvantage</title><itunes:title>Mechanical Disadvantage</itunes:title><itunes:episode>334</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp334.mp3" length="57734427" type="audio/mpeg"/><link>https://atp.fm/334</link><description><![CDATA[<ul>
+<li>Pre-show: Must vs. Shall<ul>
+<li><a href="https://tools.ietf.org/html/rfc2119">RFC 2119</a></li>
+<li><a href="https://www.faa.gov/about/initiatives/plain_language/articles/mandatory/">FAA: What's the only word that means mandatory?</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>John's cheese grater broke<ul>
+<li><a href="https://www.instagram.com/p/iM1SP5hylK/">Casey's shaming</a></li>
+<li><a href="https://www.amazon.com/OXO-2141200-Rotary-Grater/dp/B007PTE1MM">OXO current model</a></li>
+<li><a href="https://images-na.ssl-images-amazon.com/images/I/21G90DsAKBL.jpg">John's model</a></li>
+<li><a href="http://www.amazon.com/dp/B004S67UTG/?tag=liismo-20">Casey's pitched option</a></li>
+<li><a href="https://99percentinvisible.org/episode/built-on-sand/">99% Invisible: Built on Sand</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Deviation from the Ive design philosophy</li>
+<li>Marco's "new" iPhone and Apple Watch</li>
+<li><a href="https://www.apple.com/newsroom/2019/07/macbook-air-and-macbook-pro-updated-for-back-to-school-season/">Apple's new (and "new") laptops</a><ul>
+<li><a href="https://www.macstories.net/news/apple-cuts-price-on-macbook-air-upgrades-entry-level-macbook-pro-and-discontinues-12-inch-macbook/">MacStories summary</a></li>
+<li><a href="https://9to5mac.com/2019/07/09/mac-ssd-prices-lowered/">Cheaper SSDs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sparse_image">Sparse image</a></li>
+<li><a href="https://ss64.com/osx/tmutil.html"><code>man tmutil</code></a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Naming computers (via Ron Olson)</li>
+<li>Catalina's move from <code>bash</code> to <code>zsh</code>? (via Pedro Estarque)<ul>
+<li><a href="https://fishshell.com/"><code>fish</code> shell</a></li>
+</ul>
+</li>
+<li>Caring for our 📷 at the 🏖️ (via <a href="https://twitter.com/tylermenard/status/1148310176602165248">Tyler Menard</a>)</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount on your first order.</li>
+<li><a href="https://boostedboards.com/">Boosted</a>: Vehicle-grade electric skateboards and scooters to solve your transportation woes. Use code <strong>ATP</strong> at checkout for $75 off your vehicle.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>John's cheese grater broke.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d1d6a62aea92e0001a347ad</guid><pubDate>Thu, 04 Jul 2019 18:34:09 +0000</pubDate><title>333: Pesky Human Issues</title><itunes:title>Pesky Human Issues</itunes:title><itunes:episode>333</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:28</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp333.mp3" length="52867530" type="audio/mpeg"/><link>https://atp.fm/333</link><description><![CDATA[<ul>
+<li>Follow-up: <ul>
+<li><a href="https://twitter.com/_inside/status/1145761278251741185/photo/1">Expansion Slot Utility</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/PCI_Express">PCI Express</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2019/06/jony-ive-to-form-independent-design-company-with-apple-as-client/">Jony Ive leaves Apple</a><ul>
+<li><a href="https://www.relay.fm/clockwise/301">Clockwise #301: My Vulcan Mind</a></li>
+<li><a href="https://stratechery.com/2015/jony-ive-promoted-the-implications-of-not-managing-what-about-apple/">Ben Thompson's piece</a></li>
+<li><a href="http://atp.fm/episodes/120">ATP #120: One Magical Wire</a></li>
+<li><a href="https://www.wsj.com/articles/jony-ive-is-departing-apple-but-he-started-leaving-years-ago-11561943376">Wall Street Journal on Ive's Departure</a></li>
+<li><a href="https://www.businessinsider.com/photos-apple-jony-ive-designs-christmas-tree-claridges-no-decorations-2016-11">Jony Ive's Christmas Tree</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2019/06/30/ep-256">The Talk Show #256: 'A Bit Too Thin', with Special Guest Ben Thompson</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Dieter_Rams">Dieter Rams</a></li>
+<li><a href="https://daringfireball.net/2019/06/jony_ive_leaves_apple">Gruber last week</a> and <a href="https://daringfireball.net/2019/07/on_the_post-ive_future_of_design_at_apple">this week</a></li>
+<li><a href="https://appleinsider.com/articles/19/06/28/who-are-alan-dye-and-evans-hankey-the-design-leads-replacing-jony-ive">Evans Hankey &amp; Alan Dye</a></li>
+<li><a href="https://mobile.twitter.com/mayli/status/1144375544143843329?s=21">May-Li Khoe's tweet</a></li>
+<li><a href="https://www.netflix.com/title/80174608">Love, Death, &amp; Robots</a> ("Zima Blue" is the episode mentioned)</li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>How does the <a href="https://overcast.fm/">Overcast</a> recommendation engine work? (via <a href="https://twitter.com/neuronenstern/status/1145796115473870849">Markus Ernst</a>)</li>
+<li>What's the best way to enter "the zone" while programming? (via <a href="https://twitter.com/PaulWoodIII/status/1145733105208168449">Paul Wood III</a>)</li>
+<li>What happens to Overcast/Vignette/ATP/etc when we pass? (via <a href="https://twitter.com/leonzandman/status/1145025862892445699">Leon Zandman</a>)<ul>
+<li><a href="https://independence.fm/55">Independence #55: The Single Point of Failure</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://www.etsy.com/listing/643559190/rubbermaid-1972-spatula-rubbermaid-1971?ga_order=most_relevant&amp;ga_search_type=all&amp;ga_view_type=gallery&amp;ga_search_query=rubbermaid+spatula&amp;ref=sr_gallery-1-1&amp;cns=1&amp;col=1">John's Rubbermaid #1971 spatula</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: Get $100 off the eero base unit, 2 beacons, and 1 year of eero Plus with code <strong>ATP</strong>.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Casper is a sleep brand that makes expertly designed products to help you get your best rest, one night at a time.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Jony Ive is leaving Apple, but John's favorite spatula will never leave him.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d1430a8db603700013eda82</guid><pubDate>Thu, 27 Jun 2019 23:37:27 +0000</pubDate><title>332: Fuzzy Muppet Felt</title><itunes:title>Fuzzy Muppet Felt</itunes:title><itunes:episode>332</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp332.mp3" length="52855167" type="audio/mpeg"/><link>https://atp.fm/332</link><description><![CDATA[<ul>
+<li>Pre-show: Marco's <a href="http://www.amazon.com/dp/B000HVVSDU/?tag=marcoorg-20">new beach toy</a></li>
+<li>Follow-up: <ul>
+<li><a href="https://twitter.com/rmondello/status/1141878571780067328">Ricky Mondello on Sign In with Apple</a></li>
+<li>macOS app-removal bets: <a href="https://atp.fm/287">#287: Open-Faced Compliment Sandwich</a> (<a href="https://overcast.fm/+R7DUR92FM/1:43:18">Overcast timestamp link</a>)</li>
+</ul>
+</li>
+<li>Marco's spirit walk<ul>
+<li><a href="https://www.apple.com/airpods/">AirPods</a></li>
+<li><a href="https://www.amazon.com/dp/B07G26PY8N/?tag=marcoorg-20">{Fit in The case} Airpods Earpods Covers Compatible with airpods 2&amp;1 Anti-Slip Silicone Soft Sport Covers Accessories Apple AirPods Earbud 2 Pairs (White)</a></li>
+<li><a href="https://www.beatsbydre.com/earphones/powerbeats-pro">Powerbeats Pro</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Disentanglement_puzzle">Tavern puzzle</a></li>
+<li><a href="http://www.amazon.com/dp/B07G4MNFS1/?tag=siracusa-20">Sony WH1000XM3</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/06/24/new-16-inch-macbook-pro-rumored-to-launch-in-fall/">Rumored 16" MacBook Pro</a></li>
+<li><code>#askatp</code>:<ul>
+<li>Would Apple re-implement <a href="https://support.apple.com/en-us/HT204592">Target Display Mode</a> on the 5K iMac? (via <a href="https://twitter.com/JFrydai/status/1141940940745183237">Jack Frydai</a>)<ul>
+<li><a href="https://www.caseyliss.com/2016/5/17/target-disk-mode-is-still-a-thing-who-knew">Target Disk Mode</a></li>
+</ul>
+</li>
+<li>What software does Marco use to manage servers? (via <a href="https://twitter.com/chrisvire/status/1143174921792757762">Chris Hubbard</a>)</li>
+<li>What do we think about people listening at higher speeds than 1x? (via <a href="https://twitter.com/JosephDykstra/status/1143599814220926981">Jospeh Dijkstra</a>)</li>
+</ul>
+</li>
+<li>Post-show: <strong>🚨 Do not install the betas! 🚨</strong></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount on your first order.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Discovering that wheels are useful, working through a mid-life headphone crisis, the 16-inch rumor, and a special message about installing the betas.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d0af6db35891e0001b726e4</guid><pubDate>Thu, 20 Jun 2019 23:24:57 +0000</pubDate><title>331: The Technical Burden of Users</title><itunes:title>The Technical Burden of Users</itunes:title><itunes:episode>331</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp331.mp3" length="53487673" type="audio/mpeg"/><link>https://atp.fm/331</link><description><![CDATA[<ul>
+<li>Follow-up: <ul>
+<li><a href="https://512pixels.net/2019/06/on-the-mac-pro-the-g4-cube-and-their-shared-vent-design/">Mac Pro vent design</a><ul>
+<li><a href="https://www.newyorker.com/magazine/2015/02/23/shape-things-come?currentPage=all">New Yorker article</a></li>
+</ul>
+</li>
+<li><a href="https://mjtsai.com/blog/2019/06/04/apple-reverses-course-on-mdm-and-parental-control-apps/">Apple Reverses Course on MDM &amp; Parental Control Apps</a></li>
+<li><a href="https://www.theverge.com/2019/6/3/18650763/apple-app-store-enterprise-certificate-wwdc-2019">Apple tightens up rules for enterprise app certificates</a></li>
+</ul>
+</li>
+<li>iOS 13 Bluetooth permission dialogs<ul>
+<li>Marco's tweets <a href="https://twitter.com/marcoarment/status/1141131669736497153">1</a> <a href="https://twitter.com/marcoarment/status/1141168880410406912">2</a> <a href="https://twitter.com/marcoarment/status/1141169244715081729">3</a></li>
+<li><a href="https://twitter.com/BenjaminHerrin/status/1141454034206896128">Benjamin Herrin's findings</a></li>
+<li><a href="https://developer.apple.com/documentation/uikit/uiapplicationdelegate/1622921-application"><code>application(_:didFinishLaunchingWithOptions:)</code></a></li>
+<li><a href="https://developer.apple.com/documentation/uikit/uidevice"><code>UIDevice</code></a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/mac-pro/">Mac Pro</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Field-programmable_gate_array">FPGA</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2019/06/04/ep-254">The Talk Show #254: Live from WWDC 2019</a></li>
+<li><a href="https://www.relay.fm/mpu/485">Mac Power Users #485: WWDC and Interview with the Mac Pro Product Manager</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/pro-display-xdr/">Pro Display XDR</a></li>
+<li><a href="https://developer.apple.com/sign-in-with-apple/">Sign in With Apple</a><ul>
+<li>An aside about Overcast and user data</li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>What do we think about mouse pads? (via Andy Beyer-Bowden)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_User_Group">MUG</a></li>
+<li><a href="https://www.hardocp.com/">HardOCP</a> (it was the <a href="https://www.youtube.com/watch?v=t-mnpdwQ-ww">Ratpadz GS</a>)</li>
+<li><a href="http://www.amazon.com/dp/B003DZ16VG/?tag=marcoorg-20">CS Hyde C4-NGen</a></li>
+</ul>
+</li>
+<li>Buying an old-generation MacBook Air as new today? (via <a href="https://twitter.com/jonschwenn/status/1140445229071458307">Jon Schwenn</a>)</li>
+<li>How were the WWDC box lunches this year? (via many, including <a href="https://twitter.com/TimSchmitz/status/1139891849202716679">Tim Schmitz</a>)<ul>
+<li><a href="https://www.sofamarketsj.com/">SoFa Market</a></li>
+<li><a href="http://www.sanpedrosquare.com/">San Pedro Square</a></li>
+<li><a href="https://www.odwalla.com/products/smoothies/mango-tango">Mango Tango</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Marco's anticipated summer of fun</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online activity. Get 3 months free with a 1-year package.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://molekule.com/">Molekule</a>: Reimagining the future of clean air, starting with the air purifier. Use code <strong>ATP</strong> for $75 off your first order.</li>
+</ul>]]></description><itunes:subtitle>Bluetooth permission dialogs, Afterburner, Pro Display XDR longevity, mouse pads, and Marco's fun summer plans.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5d01befc074041000167f320</guid><pubDate>Thu, 13 Jun 2019 19:16:40 +0000</pubDate><title>330: A Rotation You Can't Complete</title><itunes:title>A Rotation You Can't Complete</itunes:title><itunes:episode>330</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:20</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp330.mp3" length="58824264" type="audio/mpeg"/><link>https://atp.fm/330</link><description><![CDATA[<ul>
+<li>Pre-show: root's <a href="https://unix.stackexchange.com/questions/1262/where-did-the-wheel-group-get-its-name"><code>wheel</code></a> group (<a href="http://drops.caseyliss.com/wiJ807">more</a>)</li>
+<li>Marco comes to terms with Swift</li>
+<li><a href="http://siracusafamily.org/safari/extensions/">John's preposterous Safari Extension</a></li>
+<li>Follow-up: <ul>
+<li><a href="https://en.wikipedia.org/wiki/ASCII_art">ASCII art</a> apps<ul>
+<li>Mac: <a href="https://monodraw.helftone.com/">Monodraw</a></li>
+<li>Web: <a href="http://asciiflow.com/">ASCII Flow</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/landonepps/status/1136233366078992384/video/1">Blending stump is a lasso tool</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/List_of_Sim_video_games">"Sim" game series</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Transport_Tycoon">Transport Tycoon</a></li>
+</ul>
+</li>
+<li><a href="https://patrickbalestra.com/blog/2019/06/07/wwdc-2019-the-things-you-may-have-missed.html">100 WWDC features that may have gone unnoticed</a></li>
+<li>WWDC favorites a week on<ul>
+<li><a href="https://developer.apple.com/documentation/combine"><code>Combine</code> Framework</a></li>
+<li><a href="https://developer.apple.com/xcode/swiftui/">SwiftUI</a></li>
+<li><a href="https://developer.apple.com/documentation/uikit/views_and_controls/collection_views/using_collection_view_compositional_layouts_and_diffable_data_sources"><code>UICollectionView</code> Compositional Layout</a></li>
+<li><a href="https://www.apple.com/mac-pro/">Mac Pro</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_File_System">APFS</a> and <a href="https://www.apple.com/macos/catalina-preview/">Catalina</a><ul>
+<li><a href="http://www.amazon.com/dp/B078SWJ3CF/?tag=liismo-20">Casey's SSD</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/mac-pro/">Mac Pro</a><ul>
+<li><a href="https://www.newsshooter.com/2019/06/05/promise-internal-pegasus-storage-custom-designed-for-new-mac-pro/">Pegasus enclosures</a></li>
+<li><a href="https://www.youtube.com/watch?v=JwneERT60NU&amp;feature=youtu.be&amp;t=413">Tim/Jony hole/lattice design conversation</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Power_Mac_G4_Cube">G4 Cube</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Userspace drivers<ul>
+<li><a href="https://appstories.net/episodes/114/">AppStories #114: Craig Federighi: The AppStories Interview</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Filesystem_in_Userspace"><code>FUSE</code></a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>How to choose a macro lens? (via <a href="https://twitter.com/_coalbell/status/1130566530574344192">Colton Belfils</a>)<ul>
+<li><a href="https://www.the-digital-picture.com/Canon-Lenses/Canon-Macro-Lens.aspx">The Digital Picture</a></li>
+</ul>
+</li>
+<li>What should one do to protect old computers? (via <a href="https://twitter.com/jg_andrews/status/1130519379077226496">James Andrews</a>)</li>
+<li>How does Marco treat Tesla's "Autopilot"? (via <a href="https://twitter.com/tinykars/status/1129516401390182401">Krystian</a>)</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+<li><a href="http://awaytravel.com/atp20">Away</a>: Get $20 off a suitcase with code <strong>ATP20</strong>. Because this season, everyone wants to get Away.</li>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>Catalina under the hood, John's new "app", and why Casey is getting a Mac Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5cf5fd8d53759c00018a76db</guid><pubDate>Tue, 04 Jun 2019 05:14:58 +0000</pubDate><title>329: Mac Pro Day</title><itunes:title>Mac Pro Day</itunes:title><itunes:episode>329</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:28:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp329.mp3" length="85366284" type="audio/mpeg"/><link>https://atp.fm/329</link><description><![CDATA[<p>Our live show from WWDC 2019!</p>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://boostedboards.com/">Boosted</a>: Vehicle-grade electric skateboards and scooters to solve your transportation woes. Use code <strong>ATP</strong> at checkout to get $75 off your vehicle.</li>
+<li><a href="https://www.mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="https://linode.com/atp/?utm_source=atp&amp;utm_medium=podcast&amp;utm_content=20%20dollar&amp;utm_campaign=atp20">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="https://www.cardsagainsthumanity.com/">Cards Against Humanity</a>: A party game for horrible people.<ul>
+<li><a href="https://www.balmuda.com/jp/toaster/">Balmuda Toaster</a></li>
+</ul>
+</li>
+</ul>]]></description><itunes:subtitle>Our live show from WWDC 2019!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5cef4bcaa4f96b0001ef0961</guid><pubDate>Thu, 30 May 2019 16:44:16 +0000</pubDate><title>328: The Pixel Stump</title><itunes:title>The Pixel Stump</itunes:title><itunes:episode>328</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp328.mp3" length="58738752" type="audio/mpeg"/><link>https://atp.fm/328</link><description><![CDATA[<ul>
+<li>Follow-up: <ul>
+<li><a href="https://blog.regehr.org/archives/1653">Explaining Code using ASCII Art</a></li>
+<li><a href="https://www.ifixit.com/Teardown/MacBook+Pro+15-Inch+Touch+Bar+2019+Teardown/123653#s239249">iFixit's New MBP Teardown</a></li>
+<li><a href="https://twitter.com/_inside/status/1133051998763409409">Apple Watch Independence</a><ul>
+<li><a href="https://twitter.com/_DavidSmith/status/1133734819928641536">_'s Watch Usage Chart</a></li>
+</ul>
+</li>
+<li><a href="https://www.quora.com/What-Apple-Watch-design-alternatives-do-you-wish-had-made-it-into-the-final-product/answer/Anna-Katrina-Shedletsky">Apple Watch Designer Anna-Katrina Shedletsky</a></li>
+<li><a href="https://www.bloomberg.com/news/audio/2019-05-28/wwdc-preview-with-apple-s-former-app-approval-chief-podcast">Decrypted: Conversation with Phillip Shoemaker</a><ul>
+<li>Previously about Shoemaker: <a href="https://www.wired.com/2010/08/apple-fart-apps/">Apple's App Store Director Sells His Own Fart Apps</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>macOS 10.15's System Partition<ul>
+<li><a href="https://en.wikipedia.org/wiki/System_Integrity_Protection">System Integrity Protection</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2019/05/new-ipod-touch-delivers-even-greater-performance/">New iPod touch</a></li>
+<li>Guilherme Rambo's Screenshot Leaks<ul>
+<li><a href="https://9to5mac.com/2019/05/28/ios-13-screenshots-dark-mode-more/">iOS 13</a><ul>
+<li><a href="https://www.dickblick.com/products/gray-paper-stumps/">Blending Stump</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/05/29/macos-10-15-music-tv-app-screenshots/">macOS 10.15</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/05/24/apple-pro-display-ahead-of-wwdc/">Apple Pro Display</a></li>
+<li>Pontificating about the Mac Pro</li>
+<li>...oh yeah and some other WWDC stuff.</li>
+<li>Post-show: What's owning a 10-year computer <em>really</em> like?</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://expressvpn.com/atp">ExpressVPN</a>: Protect your online privacy. Get 3 extra months free with a 12-month plan.</li>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="https://mobelux.com/">Mobelux</a>: We design, build, and brand award‑winning mobile apps and modern web platforms.</li>
+</ul>]]></description><itunes:subtitle>WWDC leaks and predictions, final Mac Pro guesses, and the reality of keeping the same computer for ten years.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ce60c6afa0d605cdaeb8a49</guid><pubDate>Thu, 23 May 2019 17:06:31 +0000</pubDate><title>327: Better Late Than Wrong</title><itunes:title>Better Late Than Wrong</itunes:title><itunes:episode>327</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp327.mp3" length="56821637" type="audio/mpeg"/><link>https://atp.fm/327</link><description><![CDATA[<ul>
+<li>Follow-up: <ul>
+<li><a href="http://www.commitstrip.com/en/2016/09/22/ctrl-control/">"Interactive version control" comic</a></li>
+<li>"<code>Preview</code> for video"<ul>
+<li><a href="https://www.videoloupe.com/">Videoloupe</a> (via <a href="https://twitter.com/mschaffer/status/1129106957615239168">Matthew Schaffer</a>) </li>
+<li><a href="https://luma-touch.com/lumafx/">LumaFX</a></li>
+<li><a href="https://www.bitfield.se/perfecthorizon/index.html">Perfect Horizon</a> (via <a href="https://twitter.com/janostlund/status/1129345152328372225">Jan Östlund</a>)</li>
+<li><a href="http://www.telestream.net/switch/overview.htm">Telestream Switch+</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.caseyliss.com/2019/5/22/vignette">Vignette</a> (<a href="https://itunes.apple.com/us/app/vignette-update-contact-pics/id1455924925?mt=8">App Store Link</a>)<ul>
+<li><a href="https://www.relay.fm/analogue/157">Analog(ue) #157: I Just Want People to Like My Stuff</a></li>
+<li><a href="https://www.macstories.net/reviews/vignette-easily-update-your-contact-photos-without-sacrificing-privacy/">MacStories</a></li>
+<li><a href="https://www.cultofmac.com/626754/vignette-quickly-add-contact-photos/">Cult of Mac</a></li>
+<li><a href="https://9to5mac.com/2019/05/22/vignette-contacts-app-ios/">9to5Mac</a></li>
+<li><a href="https://techcrunch.com/2019/05/22/vignette-is-a-handy-new-app-that-keeps-your-ios-contact-photos-up-to-date/">TechCrunch</a></li>
+<li><a href="https://gifwrapped.co/">GIFWrapped</a></li>
+<li><a href="https://independence.fm/">Independence</a></li>
+</ul>
+</li>
+<li>Marco's AirPlay 2 <a href="https://www.relay.fm/cortex/23">"Greycation"</a><ul>
+<li><a href="https://developer.apple.com/documentation/avfoundation/avsamplebufferrendersynchronizer"><code>AVSampleBufferRenderSynchronizer</code></a></li>
+<li><a href="http://supertop.co/castro/">Castro</a></li>
+</ul>
+</li>
+<li><a href="https://play.date/">Playdate</a><ul>
+<li><a href="http://www.firewatchgame.com/">Firewatch</a></li>
+<li><a href="https://www.goose.game/">Untitled Goose Game</a></li>
+<li><a href="https://www.youtube.com/watch?v=8ZXWdR7RzV8">Cabel Sasser's XOXO 2013 talk</a></li>
+<li><a href="https://teenage.engineering/products/op-1">Teenage Engineering OP-1</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2019/05/apple-introduces-first-8-core-macbook-pro-the-fastest-mac-notebook-ever/">Apple's Refreshed MacBook Pros</a><ul>
+<li><a href="https://daringfireball.net/2019/05/good_old_fashioned_macbook_pro_speed_bumps">Gruber's take</a></li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li><a href="https://images.blackmagicdesign.com/images/products/davinciresolve/landing/color/color-md.jpg?_v=1554517395">Marco's editing suite</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="https://boostedboards.com/">Boosted</a>: Vehicle-grade electric skateboards and scooters to solve your transportation woes. Use the code <code>ATP</code> at checkout to get $75 off your vehicle.</li>
+<li><a href="https://apolloapp.io/atp">Apollo</a>: A beautiful Reddit app built for power and speed.</li>
+</ul>]]></description><itunes:subtitle>Casey's new app, Apple's new MacBook Pros, Panic's new Playdate, and Marco's failed Greycation.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5cdcd4247817f7e8f90260ae</guid><pubDate>Thu, 16 May 2019 16:27:12 +0000</pubDate><title>326: Blow Your Redo Stack</title><itunes:title>Blow Your Redo Stack</itunes:title><itunes:episode>326</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp326.mp3" length="63410243" type="audio/mpeg"/><link>https://atp.fm/326</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://en.wikipedia.org/wiki/Bug-out_bag">Bug-out bags</a> and disaster planning<ul>
+<li><a href="https://www.caseyliss.com/2018/10/17/go-pack-2018">Casey's Go Pack</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Northeast_blackout_of_2003">Northeast blackout of 2003</a></li>
+<li><a href="http://www.amazon.com/dp/B01N9FAFIE/?tag=liismo-20">Casey's fantasy generator</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><strong>THANK YOU</strong> for buying T-Shirts!</li>
+<li><a href="https://twitter.com/search?l=&amp;q=%22t-shirt%22%20from%3Asiracusa%20since%3A2019-04-01%20until%3A2019-05-12&amp;src=typd">John's "Frame Game"</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/05/15/full-mitigation-intel-cpu-mac/">Apple's fix for the new ZombieLoad Intel CPU exploit</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Heartbleed">HeartBleed</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1123271961939988481">Steve T-S on macOS 10.15 house-cleaning</a><ul>
+<li><a href="http://drops.caseyliss.com/2vTucf">Ink</a></li>
+<li><a href="http://iina.io">IINA</a></li>
+<li><a href="https://www.macobserver.com/tips/how-to/force-mac-64-bit-mode/">Booting in 64-bit only mode</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Are comments in code a "code smell"? (via <a href="https://twitter.com/NAlexWhite/status/1126898732568653824">Alex White</a>)<ul>
+<li><a href="https://github.com/apple/swift-evolution/blob/master/proposals/0004-remove-pre-post-inc-decrement.md">SE-0004: Remove <code>++</code> and <code>--</code> operators</a></li>
+</ul>
+</li>
+<li>How does John rate movies? (via <a href="http://www.studioneat.com/">Dan Provost</a>)<ul>
+<li><a href="https://letterboxd.com/siracusa/">John's Letterboxd</a></li>
+</ul>
+</li>
+<li>What's our <a href="https://developer.apple.com/wwdc">WWDC</a> <a href="https://en.wikipedia.org/wiki/Everyday_carry">EDC</a>? (via <a href="https://twitter.com/Random_Rosey/status/1126929998772932610">M Roselius</a>)<ul>
+<li>Chase Reeves' <a href="https://bagworks.co/">BagWorks</a> and <a href="https://www.youtube.com/user/chasereeves">YouTube channel</a></li>
+<li><a href="https://www.peakdesign.com/products/everyday-backpack?variant=9783968989228">Peak Design Everyday Backpack</a></li>
+<li><a href="https://www.tombihn.com/products/synapse-25">Tom Bihn Synapse 25</a> and <a href="https://www.tombihn.com/collections/backpacks/products/synapse-19">19</a></li>
+<li><a href="https://www.nomatic.com/pages/nomatic-backpack">Nomatic Travel Pack</a></li>
+<li><a href="https://www.arktypedesign.com/collections/all/products/dashpack-limited-edition-waxed-canvas-slate">Arktype Dashpack</a></li>
+<li><a href="https://www.caseyliss.com/2018/10/17/go-pack-2018">Casey's Go Pack</a></li>
+<li><a href="https://swiftcupcoffee.com/collections/coffee">Swift Cup Coffee</a></li>
+<li><a href="https://www.tombihn.com/collections/organizer-pouches/products/clear-organizer-pouch">Tom Bihn Organizer Pouch</a></li>
+<li><a href="https://www.amazon.com/dp/B07H9WPCFK/?tag=marcoorg-20">RAVPower 45W GaN USB-C charger</a> (Marco's favorite)</li>
+<li><a href="https://www.amazon.com/dp/B07DFGKFM3/?tag=marcoorg-20">Anker 30W GaN USB-C charger</a> or <a href="https://www.amazon.com/dp/B07DFGXLY4/?tag=marcoorg-20">2-port 60W</a></li>
+<li><a href="https://www.amazon.com/dp/B07H6BQNGF/?tag=marcoorg-20">Aukey 18W USB-C charger</a> (the 30W GaN version disappeared recently for some reason; if it comes back, get it instead)</li>
+<li><a href="https://www.apple.com/shop/product/MUF72AM/A/usb-c-charge-cable-1-m">Apple USB-C to USB-C charge cable</a></li>
+<li><a href="https://www.apple.com/shop/product/MQGJ2AM/A/usb-c-to-lightning-cable-1-m">Apple USB-C to Lightning cable</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li><a href="https://letterboxd.com/siracusa/stats/">John's Letterboxd statistics</a></li>
+<li>Casey's forthcoming app</li>
+<li><a href="https://independence.fm/">Independence</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Use code <strong>atp2019</strong> for a $20 credit.</li>
+<li><a href="https://www.marinelayer.com/">Marine Layer</a>: Clothes that make it easy to get dressed in the morning. Use code <strong>atp15</strong> for 15% off your first order.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Doomsday prep, everyday carry, backpacks, star-rating scales, movie-frame guessing, and maybe a few technology topics.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5cd39d96f4e1fcfb5830ccb5</guid><pubDate>Thu, 09 May 2019 16:06:38 +0000</pubDate><title>325: Relive Your Calculator-Watch Dreams</title><itunes:title>Relive Your Calculator-Watch Dreams</itunes:title><itunes:episode>325</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp325.mp3" length="63965729" type="audio/mpeg"/><link>https://atp.fm/325</link><description><![CDATA[<p><strong>The ATP store is <em>back</em> with brand new designs! Only available until May 12! <a href="http://atp.fm/store">Order now</a>!</strong> Our thanks to <a href="https://www.patreon.com/iconfactory">The Iconfactory</a> for helping us out with the T-Shirt designs this year.</p>
+<ul>
+<li>Follow-up:<ul>
+<li>MDM parental-control conspiracy theory</li>
+<li>Jury-duty technology<ul>
+<li>iPod Nano 5th-gen had a video camera</li>
+<li><a href="http://www.gba-roms.net/nintendo-play-yan.htm">Nintendo Play-Yan</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2019-05-06/apple-wwdc-2019-ios-13-macos-10-15-watchos-6-tvos-features">Bloomberg's WWDC round-up</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/AvantGo">AvantGo</a></li>
+<li><a href="https://itunes.apple.com/us/app/gboard-the-google-keyboard/id1091700242">Gboard</a> (App Store link)</li>
+<li><a href="https://www.dueapp.com/">Due</a></li>
+<li><a href="https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/">The Law of Leaky Abstractions</a></li>
+<li><a href="https://windysoftware.net/bestphotos">BestPhotos</a></li>
+<li><a href="https://en.wikipedia.org/wiki/California_dial">California dial</a><ul>
+<li><a href="https://nomos-glashuette.com/en#/en/watches/families/club/club-overview">Nomos Club Campus</a></li>
+<li><a href="https://www.panerai.com/us/en/collections/watch-collection/radiomir/pam00424-radiomir-california---47mm.html">Panerai Radiomir California</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>What do we listen to when we code? (via <a href="https://twitter.com/thombullock/status/1116027205165826048">Thom Bullock</a>)</li>
+<li>How do we configure Macs used by other family members? (via Nick)</li>
+<li>What resources help us be... <em>slightly</em> less ignorant white dudes? (via Brie Macnish)</li>
+</ul>
+</li>
+<li>Post-show: Marco at the Movies: <a href="https://www.imdb.com/title/tt0122690/?ref_=fn_al_tt_1">Ronin</a><ul>
+<li><a href="https://www.youtube.com/watch?v=ADqEJ9LePcs">Ronin on YouTube (with ads)</a></li>
+<li><a href="https://www.relay.fm/analogue/155">Analog(ue) #155: This Time I Acquiesced</a></li>
+<li><a href="https://www.relay.fm/topfour/51">Top Four #51: Heist Movies</a></li>
+<li><a href="https://www.imdb.com/title/tt0365737/?ref_=fn_al_tt_1">Syriana</a></li>
+<li><a href="https://letterboxd.com/siracusa/">John on Letterboxd</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount on your first order.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day trial today.</li>
+</ul>]]></description><itunes:subtitle>Analyzing the latest rumors for this year's iOS, watchOS, and macOS releases.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ccbbaace2c483101258ada6</guid><pubDate>Fri, 03 May 2019 15:25:21 +0000</pubDate><title>324: Automatic Kicking Machine</title><itunes:title>Automatic Kicking Machine</itunes:title><itunes:episode>324</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp324.mp3" length="59361277" type="audio/mpeg"/><link>https://atp.fm/324</link><description><![CDATA[<p><strong>The ATP store is <em>back</em> with brand new designs! Only available until May 12! <a href="http://atp.fm/store">Order now</a>!</strong> Our thanks to <a href="https://www.patreon.com/iconfactory">The Iconfactory</a> for helping us out with the T-Shirt designs this year.</p>
+<ul>
+<li>Follow-up:<ul>
+<li><a href="https://auspost.com.au/about-us/about-our-site/website-terms-conditions#linkstowebsite">Australia Post's website link guidelines</a> (via <a href="https://twitter.com/robmcalavey/status/1121654367231201282">Robb McAlavey</a>)</li>
+<li>How could one leverage copyright to block podcasts in clients?</li>
+</ul>
+</li>
+<li><a href="https://marco.org/2019/04/27/overcast-clip-sharing">Clip sharing with Overcast</a><ul>
+<li><a href="https://developer.apple.com/documentation/avfoundation/avassetexportsession"><code>AVAssetExportSession</code></a></li>
+<li><a href="https://developer.apple.com/documentation/avfoundation/avvideocomposition/1387030-animationtool"><code>animationTool</code></a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1123612295240744960">Overcast for macOS</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1123770355716370432">Three-column version</a></li>
+<li><a href="https://github.com/steventroughtonsmith/marzipanify">marzipanify</a></li>
+<li><a href="https://www.highcaffeinecontent.com/blog/20190301-Bringing-iOS-Apps-to-macOS-Using-Marzipanify">Steve's blog posts</a></li>
+</ul>
+</li>
+<li><a href="https://www.nytimes.com/2019/04/27/technology/apple-screen-time-trackers.html">New York Times on Apple "cracking down" on MDM apps</a><ul>
+<li><a href="https://www.apple.com/newsroom/2019/04/the-facts-about-parental-control-apps/">Apple response</a></li>
+<li><a href="https://www.macrumors.com/2019/04/27/schiller-screen-time-crackdown-mdm/">Secondary Schiller response</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>What naming convention do we use for stuff on our Macs? (via <a href="https://twitter.com/keegsands/status/1121090393276387338">Keegan Sands</a>)</li>
+<li>Why does Apple bother with <a href="https://aws.amazon.com/">AWS</a>? (via <a href="https://twitter.com/pfe1223/status/1120453444207349761">Patrick</a>)</li>
+<li>What are our favorite sports cars? (via <a href="https://twitter.com/PaulWoodIII/status/1102741636419932163">Paul Wood III</a>)</li>
+</ul>
+</li>
+<li>Post-show: Marco gets summoned to <a href="https://en.wikipedia.org/wiki/Jury_duty#United_States">jury duty</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Rio_PMP300">Rio PMP300</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Creative_NOMAD#NOMAD_Jukebox_Zen">NOMAD Jukebox</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IPod_Nano#5th_generation">iPod Nano</a></li>
+<li><a href="http://www.amazon.com/dp/B07HRHB894/?tag=marcoorg-20">AGPTEK MP3 Player</a></li>
+<li><a href="https://en.wikipedia.org/wiki/AMV_video_format"><code>AMV</code> video format</a></li>
+<li><a href="http://www.amazon.com/dp/B01CCESGDO/?tag=marcoorg-20">Sony Walkman MP3 Player</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://www.clearme.com/accidentaltech">Clear</a>: Get through security even faster. Get your first 2 months free with code <strong>accidentaltech</strong>.</li>
+</ul>]]></description><itunes:subtitle>Overcast's clip sharing, Apple vs. parental-control apps, and Marco vs. jury duty.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5cc122ae71c10b09dab1a270</guid><pubDate>Thu, 25 Apr 2019 19:06:33 +0000</pubDate><title>323: A Slightly Smaller Thumb</title><itunes:title>A Slightly Smaller Thumb</itunes:title><itunes:episode>323</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:28</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp323.mp3" length="55839993" type="audio/mpeg"/><link>https://atp.fm/323</link><description><![CDATA[<p><strong>The ATP store is <em>back</em> with new designs! Only available through May 12! <a href="http://atp.fm/store">Order now</a>!</strong></p>
+<p><em>Our thanks to <a href="https://www.patreon.com/iconfactory">The Iconfactory</a> for helping us out with the T-Shirt designs this year.</em></p>
+<ul>
+<li>Pre-show: <a href="https://www.relay.fm/rd/102">Amazing refrigerator episode of Reconcilable Differences</a></li>
+<li><a href="http://atp.fm/store">ATP Store</a><ul>
+<li><a href="https://www.patreon.com/iconfactory">Iconfactory Patreon</a></li>
+<li><a href="https://iconfactoryapps.com">Iconfactory apps</a></li>
+</ul>
+</li>
+<li>Follow-up on Intel exiting the cellular-modem business:<ul>
+<li>Thoughts from anonymous Intel tipsters</li>
+<li>Thoughts from an <a href="https://en.wikipedia.org/wiki/Intellectual_property">IP</a> lawyer</li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2019/4/22/18510897/luminary-podcast-app-launch-the-daily-gimlet-media-spotify">Luminary's missteps</a><ul>
+<li><a href="https://relay.fm/penaddict">The Pen Addict</a></li>
+</ul>
+</li>
+<li>More from <a href="https://twitter.com/_inside">Gui Rambo</a><ul>
+<li><a href="https://9to5mac.com/2019/04/18/apple-watch-mac-password/">Apple Watch auth beyond just computer unlocks</a></li>
+<li><a href="https://9to5mac.com/2019/04/19/siri-shortcuts-screen-time-mac/">Siri Shortcuts, Screen Time, other iOS features</a><ul>
+<li><a href="https://www.relay.fm/upgrade/242">Upgrade #242: Myke and the Modems</a></li>
+<li><a href="https://marco.org/apps">Quitter</a></li>
+<li><a href="https://www.relay.fm/automators/18">Automators #18: Terminal Automation with John Siracusa</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/04/22/wwdc-developers-siri-marzipan/">WWDC 2019 for Developers</a><ul>
+<li><a href="https://www.highcaffeinecontent.com/blog/">Steve Troughton-Smith's blog</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Quarterbacking <a href="https://developer.apple.com/wwdc">WWDC</a><ul>
+<li><a href="https://www.youtube.com/watch?v=cXY1AfKmmKI">2013 Mac Pro announcement</a></li>
+<li><a href="http://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">The Case for a True Mac Pro Successor</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/?utm_source=atp&amp;utm_medium=podcast&amp;utm_content=20%20dollar&amp;utm_campaign=atp20">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Use code <strong>atp2019</strong> for a $20 credit.</li>
+<li><a href="https://expressvpn.com/atp">ExpressVPN</a>: Protect your online privacy. Get 3 extra months free with a 12-month plan.</li>
+<li><a href="http://rightpoint.com/careers">Rightpoint</a>: Rightpoint is hiring mobile and web engineers! See what life is like at Rightpoint.</li>
+</ul>]]></description><itunes:subtitle>New T-shirts, potential threats to the podcasting landscape, and the latest Marzipan reports.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5cb7e9ef9140b77d153f007b</guid><pubDate>Thu, 18 Apr 2019 15:31:41 +0000</pubDate><title>322: Morale-Sucking Maple Syrup Fires</title><itunes:title>Morale-Sucking Maple Syrup Fires</itunes:title><itunes:episode>322</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:46:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp322.mp3" length="51190500" type="audio/mpeg"/><link>https://atp.fm/322</link><description><![CDATA[<ul>
+<li>Pre-show: Casey and John file Overcast bugs</li>
+<li>Follow-up:<ul>
+<li>More AirPower follow-up. (Really!)</li>
+<li>Netflix, AirPlay, and screen rights</li>
+<li>AirPlay quality loss</li>
+<li><a href="https://stacksocial.com/sales/zenpod-spinning-case-for-airpods-black-silver">AirPod fidget spinner</a></li>
+</ul>
+</li>
+<li><a href="https://www.themarysue.com/katie-bouman-should-get-credit/"><em>Of course</em> Katie Bouman should get the credit</a><ul>
+<li><a href="https://www.youtube.com/watch?v=zUyH3XhpLTo">How to Understand the Image of a Black Hole</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/04/16/apple-qualcomm-settlement/">Apple and Qualcomm settle</a> and then <a href="https://newsroom.intel.com/news-releases/intel-modem-statement/">Intel exits 5G business</a><ul>
+<li><a href="https://www.apple.com/newsroom/2019/04/qualcomm-and-apple-agree-to-drop-all-litigation/">Apple press release</a></li>
+<li>John on patents <a href="http://5by5.tv/hypercritical/67">1</a>, <a href="http://5by5.tv/hypercritical/68">2</a>, <a href="http://5by5.tv/hypercritical/69">3</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/04/13/ios-13-features-dark-mode/">iOS 13: Dark Mode, Volume HUD, multi-windows/"cards" on iPad</a><ul>
+<li><a href="https://github.com/louisdh/panelkit"><code>PanelKit</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Kai's_Power_Tools">Kai's Power Tools</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/04/17/find-my-iphone-revamp/">Unified Find My iPhone &amp; Find My Friends</a><ul>
+<li><a href="https://www.thetileapp.com/">Tile</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/04/16/mac-ipad-display-feature/">macOS 10.15 rumors</a><ul>
+<li><a href="https://lunadisplay.com/">Luna Display</a><ul>
+<li><a href="https://astropad.com/">Astropad</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Sidecar">Sidecar</a></li>
+<li><a href="https://manytricks.com/moom/">Moom</a></li>
+</ul>
+</li>
+<li>Post-show: Top Four ATP Hosts with Bad Taste</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="https://linode.com/atp/?utm_source=atp&amp;utm_medium=podcast&amp;utm_content=20%20dollar&amp;utm_campaign=atp20">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Use code <strong>atp2019</strong> for a $20 credit.</li>
+</ul>]]></description><itunes:subtitle>Overcast nitpicks, black-hole sexism, Apple-Qualcomm-Intel, and Rambo's Week O'Leaks.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5cb003669140b73cfc367ac0</guid><pubDate>Fri, 12 Apr 2019 14:50:17 +0000</pubDate><title>321: Dumbed Down, Locked Down, and Locked Out</title><itunes:title>Dumbed Down, Locked Down, and Locked Out</itunes:title><itunes:episode>321</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:20</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp321.mp3" length="55370043" type="audio/mpeg"/><link>https://atp.fm/321</link><description><![CDATA[<ul>
+<li>Pre-show:<ul>
+<li><a href="https://twitter.com/caseyliss/status/1113879969556512768">Casey's <code>#snelltalk</code> submission</a></li>
+<li><a href="https://www.relay.fm/upgrade/240">John's appearance on Upgrade</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Last week's PowerByProxy-AirPower story is disputed</li>
+<li>Game of Thrones and modern television</li>
+<li>Apple News on John's Mac is still broken<ul>
+<li><a href="https://everymac.com/monitors/apple/studio_cinema/specs/apple-led-cinema-display-24-inch-specs.html">Apple Cinema Display LED</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://help.netflix.com/en/node/49">Netflix No Longer Supports AirPlay</a><ul>
+<li><a href="https://www.macrumors.com/2019/04/05/netflix-app-no-longer-supports-airplay/">Clarification from Netflix</a></li>
+<li><a href="https://despair.com/collections/demotivators/products/meetings">Demotivators: Meetings</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/04/10/macos-10-15-itunes-standalone-apps/">The Great iTunes Break-Up</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/The_Monkey%27s_Paw"><em>The Monkey's Paw</em></a></li>
+<li><a href="https://en.wikipedia.org/wiki/QuickTime#QuickTime_7.x">QuickTime 7</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SoundJam_MP">SoundJam MP</a></li>
+<li><a href="https://flexibits.com/cardhop">Cardhop</a></li>
+<li><a href="https://developer.apple.com/musickit/"><code>MusicKit</code></a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Is it bad to use high-wattage chargers even though the devices get warm? (via Sean Kelker)</li>
+<li>How do version numbers work? (via Aadi)<ul>
+<li><a href="https://semver.org/">Semantic Versioning</a></li>
+</ul>
+</li>
+<li>How do we keep code snippets for reference? (via Vincent Steinmann)<ul>
+<li><a href="https://github.com/marcoarment/fcmodel"><code>FCModel</code></a></li>
+<li><a href="https://github.com/marcoarment/fcutilities"><code>FCUtilities</code></a></li>
+<li><a href="https://www.cpan.org/">CPAN</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://instagram.com/caseyliss">Casey's Live Instagram Experiment</a><ul>
+<li><a href="https://www.alfaromeousa.com/suvs/stelvio/quadrifoglio">Alfa Romeo Stelvio Quadrifoglio</a></li>
+<li><a href="https://www.adobe.com/products/premiere-rush.html">Adobe Premiere Rush</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Somebody wished on a monkey's paw for iTunes to be broken up.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ca57abf6e9a7f3381218b2f</guid><pubDate>Thu, 04 Apr 2019 18:29:28 +0000</pubDate><title>320: Here Comes the Big But</title><itunes:title>Here Comes the Big But</itunes:title><itunes:episode>320</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp320.mp3" length="55577302" type="audio/mpeg"/><link>https://atp.fm/320</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>AirPods 2 hinge <em>is</em> different<ul>
+<li><a href="https://www.ifixit.com/Teardown/AirPods+2+Teardown/121471">iFixIt Teardown</a></li>
+</ul>
+</li>
+<li>People use GSuite! Dozens of us!<ul>
+<li><a href="https://twitter.com/martinsteiger/status/1111753073385447427">Workaround</a> that uses <a href="https://www.charlesproxy.com/">Charles Proxy</a></li>
+<li><a href="https://www.macobserver.com/analysis/apple-gmail-gsuite-10-14-4-mail-fixed/">Probably a Google issue?</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2019/03/29/apple-cancels-airpower-product-citing-inability-to-meet-its-high-standards-for-hardware/">AirPower cancelled</a><ul>
+<li><a href="https://www.studioneat.com/products/dock">Studio Neat Material Dock</a></li>
+</ul>
+</li>
+<li><a href="https://store.google.com/magazine/stadia">Google Stadia</a><ul>
+<li><a href="http://atp.fm/episodes/278">Previously on ATP</a></li>
+<li><a href="https://en.wikipedia.org/wiki/OnLive">OnLive</a></li>
+<li><a href="https://www.playstation.com/en-us/explore/playstationnow/">Playstation Now</a></li>
+<li><a href="https://www.nvidia.com/en-us/geforce/products/geforce-now/mac-pc/">GeForce Now</a></li>
+<li><a href="https://developers.google.com/speed/public-dns/">Google Public DNS</a></li>
+<li><a href="http://drops.caseyliss.com/5QuPzu">Kali</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Have any tips on booking a <a href="https://disneyworld.disney.go.com/">Disney World</a> vacation? (via <a href="https://twitter.com/RipeFruit_/status/1105662587604217856">Stephen Kim</a>)<ul>
+<li><a href="https://www.dvcrequest.com/">David's Vacation Club Rentals</a></li>
+<li><a href="https://disneyworld.disney.go.com/dining/hollywood-studios/50s-prime-time-cafe/">50's Prime Time Café</a></li>
+<li><a href="https://disneyworld.disney.go.com/parks/hollywood-studios/">Disney's Hollywood Studios</a></li>
+<li><a href="https://www.universalorlando.com/web/en/us/universal-orlando-resort/the-wizarding-world-of-harry-potter/hub/index.html">Wizarding World of Harry Potter</a></li>
+</ul>
+</li>
+<li>What do we use to post/share photos? (via <a href="https://twitter.com/Andyistaken/status/1109790932378025984">Andrew Wade</a>)</li>
+<li>Do we still check drive health? (via <a href="https://twitter.com/jmordoj/status/1110288034006818817">Jack Mordoj</a>)<ul>
+<li><a href="http://blog.shane-smith.com/blog:116">Windows Disk Defragmenter</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li>100% plant-based follow-up<ul>
+<li><a href="https://www.nytimes.com/2007/01/28/magazine/28nutritionism.t.html">Michael Pollan article</a></li>
+<li><a href="http://www.amazon.com/dp/1250066115/?tag=marcoorg-20"><em>How Not to Die</em></a></li>
+<li><a href="https://www.youtube.com/watch?v=UZoQiDaWnuE">Ivor Cummins</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Index_fund">Index fund</a></li>
+</ul>
+</li>
+<li>Casey's app's business model</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/atp">Away</a>: Because this season, everyone wants to get Away. Get $20 off your suitcase with code <strong>ATP</strong>.</li>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount on your first order.</li>
+<li><a href="https://molekule.com/">Molekule</a>: The only air purifier that actually destroys pollutants at a molecular level.</li>
+</ul>]]></description><itunes:subtitle>Accidental AirPods ASMR, the fate of AirPower, Google Stadia, and time-budgeting for Casey's app.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c9c3f9971c10b41b66ab97d</guid><pubDate>Thu, 28 Mar 2019 17:59:25 +0000</pubDate><title>319: We Should Probably Get to the Apple Event</title><itunes:title>We Should Probably Get to the Apple Event</itunes:title><itunes:episode>319</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp319.mp3" length="62382174" type="audio/mpeg"/><link>https://atp.fm/319</link><description><![CDATA[<ul>
+<li><a href="http://atp.fm/wwdc"><strong>ATP Live at WWDC 2019</strong></a><ul>
+<li>Tickets are $29 and go on sale <strong>Friday, March 29</strong></li>
+<li>Hammer Theatre, Monday June 3, 6:00 PM</li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>"Pro" iPad Mini<ul>
+<li><a href="https://www.studioneat.com/products/canopy">Studio Neat Canopy</a></li>
+</ul>
+</li>
+<li>AMD vs. NVIDIA</li>
+<li><a href="https://twitter.com/anthonyrossbach/status/1109199116293144576">iMacs with spinning disks</a></li>
+<li>Marco and <a href="https://en.wikipedia.org/wiki/Consumer_Electronics_Control">HDMI-CEC</a><ul>
+<li><a href="https://twitter.com/JoeChrysler/status/1108864044616826880">Joe</a> and <a href="https://twitter.com/scottshuchart/status/1109663968480645120">Scott</a>'s tip</li>
+<li><a href="https://twitter.com/C1s0H7zWQskw39o/status/1109254987379400704">Ivan's tip</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.wsj.com/graphics/apple-still-hasnt-fixed-its-macbook-keyboard-problem/">Joanna Stern on the butterfly keyboards</a></li>
+<li>Casey's Mail.app gets broken in 10.14.4<ul>
+<li><a href="https://forums.macrumors.com/threads/mojave-10-14-4-mail-and-gmail-accounts.2174994/">MacRumors thread</a></li>
+</ul>
+</li>
+<li>Review of the new AirPods</li>
+<li><a href="https://www.apple.com/apple-events/march-2019/">Apple March 25 Event</a><ul>
+<li><a href="https://www.patreon.com/iconfactory">Craig Hockenberry &amp; Iconfactory's Patreon</a></li>
+<li><a href="https://www.apple.com/apple-news/">Apple News+</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith">Steve Troughton-Smith</a></li>
+<li><a href="https://developer.apple.com/documentation/uikit/uimenucontroller"><code>UIMenuController</code></a></li>
+<li><a href="https://twitter.com/JoannaStern/status/1111075365722689536">Joanna Stern on her recent articlce</a></li>
+<li><a href="https://www.latimes.com/business/technology/la-fi-tn-apple-subscription-news-20190325-story.html">50% cut?</a></li>
+<li><a href="https://www.macstories.net/news/a-complete-list-of-all-the-magazines-available-for-apple-news-in-the-u-s-so-far/">List of Magazines</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-card/">Apple Card</a><ul>
+<li><a href="https://twitter.com/peter/status/1110367147337961473">Thread by Peter Berg</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-arcade/">Apple Arcade</a><ul>
+<li><a href="http://thatgamecompany.com/journey/">Journey</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-tv-app/">Apple TV app</a><ul>
+<li><a href="https://twitter.com/tvaziri/status/1110998615680417792">The many flavors of "Apple TV"</a></li>
+<li><a href="https://twitter.com/markgurman/status/1110952883678269440">Gurman on non-tvOS Apple TVs</a></li>
+</ul>
+</li>
+<li>Apple TV Channels</li>
+<li><a href="https://www.apple.com/apple-tv-plus/">Apple TV+</a><ul>
+<li><a href="https://twitter.com/kumailn">Kumail Nanjiani</a></li>
+<li><a href="https://relay.fm/upgrade">Upgrade</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://twitter.com/AlekKrautmann/status/1110341506802552832/photo/1">Incorrectly slicing a bagel</a><ul>
+<li><a href="https://www-beta.panerabread.com/en-us/menu/categories/bakery.html">Panera Bread</a></li>
+<li><a href="https://www.brueggers.com/">Bruegger's</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hullopillow.com/atp">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $6/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and node location.</li>
+</ul>]]></description><itunes:subtitle>ATP+ on the new Apple+ Services+.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c92fffffa0d60506bedaafb</guid><pubDate>Thu, 21 Mar 2019 19:39:53 +0000</pubDate><title>318: Not a Casino I Want to Play In</title><itunes:title>Not a Casino I Want to Play In</itunes:title><itunes:episode>318</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp318.mp3" length="55887741" type="audio/mpeg"/><link>https://atp.fm/318</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Hierarchy of Needs is satisfied... by a ThinkPad?</li>
+<li>Searching for things in <code>Settings.app</code></li>
+<li>Nvidia and Apple<ul>
+<li><a href="https://en.wikipedia.org/wiki/CUDA">CUDA</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Apple's wild and crazy week<ul>
+<li><strong>Monday</strong>: New iPads!<ul>
+<li><a href="https://www.apple.com/ipad-mini/">iPad Mini</a>!!!</li>
+<li><a href="https://www.apple.com/ipad-air/">iPad Air</a></li>
+<li><a href="https://twitter.com/jessiechar/status/1107734835827638273">Jessie Char's revised lineup</a></li>
+</ul>
+</li>
+<li><strong>Tuesday</strong>: New <a href="https://www.apple.com/imac/">iMacs</a>!<ul>
+<li><a href="https://www.relay.fm/upgrade/237">Upgrade #237: New iMacs, iPads, and the 2019 March Event Draft</a><ul>
+<li><a href="http://twitter.com/Coll_eenn">Colleen Novielli</a></li>
+</ul>
+</li>
+<li><a href="https://www.relay.fm/connected/235">Connected #235: Stephen's Hellish Nightmare of Dates</a></li>
+<li><a href="https://www.apple.com/imac-pro">iMac Pro</a> bumps</li>
+</ul>
+</li>
+<li><strong>Wednesday</strong>: New <a href="https://www.apple.com/airpods/">AirPods</a></li>
+</ul>
+</li>
+<li>March 25th Apple event</li>
+<li><code>#askatp</code>:<ul>
+<li>Why doesn't Marco lease iPhones? (via <a href="https://twitter.com/unitof/status/1103460911384350721">Jacob Ford</a>)</li>
+<li>Would Marco still recommend the 2015 MacBook Pro? (via <a href="https://twitter.com/davidmikucki/status/1106212757777453056">David Mikucki</a>)</li>
+<li>How is Overcast adoption of CarPlay vs. Apple Watch? (via <a href="https://twitter.com/invalidname/status/1107400675955232768">Chris Adamson</a>)</li>
+</ul>
+</li>
+<li>Post-show: Marco's <a href="https://en.wikipedia.org/wiki/Consumer_Electronics_Control">HDMI CEC</a> update<ul>
+<li><a href="https://www.reddit.com/r/OLED/comments/akqb28/hdmicec_simplink_auto_power_on_issues_with_lg_c7/">Reddit post</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://marinelayer.com/">Marine Layer</a>: Clothes that make it easy to get dressed in the morning. Use code <strong>atp15</strong> for 15% off your first order.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Use code <strong>atp2019</strong> for a $20 credit.</li>
+</ul>]]></description><itunes:subtitle>On Monday, we got iPads. On Tuesday, we got iMacs. On Wednesday, we got AirPods. On Thursday, all we got was this episode of ATP.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c8c23f615fcc0b600195f8d</guid><pubDate>Sat, 16 Mar 2019 00:49:01 +0000</pubDate><title>317: We’re Customers Too</title><itunes:title>We’re Customers Too</itunes:title><itunes:episode>317</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp317.mp3" length="58065696" type="audio/mpeg"/><link>https://atp.fm/317</link><description><![CDATA[<ul>
+<li>A special extended <a href="https://developer.apple.com/wwdc19/">WWDC</a> segment<ul>
+<li><a href="https://www.youtube.com/watch?v=1MR4R5LdrJw">Macworld New York 1999</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Aston_Martin_DB4_GT_Zagato">Aston Martin DB4 GT Zagato</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Lamborghini_Miura">Lamborghini Miura</a></li>
+<li><a href="https://en.wikipedia.org/wiki/McLaren_F1">McLaren F1</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Jaguar_XKSS">Jaguar XKSS</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Bugatti_Type_57#Type_57S/SC_Atalante">Bugatti Type 57 Atalante</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Porsche_550">Porsche 550</a></li>
+</ul>
+</li>
+<li>Live ATP "Save the Date": evening of June 3</li>
+<li>Apple and Spotify<ul>
+<li><a href="https://timetoplayfair.com/">Spotify's website</a> and <a href="https://www.youtube.com/watch?v=l8SShgWqJvg">video</a></li>
+<li><a href="https://www.apple.com/newsroom/2019/03/addressing-spotifys-claims/">Apple's response</a></li>
+<li><a href="https://www.manton.org/2019/03/15/my-response-to.html">Manton Reece's take</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Is Perl dead? (via Gustavo Poscidonio)</li>
+<li>Can using AirPods in loud environments cause hearing damage?</li>
+</ul>
+</li>
+<li>Post-show: Casey's rejiggered priorities<ul>
+<li><a href="https://www.relay.fm/analogue/151">Analog(ue) #151: Super Simple? Thank You Very Much</a></li>
+<li>YouTube channels:<ul>
+<li><a href="http://youtube.caseyliss.com/">Casey</a></li>
+<li><a href="http://youtube.com/siracusa">John</a></li>
+<li><a href="http://youtube.com/marcoarment">Marco</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/atp">Audible</a>: Get a free audiobook with a 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>A special WWDC segment, our live show, and the Spotify-Apple in-app-purchase dispute.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c7f46afa4222f6d99249dad</guid><pubDate>Wed, 06 Mar 2019 17:11:41 +0000</pubDate><title>316: MacBook Hierarchy of Needs</title><itunes:title>MacBook Hierarchy of Needs</itunes:title><itunes:episode>316</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp316.mp3" length="58141144" type="audio/mpeg"/><link>https://atp.fm/316</link><description><![CDATA[<ul>
+<li>Follow-up: <ul>
+<li>Two-hand Springboard rearrangement<ul>
+<li><a href="https://asktog.com">Ask Tog</a></li>
+<li><a href="http://www.amazon.com/dp/1250194466/?tag=siracusa-20"><em>Creative Selection</em></a> by Ken Kocienda</li>
+</ul>
+</li>
+<li><a href="https://www.imore.com/how-check-which-applications-are-still-32-bit-iphone-and-ipad">Finding 32-bit apps</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2019/3/5/18251328/apple-corning-foldable-display-gorilla-glass-bendable-smartphone">Corning is working on flexible glass</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Star_Trek_IV:_The_Voyage_Home">Star Trek IV: The Voyage Home</a></li>
+</ul>
+</li>
+<li><a href="https://arstechnica.com/gadgets/2019/03/thunderbolt-3-becomes-usb4-as-intels-interconnect-goes-royalty-free/">Thunderbolt 3 → USB4</a><ul>
+<li><a href="https://www.windowscentral.com/xbox-game-pass-already-enjoys-millions-subscribers-says-phil-spencer">Microsoft's Xbox Game Pass</a></li>
+</ul>
+</li>
+<li><a href="https://appleinsider.com/articles/19/01/18/apples-management-doesnt-want-nvidia-support-in-macos-and-thats-a-bad-sign-for-the-mac-pro">Apple vs. NVIDIA</a><ul>
+<li><a href="https://support.apple.com/en-us/HT204899">System Integrity Protection</a></li>
+<li><a href="https://en.wikipedia.org/wiki/CUDA">CUDA</a> (not <a href="https://en.wikipedia.org/wiki/Plymouth_Barracuda">Cuda</a>)</li>
+</ul>
+</li>
+<li><a href="https://www.macworld.com/article/3321516/why-the-macbook-air-might-spell-the-end-of-configurable-macs.html">End of configurable Macs?</a><ul>
+<li><a href="https://daringfireball.net/linked/2018/11/19/mac-cpu-options">Gruber's $0.02</a></li>
+</ul>
+</li>
+<li>MacBook Hierarchy of Needs<ul>
+<li><a href="https://en.wikipedia.org/wiki/Maslow%27s_hierarchy_of_needs">Maslow's Hierarchy of Needs</a></li>
+</ul>
+</li>
+<li><p><code>#askatp</code>:</p>
+<ul>
+<li>How much will John spend on a new Mac Pro? (via <a href="https://twitter.com/HalifaxTech/status/1101467272881864705">Matt Corkum</a>)</li>
+<li>Are we really <a href="https://twitter.com/imyke/status/519855729352929280">professional podcasters</a>? (via <a href="https://twitter.com/Asajz/status/1101166311890141185">Asajz</a>)</li>
+</ul>
+</li>
+<li><p>Post-show Neutral: <a href="https://www.polestar.com/cars/polestar-2">Polestar 2</a> (via <a href="https://twitter.com/Skerved/status/1100752950564130817">Vincent Skerved</a>)</p>
+<ul>
+<li><a href="https://www.youtube.com/watch?v=wmplk52fznQ&amp;feature=youtu.be">Top Gear first look</a></li>
+<li><a href="https://www.polestar.com/us/polestar-2/configurator/">Configurator</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Because this season, everyone wants to get Away. Get $20 off a suitcase with code <strong>ATP</strong>.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Two-handed dragging, Apple vs. NVIDIA, the end of configurable Macs, and our minimum requirements for the next MacBook Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c775b078165f52f436ccfba</guid><pubDate>Thu, 28 Feb 2019 18:52:42 +0000</pubDate><title>315: 1.0 Was Just Speed</title><itunes:title>1.0 Was Just Speed</itunes:title><itunes:episode>315</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp315.mp3" length="51636322" type="audio/mpeg"/><link>https://atp.fm/315</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>16" laptops</li>
+<li>Bus-powered Thunderbolt 3 hubs<ul>
+<li><a href="https://www.elgato.com/en/dock/thunderbolt-3-mini">Elgato</a></li>
+<li><a href="http://www.caldigit.com/thunderbolt-3/mini-dock-HDMI-DisplayPort/index-asia.asp">CalDigit</a></li>
+<li><a href="https://www.monoprice.com/product?p_id=31262">Monoprice</a></li>
+<li><a href="https://www.startech.com/Cards-Adapters/Laptop-docking-stations/mini-thunderbolt-3-dock~TB3DKM2HD">StarTech</a> (2 USB ports! But $183.)</li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://arstechnica.com/gadgets/2019/02/usb-3-2-is-going-to-make-the-current-usb-branding-even-worse/">USB 3.2 standard names</a></li>
+<li><a href="https://www.theverge.com/2019/2/27/18242704/samsung-galaxy-fold-huawei-mate-x-royole-flexpai-foldable-phones-mwc-2019">Foldable phones from Samsung and Huawei</a><ul>
+<li><a href="https://www.relay.fm/upgrade/234">Upgrade #234: The Ideological Folding Wars</a></li>
+<li><a href="http://5by5.tv/hypercritical/86">Hypercritical #86: Naked Robotic Core</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/circuitbreaker/2019/2/26/18241117/energizer-power-max-p18k-pop-huge-battery-phone-mwc-2019">A giant battery with a phone in it</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Toughbook">Panasonic Toughbook</a></li>
+</ul>
+</li>
+<li><a href="https://www.buzzfeednews.com/article/johnpaczkowski/apple-event-march-2019-news">Apple's Rumored March Event</a> and <a href="https://sixcolors.com/link/2019/01/cheddar-apple-plans-gaming-subscription-service/">gaming subscription service</a><ul>
+<li><a href="https://www.apple.com/leadership/lisa-jackson/">Lisa Jackson</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>How do you purge many old apps at once? (via Mark Heeler)</li>
+<li>Does John still want a spatial finder? (via <a href="https://twitter.com/PlatyHsu/status/1099662484565299200">Platy Hsu</a>)<ul>
+<li><a href="https://jamesfriend.com.au/pce-js/">Browser-based Classic Mac emulator</a></li>
+<li><a href="https://arstechnica.com/gadgets/2003/04/finder/">About the Finder...</a></li>
+</ul>
+</li>
+<li>Why bother with a <a href="https://www.synology.com/">Synology</a> when you can roll your own <a href="https://en.wikipedia.org/wiki/Network-attached_storage">NAS</a>? (via <a href="https://twitter.com/DanZaccaroAEA/status/1098436582292504576">Dan Zaccaro</a>)</li>
+</ul>
+</li>
+<li>This post-show was evaluated as <code>Meets expectations</code>.</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://www.discourse.org/">Discourse</a>: Where global teams escape email silos and interruptions. Get 20% off your first 12 months with code <code>ATP2019</code>.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Giant laptops, foldable phones, USB speeds, and rumors of an upcoming Apple event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c6e2706c830252a16aaa9ff</guid><pubDate>Thu, 21 Feb 2019 19:25:00 +0000</pubDate><title>314: Kernel Panic in the Night</title><itunes:title>Kernel Panic in the Night</itunes:title><itunes:episode>314</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp314.mp3" length="60482143" type="audio/mpeg"/><link>https://atp.fm/314</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Hosting a podcast for free on <a href="https://anchor.fm/">Anchor</a> or <a href="https://soundcloud.com/">SoundCloud</a></li>
+<li>Contacts syncing <a href="https://support.apple.com/en-us/HT202158">limits</a></li>
+</ul>
+</li>
+<li>Mojave stability<ul>
+<li><a href="https://mjtsai.com/blog/2019/02/19/t2-macs-have-a-serious-audio-glitching-bug/">Possible T2 Mac audio glitching bug</a></li>
+</ul>
+</li>
+<li>Rumor explosion from Ming-Chi Kuo and Mark Gurman<ul>
+<li><a href="https://www.macrumors.com/2019/02/17/16-inch-macbook-pro-2019-kuo/">16-inch MacBook Pro</a><ul>
+<li><a href="http://drops.caseyliss.com/M3VSNM">iBook G4</a></li>
+</ul>
+</li>
+<li><a href="https://www.macrumors.com/2019/02/17/apple-31-inch-6k-display-mini-led-kuo/">31.6" 6K3K display with Mini-LED-like backlight</a></li>
+<li><a href="https://www.macrumors.com/2019/02/20/apple-mulling-preview-mac-pro-wwdc/">Apple Mulling Preview of New Modular Mac Pro at WWDC in June</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2019-02-20/apple-is-said-to-target-combining-iphone-ipad-mac-apps-by-2021">Marzipan rumors</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Overton_window">Overton window</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Could the next Apple TV be wireless? (via <a href="https://twitter.com/ecormany/status/1085287581166768128">Ed Cormany</a>)</li>
+<li>Is wireless CarPlay a deal-breaker? (via <a href="https://twitter.com/eddielee6/status/1095434200155672577">Eddie Lee</a>)</li>
+<li>How is season 3 of <a href="https://www.amazon.com/thegrandtour">The Grand Tour</a>? (via <a href="https://twitter.com/syllabub69/status/1097808914907770880">Paul Walker</a> (not that one))</li>
+</ul>
+</li>
+<li>Post-show: Apple ID Management<ul>
+<li><a href="https://developer.apple.com/support/account/authentication/">Two factor requirements</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.boxysuite.com/">BoxySuite</a>: A beautiful suite of Mac apps for Gmail and Google Calendar. Get a 30% lifetime discount on all plans with code <strong>atp30</strong>.</li>
+<li><a href="http://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount off your first order.</li>
+</ul>]]></description><itunes:subtitle>Hopeful rumors for 2019 Macs, the state of Mojave, and a tale of Apple ID woe.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c62415a9140b7d44559b7b3</guid><pubDate>Tue, 12 Feb 2019 17:51:29 +0000</pubDate><title>313: The Residue of Seven People</title><itunes:title>The Residue of Seven People</itunes:title><itunes:episode>313</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:34:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp313.mp3" length="45420776" type="audio/mpeg"/><link>https://atp.fm/313</link><description><![CDATA[<ul>
+<li>Pre-show: <ul>
+<li>Casey is <a href="https://www.caseyliss.com/2019/2/10/gigabit-fios">surfing the 'net at lightning speeds</a></li>
+<li>Marco's 👂🏻💦<ul>
+<li><a href="https://en.wikipedia.org/wiki/Eustachian_tube">Eustachian tube</a></li>
+<li><a href="https://twitter.com/scttor">Scott O'Reilly</a><ul>
+<li><a href="https://www.spiderstrategies.com/">Spider Strategies</a></li>
+<li><a href="https://www.thedash.com/">The Dash</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Apple's security bug bounties<ul>
+<li><a href="https://www.theverge.com/2019/2/7/18215885/apple-group-facetime-security-bug-bounty-compensation">Apple compensates FaceTime bug kid</a></li>
+</ul>
+</li>
+<li>Some information on <a href="https://www.apple.com/leadership/deirdre-obrien/">Deirdre O'Brien</a><ul>
+<li><a href="https://twitter.com/rjonesy/status/1093351670032011264">Ryan's tweet</a></li>
+<li><a href="https://www.businessinsider.com/meet-apple-exec-deirdre-obrien-who-is-now-in-charge-of-retail-2019-2">Business Insider profile</a></li>
+</ul>
+</li>
+<li><a href="http://jointventure.apple.com/">Apple Joint Venture</a></li>
+<li>The changing role and training of an Apple Genius</li>
+<li>Spotify also bought <a href="https://anchor.fm/">Anchor</a><ul>
+<li><a href="https://stratechery.com/2019/spotifys-podcast-aggregation-play/">Stratechery</a> &amp; <a href="https://stratechery.com/2019/exponent-podcast-why-exponent-isnt-on-spotify/">Exponent</a></li>
+<li><a href="https://www.libsyn.com/">LibSyn</a></li>
+<li><a href="https://arstechnica.com/information-technology/2009/02/the-once-and-future-e-book/">John on e-books</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2019/02/11/amazon-is-buying-home-mesh-router-startup-eero/">Amazon buying Eero</a><ul>
+<li><a href="https://ring.com/">Ring video doorbell</a></li>
+<li><a href="https://eero.com/shop/eero-plus">Eero Plus subscription</a></li>
+<li><a href="https://www.ui.com/">Ubiquiti</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>How do we feel about buying refurbished tech products? (via David Hadley)<ul>
+<li><a href="https://store.nintendo.com/ng3/browse/category.jsp?categoryId=cat20005&amp;locale=&amp;categoryPage=true">Nintendo refurb store</a></li>
+<li><a href="https://www.apple.com/shop/refurbished">Apple refurb store</a></li>
+</ul>
+</li>
+<li>How does one move from being a beginner to intermediate programmer, especially with code structure? (via Ryan Bible)<ul>
+<li><a href="https://nshipster.com/">NSHipster</a></li>
+<li><a href="https://developer.apple.com/videos/">WWDC sessions</a></li>
+<li><a href="http://en.gravatar.com/">Gravatar</a></li>
+</ul>
+</li>
+<li>What size wheels should one get on a new car? (via <a href="https://twitter.com/NateMan99/status/1094708966268039168">Nathan Miller</a>)</li>
+</ul>
+</li>
+<li>Post-show: <code>j.o.h.n.s.i.r.a.c.u.s.a+somespamservice@gmail.com</code></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Get $50 off select mattresses with code <strong>ATP</strong>. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>Amazon and Eero, Spotify and Anchor, Marco and ear discharge, and have you heard that Casey has Gigabit internet?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c5badc3f4e1fc88929b8d07</guid><pubDate>Thu, 07 Feb 2019 22:56:22 +0000</pubDate><title>312: Fashion Phase</title><itunes:title>Fashion Phase</itunes:title><itunes:episode>312</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp312.mp3" length="54726418" type="audio/mpeg"/><link>https://atp.fm/312</link><description><![CDATA[<ul>
+<li>Pre-show: Marco's <a href="https://twitter.com/marcoarment/status/1093315050641739776">hideous audio code</a><ul>
+<li><a href="https://developer.apple.com/documentation/accelerate/vdsp">Accelerate vDSP framework</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.theverge.com/2019/1/31/18205795/apple-google-blocked-internal-ios-apps-developer-certificate">Google's enterprise certificate was revoked</a></li>
+<li><a href="https://techcrunch.com/2019/01/31/mess-with-the-cook/">Facebook's was reinstated</a></li>
+<li>Apple <a href="https://www.macrumors.com/2019/02/01/apple-apologizes-facetime-bug/">apologizes for FaceTime bug</a> and <a href="http://www.loopinsight.com/2019/02/05/high-level-apple-exec-flies-to-tucson-to-meet-with-14-year-old-who-discovered-facetime-flaw/">takes a field trip</a></li>
+<li>John's <a href="https://amzn.to/2t6fibm">"MagSafe"</a> MacBook Air</li>
+<li>Marco's <a href="http://www.amazon.com/dp/B07CHJYPCC/?tag=marcoorg-20">USB-C light-up cable</a></li>
+<li>Marco's <a href="https://paperlike.com/">iPad screen protector</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2019/02/apple-names-deirdre-obrien-senior-vice-president-of-retail-and-people/">Angela Ahrendts leaving Apple</a><ul>
+<li><a href="https://www.apple.com/today/">Today at Apple</a></li>
+<li><a href="https://leancrew.com/all-this/2019/02/apple-svps/">Dr. Drang's take</a></li>
+<li><a href="https://www.voguebusiness.com/companies/angela-ahrendts-apple-retail-strategy">Vogue Profile</a><ul>
+<li><a href="https://daringfireball.net/linked/2019/02/06/ahrendts-london">About her family</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What external drives do we recommend? (via Steve Lowe)<ul>
+<li><a href="https://www.backblaze.com/blog/2018-hard-drive-failure-rates/">Backblaze's Hard Drive Stats</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Deskstar#IBM_Deskstar_75GXP_failures">IBM "Deathstar"</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microdrive">IBM Microdrive</a></li>
+<li><a href="https://www.cnet.com/reviews/toshiba-pocket-pc-e740-review/">Toshiba e740</a></li>
+</ul>
+</li>
+<li>How does <code>Reopen windows when logging back in</code> work? (via <a href="https://twitter.com/mharen/status/1092780203288547328">Michael Haren</a>)<ul>
+<li><a href="http://hypercritical.co/fatbits/2005/09/12/the-state-of-mac-web-browsing">The state of Mac web browsing</a></li>
+</ul>
+</li>
+<li>What does Marco think about <a href="https://newsroom.spotify.com/2019-02-06/audio-first/">Spotify's acquisition of Gimlet</a>? (via <a href="https://twitter.com/AlexKadis/status/1092153219067850754">Alex Kadis</a>)<ul>
+<li><a href="https://www.earwolf.com/episode/marco-arment-overcast/">Marco on Lex's show</a></li>
+<li><a href="https://www.hellointernet.fm/podcast/117">Hello Internet #117: Bandersnatch</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: John's gas station was updated<ul>
+<li><a href="https://www.exxon.com/en/speedpass">Speedpass</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://molekule.com/">Molekule</a>: The only air purifier that destroys pollutants at a molecular level. Get $75 off with code <strong>ATP</strong>.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Angela Ahrendts leaving Apple, Spotify buying Gimlet, adding MagSafe to USB-C, and Marco's hideous vector code.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c5273baf950b7d24bfdcb28</guid><pubDate>Thu, 31 Jan 2019 16:58:12 +0000</pubDate><title>311: Mutually Assured Destruction</title><itunes:title>Mutually Assured Destruction</itunes:title><itunes:episode>311</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp311.mp3" length="54919661" type="audio/mpeg"/><link>https://atp.fm/311</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>👴🏻👴🏻👴🏻 screwed up "finsta"</li>
+<li>Debate over the prevalence of the stage lighting problem</li>
+<li>Silence of Siri and other IoT info</li>
+<li><a href="https://developer.apple.com/library/archive/featuredarticles/ExternalAccessoryPT/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009502">Wireless Accessory Config</a></li>
+</ul>
+</li>
+<li>Does <em>anyone</em> doubt that Facebook is straight garbage?<ul>
+<li><a href="https://techcrunch.com/2019/01/29/facebook-project-atlas/">TechCrunch summary</a></li>
+<li><a href="https://www.recode.net/2019/1/30/18203231/apple-banning-facebook-research-app">ReCode recaps Apple's response</a></li>
+<li><a href="https://twitter.com/sarahfrier/status/1090684505910898691">Confirmation of <strong>all</strong> internal apps failing</a></li>
+<li><a href="https://techcrunch.com/2019/01/30/googles-also-peddling-a-data-collector-through-apples-back-door/">Google wanted in on the snooping action too</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2019/01/turn-facetime-off-now/">Apple's FaceTime bug</a><ul>
+<li><a href="https://twitter.com/beastmode/status/1090298850764644352">Video evidence sent to Apple</a></li>
+<li><a href="https://twitter.com/BEASTMODE/status/1090303269090529280">Other documentation sent to Apple</a></li>
+<li><a href="https://support.apple.com/en-us/HT201220">Contact Apple About Security Issues</a></li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2019-01-30/apple-is-said-to-prep-new-3-d-camera-for-2020-iphones-in-ar-push?srnd=premium">Bloomberg/Gurman iPhone Scoop</a></li>
+<li><code>#askatp</code><ul>
+<li>Is it worth cleaning dust out of MacBooks? (via Oliver Dejon)</li>
+<li>Is it worth upgrading the CPU on a family iMac? (via Jeremy Kenison)<ul>
+<li><a href="https://browser.geekbench.com/">Geekbench Browser</a></li>
+</ul>
+</li>
+<li>Is tweeting a good idea? (via <a href="https://twitter.com/agf102/status/1089919848342278144">Andrew</a>)</li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li>John is very angry at <a href="https://twitter.com/dog_rates">WeRateDogs</a></li>
+<li><a href="https://marco.org/2019/01/28/overcast-instant-search">Overcast Instant Search</a></li>
+<li><a href="https://youtu.be/TSmzQjqRAng">Casey's CR-V Review</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Get $50 off a Trekz Air bundle with code <strong>atpbundle</strong>.</li>
+<li><a href="https://www.marinelayer.com/">Marine Layer</a>: Clothes that make it easy to get dressed in the morning. Get 15% off your first order with code <strong>atp15</strong>.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Get $50 off select mattresses with code <strong>atp</strong>. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>Facebook's Onavo scam, Apple's FaceTime bug, early iPhone rumors, and Overcast's Instant Search.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c493ce94fa51a8e6ec4de77</guid><pubDate>Thu, 24 Jan 2019 19:03:58 +0000</pubDate><title>310: Apple Playstore</title><itunes:title>Apple Playstore</itunes:title><itunes:episode>310</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp310.mp3" length="59114106" type="audio/mpeg"/><link>https://atp.fm/310</link><description><![CDATA[<ul>
+<li><a href="https://cottonbureau.com/products/slaccidental-tech-podcast#/1320647/"><strong>SLACCIDENTAL TECH PODCAST SHIRTS!!</strong></a><br>Order <strong>right now</strong> or you'll miss it! Orders stop <a href="https://everytimezone.com/#2019-1-28,780,b8jj">8 PM Monday evening</a></li>
+<li>Follow-up:<ul>
+<li>The Terminator saga continues</li>
+<li>"Apple One" feedback</li>
+</ul>
+</li>
+<li>Instagram, friendstagrams, and spam accounts<ul>
+<li><a href="https://en.wikipedia.org/wiki/Google%2B#Circles">Google+ Circles</a></li>
+</ul>
+</li>
+<li>John's Internet of Things<ul>
+<li><a href="https://iot.connectsense.com/products/smart-outlet-2">Smart Outlet²</a></li>
+<li><a href="https://www.wemo.com/">Belkin Wemo</a></li>
+<li><a href="https://www.kasasmart.com/">Kasa</a></li>
+</ul>
+</li>
+<li>Casey's [Broader] Internet of Things<ul>
+<li><a href="https://www.caseyliss.com/2019/1/21/docker">Blog post</a></li>
+<li><a href="https://www.docker.com/">Docker</a></li>
+<li><a href="https://homebridge.io/">Homebridge</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2019/01/22/macbook-pro-stage-light/">MacBook Pro "stage light" fault</a> and iterative development<ul>
+<li><a href="https://www.everydaydriver.com/films">American Original</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What happens to projects like <a href="https://brew.sh/">homebrew</a> if the ARM transition happens? (via <a href="https://twitter.com/defjaf/status/1087297801787183104">Andrew Jaffe</a>)</li>
+<li>How do we avoid crapping on future tech that we don't inherently understand? (via <a href="https://twitter.com/johnwilander/status/1086983053941956608">John Wilander</a>)</li>
+<li>How do we handle snark? Why is it so prevalent in tech? (via <a href="https://twitter.com/mcphadenmike/status/1087760608282402816">Mike McPhaden</a>)<ul>
+<li><a href="https://relay.fm/analogue">Analog(ue)</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: What would you say it is you do here, Casey?</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://handy.com/atp">Handy</a>: The easy and convenient way to book home cleanings on a schedule that works for you. Get your first 3-hour cleaning for $39 when you sign up for a plan with code <strong>ATP</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.arqbackup.com/">Arq Backup</a>: Back up all of your computers securely to your cloud account or NAS. Free 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>Our internets of things, our YouTube careers, and our theories on teenagers.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c41524d562fa7e089140838</guid><pubDate>Fri, 18 Jan 2019 15:47:16 +0000</pubDate><title>309: Do Not Expect Five Nines From My Plex</title><itunes:title>Do Not Expect Five Nines From My Plex</itunes:title><itunes:episode>309</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:30</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp309.mp3" length="50286944" type="audio/mpeg"/><link>https://atp.fm/309</link><description><![CDATA[<ul>
+<li>Pre-show: Affluent bezelles (Overcast: <a href="https://overcast.fm/+Ipn5WusM/46:01">bezelle</a>, <a href="https://overcast.fm/+Ipn5WusM/46:50">correction</a>)</li>
+<li>Follow-up: Casey's <a href="https://www.amazon.com/dp/B01IA3HJGG/?tag=liismo-20">WAF-F20</a> waffle maker 🤤</li>
+<li>John's Terminator woes<ul>
+<li><a href="https://apps.apple.com/account/subscriptions">Apple's universal subscription-management URL</a></li>
+<li><a href="https://moviesanywhere.com/">Movies Anywhere</a></li>
+</ul>
+</li>
+<li>iPhone Smart Battery Cases<ul>
+<li><a href="https://www.apple.com/shop/product/MRXK2">XS</a>, <a href="https://www.apple.com/shop/product/MRXQ2">XS Max</a>, <a href="https://www.apple.com/shop/product/MU7M2">XR</a></li>
+<li><a href="https://twitter.com/reneritchie/status/1085621933583015937">iPhone X compatibility</a></li>
+<li><a href="https://www.studioneat.com/products/dock">Studio Neat Material Dock</a></li>
+<li><a href="https://www.moshi.com/en/product/case-pouch-microfiber-ipouch-iphone/black?device=327">John's pouch</a></li>
+</ul>
+</li>
+<li>Apple's 2019: what do <em>we</em> want, and what will affect <em>Apple</em> the most?<ul>
+<li><a href="https://512pixels.net/2019/01/whats-old-will-be-new-again/">iPad Mini and/or iPod Touch?</a></li>
+<li><a href="https://www.apple.com/shop/iphone/iphone-upgrade-program">iPhone Upgrade Program</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Why didn't John buy a 2013 Mac Pro? (via <a href="https://twitter.com/morid1n/status/1085217989799104513">Wojtek Pietrusiewicz</a>)</li>
+<li>Do we all play <a href="https://en.wikipedia.org/wiki/Super_Smash_Bros.">Super Smash Brothers</a>? (via <a href="https://twitter.com/marcosilva0000/status/1085105159242420224">Marco Silva</a>)</li>
+</ul>
+</li>
+<li>Post-show: Three middle-aged men explain Instagram to each other<ul>
+<li><a href="https://www.instagram.com/caseyliss/">Casey on Instagram</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Use code <strong>atpbundle</strong> for $50 off the Trekz Air bundle.</li>
+<li><a href="http://takecareof.com/">Care/of</a>: Completely personalized vitamins and supplements delivered right to your door. Use code <code>ATP50</code> for 50% off your first month.</li>
+<li><a href="http://iggsoftware.com/atp">Banktivity</a>: An easy-to-use, full-featured personal finance management app exclusively for macOS and iOS. Use code <code>ATP10</code> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Terminator woes, Smart Battery Cases, and the most impactful things we hope to see from Apple in 2019.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c36c483575d1f35e821f4fd</guid><pubDate>Thu, 10 Jan 2019 19:39:30 +0000</pubDate><title>308: Left-Handed Streaming Service</title><itunes:title>Left-Handed Streaming Service</itunes:title><itunes:episode>308</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp308.mp3" length="50515127" type="audio/mpeg"/><link>https://atp.fm/308</link><description><![CDATA[<ul>
+<li>Pre-show: What <em>is</em> a jam band, mannnnn?</li>
+<li>Follow-up:<ul>
+<li><a href="https://github.com/aahung/Unshaky">Unshaky</a></li>
+<li>China is an equal-opportunity financial disappointment for everyone<ul>
+<li><a href="https://twitter.com/asymco/status/1080847674050531328">iPhone quarterly growth</a><ul>
+<li><a href="http://drops.caseyliss.com/qf0HGY">John's graph</a></li>
+</ul>
+</li>
+<li><a href="https://guce.oath.com/collectConsent?sessionId=1_cc-session_53706532-f8a5-483b-a605-8ba23d8dfdb8&amp;lang=en-GB&amp;inline=false&amp;jsVersion=null&amp;experiment=null">Samsung warns of 30% dive</a> also <a href="https://twitter.com/asymco/status/1082619930950987777">via Horace</a></li>
+<li><a href="https://finance.yahoo.com/news/china-smartphone-shipments-seen-down-105041406.html">China smartphone shipments down</a></li>
+<li><a href="https://www.reuters.com/article/us-lg-elec-results/lg-electronics-sees-80-percent-drop-in-fourth-quarter-profit-analysts-point-to-thinning-tv-margins-idUSKCN1P20H5">LG sees 80% 4th quarter drop</a> via <a href="https://twitter.com/charlesarthur/status/1082618866721800193">Charles Arthur</a></li>
+<li><a href="https://www.relay.fm/upgrade/227">Upgrade #227: Twenty Nine TeeVee</a></li>
+<li><a href="https://stratechery.com/2019/apples-errors/">Ben Thompson: Apple's Errors</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.mozilla.org/en-US/firefox/new/">Firefox</a> is still a thing</li>
+<li>Apple is putting iTunes and/or <a href="https://www.apple.com/airplay/">AirPlay 2</a> in various TVs<ul>
+<li><a href="https://www.theverge.com/2019/1/6/18170797/samsung-2019-tvs-itunes-support-airplay-2">Samsung</a></li>
+<li><a href="https://sixcolors.com/link/2019/01/vizio-to-add-airplay-2-homekit-support-this-spring/">Vizio and LG</a></li>
+<li><a href="https://twitter.com/verge/status/1082445571456200704">Sony</a></li>
+<li><a href="https://twitter.com/imyke/status/1081996226034319361">Myke's tweet</a> and <a href="https://twitter.com/imyke/status/1082074816688148480">follow-up</a></li>
+<li><a href="https://www.relay.fm/upgrade/222">Upgrade #222: That's Not a Plan</a></li>
+<li><a href="https://twitter.com/reckless/status/1082378335475294210">Nilay Patel's tweets</a></li>
+<li><a href="https://www.nytimes.com/2017/02/07/business/vizio-television-vizio-collected-viewers-habits-consent.html">Is your TV spying on you?</a></li>
+<li><a href="https://twitter.com/tvaziri/status/1082377729121505280?s=21">Simpsons did it</a></li>
+</ul>
+</li>
+<li>MicroLED<ul>
+<li><a href="https://www.theverge.com/2019/1/6/18168793/samsungs-75-inch-microled-4k-tv-pitcure-quality-ces-2019">Samsung</a></li>
+<li><a href="https://www.cnet.com/news/microled-is-the-first-new-screen-tech-in-a-decade-can-it-beat-oled/">c|net</a></li>
+<li><a href="https://spectrum.ieee.org/consumer-electronics/audiovideo/your-guide-to-televisions-quantumdot-future">Quantum dots</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What Siri Shortcuts do we use? (via FoTS <a href="https://www.twitter.com/tvaziri">Todd Vaziri</a>)<ul>
+<li><a href="https://www.caseyliss.com/2015/1/6/replacing-fast-text-with-workflow">Casey's old "on my way home" workflow</a></li>
+</ul>
+</li>
+<li>How does one preserve podcasts? (via Fred McCann)<ul>
+<li><a href="https://www.w3.org/Provider/Style/URI">Cool URIs don't change</a></li>
+</ul>
+</li>
+<li>Apparently something Destiny-related. Your show notes author tuned out. Thanks a lot, Graham Wetzler.</li>
+</ul>
+</li>
+<li>Post-show: <a href="http://istodaymacproday.com/">Is today Mac Pro day?</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://audible.com/atp">Audible</a>: There’s never been a better time to start listening. Get started with a 30-day trial.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Use code <strong>ATP</strong> for $20 off a suitcase. Because this season, everyone wants to get Away.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Apple, TVs, and Apple and TVs. But not the Apple TV.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c2d887f40ec9a33ed708799</guid><pubDate>Fri, 04 Jan 2019 13:56:39 +0000</pubDate><title>307: Casey Apple Pencil</title><itunes:title>Casey Apple Pencil</itunes:title><itunes:episode>307</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp307.mp3" length="54717815" type="audio/mpeg"/><link>https://atp.fm/307</link><description><![CDATA[<ul>
+<li><a href="https://www.livephish.com/browse/music/0,1283/Phish-mp3-flac-download-12-31-2018-Madison-Square-Garden-New-York-NY">Happy new year!</a></li>
+<li>John reviews the <a href="https://www.tesla.com/model3">Tesla Model 3</a></li>
+<li>John reviews Casey's <a href="https://www.volvocars.com/us/cars/new-models/xc90">Volvo XC90</a></li>
+<li>John reviews Casey's iPad Pro<ul>
+<li><a href="https://twitter.com/caseyliss/status/1071600980452618240">Casey's sticker situation</a></li>
+</ul>
+</li>
+<li>Casey reviews his Apple Pencil<ul>
+<li><a href="https://sketchparty.tv/">SketchParty TV</a></li>
+</ul>
+</li>
+<li>Marco reviews <a href="https://linea-app.com/">Linea</a><ul>
+<li><a href="https://blog.iconfactory.com/2018/12/zip-into-shape-with-linea/">Linea blog post</a></li>
+</ul>
+</li>
+<li><a href="https://paperlike.com/">Screen protector</a> update</li>
+<li><a href="https://www.apple.com/newsroom/2019/01/letter-from-tim-cook-to-apple-investors/">Apple's financial news</a><ul>
+<li><a href="https://daringfireball.net/2019/01/apples_terrible_no_good_very_bad_earnings_warning">Gruber's take</a></li>
+<li><a href="https://stratechery.com/2017/apples-china-problem/">Ben Thompson's warning in 2017</a></li>
+</ul>
+</li>
+<li>Is falling stock price going to cause a retention problem?<ul>
+<li><a href="https://daringfireball.net/linked/2013/02/08/retention-of-talent">Gruber on retention in 2013</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Restricted_stock">RSU</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What does John think about the Nintendo Switch controller? (via Josh A.)<ul>
+<li><a href="https://www.relay.fm/rd/94">Reconcilable Differences</a></li>
+<li><a href="http://5by5.tv/hypercritical/49">Hypercritical #49: Pinching the Harmonica</a></li>
+</ul>
+</li>
+<li>How will the new AirPods charge? (via <a href="https://twitter.com/aoberoi/status/1079326767150551040">Ankur Oberoi</a>)</li>
+<li>What's up with Apple putting Beats stereos in Volkswagens? (via <a href="https://twitter.com/naoentendonada/status/1079145246305460227">NEN</a>)</li>
+</ul>
+</li>
+<li>Post show<ul>
+<li>More on Beats<ul>
+<li><a href="https://www.beatsbydre.com/beats-audio">Beats partnerships</a></li>
+<li><a href="https://www.vw.com/models/jetta/section/technology/">VW Jetta</a></li>
+</ul>
+</li>
+<li>HomeKit<ul>
+<li><a href="http://www.amazon.com/dp/B01NBI0A6R/?tag=liismo-20">Wemo plug</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by</p>
+<ul>
+<li><a href="https://hover.com/10years">Hover</a>: Hover is turning 10 this month! Celebrate with incredible deals on domains and more.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2019</strong>.</li>
+</ul>]]></description><itunes:subtitle>John reviews Casey's stuff, Marco draws on his iPad, and Tim writes a sad letter.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c1db6004d7a9c2baf304c2e</guid><pubDate>Wed, 26 Dec 2018 14:17:53 +0000</pubDate><title>306: My Watch Has Ended</title><itunes:title>My Watch Has Ended</itunes:title><itunes:episode>306</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:07</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp306.mp3" length="54982828" type="audio/mpeg"/><link>https://atp.fm/306</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Casey gets <del>medium</del> very upset about <a href="https://www.medium.com/">Medium</a></li>
+<li><a href="https://medium.com/@jeremy.noring/did-google-cripple-edges-youtube-performance-ce5169d3e5f4">Did Google <em>really</em> cripple Edge's YouTube performance?</a></li>
+</ul>
+</li>
+<li>John's <a href="https://www.reddit.com/r/apple/comments/9isi10/mbp2018_spacebar_double_space_is_this_a_common/">2018 Butterfly Keyboard Watch</a><ul>
+<li><a href="https://twitter.com/paulandstorm/status/1075814257193902085">Paul and Storm tweet</a></li>
+<li><a href="https://support.apple.com/en-us/HT205662">Clean your Mac at a 75º angle</a></li>
+</ul>
+</li>
+<li>Marco's fingerprinty iPad solution<ul>
+<li><a href="https://paperlike.com">Paperlike</a></li>
+<li><a href="https://www.instagram.com/p/xcsC3IKdN6/">John's LEGO</a> and the <a href="https://www.instagram.com/p/xcrlQAKdM7/">instructions</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2018/12/john-giannandrea-named-to-apples-executive-team/">John Giannandrea appointed to Apple executive team</a><ul>
+<li><a href="https://engineered.network/pragmatic/episode-38-watch-this-time-and-space/">Pragmatic #38: Watch This Time and Space</a><ul>
+<li>(<a href="https://overcast.fm/+FUqcX_kII/27:27">Overcast timestamp where smartwatch power-consumption analysis begins</a>)</li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2018/12/19/18148957/apple-ipad-bend-pro-2018-shipping-manufacturing-confirmed">iPad Pros can ship bent... 🤷🏻‍♂️</a><ul>
+<li><a href="https://www.macrumors.com/2018/12/21/apple-dan-riccio-on-2018-ipad-pro/">Dan Riccio's comments</a></li>
+<li><a href="http://drops.caseyliss.com/Yyo6yZ">Marco inspects his situation</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Does <a href="https://www.overcast.fm/">Overcast</a> do anything special to inhibit cookies? (via Mitch Cohen)<ul>
+<li>Could Overcast get blocked by publishers for not implementing RAD?</li>
+</ul>
+</li>
+<li>If Intel got its act together, would Apple cancel any ARM Mac plans and stick with Intel? (via <a href="https://twitter.com/gabesalkin/status/1072900536947671040">Gabriel Salkin</a>)<ul>
+<li><a href="https://www.anandtech.com/show/13699/intel-architecture-day-2018-core-future-hybrid-x86">Intel's new architecture</a></li>
+</ul>
+</li>
+<li>What's the ATP editing process? (via <a href="https://twitter.com/brechpilot/status/1075856268324233216">Markus N</a>)</li>
+<li>Do Marco and Casey use Xcode in full-screen mode? (via <a href="https://twitter.com/eableson/status/1076059048863301632">Erik</a>)</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/atp">Away</a>: Because this season, everyone wants to get Away. Get $20 off a suitcase with code <strong>ATP</strong>.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Unlimited cloud backup for Macs and PCs for just $5/month. Start your 15-day free trial today.</li>
+<li><a href="http://mackweldon.com">Mack Weldon</a>: Better than whatever you're wearing right now. Get 20% off your first order with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Bent iPads, screen protectors, a new Apple SVP, and our 2018 in review.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c186d9370a6adf7716f7419</guid><pubDate>Tue, 18 Dec 2018 16:26:48 +0000</pubDate><title>305: An Uneasy Peace</title><itunes:title>An Uneasy Peace</itunes:title><itunes:episode>305</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:41:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp305.mp3" length="48984837" type="audio/mpeg"/><link>https://atp.fm/305</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Tesla update<ul>
+<li><a href="https://www.wired.com/story/elon-musk-tesla-life-inside-gigafactory/">Wired article</a></li>
+</ul>
+</li>
+<li><a href="https://www.tested.com/tech/photography/44445-why-digital-cameras-have-a-30-minute-video-recording-limit/">Why DSLRs and mirrorless cameras have a 30-minute video limit</a></li>
+<li><a href="https://support.apple.com/en-us/HT208214">GarageBand as an example of why not to use Dropbox for everything</a><ul>
+<li><a href="http://drops.caseyliss.com/2aIdTx">Bundle</a></li>
+</ul>
+</li>
+<li><a href="https://shortcuts.fun/">Shortcuts JS</a><ul>
+<li><a href="https://medium.com/shortcutsjs/creating-ios-12-shortcuts-with-javascript-and-shortcuts-js-942420ca9904">Behind the scenes</a></li>
+<li><a href="https://github.com/joshfarrant/shortcuts-js/blob/master/README.md#further-examples">Examples</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Collaborative_Application_Markup_Language">CAML</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2018/12/13/18139837/apple-music-connect-social-network-feature-discontinued">Apple Music sunsets Connect</a></li>
+<li><a href="https://www.microsoft.com/en-us/windows/microsoft-edge">Microsoft Edge</a> is <a href="https://www.theverge.com/2018/12/6/18128648/microsoft-edge-chrome-chromium-browser-changes">coming to macOS</a><ul>
+<li><a href="http://atp.fm/episodes/8-hold-me">ATP #8: Hold Me!</a></li>
+<li><a href="https://news.ycombinator.com/item?id=18697824">Hacker News post</a></li>
+</ul>
+</li>
+<li><a href="https://rad.npr.org/">NPR's Remote Audio Data (RAD) spec</a><ul>
+<li><a href="https://rad.npr.org/dotorg/what-does-rad-mean-for-me/">RAD FAQ</a></li>
+<li><a href="http://drops.caseyliss.com/hFUjMX">RAD (film)</a><ul>
+<li><a href="https://www.youtube.com/watch?v=mOEYWw_C0_M">Wheels: An Inline Story</a></li>
+</ul>
+</li>
+<li><a href="https://one.npr.org/">NPR One</a></li>
+<li><a href="https://www.imore.com/podcast-analytics">Apple podcast analytics</a></li>
+<li><a href="https://en.wikipedia.org/wiki/HTTP_ETag">HTTP ETag</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What's important for a new TV? (via Kapila Wimalaratne)</li>
+<li>How does one compress a ripped Blu-ray? (via <a href="https://twitter.com/_ivancr/status/1072970744265621504">Iván</a>)<ul>
+<li><a href="http://makemkv.com/">MakeMKV</a></li>
+<li><a href="https://handbrake.fr/">Handbrake</a></li>
+<li><a href="https://github.com/donmelton/video_transcoding">Don Melton's scripts</a></li>
+</ul>
+</li>
+<li>How do I learn the command line? (via <a href="https://twitter.com/brianedwards/status/1073750837854433280">Brian Edwards</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Man_page"><code>man</code> page</a></li>
+<li><a href="http://www.amazon.com/dp/0596003307/?tag=siracusa-20">Unix Power Tools</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>NPR's RAD proposal, Microsoft Edge, some very fun domains, and a fond farewell to Apple Music Connect.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c11db840e2e72a4a1d2eea6</guid><pubDate>Thu, 13 Dec 2018 17:43:22 +0000</pubDate><title>304: Island of Shortcuts</title><itunes:title>Island of Shortcuts</itunes:title><itunes:episode>304</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp304.mp3" length="56789724" type="audio/mpeg"/><link>https://atp.fm/304</link><description><![CDATA[<ul>
+<li>Marco's lost video</li>
+<li>Casey reviews a product that Marco loves<ul>
+<li><a href="https://www.patagonia.com/product/mens-micro-puff-hoody/84030.html">Patagonia Micro-Puff Hoody</a></li>
+</ul>
+</li>
+<li>Accidental Trunk Podcast<ul>
+<li>An update on Marco's Tesla problems<ul>
+<li>What is the mystery box in the trunk?</li>
+</ul>
+</li>
+<li>i3 frunk is not weather-sealed</li>
+<li><a href="https://twitter.com/caseyliss/status/1071466079464103939">Casey's superior cars</a></li>
+<li><a href="https://www.porsche.com/microsite/panamera/default.aspx">Porsche Panamera</a></li>
+<li><a href="https://www.audiusa.com/models/audi-a7">Audi A7</a></li>
+<li><a href="https://www.bmwusa.com/vehicles/3-series/gran-turismo.html">BMW 3-series GT</a></li>
+<li><a href="https://www.caranddriver.com/porsche/taycan">Porsche Taycan</a></li>
+</ul>
+</li>
+<li>The power of macOS<ul>
+<li>Virtual output device for simultaneous multi-Bluetooth-headphone listening via Audio MIDI Setup</li>
+<li><a href="http://drops.caseyliss.com/aAVxuQ">Descent</a> and <a href="https://en.wikipedia.org/wiki/Thrustmaster">Thrustmaster Joysticks</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/QWOP">QWOP</a></li>
+<li><a href="http://drops.caseyliss.com/GNAZIB">Colony</a><ul>
+<li><a href="https://www.youtube.com/watch?v=i1XENlUUOhA">Walkthrough video 1</a> &amp; <a href="https://www.youtube.com/watch?v=3k3qrt76Ddk">video 2</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Fixing a tricky Overcast crashing bug<ul>
+<li>How does Marco manage bugs?<ul>
+<li><a href="https://www.taskpaper.com/">TaskPaper</a></li>
+<li><a href="http://culturedcode.com/things/">Things</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Shortcuts vs. the command line<ul>
+<li><a href="https://www.latenightsw.com/">Script Debugger</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Why not use Dropbox or equivalent for everything? (via Drew Shannon)</li>
+<li>What kind of hardware should one get to run a <a href="https://plex.tv/">Plex</a> server? (via Justin Winchester)<ul>
+<li><a href="https://www.nvidia.com/en-us/shield/">NVIDIA Shield</a></li>
+<li><a href="https://support.plex.tv/articles/221099648-limitations-when-running-plex-media-server-on-nvidia-shield/">Limitations when running Plex Media Server on NVIDIA SHIELD</a></li>
+</ul>
+</li>
+<li>How do we balance work and play? (via Eric Wagner)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Total_Annihilation">Total Annihilation</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Counter-Strike">Counter-Strike</a></li>
+<li><a href="https://en.wikipedia.org/wiki/EverQuest">EverQuest</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post show <a href="http://neutral.fm/">Neutral</a>: Electric cars<ul>
+<li><a href="https://www.audi.com/en/experience-audi/models-and-technology/concept-cars/audi-e-tron-gt-concept.html">Audi e-tron GT concept</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Honda_Insight">Honda Insight</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Outsmart average. Get up to 1 year managed free.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in seconds. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Get $50 off select mattresses with code <strong>ATP</strong>. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>A lost video, Shortcuts vs. the command line, fixing a tricky bug, and the debut of the Accidental Trunk Podcast.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5c08a4ba03ce6456d0c74b4e</guid><pubDate>Thu, 06 Dec 2018 22:22:21 +0000</pubDate><title>303: Your Mahogany World</title><itunes:title>Your Mahogany World</itunes:title><itunes:episode>303</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp303.mp3" length="63835445" type="audio/mpeg"/><link>https://atp.fm/303</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Another <a href="https://ish.app/">iSH</a> and <a href="https://www.caseyliss.com/2017/8/10/youtube-dl"><code>youtube-dl</code></a> <a href="https://twitter.com/iSH_app/status/1066832322765381632">update</a><ul>
+<li><a href="https://twitter.com/caseyliss/status/1068705459140464641"><code>Unknown encoder 'copy'</code></a></li>
+<li><a href="https://github.com/tbodt/ish/issues/147">Github issue</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Maybe 8K is all about <code>@3x</code>?<ul>
+<li><a href="https://en.wikipedia.org/wiki/PenTile_matrix_family">PenTile</a></li>
+</ul>
+</li>
+<li>More theories on Apple price increases<ul>
+<li>Comparing modern devices against their premiere versions</li>
+<li><a href="https://www.washingtonpost.com/technology/2018/09/18/trumps-tariffs-wont-bite-apple-illustrating-tim-cooks-political-sway/?utm_term=.28012fbe94e4">What about tariffs?</a> (via <a href="https://twitter.com/andyhansen/status/1058354153238487040">Andy Hansen</a>)</li>
+</ul>
+</li>
+<li>Is Apple's prioritization of profit over marketshare the right approach?<ul>
+<li><a href="https://www.relay.fm/upgrade/222">Upgrade #222: That's Not a Plan</a></li>
+</ul>
+</li>
+<li>Marco flies next to a Microsoft commercial<ul>
+<li><a href="https://www.macworld.com/article/1153576/siracusa_osx.html">Apple's other operating system</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Do we have opinions about <a href="https://en.wikipedia.org/wiki/Endianness">endianness</a>? (via <a href="https://twitter.com/_mchristensen/status/1065453637550276609">Matt Christensen</a>)<ul>
+<li><a href="https://igoro.com/archive/why-computers-represent-signed-integers-using-twos-complement/">Two's complement</a></li>
+</ul>
+</li>
+<li>Are "real" cameras <em>really</em> better than the really good iPhone cameras? (via <a href="https://twitter.com/davbeck/status/1068971517638111232">David Beck</a>)<ul>
+<li><a href="https://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's camera</a></li>
+<li><a href="https://www.amazon.com/dp/B076X5LD7R/?tag=marcoorg-20">Marco's camera</a></li>
+</ul>
+</li>
+<li>What's the highest value food item, quality vs. effort? (via <a href="https://twitter.com/btraut/status/1069767522642157568">Brent Traut</a>)<ul>
+<li><a href="https://nuts.com/nuts/cashews/cashews-less-salt.html">Marco's cashews</a></li>
+<li><a href="http://www.briermere.com/">Briermere Farms</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post show: Marco's Tesla robbery<ul>
+<li><a href="https://electrek.co/2018/09/05/tesla-model-s-x-leases-end-early/">Early lease rumors</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://molekule.com/">Molekule</a>: The only air purifier that actually destroys pollutants. Use code <strong>ATP</strong> for $75 off your first order.</li>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount off your first order.</li>
+</ul>]]></description><itunes:subtitle>Casey runs ffmpeg on his iPad, John defends desserts, and Marco finds himself in a Microsoft commercial.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bfe1892c2241b299ccfd40c</guid><pubDate>Wed, 28 Nov 2018 16:42:08 +0000</pubDate><title>302: Paint This Square</title><itunes:title>Paint This Square</itunes:title><itunes:episode>302</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp302.mp3" length="62332546" type="audio/mpeg"/><link>https://atp.fm/302</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Another <a href="https://ish.app/">iSH</a> and <a href="https://www.caseyliss.com/2017/8/10/youtube-dl"><code>youtube-dl</code></a> <a href="https://twitter.com/iSH_app/status/1066832322765381632">update</a></li>
+<li><a href="https://photos.google.com/">Google Photos</a></li>
+<li>Disk images and filesystems — oh my!</li>
+<li>Tips for transitioning careers for employees <em>and</em> hiring managers<ul>
+<li><a href="http://wiki.c2.com/?FizzBuzzTest">Fizz Buzz Test</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://tidbits.com/2018/11/16/what-happened-to-5k-displays/">What happened to 5K displays?</a><ul>
+<li><a href="https://www.apple.com/shop/product/HKN62/lg-ultrafine-5k-display">LG Ultrafine Display</a></li>
+<li><a href="http://www.amazon.com/dp/B00009Q97W/?tag=marcoorg-20">Planar IX2790</a></li>
+<li><a href="https://www.amazon.com/dp/B00OKSFXZU/?tag=liismo-20">Dell UP2715K</a></li>
+<li><a href="https://bjango.com/articles/macexternaldisplays/">Bjango/Marc Edwards' post</a></li>
+<li><a href="http://www.amazon.com/dp/B0716BWCT9/?tag=marcoorg-20">Dell UP3218K</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/entrepreneur-camp/">Apple Entrepreneur Camp</a><ul>
+<li><a href="https://twitter.com/Catfish_Man/status/1067512736110698497">David Smith's tweet</a></li>
+<li><a href="https://www.youtube.com/watch?v=_9D6ZIEQalc">Jessie Char on Layers</a></li>
+</ul>
+</li>
+<li>How much does it cost to get a Mac that performs as well as an iPad Pro?<ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1058088394226421760">Steve Troughton-Smith Tweet</a></li>
+<li><a href="https://docs.google.com/spreadsheets/d/12wA1pOrT_jwO9ek7IAPGqk4jY3KvgqiqGaXEXRpaMx4/edit#gid=0">John's Google sheet</a></li>
+<li><a href="https://www.iggsoftware.com/">Banktivity</a></li>
+<li><a href="https://tripmode.ch/">TripMode</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/rodrigoaraujo/status/1057583134248714241">Apple's ever-increasing prices</a><ul>
+<li><a href="https://stratechery.com/2018/antitrust-the-app-store-and-apple/">Ben Thompson's post</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>How do we power manage our Macs? (via <a href="https://twitter.com/angelofioren/status/1067025176821465088">Angelo Fiorentino</a>)<ul>
+<li><em>Hear Casey <a href="https://www.doubledensity.net/83">on Angelo's show, Double Density!</a></em></li>
+</ul>
+</li>
+<li>What is our photo management workflow? (via Paul Walker)<ul>
+<li><a href="https://www.caseyliss.com/2016/5/29/photo-management">Casey's now-outdated workflow</a></li>
+<li><a href="https://www.snafu.org/GeoTag/">GeoTag</a></li>
+</ul>
+</li>
+<li>How does Marco do power testing? (via Dustin Goldman)<ul>
+<li><a href="http://www.amazon.com/dp/B01NAWYSVK/?tag=marcoorg-20">Plugable USB-C Voltage/Amperage Meter</a></li>
+<li><a href="https://developer.apple.com/reference/iokit"><code>IOKit</code></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post show: Thanksgiving Desserts of Siracusa County<ul>
+<li><a href="https://en.wikipedia.org/wiki/Arthur_Avenue">Arthur Avenue</a></li>
+<li><a href="http://www.alpinepastryshoppe.com/">Alpine Bakery</a></li>
+<li><a href="http://www.mikespastry.com/">Mike's Pastry</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and node location.</li>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+</ul>]]></description><itunes:subtitle>Apple Entrepreneur Camp, 5K vs. 8K displays, iPad vs. Mac performance, why Apple's prices are increasing, and Italian-American desserts.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bf3868d2b6a285fc81d013d</guid><pubDate>Tue, 20 Nov 2018 16:50:02 +0000</pubDate><title>301: I Cut Them Up in the Air</title><itunes:title>I Cut Them Up in the Air</itunes:title><itunes:episode>301</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:48:37</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp301.mp3" length="52830838" type="audio/mpeg"/><link>https://atp.fm/301</link><description><![CDATA[<ul>
+<li><a href="https://www.theverge.com/2018/11/13/18092620/essential-phone-magnetic-headphone-jack-adapter">Essential's "audiophile" headphone-bump dongle</a></li>
+<li>Follow-up: <a href="https://twitter.com/jakebathman/status/1063161063930294275">Total ATP length</a> so far</li>
+<li>The <a href="https://www.microsoft.com/en-us/p/surface-go/8v9dp4lnknsz?activetab=pivot%3aoverviewtab">Surface Go</a> is more interesting than we thought</li>
+<li><a href="https://twitter.com/iSH_app/status/1063527711493115904">An update</a> on <a href="https://www.caseyliss.com/2017/8/10/youtube-dl"><code>youtube-dl</code></a> and <a href="https://ish.app/">iSH</a></li>
+<li><a href="https://photos.google.com/">Google Photos</a> has let Casey down</li>
+<li><code>#askatp</code><ul>
+<li>How would we quarterback a x86 → ARM transition? (via Cameron Kerr)<ul>
+<li><a href="http://drops.caseyliss.com/GjJTQv">Rosetta</a></li>
+</ul>
+</li>
+<li>Can one switch careers into development in one's late-30s?</li>
+<li>How do we slice bagels? (via <a href="https://twitter.com/DaveAltizer/status/1061126726007218177">Dave Altizer</a>)<ul>
+<li><a href="http://www.amazon.com/dp/B000HS7JPY/?tag=liismo-20">Bagel guillotine</a></li>
+<li><a href="https://www.amazon.com/dp/B001L80GPY?tag=marcoorg-20">Bread knife</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post show: ATP Thanksgiving<ul>
+<li><a href="https://www.relay.fm/topfour/22">Top Four #22: Thanksgiving Side Dishes</a></li>
+<li><a href="https://fivethirtyeight.com/features/heres-what-your-part-of-america-eats-on-thanksgiving/">Map of regional Thanksgiving side dishes</a></li>
+<li><a href="https://www.kraftrecipes.com/brands/stovetop">Stove Top Stuffing</a></li>
+<li><a href="https://www.jonesdairyfarm.com/products/breakfast-sausage/golden-brown/mild-links">Jones Sausage</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://rxbar.com/atp">RXBAR</a>: Whole food protein bars made with 100% real ingredients. For a limited time, US customers can get 25% off your first order of the best-seller variety pack with code <strong>ATP</strong>.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Outsmart average. Get up to 1 year managed free.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Audiophile headphone bumps, the Surface Go, adventures with Google Photos, and an ATP Thanksgiving.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5beba5788985838b6f5af3b9</guid><pubDate>Thu, 15 Nov 2018 14:45:19 +0000</pubDate><title>300: First of All, It's Easy</title><itunes:title>First of All, It's Easy</itunes:title><itunes:episode>300</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:23:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp300.mp3" length="69527569" type="audio/mpeg"/><link>https://atp.fm/300</link><description><![CDATA[<ul>
+<li>🎉 300th Episode Spectacular! 🎉<ul>
+<li><a href="http://atp.fm/96">ATP #96: The Windows of Siracusa County</a></li>
+<li><a href="http://atp.fm/225">ATP #225: A Conversation with Siri</a></li>
+<li><a href="http://5by5.tv/hypercritical/15">Hypercritical #15: The Bridges of Siracusa County</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://9to5mac.com/2018/11/07/macook-air-battery-replacement-easy/">Retina MacBook Air battery replacements are easier</a><ul>
+<li><a href="https://www.ifixit.com/Teardown/MacBook+Air+13-Inch+Retina+2018+Teardown/115201">iFixIt</a></li>
+<li><a href="https://www.command.com/3M/en_US/command/">Command Strips</a></li>
+<li><a href="https://en.wikipedia.org/wiki/COMMAND.COM"><code>command.com</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Control_Strip">Control Strip</a></li>
+</ul>
+</li>
+<li>Mac Pro Pontification<ul>
+<li><a href="https://arstechnica.com/gadgets/2018/11/apple-walks-ars-through-the-ipad-pros-a12x-system-on-a-chip/">Ars Technica's Samuel Axon with Anand Shimpi and Phil Schiller</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple-designed_processors#Apple_T2">Apple T2</a></li>
+<li><a href="https://arstechnica.com/gadgets/2017/05/intel-to-make-thunderbolt-3-royalty-free-in-bid-to-spur-adoption/">Thunderbolt 3 Royalty Free</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/ipad-pro">iPad Pro</a> impressions<ul>
+<li><a href="https://www.youtube.com/watch?v=BBD_48AY0Zc">Marco's video review</a></li>
+<li><a href="https://workingcopyapp.com/">Working Copy</a></li>
+<li><a href="https://edovia.com/screens-ios/">Screens</a></li>
+<li><a href="https://www.caseyliss.com/2017/8/10/youtube-dl">youtube-dl</a></li>
+<li><a href="https://ish.app">iSH</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Cygwin">Cygwin</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2018/11/ipad-pro-2018-review/">Jason Snell's review</a></li>
+<li><a href="https://www.relay.fm/upgrade/219">Upgrade #219: The Chicken Just Laid an Egg</a></li>
+<li><a href="https://www.panic.com/prompt/">Prompt</a></li>
+<li><a href="https://macmint.superglobalmegacorp.com">MacMiNT</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/macbook-air">MacBook Air</a> impressions</li>
+<li><code>#askatp</code></li>
+<li>Post-show: Marco's <a href="https://www.youtube.com/user/marcoarment">adventures on YouTube</a><ul>
+<li><a href="https://www.youtube.com/watch?v=YlXM6RUB_g0">MacBook Pro Review</a> (from a year ago)</li>
+<li><a href="https://www.youtube.com/user/marcoarment">Mac Mini Review</a></li>
+<li><a href="https://www.youtube.com/watch?v=BBD_48AY0Zc">iPad Pro Review</a></li>
+<li><a href="http://www.amazon.com/dp/B078XJSCYG/?tag=marcoorg-20">DJI Osmo Mobile</a> (newer version than what Marco has)</li>
+<li><a href="https://www.filmicpro.com/">FiLMiC Pro</a></li>
+<li><a href="https://www.izotope.com/">iZotope</a></li>
+<li><a href="https://neewer.com/">Neewer</a></li>
+<li><a href="https://www.youtube.com/user/curtisjudd">Curtis Judd</a></li>
+<li><a href="https://www.youtube.com/user/chasereeves">Chase Reeves</a></li>
+<li><a href="https://www.youtube.com/siracusa">John's channel</a></li>
+<li><a href="http://youtube.caseyliss.com">Casey's channel</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2018</strong>.</li>
+<li><a href="https://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://www.changetheterms.org/">Change the Terms</a>: White supremacists are using online platforms for hate. It's time to change the terms.</li>
+</ul>]]></description><itunes:subtitle> Our 300th Episode Spectacular! </itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5be1172a40ec9aef4fe3724a</guid><pubDate>Thu, 08 Nov 2018 01:00:19 +0000</pubDate><title>299: Headphone Bump</title><itunes:title>Headphone Bump</itunes:title><itunes:episode>299</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp299.mp3" length="59150877" type="audio/mpeg"/><link>https://atp.fm/299</link><description><![CDATA[<ul>
+<li><a href="http://atp.fm/store/"><strong>The ATP Store is back!!</strong></a> Place your orders until 15 November!</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.thegoodnewspodcast.fm/episodes/more-emoji-2019-the-year-of-the-waffle">The Good News Podcast #201</a> with <a href="http://emojipedia.org/">Jeremy Burge</a></li>
+<li>iPad Pro and Apple Pencil compatibility</li>
+<li><a href="https://www.apple.com/mac/docs/Apple_T2_Security_Chip_Overview.pdf">Some Macs' microphones are disconnected by hardware</a></li>
+<li>Our website is now dark-mode enabled! Thanks, Spencer Wohlers!</li>
+</ul>
+</li>
+<li>iPad Pro impressions</li>
+<li><code>#askatp</code><ul>
+<li>How has being a programmer changed our world view? (via <a href="https://twitter.com/justlikethegame/status/1055851439770210304">Jonathan Bowling</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Commodore_VIC-20">VIC-20</a></li>
+</ul>
+</li>
+<li>Why do high-end iOS devices need so much less RAM than Macs? (via Benedikt Beckmann)</li>
+</ul>
+</li>
+<li>Post-show: More iPad thoughts &amp; John's homework laptop</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Outsmart average. Get up to 1 year managed free.</li>
+<li><a href="https://www.marinelayer.com/">Marine Layer</a>: Clothes that make it easy to get dressed in the morning. Use code <strong>atp</strong> for 15% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Hands-on impressions and info from Apple about the new iPad Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bd922e08985831ed03cf156</guid><pubDate>Thu, 01 Nov 2018 15:22:32 +0000</pubDate><title>298: Protective Sandwich</title><itunes:title>Protective Sandwich</itunes:title><itunes:episode>298</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:26:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp298.mp3" length="70557882" type="audio/mpeg"/><link>https://atp.fm/298</link><description><![CDATA[<ul>
+<li><strong><a href="https://cottonbureau.com/stores/accidental-tech-podcast">ATP T-shirts and pins are back!</a></strong></li>
+<li><a href="https://www.apple.com/apple-events/october-2018/">Apple October 2018 event</a><ul>
+<li><a href="https://www.macrumors.com/2018/10/30/macbook-air-5w-amber-lake-chips/">MacRumors on the MacBook Air's low-power CPU</a><ul>
+<li><a href="https://www.anandtech.com/show/13531/apple-2018-macbook-air-announced">AnandTech confirms with more info</a></li>
+<li><a href="https://ark.intel.com/products/189912/Intel-Core-i5-8210Y-Processor-4M-Cache-up-to-3-60-GHz-">Intel's ARK product sheet</a></li>
+</ul>
+</li>
+<li><a href="https://www.relay.fm/membership">Relay FM Membership</a></li>
+<li><a href="https://www.apple.com/shop/product/MU7E2AM/A/usb-c-to-35-mm-headphone-jack-adapter">USB-C to 3.5mm Headphone Jack Adapter</a></li>
+<li><a href="https://www.apple.com/shop/product/MUFG2AM/A/usb-c-to-sd-card-reader">USB-C to SD Card Reader</a></li>
+<li><a href="https://www.apple.com/shop/product/MUF72AM/A/usb-c-charge-cable-1-m">USB-C 1m charge cable</a></li>
+<li><a href="https://www.apple.com/shop/product/MU9K2AM/A/apple-watch-magnetic-charger-to-usb-c-cable-03-m">USB-C to Apple Watch cable</a></li>
+<li><a href="https://www.apple.com/shop/product/MQGJ2AM/A/usb-c-to-lightning-cable-1-m?fnode=8b">USB-C to Lightning cable</a></li>
+</ul>
+</li>
+<li>Post-show: <a href="https://www.instagram.com/p/BpkeWyYFRMw/">Hobnobbing with the Apple executives</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: Get $50 off select mattresses with code <strong>ATP</strong>. Terms and conditions apply.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>ATP</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Analysis and hands-on coverage (!) of Apple's October event and the updated MacBook Air, Mac Mini, and iPad Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bd1393f71c10b27a6774c08</guid><pubDate>Thu, 25 Oct 2018 16:21:11 +0000</pubDate><title>297: It Also Deserves to Die</title><itunes:title>It Also Deserves to Die</itunes:title><itunes:episode>297</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:22:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp297.mp3" length="68535379" type="audio/mpeg"/><link>https://atp.fm/297</link><description><![CDATA[<ul>
+<li>Instagram stories and the dynamimcs of retweets<ul>
+<li><a href="https://independence.fm/37?t=384">Independence #37: Evolution of an App</a></li>
+</ul>
+</li>
+<li>Follow-up: <ul>
+<li>Marco's lookahead limiter</li>
+<li>iOS and <a href="https://en.wikipedia.org/wiki/Paging">memory swapping</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Wear_leveling">Wear leveling</a></li>
+</ul>
+</li>
+<li>John's last Apple Photos book</li>
+</ul>
+</li>
+<li>The <a href="https://www.apple.com/iphone-xr/">iPhone XR</a><ul>
+<li><a href="https://www.stalmanpodcast.com/36">The Stalman Podcast #36: "Just" Creators and Hands-On with the XR</a></li>
+<li><a href="https://daringfireball.net/2018/10/the_iphone_xr">Gruber's review</a></li>
+<li><a href="https://twitter.com/marcedwards/status/1053519077958803456">Example of OLED "smearing"</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2018/10/its-official-apple-event-october-30-in-brooklyn/">The forthcoming iPad event</a></li>
+<li><code>#askatp</code><ul>
+<li>Apple chip naming (via <a href="https://twitter.com/camdeardorff/status/1052675116574724096">Cameron Deardorff</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/BMW_M1">BMW M1</a></li>
+</ul>
+</li>
+<li>What's the last Apple product in each category that had no regressions? (via <a href="https://twitter.com/Auhim/status/1054800795743461376">Michael</a>)</li>
+<li>What do we use <code>Shortcuts.app</code> for? (via <a href="https://twitter.com/fabianDiehm/status/1052577598709092352">Fabian Diehm</a>)<ul>
+<li><a href="https://www.icloud.com/shortcuts/356458811a1b442ab4ac26cde73f97d7">A Shortcut to check contact photo sizes</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Casey's Waffle Woes<ul>
+<li><a href="http://www.amazon.com/dp/B00009K3SY/?tag=liismo-20">Casey's fallen friend: Waring WMK300</a></li>
+<li><a href="http://www.amazon.com/dp/B003HL1JZO/?tag=liismo-20">Casey's new waffle maker: Hamilton Beach Belgian Waffle Maker</a></li>
+<li><a href="http://www.amazon.com/dp/B01IA3HJGG/?tag=marcoorg-20">Marco's Cuisinart WAF-F20 Double Belgian Waffle Maker</a></li>
+<li><a href="https://amzn.to/2yz4SV7">John's Breville Smart 4-Slice Waffle Maker</a></li>
+<li><a href="https://amzn.to/2CFLCI3">John's offering to Casey: Breville BWM520XL No Mess Waffle Maker</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Glasses should not cost as much as an iPhone. Order your free Home Try-Ons today.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a $20 credit with code <strong>atp2018</strong>.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Get $50 off a Trekz Air bundle with code <strong>atpbundle</strong>.</li>
+</ul>]]></description><itunes:subtitle>iPhone XR reviews, why next week's Apple event is so exciting, why retweets ruined Twitter, and which of us is the Wafflemaster.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bc7fa541905f4be76361fb2</guid><pubDate>Thu, 18 Oct 2018 15:10:44 +0000</pubDate><title>296: Giant Buffers of Floats</title><itunes:title>Giant Buffers of Floats</itunes:title><itunes:episode>296</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp296.mp3" length="64241609" type="audio/mpeg"/><link>https://atp.fm/296</link><description><![CDATA[<ul>
+<li>Pre-show: Marco's look-ahead limiter<ul>
+<li><a href="https://developer.apple.com/documentation/accelerate">Accelerate framework</a></li>
+<li><a href="https://developer.apple.com/documentation/objectivec/1456712-objc_msgsend"><code>objc_msgSend()</code></a><ul>
+<li><a href="https://mikeash.com/pyblog/friday-qa-2012-11-16-lets-build-objc_msgsend.html">Let's build <code>objc_msgSend</code></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://blog.emojipedia.org/apple-fixes-bagel-emoji/">Apple fixes bagel emoji</a></li>
+<li>Follow-up:<ul>
+<li>Screen Time issues abound</li>
+<li>Emergency bypass<ul>
+<li><a href="https://www.caseyliss.com/2016/12/29/ios-emergency-bypass">Casey's blog post</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT202158">Apple iCloud contacts sync limits</a></li>
+<li><a href="https://support.apple.com/en-us/HT201465">Apple printer compatibility list</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2018/10/15/17974850/new-palm-smartphone-android-lifemode-time-well-spent-verizon">Palm Phone</a></li>
+<li><a href="https://www.adobe.com/creativecloud/photoshop-ecosystem.html">Photoshop CC on iPad</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Virtual_memory">Virtual memory</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Virtual_memory#Paged_virtual_memory">Paging</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2018/10/15/17969754/adobe-photoshop-apple-ipad-creative-cloud">The Verge's review</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>How do we stay informed about non-tech news? (via <a href="https://twitter.com/347_Jake/status/1050602755264413696">Jake</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Overton_window">Overton window</a></li>
+</ul>
+</li>
+<li>Did we have a senior project in school? (via <a href="https://twitter.com/RipeFruit_/status/1048046076417245186">Stephen Kim</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/FLAC">FLAC</a></li>
+</ul>
+</li>
+<li>Which <a href="https://www.destinythegame.com/">Destiny</a> videos do John watch? (via <a href="https://twitter.com/tobogranyte/status/1051558397227819010">tobogranyte</a>)<ul>
+<li><a href="https://www.youtube.com/channel/UCY6Qy4qU-d13U42280CxIvA">True Vanguard</a></li>
+<li><a href="https://www.youtube.com/user/DattoDoesDestiny">Datto</a></li>
+<li><a href="https://www.youtube.com/user/PlanetDestiny">PlanetDestiny</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://en.wikipedia.org/wiki/Dark_pattern">Dark patterns</a> in Destiny</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://fractureme.com/atp">Fracture</a>: Photos printed in vivid color directly on glass. Get a special discount with your first order.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off a suitcase with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Adventures in audio programming, fresh bagels, real Photoshop coming to iPad, and a new Palm phone — sort of.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bbebd9e652dea2c18579b49</guid><pubDate>Thu, 11 Oct 2018 20:39:42 +0000</pubDate><title>295: Outlets That Suck</title><itunes:title>Outlets That Suck</itunes:title><itunes:episode>295</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp295.mp3" length="55515446" type="audio/mpeg"/><link>https://atp.fm/295</link><description><![CDATA[<ul>
+<li>Watch pontification<ul>
+<li><a href="https://www.panerai.com/en/collections/watch-collection/luminor-1950/pam00372-luminor-1950-3-days-acciaio-47mm.html">Panerai watches</a></li>
+</ul>
+</li>
+<li>Trading in with <a href="https://www.apple.com/shop/trade-in">Apple GiveBack</a></li>
+<li>Follow-up:<ul>
+<li><a href="https://en.wikipedia.org/wiki/ARM_architecture#ARMv8.3-A">ARMv8.3</a> <a href="https://twitter.com/gparker/status/1047246359261106176">improves JavaScript benchmarks</a></li>
+<li>Minecraft left Apple TV</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2018/06/ios-12-introduces-new-features-to-reduce-interruptions-and-manage-screen-time/">Screen Time</a><ul>
+<li><a href="https://marco.org/apps">Quitter</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT201088">iCloud Family accounts</a></li>
+<li><a href="https://support.apple.com/en-us/HT208917">Apple Watch Walkie-Talkie</a><ul>
+<li><a href="http://northsideforyourhome.squarespace.com/im4006/2013/1/5/nutone-model-im4006-radio-cassette-intercom.html?currentPage=2">Intercom systems</a> and central vacuums</li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2018/10/04/apple-spy-chips-china-bloomberg/">Bloomberg's story on Chinese spy chips</a><ul>
+<li><a href="https://www.relay.fm/upgrade/214">Upgrade #214: Nobody Seems to Know Anything</a></li>
+<li><a href="https://risky.biz/RB517_feature/">Joe Fitzpatrick on his interview with Bloomberg</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Storyboards for iOS development? (via <a href="https://twitter.com/BastianInuk/status/1031118684230705152">Bastian Inuk</a>)<ul>
+<li><a href="https://github.com/marcoarment/CompactConstraint"><code>CompactConstraint</code></a></li>
+<li><a href="https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/AutolayoutPG/VisualFormatLanguage.html">Visual Format Lanuage</a></li>
+<li><a href="https://nshipster.com/ibinspectable-ibdesignable/"><code>IBDesignable</code></a></li>
+</ul>
+</li>
+<li>What's the worse compromise: <a href="https://support.apple.com/en-us/HT202574">Fusion Drive</a> or <a href="https://en.wikipedia.org/wiki/Hybrid_vehicle">hybrid cars</a>? (via Spencer Wohlers)</li>
+<li>Do we enjoy racing games? (via <a href="https://twitter.com/maweibezahn/status/1047954891086422016">Marc-André Weibezahn</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Mario_Kart:_Double_Dash">Mario Kart: Double Dash</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wipeout_%28series%29">Wipeout</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Carmageddon">Carmageddon</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wave_Race_64">Wave Race 64</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wave_Race%3A_Blue_Storm">Wave Race: Blue Storm</a></li>
+<li><a href="https://en.wikipedia.org/wiki/F-Zero_%28video_game%29">F-Zero</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cruis%27n_USA">Cruisin USA</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Hydro_Thunder">Hydro Thunder</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Super_Sprint">Super Sprint</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Daytona_USA_%28video_game%29">Ddaytona USA</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: RIP manual transmissions?<ul>
+<li><a href="https://www.youtube.com/watch?v=9PWobhCkRKU">300whp MR2</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Outsmart average. Get up to 1 year managed free.</li>
+<li><a href="https://molekule.com/">Molekule</a>: The only air purifier that actually destroys pollutants.</li>
+<li><a href="https://www.mackweldon.com/">Mack Weldon</a>: Better than whatever you’re wearing right now. Get 20% off your first order with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Casey's future Panerai won't have Walkie-Talkie mode, but he can always use his house's intercom system instead.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bb584ea1905f45e25301aba</guid><pubDate>Thu, 04 Oct 2018 16:04:52 +0000</pubDate><title>294: The Intersection of Liberal Arts and Whatever</title><itunes:title>The Intersection of Liberal Arts and Whatever</itunes:title><itunes:episode>294</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:20</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp294.mp3" length="54654168" type="audio/mpeg"/><link>https://atp.fm/294</link><description><![CDATA[<ul>
+<li>The abomination that is <a href="https://twitter.com/mcwm/status/1047188607583342592">Apple's take</a> on the <a href="https://emojipedia.org/bagel/">bagel emoji</a><ul>
+<li><a href="https://www.apple.com/newsroom/2018/10/apple-brings-more-than-70-new-emoji-to-iphone-with-ios-12-1/">Apple PR post</a></li>
+<li><a href="https://blog.emojipedia.org/ios-12-1-beta-includes-new-emojis/">iOS 12.1 wrap-up</a></li>
+<li><a href="http://www.lendersbagels.com/">Lender's bagels</a></li>
+</ul>
+</li>
+<li>iPhone 🎾 charging times</li>
+<li>Follow-up:<ul>
+<li>The A12 has a lot of cache (via <a href="https://twitter.com/henriok2/status/1046777166049013761">Henrik Wannheden</a>)</li>
+<li>Chris Lattner weighs in on 64-bit watches <a href="https://twitter.com/clattner_llvm/status/1047134352440668160">and excuses</a></li>
+<li>Apple Watch fall detection is only on by default for people at least 65 years old</li>
+</ul>
+</li>
+<li>Critiquing others' work<ul>
+<li><a href="https://twitter.com/lindadong/status/1046253439255117824">Ken Kocienda's original tweet</a></li>
+<li><a href="https://twitter.com/lindadong/status/1045697009426956289">Linda Dong's reply thread (first post)</a></li>
+</ul>
+</li>
+<li>Mojave<ul>
+<li><a href="http://atp.fm/episodes/280">ATP #280: Extinction-Level Event</a></li>
+<li><a href="https://sixcolors.com/post/2018/09/hazeover-makes-dark-mode-that-much-darker/">Hazeover</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1044584398387986434">Steve Troughton-Smith's take on Marzipan</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>How do I protect from ⚡? (via <a href="https://twitter.com/xavdid/status/1042123842204917762">David Brownman</a>)<ul>
+<li><a href="https://www.amazon.com/dp/B00006B81D/?tag=marcoorg-20">Trip Lite Isobar 2</a></li>
+</ul>
+</li>
+<li>Should I buy a 🎾 or a 📷? (via <a href="https://twitter.com/mntylr/status/1043677629214121984">Matt Taylor</a>)<ul>
+<li><a href="https://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Olympus O-MD E-M10</a></li>
+</ul>
+</li>
+<li>The botany of filesystems (via <a href="https://twitter.com/benjaminjex/status/1035260962004070400">Benjamin Jex</a>)</li>
+</ul>
+</li>
+<li>Post-show: Casey dabbles with <a href="https://www.dji.com/mavic">a drone</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: Get $50 off select mattresses with code <strong>ATP</strong>. Terms and conditions apply.</li>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code ATP for free overnight shipping to the US or Canada.</li>
+</ul>]]></description><itunes:subtitle>Mojave, Marzipan, hostile work environments, and the bagel emoji.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5bac4c2e104c7b4001088036</guid><pubDate>Thu, 27 Sep 2018 23:08:21 +0000</pubDate><title>293: You Know My Pouches</title><itunes:title>You Know My Pouches</itunes:title><itunes:episode>293</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp293.mp3" length="62981728" type="audio/mpeg"/><link>https://atp.fm/293</link><description><![CDATA[<ul>
+<li><strong>Please <a href="http://heroes.stjude.org/hackett">give some money to St. Jude</a>. It literally helps save lives.</strong></li>
+<li>Follow-up:<ul>
+<li>Apple Watch <a href="https://www.youtube.com/watch?v=aK7KPw9bLfI">making-of fire/water faces video</a></li>
+<li>Apple Watch 64-bit compilation magic<ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1044706837478735873">Steve Troughton-Smith</a></li>
+<li><a href="http://atp.fm/205-chris-lattner-interview-transcript#bitcode">Chris Lattner interview</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/dhh/status/1043277162676072449">iPhone 🎾 is fast</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2018/09/24/ep-230">The iPhone 🎾 camera is good</a></li>
+</ul>
+</li>
+<li><del>Our</del> Marco &amp; John's new toys<ul>
+<li><a href="https://www.moshi.com/en/product/case-pouch-microfiber-ipouch-iphone/black">John's pouch</a></li>
+<li><a href="https://www.caseyliss.com/2015/9/10/siracusa-on-toasters">John's toasters</a></li>
+<li><a href="https://www.instagram.com/p/BoC2wVhDvL1/?taken-by=marcoarment">Tiff in portrait mode</a></li>
+<li><a href="https://twitter.com/caseyliss/status/1043136941431115776/">Casey's watch try-on</a></li>
+<li><a href="https://www.relay.fm/upgrade/212">Upgrade #212: The Chocolate Phone is No Good</a></li>
+<li><a href="http://www.meetcarrot.com/weather/">Carrot Weather</a></li>
+<li><a href="https://twitter.com/marcoarment/status/1045136085511294976">Marco's Utility watch face</a></li>
+</ul>
+</li>
+<li><a href="http://creativeselection.io/">Creative Selection</a> by Ken Kocienda<ul>
+<li><a href="https://www.relay.fm/b-sides/36">Relay B-Sides #36: Creative Selection</a></li>
+<li><a href="http://www.amazon.com/dp/0385347421/?tag=liismo-20">Becoming Steve Jobs</a></li>
+<li><a href="http://www.amazon.com/dp/0887309194/?tag=liismo-20">On the Firing Line by Gil Amelio</a></li>
+<li><a href="https://www.imore.com/debug">Debug</a></li>
+</ul>
+</li>
+<li>Post-show: Marco's ocean status</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.rxbar.com/atp">RXBAR</a>: Whole food protein bars made with 100% real ingredients. Use code <strong>ATP</strong> for 25% off your first order.</li>
+<li><a href="http://tryprimechannels.com/atp">Prime Video Channels</a>: Great entertainment delivered to you instantly, anytime, anywhere.</li>
+<li><a href="https://www.marinelayer.com/">Marine Layer</a>: Clothes that make it easy to get dressed in the morning. Use code <strong>ATP</strong> for 15% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Our reviews of the iPhone XS, Apple Watch Series 4, Creative Selection, and Scott Forstall.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ba31335575d1fbc075a607e</guid><pubDate>Thu, 20 Sep 2018 20:38:28 +0000</pubDate><title>292: Start a Rotate Chicken Nuggets Timer</title><itunes:title>Start a Rotate Chicken Nuggets Timer</itunes:title><itunes:episode>292</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp292.mp3" length="53963297" type="audio/mpeg"/><link>https://atp.fm/292</link><description><![CDATA[<ul>
+<li><strong>Please <a href="http://heroes.stjude.org/hackett">give some money to St. Jude</a>. It literally helps save lives.</strong></li>
+<li>Follow-up:<ul>
+<li><a href="https://twitter.com/BenBajarin/status/1040018930637520896">Ben Bajarin on A-fib detection</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Dead_man%27s_switch">Dead man's switch</a></li>
+</ul>
+</li>
+<li>50% faster tessellation... <a href="https://twitter.com/lightsout565/status/1040211624622268416">maybe</a>?<ul>
+<li><a href="https://www.youtube.com/watch?v=5yuL6PcgSgM">Works on contingency. No money down.</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Underplayed improvements to iPhone XR/XS camera and Watch Series 4<ul>
+<li><a href="https://daringfireball.net/2018/09/the_iphones_xs">Gruber's iPhone review</a></li>
+<li><a href="https://daringfireball.net/2018/09/apple_watch_series_4">Gruber's Watch review</a></li>
+</ul>
+</li>
+<li>No landscape home screens on XR/XS Max</li>
+<li>What did we order?<ul>
+<li><a href="http://drops.caseyliss.com/WSFTAm">John is clairvoyant</a></li>
+<li><a href="https://nomos-glashuette.com/en/minimatik/minimatik-1203">Nomos Minimatik</a></li>
+</ul>
+</li>
+<li>Testing HomePod's multiple named timers</li>
+<li><a href="https://marco.org/2018/09/17/overcast5">Overcast 5</a><ul>
+<li><a href="https://www.relay.fm/radar/141">Under the Radar #141: Implementing Search</a></li>
+</ul>
+</li>
+<li>Post-show Casey on Cars: 2018 Volkswagen Golf GTI Autobahn<ul>
+<li><a href="https://www.youtube.com/watch?v=2JL8fvyOcB8">Video</a></li>
+<li><a href="https://www.caseyliss.com/2018/9/20/volkswagen-gti-autobahn">Blog post</a></li>
+<li>Notes from suggestions:<ul>
+<li><a href="https://en.wikipedia.org/wiki/180-degree_rule">180º rule</a></li>
+<li><a href="https://indiefilmhustle.com/wp-content/uploads/2016/09/2000px-180_degree_rule-svg-814x720.jpg">180º rule, visualized</a></li>
+<li><a href="https://en.wikipedia.org/wiki/30-degree_rule">30º rule</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com">Eero</a>: Finally, Wi-Fi that works. Use code <strong>ATP</strong> for free overnight shipping to the US or Canada.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Get $50 off select mattresses with code <strong>ATP</strong>. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>Overcast 5, HomePod timers, and learning more about iPhone XS and Apple Watch Series 4.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b99d94d575d1f3c47440092</guid><pubDate>Thu, 13 Sep 2018 18:57:12 +0000</pubDate><title>291: John's Special Day</title><itunes:title>John's Special Day</itunes:title><itunes:episode>291</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp291.mp3" length="69610573" type="audio/mpeg"/><link>https://atp.fm/291</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://www.theverge.com/circuitbreaker/2018/9/7/17830792/nokia-hmd-penta-lens-camera-zeiss-pureview-rumors">Nokia phone with five cameras</a><ul>
+<li><a href="https://www.theonion.com/fuck-everything-were-doing-five-blades-1819584036">We're doing five blades</a></li>
+</ul>
+</li>
+<li>Phil: "muhmoji"</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/apple-events/september-2018/">Apple's September Event</a><ul>
+<li><a href="https://www.theverge.com/2018/9/12/17849898/apple-confirms-iphone-xs-iphone-xs-max-iphone-xr-names">Leaked names</a></li>
+<li><a href="http://drops.caseyliss.com/WFNd5U">Tim's tweet</a></li>
+<li>Apple Watch<ul>
+<li><a href="http://drops.caseyliss.com/q2GuF3">Casey's wrist</a></li>
+<li><a href="https://twitter.com/BenBajarin/status/1039950920954433537">Ben Bajarin's picture</a><ul>
+<li><a href="https://pbs.twimg.com/media/Dm6nNMQW0AEiGYE.jpg:large">Another side-by-side</a></li>
+</ul>
+</li>
+<li>Thinner... ish?<ul>
+<li><a href="https://twitter.com/neilcybart/status/1039953426510110720">Side view</a></li>
+<li><a href="https://www.apple.com/v/watch/home/j/images/give_back_medium.jpg">Apple's image</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/105/media/us/apple-watch-series-4/2018/d33fb9a0-f7f4-4e2d-8e17-f29c2ac2460f/films/real-stories/watch-real-stories-tpl-cc-us-2018_1280x720h.mp4">Dear Apple video</a></li>
+<li><a href="https://twitter.com/KhaosT/status/1039990586793648128">64-bit with 32-bit pointers?</a></li>
+</ul>
+</li>
+<li>iPhone XS, XS Max, XR<ul>
+<li><a href="https://twitter.com/tvaziri/status/1040034432344764417">Todd's tweet</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1039946212663812096">Steve Troughton-Smith's tweet</a></li>
+</ul>
+</li>
+<li>AirPower?</li>
+<li>HomePod &amp; tvOS</li>
+</ul>
+</li>
+<li>Post-show: John's special day</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://molekule.com/">Molekule</a>: The only air purifier that actually destroys pollutants.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: The smart way to manage your money. Get up to 1 year managed free.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Use code <strong>atpbundle</strong> for $55 off a Trekz Air bundle.</li>
+</ul>]]></description><itunes:subtitle>Apple Watch Series 4, iPhone XS, iPhone XS Max, iPhone XR, and another truly special event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b909d8c562fa7cd99106d9c</guid><pubDate>Thu, 06 Sep 2018 20:43:59 +0000</pubDate><title>290: A Weird Sandwich</title><itunes:title>A Weird Sandwich</itunes:title><itunes:episode>290</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:20:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp290.mp3" length="67883941" type="audio/mpeg"/><link>https://atp.fm/290</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>AirPrint on old printers<ul>
+<li><a href="http://www.netputing.com/applications/handyprint-v5/">handyPrint</a></li>
+<li><a href="https://www.decisivetactics.com/products/printopia/">Printopia</a></li>
+<li><a href="https://readdle.com/printerpro">Printer Pro</a></li>
+</ul>
+</li>
+<li>Eero competitors and privacy</li>
+<li>iPhone preorder PSA</li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2018/08/30/2018-iphone-xs-design-larger-version-gold-exclusive/">iPhone "XS" marketing image found</a><ul>
+<li><a href="http://atp.fm/episodes/2013/3/9/1-iphone-plus">ATP #1: iPhone Plus</a></li>
+<li><a href="http://5by5.tv/hypercritical/86">Naked Robotic Core</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2018/08/30/exclusive-apple-watch-series-4/">Apple Watch "Series 4" marketing image found</a></li>
+<li><code>#askatp</code>:<ul>
+<li>Getting started with backups (via JD Lewin)</li>
+<li>Pre-ordering an unlocked iPhone (via the very handsome <a href="https://twitter.com/RipeFruit_/status/1036650142034796544">Stephen Kim</a>)</li>
+<li>What's the "cheapest" Apple product?<ul>
+<li><a href="https://www.macobserver.com/tmo/article/happy-birthday-mac-how-to-recover-from-the-dreaded-bomb-box-error-message">Programmer's switch</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show Neutral: Casey's walk of shame... but also pride.</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://creativeselection.io/">Creative Selection</a>: An inside account of Apple's creative process.</li>
+<li><a href="http://casper.com/atp">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Our predictions for next week's iPhone event, something about HomeKit hubs, and a special post-show Neutral.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b8762200e2e72525f158e2e</guid><pubDate>Thu, 30 Aug 2018 05:14:13 +0000</pubDate><title>289: Everybody's in the Alliance</title><itunes:title>Everybody's in the Alliance</itunes:title><itunes:episode>289</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp289.mp3" length="62859960" type="audio/mpeg"/><link>https://atp.fm/289</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://en.wikipedia.org/wiki/Multimedia_over_Coax_Alliance">MoCA</a> and <a href="http://www.amazon.com/dp/B008C1JC4O/?tag=liismo-20">MoCA Bridge</a></li>
+<li><a href="https://www.tomsguide.com/us/intel-hades-canyon-nuc-8i7hvk,review-5287.html">Hades Canyon NUCs</a><ul>
+<li><a href="https://www.youtube.com/watch?v=ZDJeKgFHo2M&amp;feature=youtu.be">Engadget Video Review</a></li>
+<li><a href="https://sixcolors.com/post/2018/03/its-not-quite-a-mac-mini-but-its-my-server/">Snell's NUC article</a></li>
+<li><a href="https://www.anandtech.com/show/13113/intel-officially-launches-bean-canyon-nucs-with-coffee-lake-u-processors">Anandtech</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2018/08/28/airport-express-airplay-2-homekit/">The AirPort Express lives!</a><ul>
+<li><a href="https://youtu.be/S3BqxtsAXIo">Snell's iPod Hi-Fi</a></li>
+<li><a href="https://www.sonos.com/en-us/shop/connect.html">Sonos Connect</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2018/04/26/apple-ends-production-of-airport-base-stations/">The End of AirPort</a><ul>
+<li><a href="https://www.dd-wrt.com/">DD-WRT</a></li>
+<li><a href="http://www.polarcloud.com/tomato">Tomato</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Linksys_WRT54G_series">WRT54G</a></li>
+<li><a href="https://www.youtube.com/watch?v=XnvDQhyrSCI">Phil Schiller flies</a></li>
+<li><a href="https://twitter.com/panzer/status/928653674699669510">Panzer's tweet</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=0sXvuUrJa0o">iPhone mockups preview</a><ul>
+<li><a href="https://twitter.com/_inside/status/1032297865719308288">iPhone SE 2?</a></li>
+<li><a href="https://www.relay.fm/upgrade/208">Upgrade #208: The Villain of the Macintosh</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Why run both <a href="https://plex.tv/">Plex</a> and <a href="https://firecore.com/infuse">Infuse</a>? (via <a href="https://twitter.com/adp21/status/1033174086497619968">Adam Porter</a>)</li>
+<li>Why are Apple's <a href="https://en.wikipedia.org/wiki/ARM_architecture">ARM</a> chips so much faster than their competitors? (via <a href="https://twitter.com/willfought/status/1033158988177653760">Will Faught</a>)</li>
+<li>What's your home printer setup? (via <a href="https://twitter.com/markiglo/status/1030650040623161344">Mark Igloliorte</a>)<ul>
+<li><a href="https://www.lexmark.com/en_us/printer/1856/Lexmark-Optra-S-1625">Lexmark Optra S 1625</a><ul>
+<li><a href="https://books.google.com/books?id=Rfch7R2SmMEC&amp;pg=PA148&amp;lpg=PA148&amp;dq=lexmark+optra+s+1625+pc+mag&amp;source=bl&amp;ots=EWJAmrEXIy&amp;sig=9l14HGpN_jWg6qg3SxoBDkV7uGU&amp;hl=en&amp;sa=X&amp;sqi=2&amp;ved=2ahUKEwjGy8Dm35PdAhWEbVAKHWaHA_wQ6AEwAXoECBMQAQ#v=onepage&amp;q=lexmark%20optra%20s%201625%20pc%20mag&amp;f=false">PC Magazine, 26 May, 1998</a></li>
+</ul>
+</li>
+<li><a href="http://www.amazon.com/dp/B073RG8Z72/?tag=liismo-20">HP Laserjet Pro M281fdw All in One Wireless Color Laser Printer, Amazon Dash Replenishment Ready (T6B82A)</a></li>
+<li><a href="https://shop.usa.canon.com/shop/en/catalog/pixma-mx870-wireless">Canon Pixma MX870 Wireless</a></li>
+<li><a href="https://www.amazon.com/dp/B00ATZ9QMO/?tag=marcoorg-20">Fujitsu ScanSnap iX500</a></li>
+<li><a href="http://www.amazon.com/dp/B077N6LP96/?tag=marcoorg-20">Epson Workforce WF-7710</a></li>
+<li><a href="http://www.amazon.com/dp/B00UL4RQ3O/?tag=marcoorg-20">HP Color LaserJet Enterprise M553dn</a></li>
+<li><a href="https://support.apple.com/en-us/HT201465">Apple's compatibility list</a></li>
+<li><a href="https://camelcamelcamel.com/HP-Laserjet-Wireless-Replenishment-T6B82A/product/B073RG8Z72">🐪🐪🐪</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li><a href="https://twitter.com/siracusa/status/1030914361559265280/photo/1">John's 🐝</a></li>
+<li>Casey's Car Conundrum</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Start securing your business today by setting up your first 3 devices for free, forever.</li>
+<li><a href="https://graylangur.com">Gray Langur</a>: A once-in-a-lifetime, all-inclusive, 2-week exploration of one of the world’s least accessible, yet astonishingly forward-thinking countries.</li>
+<li><a href="https://itunes.apple.com/us/podcast/techmeme-ride-home/id1355212895?mt=2">Techmeme Ride Home</a>: The day's tech news, every day at 5 PM, from Silicon Valley's most-read news source. 15 minutes and you're up to date.</li>
+</ul>]]></description><itunes:subtitle>Diving into cutting-edge technologies: coaxial cable, the AirPort Express, and printers.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b7e267d2b6a2880434787e9</guid><pubDate>Thu, 23 Aug 2018 17:47:26 +0000</pubDate><title>288: Rich Person's Raspberry Pi</title><itunes:title>Rich Person's Raspberry Pi</itunes:title><itunes:episode>288</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp288.mp3" length="56432085" type="audio/mpeg"/><link>https://atp.fm/288</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Photo books → PDF (<code>File</code> → <code>Export</code> → <code>Export Book as PDF</code> → ☑️ <code>Production PDF</code>)</li>
+<li>Active vs. Passive Thunderbolt 3 cables</li>
+<li>Graphing Calculator vs. Grapher<ul>
+<li><a href="https://www.thisamericanlife.org/284/should-i-stay-or-should-i-go/act-two-0">This American Life</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2018-08-20/apple-is-said-to-plan-revamped-low-cost-macs-to-reignite-sales">Low-end Mac rumors</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Next_Unit_of_Computing">Intel NUC</a></li>
+<li><a href="https://images.apple.com/v/mac-mini/d/images/specs/connections_medium_2x.png">Mac Mini ports</a></li>
+<li><a href="https://plex.tv/">Plex</a></li>
+<li><a href="https://firecore.com/infuse">Infuse</a></li>
+<li><a href="https://daringfireball.net/2018/08/new_low-cost_laptop_to_succeed_macbook_air">Gruber's take on the MacBook Air</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Long-distance Wi-Fi</li>
+<li>OLED TVs<ul>
+<li><a href="http://www.amazon.com/dp/B01MZF7WCT/?tag=marcoorg-20">Marco's TV</a></li>
+</ul>
+</li>
+<li><a href="https://www.jaguar.com/jaguar-range/i-pace">Jaguar i-Pace</a> (via <a href="https://twitter.com/kondro/status/1028831106466902016">Wayne Robinson</a>)<ul>
+<li><a href="https://youtu.be/lOqtNHuFq5k">Top Gear's overview</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Porsche_Mission_E">Porsche Taycan</a></li>
+<li>Small electric cars:<ul>
+<li><a href="https://www.chevrolet.com/electric/bolt-ev-electric-car">Chevy Bolt</a></li>
+<li><a href="http://www.vw.com/models/e-golf/section/masthead/">Volkswagen e-Golf</a></li>
+<li><a href="https://www.kia.com/us/en/vehicle/soul-ev/2018">Kia Soul EV</a></li>
+<li><a href="https://www.toyota.com/priusprime/">Prius Prime</a></li>
+<li><a href="https://www.nissanusa.com/vehicles/electric-cars/leaf.html">Nissan Leaf</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://twitter.com/siracusa/status/1030914361559265280/photo/1">John's 🐝</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $5/month. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="http://handy.com/atp">Handy</a>: The most reliable name in house cleaning. Get your first 3-hour cleaning for $39 when you sign up for a plan with code <strong>ATP</strong>.</li>
+<li><a href="http://molekule.com">Molekule</a>: The only air purifier that actually destroys pollutants.</li>
+</ul>]]></description><itunes:subtitle>Predictions and hopes for the rumored Mac Mini and MacBook Air updates.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b74eb65898583f4b90da7c2</guid><pubDate>Thu, 16 Aug 2018 17:39:14 +0000</pubDate><title>287: Open-Faced Compliment Sandwich</title><itunes:title>Open-Faced Compliment Sandwich</itunes:title><itunes:episode>287</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:14</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp287.mp3" length="61745629" type="audio/mpeg"/><link>https://atp.fm/287</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Model 3 software update for the right jog wheel<ul>
+<li><a href="https://twitter.com/alexvirital/status/1029833529847439383">Finding the settings</a></li>
+</ul>
+</li>
+<li>Printing PDFs from Photos by ⌥-clicking the <code>Buy Book</code> button</li>
+<li>Backblaze<ul>
+<li>Data retention</li>
+<li>Backing up a NAS using <a href="https://www.pixeleyes.co.nz/automounter/">AutoMounter</a></li>
+</ul>
+</li>
+<li>Dock auto-hide delay<ul>
+<li><code>defaults write com.apple.dock autohide-time-modifier -int 0</code></li>
+<li><code>defaults write com.apple.dock autohide-delay -int 0</code></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Marco reviews his 2018 13" MacBook Pro<ul>
+<li><a href="https://marco.org/2018/07/31/mac-low-power-mode">Disabling Turbo Boost</a></li>
+<li><a href="https://www.relay.fm/cortex/72">Cortex #72: Adulting Complete</a></li>
+<li><a href="https://www.relay.fm/playingforfun">Playing for Fun</a></li>
+<li><a href="https://www.amazon.com/dp/B073WH4JF9/?tag=marcoorg-20">Startech DKT30CSDHPDStarTech.com USB-C Multiport Adapter 2xUSB 3.0/HDMI/SD/Gigabit Ethernet with Power Delivery (USB PD) USB-C Docking Station</a></li>
+<li><a href="https://marco.org/2011/09/07/the-new-setup">Smoothed edge</a></li>
+</ul>
+</li>
+<li>Fall laptop predictions</li>
+<li><code>#askatp</code>:<ul>
+<li>Why isn't there a RSS-like thing for video?<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a></li>
+<li><a href="https://www.libsyn.com/">Libsyn</a></li>
+</ul>
+</li>
+<li>Why trust the cloud at all if we can't have future-proof encryption?</li>
+<li>Which macOS feature gets 🌆 first? (via <a href="https://twitter.com/marcedwards/status/1026999224469086209">Marc Edwards</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Yahoo!_Widgets">Konfabulator</a></li>
+<li><a href="http://www.pacifict.com/Story/">Graphing calculator story</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: 🐝<ul>
+<li><a href="https://kottke.org/18/08/a-comprehensive-guide-to-yellow-stripey-things">Yellow stripey things</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>ATP</strong> to make overnight shipping free to the US and Canada.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off your suitcase with code <strong>ATP</strong>.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Use code <strong>atpbundle</strong> for $55 off a Trekz Air bundle.</li>
+</ul>]]></description><itunes:subtitle>2018 13" MacBook Pro review, fall Mac speculation, and John's preparations for a war he intends to win.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b6bafdc562fa7f615300a00</guid><pubDate>Thu, 09 Aug 2018 21:58:35 +0000</pubDate><title>286: I Respect a Good Crust</title><itunes:title>I Respect a Good Crust</itunes:title><itunes:episode>286</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp286.mp3" length="56149976" type="audio/mpeg"/><link>https://atp.fm/286</link><description><![CDATA[<ul>
+<li>Pre-show: John's pie-filled vacation<ul>
+<li><a href="https://www.instagram.com/p/BmExzkCFRo7/?taken-by=johncsiracusa">John's seemingly impossible picture</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>CrashPlan, John, and Java<ul>
+<li><code>java mx</code></li>
+<li><code>java mx {newNumber}m</code></li>
+<li><a href="https://spideroak.com/">SpiderOak</a></li>
+<li><a href="http://www.backblaze.com/atp">BackBlaze</a></li>
+<li><a href="https://www.backblaze.com/b2/cloud-storage.html">BackBlaze B2</a></li>
+<li><a href="https://www.arqbackup.com/">Arq</a></li>
+</ul>
+</li>
+<li>John's Photo books<ul>
+<li><a href="http://www.derlien.com/">DiskInventoryX</a></li>
+<li><a href="https://daisydiskapp.com/">DaisyDisk</a></li>
+<li><a href="https://9to5mac.com/2018/07/31/apple-photo-printer-rr-donnelley-new-motif-app/">Photo printer's extension</a></li>
+</ul>
+</li>
+<li><a href="https://www.anandtech.com/show/13122/amd-rome-epyc-cpus-to-be-fabbed-by-tsmc">AMD and TSMC and 7nm</a></li>
+<li><a href="https://www.youtube.com/watch?v=qSHEr87rO84&amp;feature=youtu.be">DigitalFoundry on the Intel Core i9 9900K</a></li>
+<li>Some Neutral FU about the Golf R</li>
+</ul>
+</li>
+<li><a href="https://mjtsai.com/blog/2018/08/06/apple-removes-infowars-from-podcast-directory/">Apple removes Infowars propoganda from its podcast directory</a><ul>
+<li><a href="https://twitter.com/OvercastFM/status/1025377724897157121">Marco started it</a></li>
+<li><a href="https://daringfireball.net/linked/2018/08/08/byers-infowars">Gruber investigates</a></li>
+<li><a href="https://twitter.com/jack/status/1026984242893357056">@jack's tweetstorm</a></li>
+<li><a href="https://xkcd.com/1357/">Compulsory xkcd comic</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Dock strategies (via <a href="https://twitter.com/fabianDiehm/status/1026749659472166912">Fabian Diehm</a>)</li>
+<li>Sleep strategies (via <a href="https://twitter.com/cecilscheib/status/1026516071052988416">Cecil Scheib</a>)</li>
+<li>Transmission strategies (via <a href="https://twitter.com/filmboy/status/1026464693504929793">Thomas Brock</a>)</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: <a href="https://electrek.co/2018/07/30/tesla-model-s-x-interior-refresh-exclusive-first-look/">Tesla screws up a good thing</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Enter code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Breakfast pastries, large online backups, and de-listing from podcast directories.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b5bde08562fa73ce922b7f8</guid><pubDate>Mon, 30 Jul 2018 15:27:00 +0000</pubDate><title>285: Do Not Drill Holes in This House</title><itunes:title>Do Not Drill Holes in This House</itunes:title><itunes:episode>285</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp285.mp3" length="59102071" type="audio/mpeg"/><link>https://atp.fm/285</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>The law is complicated</li>
+<li><a href="https://www.anandtech.com/show/13126/intel-10nm-production-systems-for-holiday-2019">Intel 10nm is allegedly coming at the end of NEXT year</a></li>
+</ul>
+</li>
+<li><em>On an infinite timescale</em>, when does Apple move away from Intel?<ul>
+<li><a href="https://en.wikipedia.org/wiki/RISC-V">RISC-V</a></li>
+<li><a href="https://bit.ly/2K2PSS7">Die</a></li>
+</ul>
+</li>
+<li><a href="https://pxlnv.com/linklog/apple-whimsy/">What happened to Apple's whimsy?</a><ul>
+<li><a href="https://mjtsai.com/blog/2018/05/08/what-happened-to-apples-whimsy/">Michael Tsai's summary</a></li>
+<li><a href="https://twitter.com/marcoarment/status/993596753629843458">Marco's comment</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Overflowing portable drives (via <a href="https://twitter.com/Ringer1633/status/1022905100430401538">Bronwyn Erb</a>)<ul>
+<li><a href="https://www.caseyliss.com/2017/2/11/nas-for-n00bs">Casey's Synology primer</a></li>
+</ul>
+</li>
+<li>When do we replace our computers? (via <a href="https://twitter.com/chrismear/status/1007603475897815041">Chris Tucker Mear</a>)<ul>
+<li><a href="https://buyersguide.macrumors.com/">MacRumors Buyer's Guide</a></li>
+</ul>
+</li>
+<li>Swift and <a href="https://arstechnica.com/staff/2005/09/1372/">Copland 2010</a> (via <a href="https://twitter.com/robmathers/status/1008416321074180096">Rob Mathers</a>)<ul>
+<li><a href="https://arstechnica.com/gadgets/2010/06/copland-2010-revisited/">Copland 2010 revisited</a> </li>
+</ul>
+</li>
+<li>How is <a href="https://geo.itunes.apple.com/us/album/come-tomorrow/1380911441?mt=1&amp;app=music&amp;at=1000l3yf">the new Dave Matthews Band album</a>? (via <a href="https://twitter.com/hardly_ted/status/1022974876481724416">Ted Hardy</a>)</li>
+</ul>
+</li>
+<li>Post-show: Neutral<ul>
+<li><a href="https://www.youtube.com/watch?v=nEOjZEOPoRo">Casey on Cars: Volkswagen Golf R</a></li>
+<li><a href="https://www.caseyliss.com/2018/7/30/volkswagen-golf-r">Blog post</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp100">Casper</a>: Get $100 off the Casper Wave mattress with code <strong>atp100</strong>. Terms and conditions apply.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Get 10% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="http://simplecontacts.com/atp20">Simple Contacts</a>: Renew your contact-lens prescription with our online vision test, and save $20 on your contacts with code <strong>ATP20</strong>.</li>
+</ul>]]></description><itunes:subtitle>Has Apple lost its whimsy? Has Casey found his next car? Has Marco's house made it through the episode?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b5939388a922d06e019c9b8</guid><pubDate>Thu, 26 Jul 2018 17:40:56 +0000</pubDate><title>284: Hotel California Keyboard</title><itunes:title>Hotel California Keyboard</itunes:title><itunes:episode>284</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:06:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp284.mp3" length="61292559" type="audio/mpeg"/><link>https://atp.fm/284</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Easier keycap replacement on the 2018 keyboard</li>
+<li><a href="https://512pixels.net/2018/07/apple-gsx-2018-macbook-pro-keyboard/">Membranes <em>are</em> for ingress prevention</a><ul>
+<li><a href="https://www.macrumors.com/2018/07/19/apple-confirms-2018-mbp-keyboard-prevents-debris/">More from MacRumors</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Public_policy_doctrines_for_the_exclusion_of_relevant_evidence#Subsequent_remedial_measures">"Subsequent remedial measures"</a></li>
+<li><a href="https://www.ifixit.com/Teardown/MacBook+Pro+13-Inch+Touch+Bar+2018+Keyboard+Teardown/111509">iFixit particle experiment</a></li>
+</ul>
+</li>
+<li>Intel giveth and Intel taketh away<ul>
+<li>The mythical USB-C hub</li>
+<li>Sad recent history of Intel CPUs</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Corrections on the throttling discussion from last week<ul>
+<li><a href="https://en.wikipedia.org/wiki/AltiVec">AltiVec</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Thermal_design_power">TDP</a></li>
+<li><a href="https://arstechnica.com/gadgets/2018/07/leaked-benchmarks-show-intel-is-dropping-hyperthreading-from-i7-chips/">RIP hyper-threading</a></li>
+</ul>
+</li>
+<li><a href="https://www.reddit.com/r/macbookpro/comments/91256u/optimal_cpu_tuning_settings_for_i9_mbp_to_stop/">VRM-throttling theory</a></li>
+<li><a href="https://sixcolors.com/post/2018/07/apple-releases-software-fix-for-macbook-pro-slowdown/">Apple's official throttling fix</a><ul>
+<li><a href="https://twitter.com/macworld/status/1021875971371290626/photo/1">Macworld's tests</a></li>
+</ul>
+</li>
+<li><a href="https://software.intel.com/en-us/articles/intel-power-gadget-20">Intel Power Gadget</a><ul>
+<li><a href="https://9to5mac.com/2018/07/21/intel-power-gadget-mac-removed/">Removed, and then reappears</a></li>
+</ul>
+</li>
+<li><a href="https://stratechery.com/2018/intel-and-the-danger-of-integration/">Intel and the Danger of Integration</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Process-Architecture-Optimization_model">Process-Architecture-Optimization model</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Itanium">Itanium</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Power_Mac_G5">Power Mac G5</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Retina screen settings (via <a href="https://twitter.com/grkcodes/status/1021040673087283203">Greg Kolodziejczk</a>)<ul>
+<li><a href="http://eye-friendly.com/">Eye Friendly</a></li>
+</ul>
+</li>
+<li>What tech opinions do we regret? (via <a href="https://twitter.com/JamesTypes/status/1021066421802098688">James</a>)<ul>
+<li><a href="http://tumblr.caseyliss.com/tagged/switch/chrono">Casey's journey to the Mac</a></li>
+<li><a href="http://articles.marco.org/226">The iPhone: I'll care later</a></li>
+</ul>
+</li>
+<li>John's pasta-sauce recipe (via <a href="https://twitter.com/JamesEvansMusic/status/1021879146442645511">James Evans</a>)<ul>
+<li><a href="https://www.amazon.com/dp/B00112W3D8/?tag=marcoorg-20">Rao's Vodka Sauce</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: The <del>Spanish</del> Italian food inquisition<ul>
+<li><a href="https://lidiasitaly.com/recipes/lasagna-ricotta-mozzarella/">Lidia's lasagna recipe</a></li>
+<li><a href="https://lidiasitaly.com/recipes/linguine-bacon-onions/">The basis for John's "carbonara"</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Use code <strong>atpbundle</strong> for $55 off a Trekz Air bundle.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Unlimited cloud backup for $5/month. Start protecting your data with a 15-day free trial today.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $5/month. Use code <strong>atp2018</strong> for a $20 credit.</li>
+</ul>]]></description><itunes:subtitle>Modern CPUs are more complicated than tomato sauce.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b50006a88251b6ef153a11d</guid><pubDate>Thu, 19 Jul 2018 15:53:42 +0000</pubDate><title>283: Just Lower Your Standards</title><itunes:title>Just Lower Your Standards</itunes:title><itunes:episode>283</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp283.mp3" length="53611580" type="audio/mpeg"/><link>https://atp.fm/283</link><description><![CDATA[<ul>
+<li>Pre-show: Videolog(ue)<ul>
+<li><a href="https://www.youtube.com/watch?v=8F1xmbYucec">iJustine &amp; MKBHD unbox a sealed, 18-year-old iBook G3</a></li>
+<li><a href="https://www.youtube.com/watch?v=5HFiDYYvSYM">Casey Neistat and MKBHD review a Lamborghini</a></li>
+<li><a href="https://www.youtube.com/watch?v=pnrov9akHZY">DeMuro's botched video</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://en.wikipedia.org/wiki/Perpetual_motion#Patents">Patenting the perpetual motion machine</a></li>
+<li><a href="https://www.macrumors.com/2018/07/15/third-gen-keyboard-exclusive-to-2018-macbook-pro/">Pre-2018 MacBook keyboard repairs won't get the 2018 keyboard</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=Dx8J125s4cg">"Beware the Core i9"</a><ul>
+<li><a href="https://www.reddit.com/r/apple/comments/8zq5gn/the_core_i9_15_inch_macbook_pro_throttles_itself/e2ktw6z/">Reddit thread</a></li>
+<li><a href="https://twitter.com/marcoarment/status/1019606412786307073">Marco's tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Thermal_design_power">Thermal design power</a></li>
+<li><a href="https://www.notebookcheck.net/Apple-MacBook-Pro-13-2018-Touch-Bar-i5-Laptop-Review.316648.0.html">Notebook Check tests the 13"</a></li>
+<li>CPU data sheets:<ul>
+<li>13": <a href="https://ark.intel.com/products/97541/Intel-Core-i7-7567U-Processor-4M-Cache-up-to-4_00-GHz">2017</a>, <a href="https://ark.intel.com/products/137979/Intel-Core-i7-8559U-Processor-8M-Cache-up-to-4_50-GHz">2018</a></li>
+<li>15": <a href="https://ark.intel.com/products/97462/Intel-Core-i7-7920HQ-Processor-8M-Cache-up-to-4_10-GHz">2017</a>, <a href="https://ark.intel.com/products/134903/Intel-Core-i9-8950HK-Processor-12M-Cache-up-to-4_80-GHz">2018</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2018/7/12/17564144/apple-photo-print-making-iphoto-order">Apple ends photo printing operation</a></li>
+<li><code>#askatp</code>:<ul>
+<li>Is a <a href="https://www.dpreview.com/products/nikon/slrs/nikon_d3400">dedicated picture machine</a> useful? (via <a href="https://twitter.com/cb6619/status/1018933287962619904">Colton Belfils</a>)</li>
+<li>Does John like <a href="https://nodejs.org/en/">Node.js</a> (via <a href="https://twitter.com/aaronbushnell/status/1010515323316002817">Aaron Bushnell</a>)?<ul>
+<li><a href="https://www.npmjs.com/">NPM</a></li>
+<li><a href="http://www.cpan.org/">CPAN</a></li>
+<li><a href="https://semver.org/">Semantic Versioning</a></li>
+<li><a href="https://github.com/cliss/camel">Camel</a></li>
+</ul>
+</li>
+<li>What $15k-or-less car, at least 25 years old, would you buy? (via <a href="https://twitter.com/garethashenden/status/1019274306856026114">Gareth Thomas</a>)<ul>
+<li><a href="https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=463789937">Marco's listing</a></li>
+<li><a href="https://www.youtube.com/watch?v=lW0v505p60U">DeMuro's MR2 video</a></li>
+<li><a href="https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=489480014">John's listing</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm">Neutral</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Smart_Roadster">Smart Roadster</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Enter code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="http://sps.northwestern.edu/is">Northwestern University's MS in Information Systems</a>: Get prepared for an advanced career in IT management, online or on campus.</li>
+</ul>]]></description><itunes:subtitle>Hot MacBooks, cool early-'90s cars, and the rush to get the last Apple photo books.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b4ac046758d462d95567d92</guid><pubDate>Sun, 15 Jul 2018 15:23:01 +0000</pubDate><title>282: Not Unreliable Enough</title><itunes:title>Not Unreliable Enough</itunes:title><itunes:episode>282</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp282.mp3" length="63750191" type="audio/mpeg"/><link>https://atp.fm/282</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1014305611083902978">Distributing Marzipan Apps</a></li>
+<li>Siri is multilingual... until it isn't.</li>
+<li>Window air-conditioner hacks</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2018/07/apple-updates-macbook-pro-with-faster-performance-and-new-features-for-pros/">New MacBook Pros</a><ul>
+<li><a href="https://www.theverge.com/2018/7/13/17569992/15-inch-macbook-pro-2018-keyboard-true-tone">The Verge's review</a></li>
+<li><a href="https://ifixit.org/blog/10279/apple-macbook-keyboard-cover-up/">iFixIt reveals key-protecting membranes</a><ul>
+<li><a href="http://pdfaiw.uspto.gov/.aiw?docid=20180068808">Apple's Patent</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/support/keyboard-service-program-for-macbook-and-macbook-pro/">Keyboard Service Program</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple-designed_processors#Apple_T2">Apple T2</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_A10">Apple A10</a></li>
+</ul>
+</li>
+<li><a href="https://browser.geekbench.com/mac-benchmarks">Geekbench</a></li>
+<li><a href="https://twitter.com/marcoarment/status/1017391248162816000">Marco's tweet</a></li>
+<li><a href="https://www.apple.com/shop/product/MRQV2ZM/A/leather-sleeve-for-15-inch-macbook-pro-saddle-brown?fnode=9e">Leather sleeve</a></li>
+<li><a href="https://twitter.com/forgottentowel/status/1018075404840685568">High-end versus luxury</a></li>
+</ul>
+</li>
+<li><code>#askatp</code>:<ul>
+<li>Capturing out-of-warranty hardware (via Ali Shah)</li>
+<li>How do I use a 34" monitor? (via Andrew Troup)</li>
+<li>Lost picture troubleshooting for Brian Sturm</li>
+</ul>
+</li>
+<li>Post-show: Let's talk about Europe.<ul>
+<li><a href="https://www.youtube.com/watch?v=UEfP1OKKz_Q">Yes, United Kingdom residents, we've seen the video about your ridiculous plugs.</a></li>
+<li><a href="https://www.eurostar.com/">Eurostar</a></li>
+<li><a href="https://stpancras.com/">St. Pancras</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Gare_du_Nord">Gare du Nord</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.rxbar.com/atp">RXBAR</a>: Whole food protein bars. Use code <strong>ATP</strong> for 25% off your first order and free shipping.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Better than whatever you’re wearing right now. Use code <strong>ATP</strong> for 20% off your first order.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>ATP</strong> to make overnight shipping free to the US and Canada.</li>
+</ul>]]></description><itunes:subtitle>Don't worry, we didn't just talk about the new MacBook Pro. We also had time to review all of Europe.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b39970bf950b774335d69ec</guid><pubDate>Mon, 02 Jul 2018 15:50:34 +0000</pubDate><title>281: My Private Siri</title><itunes:title>My Private Siri</itunes:title><itunes:episode>281</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp281.mp3" length="51921021" type="audio/mpeg"/><link>https://atp.fm/281</link><description><![CDATA[<ul>
+<li>Home repairs: Window air conditioners<ul>
+<li><a href="https://www.frigidaire.com/Home-Comfort/Air-Conditioning/Window-Mounted-AC/FGRQ0833U1/">Frigidaire Gallery quiet window air conditioner</a></li>
+</ul>
+</li>
+<li>Computer repairs<ul>
+<li>Casey repairs Erin's MacBook Air... <em>maybe</em>.<ul>
+<li><a href="https://www.caseyliss.com/2018/2/18/apple-pwn3d-my-free-space">Local snapshots maybe?</a></li>
+</ul>
+</li>
+<li>Marco's iMac wants to be like Casey's</li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Reporters <a href="https://www.recode.net/2018/6/27/17508166/google-duplex-assistant-demo-voice-calling-ai">got to talk</a> to <a href="https://ai.googleblog.com/2018/05/duplex-ai-system-for-natural-conversation.html">Google Duplex</a></li>
+<li><em>A A A A Very Good Song</em> <a href="https://twitter.com/renefouquet/status/1012573790008639488">lives on</a>?</li>
+<li>Duplicate-file managers:<ul>
+<li><a href="https://macpaw.com/gemini">Gemini 2</a>, also <a href="https://geo.itunes.apple.com/us/app/gemini-2-the-duplicate-finder/id1090488118?mt=12&amp;app=apps&amp;at=1000l3yf">on the App Store</a> (via <a href="https://twitter.com/gualtiero80/status/1012594760173932545">Gualtiero Frigerio</a>)</li>
+<li><a href="https://overmacs.com/">Photo Sweeper</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://twitter.com/pvieito/status/1013447017962631170">Mojave <code>LaunchServices</code> can launch flat-style app bundles</a></li>
+<li><a href="https://store.google.com/product/google_home">Google Home</a> impresses John</li>
+<li><a href="https://maps.apple.com/">Apple Maps</a> is <a href="https://techcrunch.com/2018/06/29/apple-is-rebuilding-maps-from-the-ground-up/">getting a whole lotta love</a><ul>
+<li><a href="https://www.justinobeirne.com/google-maps-moat">Google Maps Moat</a></li>
+<li><a href="http://kevingilbert.com/discography/solo/welcome-to-joytown/">Welcome to Joytown</a></li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2018-06-25/apple-is-said-to-amplify-its-audio-device-strategy-in-2019">AirPod (and headphone!) rumors</a><ul>
+<li><a href="https://www.apple.com/shop/product/ME186LL/A/apple-in-ear-headphones-with-remote-and-mic">Apple In-Ear Headphones</a></li>
+<li><a href="https://www.amazon.com/dp/B074KDJVS2/?tag=marcoorg-20">Sony WH-1000XM2</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Mojave and autiomatic dark mode (via <a href="https://twitter.com/real_ishan/status/1012046509930524672">Ishan Sharma</a>)<ul>
+<li><code>tell application "System Events" to tell appearance preferences to set dark mode to not dark mode</code></li>
+</ul>
+</li>
+<li>Back to the... iOS? (via <a href="https://twitter.com/snourseman/status/1010500008276385792">Scott Nourse</a>)<ul>
+<li><a href="http://store.citrix.com/store/citrix/en_US/pd/ThemeID.37713000/productID.317779200">Citrix Mouse</a></li>
+</ul>
+</li>
+<li>If the <a href="https://en.wikipedia.org/wiki/Millennium_Falcon">Millennium Falcon</a> was a car, what would it be? (via <a href="https://twitter.com/eibcb/status/1012157207893270528">Brent Billings</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Buick_Regal#Grand_National,_Turbo-T,_T-Type,_and_GNX">Buick Grand National</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chevrolet_El_Camino">Chevrolet El Camino</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DeLorean_time_machine">DeLorean time machine</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Neutral</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Visit <a href="http://squarespace.com/atp">http://squarespace.com/atp</a> and enter code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://casper.com/savings">Casper</a>: For a limited time, save up to $225 off your order! This special offer expires July 9, 2018. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>Apple's upcoming Maps updates, a new Duplex demo, rumored new headphones, and air-conditioner optimizations.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b3441ba575d1fa05d16bdda</guid><pubDate>Thu, 28 Jun 2018 17:23:58 +0000</pubDate><title>280: Extinction-Level Event</title><itunes:title>Extinction-Level Event</itunes:title><itunes:episode>280</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp280.mp3" length="60237898" type="audio/mpeg"/><link>https://atp.fm/280</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Safari's <code>Allow Unsigned Extensions</code> is not a panacea after all</li>
+<li>Adobe is <a href="http://www.fcp.co/final-cut-pro/articles/2088-adobe-announce-project-rush-an-all-in-one-cross-device-video-editing-app">rethinking things</a></li>
+<li>Many people have written their own de-dupe apps<ul>
+<li><a href="https://github.com/darakian/ddh">One example of many</a></li>
+</ul>
+</li>
+<li>The long national Music.app default first-alphabetic song nightmare <a href="https://www.reddit.com/r/iphone/comments/8td5dt/psa_ios_12_now_randomizes_your_music_collection/">is over</a><ul>
+<li><a href="http://atp.fm/235">A a a a a Very Good Song</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Apple launches <a href="https://www.apple.com/support/keyboard-service-program-for-macbook-and-macbook-pro/">butterfly-keyboard repair program</a><ul>
+<li><a href="https://www.caseyliss.com/2018/6/23/macbook-keyboards">Casey's repair strategy</a></li>
+</ul>
+</li>
+<li>Marco's new 🏖️💻<ul>
+<li><a href="https://www.instagram.com/p/BkXo2Qdjtdk">Looking good, buddy.</a></li>
+</ul>
+</li>
+<li>Marzipan<ul>
+<li><a href="https://en.wikipedia.org/wiki/Carbon_%28API%29">Carbon</a> vs. <a href="https://en.wikipedia.org/wiki/Cocoa_%28API%29">Cocoa</a></li>
+<li><a href="http://shapeof.com/archives/2018/6/marzipan_to_arm_on_mac.html">Gus Mueller's take</a></li>
+<li><a href="https://twitter.com/bhansmeyer/status/1006516887776264192">Becky Hansmeyer asks</a> and <a href="https://beckyhansmeyer.com/2018/06/14/apple-marzipan-delight/">then answers</a> what makes a Mac app a Mac app?</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li><a href="https://twitter.com/veitchtweets">James Veitch</a> gives us a self-destructing envelope</li>
+<li><a href="https://twitter.com/volt4ire/status/1011715284372262912">Robert Barat</a> wants to know about 4K monitor sizes<ul>
+<li><a href="https://bjango.com/articles/macexternaldisplays/">Bjango's explainer</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/willrlaw/status/1011357781289562112">Will Law</a> is [justifiably] upset<ul>
+<li><a href="https://sopocafe.com/">Social Policy</a></li>
+<li><a href="http://www.originalgravitypub.com/">Original Gravity Public House</a></li>
+<li><a href="http://goodkarmasj.com/">Good Karma</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Casey had a falling out with (not of) the Jeep</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $5/month. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off a suitcase with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Marco's iMac survived its journey, Casey survived his borrowed Jeep, and John survived the WWDC meal plan.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b2b12f11ae6cfe559022866</guid><pubDate>Thu, 21 Jun 2018 21:52:20 +0000</pubDate><title>279: You’ll Hate What I’m Actually Doing</title><itunes:title>You’ll Hate What I’m Actually Doing</itunes:title><itunes:episode>279</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:48:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp279.mp3" length="52639564" type="audio/mpeg"/><link>https://atp.fm/279</link><description><![CDATA[<ul>
+<li>Accidental Test Kitchen: Induction cooktops</li>
+<li>International cellular-data options<ul>
+<li><a href="https://www.att.com/offers/international-plans/day-pass.html">AT&amp;T International Day Pass</a></li>
+<li><a href="https://www.verizonwireless.com/support/travelpass-faqs/">Verizon TravelPass</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Simulator cloning <strong>is</strong> fast because of APFS cloning<ul>
+<li><code>cp -c</code></li>
+</ul>
+</li>
+<li>Notarized apps and signing</li>
+</ul>
+</li>
+<li>Marco's 🏖️ setup<ul>
+<li><a href="https://www.amazon.com/dp/B073HNCXYJ/?marcoorg-20">Carrying case</a></li>
+</ul>
+</li>
+<li>John's reload extension lives thanks to <a href="https://twitter.com/hisaac/status/1007693058824179712">Isaac Halvorson</a></li>
+<li>ATP appears in <a href="https://developer.apple.com/videos/play/wwdc2018/501/">WWDC Session 501: Introducing Podcast Analytics</a>! (~11 minutes)<ul>
+<li><a href="https://overcast.fm/forecast">Forecast</a></li>
+<li><a href="http://id3.org/id3v2-chapters-1.0">MP3 ID3v2 Chapters spec</a></li>
+</ul>
+</li>
+<li>More on <a href="https://developer.apple.com/wwdc">WWDC</a><ul>
+<li><a href="https://www.refinery29.com/2018/06/200980/apple-memoji-gender-neutral">Memoji are gender neutral</a></li>
+<li>Password improvements and <a href="https://1password.com">1Password</a><ul>
+<li><a href="https://www.stclairsoft.com/DefaultFolderX/">Default Folder X</a></li>
+</ul>
+</li>
+<li>Xcode 10 no longer compiles 32-bit apps</li>
+<li><a href="https://products.office.com/en-US/?ms.url=office365com">Office 365</a> is <a href="https://twitter.com/asymco/status/1003739313367015424">now in the app store</a>, as with some <a href="https://www.adobe.com/">Adobe</a> stuff.<ul>
+<li><a href="https://panic.com/">Panic</a></li>
+<li><a href="http://www.barebones.com/">Bare Bones</a></li>
+<li><a href="https://www.adobe.com/products/xd.html">Adobe XD</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/metal/">Metal</a> and <a href="https://bit.ly/2IaEWkn">eGPUs</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Slow iOS 12 adoption among teens because of big <del>brother</del> parent? (via <a href="https://twitter.com/somenama/status/1007901504383008768">Somename</a>)</li>
+<li>Are Kindles worth it over iPads for reading? (via <a href="https://twitter.com/aganders3/status/1008780796252033025">Ashely A</a>)</li>
+<li>What does the alternate Apple-bought-<a href="https://www.bungie.net/">Bungie</a> universe look like? (via <a href="https://twitter.com/joshhunt/status/1008878474805829632">joshhunt</a>)<ul>
+<li><a href="https://bit.ly/1p2k19X">Marathon</a></li>
+<li><a href="https://www.youtube.com/watch?v=EwOUi4JDC4o">Pathways out of darkness</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: "Casey's" Jeep<ul>
+<li><a href="http://www.iihs.org/iihs/ratings/vehicle/v/jeep/wrangler-4-door-suv">IIHS rating</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://rxbar.com/atp">RXBAR</a>: Whole-food protein bars. We tell you what’s on the inside on the outside. Use code <strong>ATP</strong> for 25% off your first order.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Use code <strong>atp30</strong> for $30 off the weightless, wireless Trekz Air.</li>
+</ul>]]></description><itunes:subtitle>International data plans, the final beach setup, wrapping up WWDC news, and the debut of Accidental Test Kitchen.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b21e06703ce6459ac4b80ac</guid><pubDate>Thu, 14 Jun 2018 18:35:40 +0000</pubDate><title>278: Best Worst Influence</title><itunes:title>Best Worst Influence</itunes:title><itunes:episode>278</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:03:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp278.mp3" length="59663434" type="audio/mpeg"/><link>https://atp.fm/278</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://www.youtube.com/watch?v=xp6UCQvKKzI">WWDC Intro Video</a><ul>
+<li>It was <a href="https://en.wikipedia.org/wiki/Stephen_Fry">Stephen Fry</a> channeling <a href="https://en.wikipedia.org/wiki/David_Attenborough">David Attenborough</a></li>
+<li>A perspective from <a href="https://twitter.com/jensimmons/status/1004139946435928064">Jen Simmons</a></li>
+<li><a href="https://www.youtube.com/user/feministfrequency">Feminist Frequency</a></li>
+</ul>
+</li>
+<li><a href="https://youtu.be/UThGcWBIMpU?t=5914">It's Road Trip!</a></li>
+</ul>
+</li>
+<li>RIP, other chat networks in <code>Messages.app</code> (via <a href="https://twitter.com/SamTheGeek/status/1006003243481169932">Sam Gross</a>)</li>
+<li>APFS snapshotting and iOS Simulator parallel testing (via <a href="https://twitter.com/layoutSubviews/status/1006583740418568192">Renaud Leinhart</a>)</li>
+<li>How's the <a href="https://www.apple.com/ios/ios-12-preview/">iOS 12 beta</a>?</li>
+<li>Stereo HomePod pair review<ul>
+<li><a href="https://en.wikipedia.org/wiki/Jeff_Foxworthy">Jeff Foxworthy</a></li>
+<li><a href="https://www.paradigm.com/monitor-se/specs.php?model=monitor-se-atom">Paradigm Atom</a></li>
+<li><a href="https://twitter.com/apollozac">Zac Hall</a> provides RTFU <a href="https://twitter.com/apollozac/status/1007076528130265089">1</a> <a href="https://twitter.com/apollozac/status/1007077268970262528">2</a></li>
+</ul>
+</li>
+<li>More on iOS 12<ul>
+<li><a href="https://measurekit.com/">MeasureKit</a></li>
+<li>FaceID &amp; "Alternative Appearance"</li>
+</ul>
+</li>
+<li>macOS 10.14 Mojave: Possibly The John Siracusa Review<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2018/210/">Mojave's Dark Mode</a><ul>
+<li><a href="https://512pixels.net/2018/06/on-macos-mojaves-dark-mode/">Stephen Hackett's article</a></li>
+</ul>
+</li>
+<li><a href="https://help.apple.com/xcode/mac/current/#/dev88332a81e">Notarized apps</a></li>
+<li>Safari<ul>
+<li><a href="https://en.wikipedia.org/wiki/Most_favoured_nation">Most favored nation</a></li>
+<li><a href="https://georgegarside.com/blog/macos/install-any-safari-extension-macos-mojave/">Using the Safari Extension Builder</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What are essential Mac apps for novices? (via <a href="https://twitter.com/palau93/status/1004098649675173889">Rodrigo Palau</a>)<ul>
+<li><a href="https://www.caseyliss.com/2016/7/2/new-mac-who-dis">Casey's Mac install checklist</a></li>
+</ul>
+</li>
+<li>Could iMessage for Android exist? (via <a href="https://twitter.com/JackJNYC/status/1005050766594314241">Jack Johnson</a>)</li>
+<li>Streamed gaming is the new hotness; are consoles going away? (via <a href="https://twitter.com/Beirutspring/status/1005939154377760768">Mustapha Hamoui</a>)<ul>
+<li><a href="https://www.playstation.com/en-us/explore/playstationnow/">PlayStation Now</a></li>
+<li><a href="http://onlive.com/">OnLive</a></li>
+<li><a href="https://www.nvidia.com/en-us/geforce/products/geforce-now/mac-pc/">GeForce Now</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Casey quit his job<ul>
+<li><a href="https://www.caseyliss.com/2018/6/1/taking-risks">Casey's blog post</a></li>
+<li><a href="https://www.relay.fm/analogue/134">Analog(ue) #134: Running Toward a Better Future</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://molekule.com/">Molekule</a>: The only air purifier that actually destroys pollutants.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Use code <strong>atp30</strong> for $30 off the weightless, wireless Trekz Air.</li>
+<li><a href="http://rover.com/accidentaltech">Rover</a>: The largest network of 5-star pet sitters and dog walkers in North America. Use code <strong>accidentaltech</strong> for $25 off your first booking.</li>
+</ul>]]></description><itunes:subtitle>Memoji, stereo HomePods, Mojave Dark Mode, Safari tracking prevention, and Casey putting his job in the parking lot.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b170e158a922d6ca3918134</guid><pubDate>Tue, 05 Jun 2018 22:29:42 +0000</pubDate><title>277: You're Not a Mac App Yet</title><itunes:title>You're Not a Mac App Yet</itunes:title><itunes:episode>277</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:32:41</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp277.mp3" length="111409098" type="audio/mpeg"/><link>https://atp.fm/277</link><description><![CDATA[<p>We're live from WWDC 2018!</p>
+<ul>
+<li>iOS 12<ul>
+<li>ARKit 2</li>
+<li>Siri Shortcuts</li>
+<li>Activity reports and App Limits</li>
+<li>Notification management</li>
+<li>Memoji</li>
+</ul>
+</li>
+<li>watchOS 5</li>
+<li>macOS Mojave<ul>
+<li><a href="https://dl.acm.org/citation.cfm?id=143055">John's "pile" metaphor</a></li>
+</ul>
+</li>
+<li>UIKit apps on Mac</li>
+<li>Neutral: The <a href="https://la.curbed.com/2018/2/14/17010034/bird-electric-scooters-transit-venice-santa-monica">electric-scooter invasion</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://audiblecareers.com/">Audible Careers</a>: Join the company that is changing the world, one listener at a time.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Get $30 off the weightless, wireless Trekz Air with code <strong>atp30</strong>.</li>
+<li><a href="http://aka.ms/iOSandAzure">Microsoft Azure</a>: Build intelligent iOS apps that scale.</li>
+</ul>]]></description><itunes:subtitle>Live from WWDC 2018!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b0f6bb28a922dfc86c78bb4</guid><pubDate>Thu, 31 May 2018 15:04:33 +0000</pubDate><title>276: Observing a Black Hole</title><itunes:title>Observing a Black Hole</itunes:title><itunes:episode>276</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:14:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp276.mp3" length="65155424" type="audio/mpeg"/><link>https://atp.fm/276</link><description><![CDATA[<ul>
+<li><a href="http://appcamp4girls.com">App Camp for Girls</a> fundraiser: <a href="http://livenearwwdc.com/">Live Near WWDC</a></li>
+<li><a href="https://www.macstories.net/news/apple-releases-ios-114-with-airplay-2-messages-in-icloud-and-more/">iOS 11.4</a><ul>
+<li>Messages in the Cloud: <code>Settings</code> → {Your Name} → <code>iCloud</code> → <code>Messages</code></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc">WWDC</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/1001545040047550466">No OS filter</a></li>
+<li><a href="https://www.relay.fm/upgrade/195">Upgrade #195: The WWDC Keynote Draft 2018</a></li>
+</ul>
+</li>
+<li>Marco's 🏖️💻 problem<ul>
+<li><a href="https://thegadgetflow.com/portfolio/lavolta-carrying-case-bag-imac/">Lavolta Carrying Case for iMac</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What is the best way to "accidentally" <del>stalk</del> find us at WWDC? (via <a href="https://twitter.com/pohsyb/status/994596452826415104">CW Bennett</a>)<ul>
+<li><a href="https://sopocafe.com/">Social Policy</a></li>
+<li><a href="http://originalgravitypub.com">Original Gravity Public House</a></li>
+<li><a href="http://layers.is">Layers</a></li>
+</ul>
+</li>
+<li>How do we maintain multiple development environments? (via Pat Murphy)</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm">Neutral</a>: Casey is a sad panda</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp100">Casper</a>: Get $100 off your Wave purchase with code <strong>atp100</strong>. Terms and conditions apply.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping to the US and Canada.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>iOS 11.4, what we hope to see at WWDC, Marco's beach problem, and Casey's car problem.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5b062e00f950b7cb32c519fe</guid><pubDate>Thu, 24 May 2018 22:21:28 +0000</pubDate><title>275: It's Difficult When You’re a Billionaire</title><itunes:title>It's Difficult When You’re a Billionaire</itunes:title><itunes:episode>275</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp275.mp3" length="54829941" type="audio/mpeg"/><link>https://atp.fm/275</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>People can change their minds, and that's okay. Right, <a href="https://marco.org/2016/05/02/quitter">old Marco</a>?<ul>
+<li><a href="https://yourlogicalfallacyis.com/">Your logical fallacy is...</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=VxcbppCX6Rk">How old are your ears?</a><ul>
+<li>Some <a href="https://www.relay.fm/analogue/132">Analog(ue) #132 follow-out</a></li>
+<li><a href="https://www.relay.fm/cortex/69">Cortex #69: Minimum Viable</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Tesla and Elon Musk<ul>
+<li><a href="https://en.wikipedia.org/wiki/Grimes_%28musician%29">Grimes</a>, Elon's girlfriend</li>
+<li><a href="https://en.wikipedia.org/wiki/Tesla,_Inc.#Top_Gear_review">Top Gear kerfuffle</a></li>
+<li><a href="https://twitter.com/elonmusk/status/999367582271422464">Elon announces "Pravda"</a></li>
+<li><a href="https://en.wikipedia.org/wiki/United_Automobile_Workers">United Automobile Workers</a></li>
+<li>Who would buy Tesla?<ul>
+<li><a href="https://wheelbearings.media/podcast/episode-068-quirky-subarus-and-driver-monitors/">Wheel Bearings #68: Quirky Subarus &amp; Driver Monitors</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Magna_International">Magna</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Geely">Geely</a></li>
+</ul>
+</li>
+<li><a href="https://www.jaguar.com/jaguar-range/i-pace/index.html">Jaaaaaaaaag-you-are I-Pace</a></li>
+</ul>
+</li>
+<li>Marco is dabbling with Swift (‼️)<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2015/408/">WWDC 2015 #408 – Protocol-Oriented Programming in Swift</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Is it important to learn <a href="https://www.vim.org/"><code>vim</code></a> or <a href="https://www.gnu.org/software/emacs/"><code>emacs</code></a>? (via Aaron Robeson)<ul>
+<li><a href="http://www.barebones.com/products/bbedit/index.html">BBEdit</a></li>
+</ul>
+</li>
+<li>Is it paranoid to avoid Google? (via Luther Richardson)<ul>
+<li><a href="https://www.caseyliss.com/2015/3/19/duckduckgo">DuckDuckGo</a></li>
+<li><a href="https://www.relay.fm/upgrade/194">Upgrade #194: Game of Jenga with Drivers</a></li>
+</ul>
+</li>
+<li>What lenses should one get for a Sony <a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-6500-body-kit">α6500</a>? (via Peter Johnson)<ul>
+<li><a href="http://www.amazon.com/dp/B0055N2L22/?tag=liismo-20">Casey's M4/3 Prime</a></li>
+<li><a href="http://www.amazon.com/dp/B009CNILX4/?tag=liismo-20">Casey's M4/3 Zoom</a></li>
+<li><a href="https://www.lensrentals.com">LensRentals.com</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm">Neutral</a>: Marco drove <a href="https://www.cruiseamerica.com/">something ridiculous</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers starting at just $5/month. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="https://lambdaschool.com/atp">Lambda School</a>: Register now for iOS Development 101, a free introduction to iOS development.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Get $30 off the weightless, wireless Trekz Air with code <strong>atp30</strong>.</li>
+</ul>]]></description><itunes:subtitle>Changed minds, old ears, giving in to Swift, and whether Elon Musk is a net positive.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5afcf20e758d467e132612d5</guid><pubDate>Thu, 17 May 2018 20:59:42 +0000</pubDate><title>274: Not the Teddy Bear's Fault</title><itunes:title>Not the Teddy Bear's Fault</itunes:title><itunes:episode>274</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp274.mp3" length="57586807" type="audio/mpeg"/><link>https://atp.fm/274</link><description><![CDATA[<ul>
+<li><a href="https://twitter.com/CloeCouture/status/996218489831473152">Yanny vs. Laurel</a><ul>
+<li><a href="https://www.nytimes.com/interactive/2018/05/16/upshot/audio-clip-yanny-laurel-debate.html">New York Times article</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Raise to listen in 🇨🇳</li>
+<li><a href="https://ai.googleblog.com/2018/05/duplex-ai-system-for-natural-conversation.html">Google Duplex</a><ul>
+<li><a href="https://twitter.com/bob_burrough/status/994179752213676032">Bob Burrough's summary</a></li>
+<li>Matt Drance <a href="https://twitter.com/drance/status/994780932644200453">1</a> &amp; <a href="https://twitter.com/drance/status/994781227734495234">2</a></li>
+<li><a href="https://www.buzzfeed.com/blakemontgomery/google-ai-disclosure?utm_term=.gk3kxb877#.eyWl57pKK">Duplex will identify as non-human</a></li>
+<li><a href="https://www.reddit.com/r/TalesFromRetail/comments/8jtn3f/">First-hand story from retail</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.recode.net/2018/5/8/17328466/amazon-jeff-bezos-board-diversity-proposal-shareholder-vote">Amazon and executive diversity</a></li>
+<li><a href="http://apps-of-a-feather.com/">🤬 Twitter.</a><ul>
+<li><a href="https://twitter.com/BigZaphod/status/996794900208287744">Sean Heber</a></li>
+<li><a href="https://twitter.com/chockenberry/status/996795959228026880">Craig Hockenberry</a></li>
+<li><a href="https://www.relay.fm/connected/193">Connected #193: They Belong to the World Now</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Shadow_banning">Hell banning</a></li>
+</ul>
+</li>
+<li><a href="https://events.google.com/io/">Google I/O</a><ul>
+<li><a href="https://twitter.com/journeydan/status/993905336200253441">Continued conversation</a></li>
+<li><a href="https://www.blog.google/products/chromebooks/linux-on-chromebooks/">Linux on Chromebooks</a></li>
+</ul>
+</li>
+<li><a href="https://theoutline.com/post/4532/lawsuit-alleges-apple-knew-its-computers-were-defective-sold-them-anyway">Apple Keyboard class action lawsuit</a><ul>
+<li><a href="https://www.change.org/p/apple-apple-recall-macbook-pro-w-defective-keyboard-replace-with-different-working-keyboard">Online petition</a></li>
+</ul>
+</li>
+<li><a href="https://blogs.windows.com/devices/2018/05/15/meet-surface-hub-2/">Microsoft Surface Hub 2</a></li>
+<li><code>#askatp</code><ul>
+<li>What's Apple's focus? (via <a href="https://twitter.com/ishabazz/status/994323775532421120">Ish Shabazz</a>)<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2018/05/08/ep-221">The Talk Show #221: Slathered in Incompetence</a></li>
+</ul>
+</li>
+<li>Will the new Mac Pro have only USB-C? (via <a href="https://twitter.com/owlcity/status/989624285210775553">Owl City</a>)</li>
+<li>What the future for manuals? (via <a href="https://twitter.com/adamroark_/status/995678020898877441">Adam Roark</a>)</li>
+</ul>
+</li>
+<li>Post-show: Casey's Car Corner<ul>
+<li><a href="https://www.maseratiusa.com/maserati/us/en/models/levante">Maserati Levante</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Use code <strong>atp30</strong> for $30 off the weightless, wireless Trekz Air.</li>
+</ul>]]></description><itunes:subtitle>Misheard names, big tables, Twitter's antics, class-actions, and more from Google I/O.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5af3b67f70a6ad79876066a7</guid><pubDate>Thu, 10 May 2018 14:37:30 +0000</pubDate><title>273: Playing You Like a Video Game</title><itunes:title>Playing You Like a Video Game</itunes:title><itunes:episode>273</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:38:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp273.mp3" length="48069277" type="audio/mpeg"/><link>https://atp.fm/273</link><description><![CDATA[<ul>
+<li>Follow-up: Disabling "Raise to Listen" on iPhone X</li>
+<li>You should go to <a href="https://layers.is/">Layers</a></li>
+<li><a href="https://www.hodinkee.com/magazine/jony-ive-apple">Jony Ive interviewed by Hodinkee</a><ul>
+<li><a href="http://www.amazon.com/dp/1591847060/?tag=siracusa-20">Jony Ive: The Genius Behind Apple's Greatest Products</a></li>
+</ul>
+</li>
+<li><a href="https://arstechnica.com/gadgets/2018/05/google-duplex-will-call-salons-restaurants-and-pretend-to-be-human-for-you/">Google Duplex</a><ul>
+<li><a href="https://youtu.be/ogfYd705cRs?t=4630">Keynote video</a></li>
+<li><a href="https://www.youtube.com/watch?v=BRUvbiWLwFI">The Verge's 14-minute summary</a></li>
+<li><a href="https://twitter.com/Ihnatko/status/993910580862996480">Ihnatko's take</a></li>
+</ul>
+</li>
+<li>20 years of <a href="https://en.wikipedia.org/wiki/USB">USB</a><ul>
+<li><a href="https://sixcolors.com/post/2018/05/the-original-imac-20-years-since-apple-changed-its-fate/">iMac Retrospective</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SCSI">SCSI</a></li>
+<li><a href="https://goo.gl/TmiJ8Q">IRQ</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Direct_memory_access">DMA</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sound_Blaster">Sound Blaster</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Desktop_Bus">ADB</a></li>
+<li><a href="https://www.macworld.com/article/3271100/macs/imac-at-20-the-reaction-after-the-1998-imac-introduction.html">Jason Snell's Macworld article</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>How do we have Finder configured? (via <a href="https://twitter.com/Kymer_G/status/993634447885991937">Kymer</a>)</li>
+<li>What do we think about Volvo <a href="https://www.media.volvocars.com/us/en-us/media/pressreleases/228639/volvo-cars-to-embed-google-assistant-google-play-store-and-google-maps-in-next-generation-infotainme">adopting Google products for their infotainment</a>? (via <a href="https://twitter.com/andreasekegren/status/993739043715379200">Andreas Ekegren</a>)</li>
+<li>Cartridges/discs or digital downloads for video games? (via <a href="https://twitter.com/hutsonh/status/991748924800229378">Hutson Hayward</a>)</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.mackweldon.com/">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>ATP</strong>.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping to the US and Canada.</li>
+<li><a href="http://casper.com/atp100">Casper</a>: Get $100 off your Wave purchase with code <strong>atp100</strong>. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>Hello, um, do you have any time to listen to our podcast today between 10am and 12pm, mmm?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ae7e137352f53431722ce77</guid><pubDate>Tue, 01 May 2018 05:05:01 +0000</pubDate><title>272: 60% Satisfied</title><itunes:title>60% Satisfied</itunes:title><itunes:episode>272</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:05</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp272.mp3" length="55585531" type="audio/mpeg"/><link>https://atp.fm/272</link><description><![CDATA[<ul>
+<li><a href="http://atp.fm/store"><strong>ATP MERCHANDISE!!</strong></a><ul>
+<li>Get your clothing by May 7 @ 9 PM ATP time</li>
+<li>Get your pins <strong>NOW</strong>! They're about to sell out!</li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>More on 32-bit deprecation</li>
+<li>Raise to Listen and phantom audio messages on iPhone X<ul>
+<li>What about Apple Pay and Siri? (via <a href="https://twitter.com/_concluded/status/989659902682451968">Andrew Milham</a>)</li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://daringfireball.net/2018/04/scuttlebutt_regarding_ui_project">More about Marzipan</a></li>
+<li>What is left for WWDC?</li>
+<li><a href="https://www.cnet.com/news/apple-is-working-on-an-ar-augmented-reality-vr-virtual-reality-headset-powered-by-a-wireless-wigig-hub/">Apple's rumored AR glasses</a></li>
+<li><a href="https://marco.org/2018/04/27/overcast42">Overcast 4.2: The privacy update</a><ul>
+<li><a href="http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/">htmLawed</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Content_Security_Policy">Content Security Policy</a></li>
+<li><a href="https://developer.apple.com/documentation/foundation/nsurlprotocol"><code>NSURLProtocol</code></a><ul>
+<li>More <a href="http://nshipster.com/nsurlprotocol/">at NSHipster</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Apple IDs at work (via Alex Faber)</li>
+<li>Camera paranoia (via Ryan Taylor)<ul>
+<li><a href="https://jscholarship.library.jhu.edu/bitstream/handle/1774.2/36569/camera.pdf?sequence=1">Previous hack</a></li>
+</ul>
+</li>
+<li>CarPlay thoughts (via John)</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Enter code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://rover.com/accidentaltech">Rover</a>: Rover is the largest network of 5-star pet sitters and dog walkers in North America.</li>
+</ul>]]></description><itunes:subtitle>Stale Marzipan, prescription AR sunglasses, and protecting listeners from tracking pixels.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ae13da9758d46b32eda65ac</guid><pubDate>Thu, 26 Apr 2018 16:11:11 +0000</pubDate><title>271: Voting With Your Virtual Feet</title><itunes:title>Voting With Your Virtual Feet</itunes:title><itunes:episode>271</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:35:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp271.mp3" length="46189380" type="audio/mpeg"/><link>https://atp.fm/271</link><description><![CDATA[<ul>
+<li><a href="http://atp.fm/store"><strong>ATP MERCHANDISE!!</strong></a><ul>
+<li>Get your clothing by May 7, 9 PM ATP time</li>
+<li>Get your pins <strong>ASAP</strong>! They will sell out!</li>
+<li>Sorry, no flamethrowers.</li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Would <a href="https://llvm.org/docs/BitCodeFormat.html">Bitcode</a> make an Intel → ARM transition easier?<ul>
+<li><a href="http://atp.fm/205-chris-lattner-interview-transcript/#bitcode">ATP Interview with Chris Lattner</a></li>
+</ul>
+</li>
+<li>Marco's backpack woes<ul>
+<li><a href="https://www.tombihn.com/collections/backpacks/products/synapse-25">Tom Bihn Synapse 25</a></li>
+<li><a href="https://www.peakdesign.com/everyday-backpack">Peak Design Everyday Backpack 20L</a></li>
+</ul>
+</li>
+<li>Marco's Facebook Groups conclusion</li>
+</ul>
+</li>
+<li><a href="https://twitter.com/siracusa/status/987412398788116481">NOT A TOUCH SCREEN</a></li>
+<li><a href="https://techpinions.com/top-takeaways-from-studying-iphone-x-owners/52639">Turns out™, Siri sucks</a></li>
+<li>iPhone X Mid-Cycle Performance Review</li>
+<li><a href="https://twitter.com/_inside/status/987648934863687680">Safari dark mode?</a></li>
+<li><code>#askatp</code><ul>
+<li>What does Apple gain by ending 32-bit support? (via <a href="https://twitter.com/unitof/status/985583264877371392">Jacob Ford</a>)</li>
+<li>🙄 Destiny talk 🙄 (blame <a href="https://twitter.com/Juholei/status/980701917411201024">Juho Leinonen</a>)</li>
+<li>What used Wrangler or convertible would we buy with $15k for weekend fun? (via Mike)</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: Casey's moving violations</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping to the US and Canada.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Fast SSD cloud servers starting at just $5/month. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="https://www.rxbar.com/atp">RXBAR</a>: Whole food protein bars made with 100% real ingredients. Use code <strong>ATP</strong> for 25% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Bitcode, backpacks, untouchable screens, and bringing the iPhone X into our office for a little chat. Please close the door behind you.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ad16d1af950b77bff3ce324</guid><pubDate>Wed, 18 Apr 2018 14:52:19 +0000</pubDate><title>270: Three Major Zippers</title><itunes:title>Three Major Zippers</itunes:title><itunes:episode>270</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:36:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp270.mp3" length="46601626" type="audio/mpeg"/><link>https://atp.fm/270</link><description><![CDATA[<ul>
+<li>Backpacks:<ul>
+<li><a href="https://www.peakdesign.com/everyday-backpack">Peak Design Everyday Backpack 20L</a></li>
+<li><a href="https://www.tombihn.com/collections/backpacks/products/synapse-25">Tom Bihn Synapse 25</a></li>
+<li><a href="https://www.youtube.com/user/chasereeves">Chase Reeves on YouTube</a> and <a href="http://bagworks.co/">on the web</a></li>
+<li><a href="https://www.tombihn.com/products/cache">Tom Bihn Cache</a></li>
+<li><a href="https://www.tombihn.com/products/cadet">Tom Bihn Cadet</a> &amp; <a href="https://www.caseyliss.com/2015/8/23/tom-bihn-cadet">Casey's review</a></li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2018-04-12/apple-s-stumbling-homepod-isn-t-the-hot-seller-company-wanted">HomePod sales look bad</a></li>
+<li><a href="http://www.datacenterknowledge.com/design/cloudflare-bets-arm-servers-it-expands-its-data-center-network">CloudFlare goes ARM</a></li>
+<li>When was Apple's heyday?<ul>
+<li><a href="https://marco.org/2017/11/14/best-laptop-ever">The best laptop ever made</a></li>
+<li><a href="https://www.relay.fm/topfour">Top Four</a></li>
+<li><a href="https://www.theincomparable.com/robot/128/">Robot or Not #128: The Midwest</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IPod_Nano#1st_generation">iPod Nano, 1st Generation</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What if the Apple Mac CPU is neither <a href="https://en.wikipedia.org/wiki/ARM_architecture">ARM</a> nor <a href="https://en.wikipedia.org/wiki/X86">x86</a>? (via Colin McKellar)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Instruction_set_architecture">Instruction set architecture (ISA)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IBM_System/360">IBM System/360</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SIMD">SIMD instructions</a></li>
+</ul>
+</li>
+<li>Cribbing cooling from the iMac Pro for future not-Pro iMacs (via <a href="https://twitter.com/snourseman/status/984417591233011712">Scott Nourse</a>)</li>
+<li>How would Apple have treated the Mac Pro and Mac Mini in years past? (via <a href="https://twitter.com/nalexander50/status/981970042345672704">Nick Alexander</a>)</li>
+</ul>
+</li>
+<li>Post-show: Topics we don't feel we need to cover</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://itunes.apple.com/us/podcast/techmeme-ride-home/id1355212895?mt=2">Techmeme Ride Home Podcast</a>: Subscribe now in your podcast app!</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Visit <a href="http://squarespace.com/atp">http://squarespace.com/atp</a> and enter code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off your suitcase with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>When was Apple's heyday?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5acecc37758d4676cbd3b751</guid><pubDate>Fri, 13 Apr 2018 01:33:52 +0000</pubDate><title>269: Cooled by Jellyfish</title><itunes:title>Cooled by Jellyfish</itunes:title><itunes:episode>269</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:45:23</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp269.mp3" length="51040508" type="audio/mpeg"/><link>https://atp.fm/269</link><description><![CDATA[<ul>
+<li>Follow-up: <ul>
+<li><a href="https://twitter.com/stephendevine89/status/981642030916030465">iPhone throttling notification</a></li>
+<li>macOS 10.13.4 <a href="https://sixcolors.com/post/2018/04/mac-users-now-warned-when-they-first-launch-a-32-bit-app/">32-bit warnings</a><ul>
+<li><a href="https://support.apple.com/en-us/HT208436">Learn More...</a></li>
+</ul>
+</li>
+<li><a href="https://www.proclipusa.com/">ProClip</a> mounts (via <a href="https://twitter.com/sharding/status/982481090530045953">Sean Harding</a>)</li>
+<li>Casey's bloody car rags <a href="https://twitter.com/CaptainAndg/status/982467149590482945">are called "hucks"</a> and are <a href="https://www.amazon.com/dp/B01231D2FI/?tag=liismo-20">available on Amazon</a></li>
+<li><a href="https://www.lyft.com/">Lyft</a> subscriptions? (via <a href="https://twitter.com/zacbir">Zac Bir</a>)</li>
+<li>San Jose isn't as small as your hosts think it is. Or so we're told. 🤷🏻‍♂️</li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2018/04/05/apples-2019-imac-pro-will-be-shaped-by-workflows/">The Mac Pro and Apple's Pro Workflow Team</a><ul>
+<li><a href="http://simpsons.wikia.com/wiki/The_Homer">The Homer</a></li>
+<li><a href="http://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">The Case for a True Mac Pro Successor</a></li>
+<li><a href="https://www.youtube.com/watch?v=d4R-EsiyRk0">Passively cooled PC tower</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Coffee gear (via <a href="https://twitter.com/bosiemoncrieff/status/983573274301837312">Bosie Mon Crieff</a> and <a href="https://twitter.com/doggoboii/status/983910053215391744">Doggo Boii</a>)<ul>
+<li>Hand grinders: <a href="https://www.amazon.com/dp/B01GPMH590/?tag=marcoorg-20">the skinny one that sucks</a> and <a href="https://www.amazon.com/dp/B01LXZACFB/?tag=marcoorg-20">the Skerton that sucks less</a></li>
+<li>Marco's pricy <a href="https://www.sweetmarias.com/product/hottop-roaster-basic">Hottop Roaster, Basic</a><ul>
+<li>Midrange pick: <a href="https://www.sweetmarias.com/product/behmor-1600-plus">Behmor 1600 Plus</a></li>
+<li>Entry-level pick: <a href="https://www.sweetmarias.com/category/roasting-equipment/air-roasters">Use an air popper</a></li>
+</ul>
+</li>
+<li>Fancy instant coffees:<ul>
+<li><a href="https://www.suddencoffee.com/">Sudden Coffee</a> (most convenient)</li>
+<li><a href="https://swiftcupcoffee.com/">Swift Cup</a> (best tasting)</li>
+<li><a href="https://voila.coffee/">Viola Coffee</a> (smallest to pack)</li>
+</ul>
+</li>
+<li><a href="https://www.amazon.com/dp/B006MLQHRG/?tag=marcoorg-20">Baratza Virtuoso grinder</a></li>
+<li>Brewing methods:<ul>
+<li><a href="https://www.amazon.com/dp/B001HBCVX0/?tag=marcoorg-20">AeroPress</a> for small amounts</li>
+<li><a href="https://www.amazon.com/dp/B001O0LCUC/?tag=marcoorg-20">Hario V60 size 03 pour-over</a> for larger amounts</li>
+<li><a href="https://www.amazon.com/dp/B00JVSVM36/?tag=marcoorg-20">Oxo cold-brew maker</a> (not mentioned in the show, but good for cold-brew)</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Which <a href="https://www.tivo.com/">TiVo</a> should one use? (via <a href="https://twitter.com/bkmintie/status/983802114773172224">Bryce Mintie</a>)</li>
+<li>Which clipboard manager? (via <a href="https://twitter.com/krg99/status/983402004117643264">KG</a>)<ul>
+<li>Casey uses <a href="https://www.alfredapp.com/">Alfred</a></li>
+<li>Marco uses <a href="https://www.obdev.at/products/launchbar/index.html">LaunchBar</a></li>
+<li>John uses <a href="https://tapbots.com/pastebot/">Pastebot</a></li>
+<li>Previously: <a href="http://jumpcut.sourceforge.net/">Jumpcut</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show<ul>
+<li><a href="https://www.youtube.com/watch?v=yYAw79386WI">Around the Corner</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://molekule.com/">Molekule</a>: The only air purifier that actually destroys pollutants.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="http://hellofresh.com/">Hello Fresh</a>: A meal-kit delivery service so you can just cook, eat, and enjoy. Use code <strong>ATP30</strong> for $30 off your first week.</li>
+</ul>]]></description><itunes:subtitle>We invited pros to come on campus and join our Pro Listening Team to help us shape the next episode of our flagship podcast.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ac592bd575d1ffe219f27fa</guid><pubDate>Thu, 05 Apr 2018 16:47:26 +0000</pubDate><title>268: A Tarnished Brass Age</title><itunes:title>A Tarnished Brass Age</itunes:title><itunes:episode>268</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp268.mp3" length="56928040" type="audio/mpeg"/><link>https://atp.fm/268</link><description><![CDATA[<ul>
+<li>Follow-up: <ul>
+<li><a href="https://en.wikipedia.org/wiki/Amateur_radio">HAM radio</a> and <a href="https://www.fcc.gov/general-mobile-radio-service-gmrs">GMRS licenses</a></li>
+<li>New iOS onboarding screens are indeed about <a href="https://pbs.twimg.com/media/DZk1K7qW4AAPsaP.jpg:large">GDPR</a></li>
+<li>Education feedback<ul>
+<li><a href="https://en.wikipedia.org/wiki/Maslow%27s_hierarchy_of_needs">Maslow's Hierarchy of Needs</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/bzamayo/status/978715684191563776">Pulsating help prompts</a></li>
+</ul>
+</li>
+<li>iCloud's free storage</li>
+<li>Classroom for Mac: What does it mean?</li>
+<li>Inductive charging is great. Who knew‽ <ul>
+<li><a href="https://www.apple.com/shop/product/HL812/mophie-wireless-charging-base?fnode=42">Mophie base</a></li>
+<li><a href="http://www.amazon.com/dp/B077R8XLZ6/?tag=liismo-20">Casey's car charger</a></li>
+<li><a href="https://www.proclipusa.com/">ProClip</a> (<a href="https://www.proclipusa.com/product/adjustable-iphone-holder-for-lightning-to-usb-cable">Marco's fancy mount</a>)</li>
+<li><a href="https://www.zdnet.com/article/iphone-x8-wireless-charging-will-wear-out-the-battery-faster-than-cable-charging/">Qi charging bad for batteries?</a></li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2018-04-02/apple-is-said-to-plan-move-from-intel-to-own-mac-chips-from-2020">Apple to use its own CPUs in Macs?</a><ul>
+<li><a href="https://twitter.com/ATP_Tipster1/status/981581546506334209">ATPTipster: "bug multiplier"</a></li>
+<li><a href="http://matthewpalmer.net/rocket/">Rocket app</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Lyft at WWDC? (via <a href="https://twitter.com/ohples/status/981497177078992896">ohples</a>)</li>
+<li>Should we use the <a href="https://blog.cloudflare.com/announcing-1111/">new CloudFlare DNS</a>? (via <a href="https://twitter.com/barthoefs/status/981038736698953728">Bart Hoefs</a>)</li>
+<li>External GPUs for John? (via Josh Rapoport)</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>:<ul>
+<li><a href="https://www.theverge.com/2018/4/4/17199532/bmw-subscription-service-nashville">BMW's subscription service</a></li>
+<li><a href="https://www.volvocars.com/us/cars/new-models/xc40/care-by-volvo">Volvo XC40 subscription</a></li>
+<li><a href="http://www.porschepassport.com/">Porsche Passport</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://casper.com/atp100">Casper</a>: Get $100 off the Casper Wave mattress with promo code <strong>atp100</strong>. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>ARM Macs, education feedback, expensive car-phone mounts, The San José Show, subscription BMWs, and ginger tea.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5abefb168a922d9f461e9f44</guid><pubDate>Sat, 31 Mar 2018 19:07:36 +0000</pubDate><title>267: I Slowly Ate the Crystals</title><itunes:title>I Slowly Ate the Crystals</itunes:title><itunes:episode>267</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:36:19</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp267.mp3" length="46357999" type="audio/mpeg"/><link>https://atp.fm/267</link><description><![CDATA[<ul>
+<li>Pre-show: Marco's road trip<ul>
+<li><a href="https://www.suddencoffee.com/">Sudden Coffee</a></li>
+<li><a href="https://david-smith.org/blog/2014/05/22/my-travel-coffee-kit/">Underscore David Smith's travel coffee kit</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Breath of the Wild and the Wii U</li>
+<li><a href="https://arstechnica.com/gadgets/2018/03/you-dont-have-to-buy-an-imac-pro-to-get-a-space-gray-magic-keyboard-and-mouse-now/">Space Gray accessories are available to everyone</a><ul>
+<li><a href="https://www.apple.com/shop/product/MQ052LL/A/magic-keyboard-with-numeric-keypad-us-english-silver?fnode=56">Keyboard</a></li>
+<li><a href="https://www.apple.com/shop/product/MLA02LL/A/magic-mouse-2-silver?fnode=56">Mouse</a></li>
+<li><a href="https://www.apple.com/shop/product/MJ2R2LL/A/magic-trackpad-2-silver?fnode=56">Trackpad</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://altconf.com/#tickets">ATP Live at WWDC</a></li>
+<li><a href="https://www.amazon.com/dp/B019RIP24E/?tag=marcoorg-20">Walkie talkies for tandem road trips</a></li>
+<li><a href="https://www.apple.com/apple-events/march-2018/">Apple's education event</a><ul>
+<li><a href="https://twitter.com/jcieplinski/status/978656988744863744">Joe Cieplinksi on Twitter</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/ipad-9.7/">The new 9.7" iPad</a><ul>
+<li><a href="https://www.logitech.com/en-us/product/crayon">Logitech Crayon</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Best bang-for-your-buck Apple products (via <a href="https://twitter.com/IMChrisOvrebo/status/978681102926741504">Chris Ovrebo</a>)</li>
+<li>Musical ATP hosts (via <a href="https://twitter.com/_ansonj/status/978334028364505090">Anson Jablinski</a>)</li>
+<li>Backpacks for 15" MBP (via <a href="https://twitter.com/Huuz22/status/978295791835140097">"The Italian Stallion" (not John)</a>)<ul>
+<li>Casey:<ul>
+<li><a href="https://www.caseyliss.com/2015/8/23/tom-bihn-cadet">Tom Bihn Cadet</a></li>
+<li><a href="https://www.tombihn.com/products/synapse-25">Tom Bihn Synapse</a></li>
+</ul>
+</li>
+<li>Marco:<ul>
+<li><a href="https://www.peakdesign.com/everyday-backpack">Peak Design Everyday Backpack 20L</a></li>
+<li><a href="https://www.sfbags.com/products/staad-laptop-backpack">Waterfield Designs Staad</a></li>
+<li><a href="https://www.briggs-riley.com/shop/function/backpacks/verb-accelerate-backpack-vp375-4">Briggs &amp; Reilly Accelerate VP375-4</a></li>
+</ul>
+</li>
+<li>John:<ul>
+<li><a href="https://www.llbean.com/llb/shop/88640?page=quad-pack-ii">L.L. Bean Quad Pack</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Packing cubes<ul>
+<li><a href="https://shop.eaglecreek.com/packit-specter-tech-compression-cube-set-sm/d/1626C5412?CategoryId=1521">Eagle Creek Specter Tech compression cubes</a></li>
+<li><a href="https://www.tombihn.com/collections/all/packing-cube">Tom Bihn packing cubes</a></li>
+<li><a href="https://www.caseyliss.com/2015/8/9/go-pack">Casey's Go Pack</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Impossible feats of packing by <a href="https://david-smith.org/">"Underscore" David Smith</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off any suitcase with code <strong>ATP</strong>.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Get $30 off the Trekz Air with code <strong>ATP30</strong>.</li>
+<li><a href="http://jamf.com/atp">JAMF Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+</ul>]]></description><itunes:subtitle>Apple's role in education, the new 9.7" iPad, best-value Apple products, walkie talkies in 2018, and impossible feats of packing.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5ab32452758d46f90e1ec51b</guid><pubDate>Fri, 23 Mar 2018 13:43:39 +0000</pubDate><title>266: Text Adventure Mode</title><itunes:title>Text Adventure Mode</itunes:title><itunes:episode>266</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp266.mp3" length="62833624" type="audio/mpeg"/><link>https://atp.fm/266</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Compound commands in cylinders</li>
+<li><code>You shut down your computer because of a problem...</code></li>
+<li><a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">GDPR</a><ul>
+<li><a href="https://gdpr-info.eu/art-4-gdpr/">Personal data</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Payment_Card_Industry_Data_Security_Standard">PCI</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Health_Insurance_Portability_and_Accountability_Act">HIPAA</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2018/03/16/apple-dynamic-keyboard-patent/">This keyboard feels <em>so real</em>, mannnnnn...</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2018-03-19/apple-is-said-to-develop-displays-to-replace-samsung-screens">Apple is developing its own display tech</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/MicroLED">MicroLED</a></li>
+<li><a href="https://marco.org/rmbp-irtest.html">Marco's image retention test</a></li>
+<li><a href="https://www.folklore.org/StoryView.py?story=Hide_Under_This_Desk.txt">Hide in this closet!</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microdrive">Microdrive</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What's the deal with gaming consoles and "bits"? (via <a href="https://twitter.com/simonejsing/status/976381683544088582">Simon Ejsing</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/SIMD">SIMD</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FLOPS">FLOPS</a></li>
+<li><a href="https://goo.gl/9AXlkY">Cell processor</a></li>
+<li><a href="https://en.wikipedia.org/wiki/The_Last_of_Us">The Last of Us</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tegra#Tegra_X1">nVidia Tegra X1</a></li>
+<li><a href="http://www.nintendolife.com/news/2017/10/nintendo_gamers_prefer_using_switch_as_a_handheld_rather_than_docked">Nintendo survey</a></li>
+</ul>
+</li>
+<li>What's the deal with sports? (via <a href="https://twitter.com/oshcfii/status/976299471586734080">Johnny O</a>)</li>
+<li>What's the deal with Instagram? (via <a href="https://twitter.com/ttonair/status/976081033312571392">TT On Air</a>)<ul>
+<li><a href="https://www.relay.fm/rd">Reconcilable Differences</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a><ul>
+<li><a href="https://www.jaguar.com/jaguar-range/i-pace/index.html">Jaguar iPace</a></li>
+<li><a href="http://www.imcdb.org/vehicle_1896-BMW-535i-E34-1991.html">Cars of Ronin</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://instabug.com/atp">Instabug</a>: A lightweight mobile SDK for comprehensive bug and crash reporting and intuitive user feedback. Use code <strong>ATP</strong> for 20% off all plans.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Cylinder syntax, GDPR, simulated keyboards, MicroLED ambitions, game-console "bits", sports fandom, and why it's hard to drop Facebook.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5aa9e5f0f9619ada928bd662</guid><pubDate>Thu, 15 Mar 2018 22:15:57 +0000</pubDate><title>265: Simon Says Volume Five</title><itunes:title>Simon Says Volume Five</itunes:title><itunes:episode>265</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp265.mp3" length="61550068" type="audio/mpeg"/><link>https://atp.fm/265</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Onboarding and <a href="https://en.wikipedia.org/wiki/General_Data_Protection_Regulation">GDPR</a><ul>
+<li><a href="https://www.smashingmagazine.com/2018/02/gdpr-for-web-developers/">GDPR for web developers</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/genehack/status/971404236490620928">Slack 💔 IRC</a></li>
+</ul>
+</li>
+<li>Alexa can <a href="https://9to5mac.com/2018/03/09/amazon-alexa-follow-up-mode-homepod-dreams-about-this-feature/">solicit follow-up</a></li>
+<li><a href="https://www.theinformation.com/articles/the-seven-year-itch-how-apples-marriage-to-siri-turned-sour">Siri drama at The Information</a><ul>
+<li><a href="https://daringfireball.net/linked/2018/03/14/the-information-siri">Daring Fireball writeup</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/platform/amp/2018/3/9/17100594/apple-patent-dirt-debris-liquid-snacks">Crumb-proof keyboards</a></li>
+<li>MacBook Air refresh?<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2018/03/09/ep-216">The Talk Show #219: Podcast Amnesia</a></li>
+</ul>
+</li>
+<li>MacBook fantasies<ul>
+<li><a href="https://www.monoprice.com/product?c_id=103&amp;cp_id=10330&amp;cs_id=1033001&amp;p_id=21823&amp;seq=1&amp;format=2">Casey's USB-C → SD Card Reader</a></li>
+<li><a href="http://www.amazon.com/dp/B01D8C6ULO/?tag=marcoorg-20">Anker USB-C charger</a></li>
+</ul>
+</li>
+<li><a href="http://developer.apple.com/wwdc">WWDC 2018 announced</a><ul>
+<li><a href="https://medium.com/altconf/guess-whos-back-c7a7517de60c">ATP Live</a></li>
+<li><a href="http://www.extras.relay.fm/blog/2018/3/13/relay-fm-live-at-wwdc-2018">Relay FM Live</a></li>
+<li><a href="http://altconf.com/">AltConf</a></li>
+<li><a href="https://layers.is/">Layers</a></li>
+<li><a href="https://twitter.com/siracusa/status/973609574488997888">John's tweet</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2018/03/apple-acquiring-magazine-subscription-service-texture/">Apple acquires Texture</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Zinio">Zinio</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Migrations between Macs (via Matt Wallin)</li>
+<li>Polite language in user interfaces (via Bill Balinor)<ul>
+<li><a href="https://support.apple.com/en-us/HT200553">Apple dialog</a></li>
+</ul>
+</li>
+<li>Video game completionists (via <a href="https://twitter.com/ChadToporski/status/970652563229040640">Chad Toporski</a>)</li>
+</ul>
+</li>
+<li>Post-show: Do working developers need to know the "fundamentals"?<ul>
+<li><a href="https://mikeash.com/pyblog/">Mike Ash</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Big_O_notation">Big O notation</a></li>
+<li><a href="http://www.pbs.org/show/crash-course-computer-science/">Crash Course Computer Science</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology. Get $30 off your Trekz Air with code <strong>ATP30</strong>.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>If you could add just one more port to your new, water-resistant laptop, what would it be?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a9f66cf652dea8c73aa8cef</guid><pubDate>Wed, 07 Mar 2018 21:49:50 +0000</pubDate><title>264: Every Building Has Bugs</title><itunes:title>Every Building Has Bugs</itunes:title><itunes:episode>264</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:35</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp264.mp3" length="54103635" type="audio/mpeg"/><link>https://atp.fm/264</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Laptop arrow keys<ul>
+<li><a href="https://twitter.com/bgkendall/status/969695852582367235">Dell's abomination</a></li>
+</ul>
+</li>
+<li>Erin and Alexa</li>
+</ul>
+</li>
+<li><a href="https://twitter.com/_inside/status/970776456577024000">Onboard all the things</a><ul>
+<li><a href="https://twitter.com/mikahsargent/status/971059642368479232">What's New in Clock</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cambrian_explosion">Cambrian explosion</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Telestrator">Telestrator</a></li>
+</ul>
+</li>
+<li><a href="https://www.sfchronicle.com/business/article/Apple-was-warned-about-glass-danger-by-Cupertino-12723598.php">Apple Park is hazardous</a></li>
+<li><code>#askatp</code><ul>
+<li>Automotive windowing strategies (via <a href="https://twitter.com/mozilla471/status/968419205404966913">Vamsi</a>)</li>
+<li>Slack on Mac vs. IRC (via <a href="https://twitter.com/PeterArchive/status/967607415171555329">Peter Gosling</a>)<ul>
+<li><a href="https://get.slack.help/hc/en-us/articles/201727913-Connect-to-Slack-over-IRC-and-XMPP">Connecting to Slack via IRC</a></li>
+<li><a href="http://colloquy.info/">Colloquy</a></li>
+<li><a href="https://www.codeux.com/textual/">Textual</a></li>
+</ul>
+</li>
+<li>The <a href="https://en.wikipedia.org/wiki/Halting_problem">Halting Problem</a> (via <a href="https://twitter.com/juanelomx/status/970522317418893312">Juan Pablo Rodríguez</a>)<ul>
+<li><a href="https://twitter.com/siracusa/status/970339344220377089">John's original tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fork_bomb">Fork bomb</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: What car would we pick for our other hosts?</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $5/month. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="https://www.hellofresh.com/">Hello Fresh</a>: A meal-kit delivery service that shops, plans, and delivers your favorite step-by-step recipes and pre- measured ingredients. Get $30 off your first week with code <strong>ATP30</strong>.</li>
+</ul>]]></description><itunes:subtitle>Join us for an out-of-box experience. Just watch out for the walls.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a97793124a6940809b7bd86</guid><pubDate>Thu, 01 Mar 2018 21:52:12 +0000</pubDate><title>263: Old Potato</title><itunes:title>Old Potato</itunes:title><itunes:episode>263</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:34:24</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp263.mp3" length="46050478" type="audio/mpeg"/><link>https://atp.fm/263</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>John is on <a href="https://nomad.menu/">NoMAD</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Active_Directory">Active Directory</a></li>
+<li><a href="https://www.jamf.com/blog/nomad-you-dont-have-to-bind-anymore/">Jamf's blog post</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Casey adopts <a href="http://www.amazon.com/dp/B06XCM9LJ4/?tag=liismo-20">a new child</a><ul>
+<li><a href="https://www.youtube.com/watch?v=hHUbLv4ThOo">Timber</a></li>
+<li><a href="https://www.youtube.com/watch?v=HMqgVXSvwGo">Fireball</a></li>
+<li><a href="https://www.anylist.com/">AnyList</a></li>
+<li><a href="http://www.nexiahome.com/">Nexia</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2017/10/06/aol-instant-messenger-shut-down/">AOL Instant Messenger</a> handles<ul>
+<li><a href="https://en.wikipedia.org/wiki/ICQ">ICQ</a></li>
+</ul>
+</li>
+<li><a href="https://www.khronos.org/vulkan/">Vulkan</a> is <a href="https://arstechnica.com/gadgets/2018/02/vulkan-is-coming-to-macos-ios-but-no-thanks-to-apple/">coming to macOS</a><ul>
+<li><a href="https://www.anandtech.com/show/12465/khronos-group-extends-vulkan-portability-with-opensource">More from AnandTech</a></li>
+<li><a href="https://goo.gl/59NffK">Metal</a></li>
+</ul>
+</li>
+<li><a href="http://www.patentlyapple.com/patently-apple/2018/02/apple-granted-a-patent-for-a-dual-display-macbook-or-second-generation-ipad-pro.html">Apple's dual-display patent</a><ul>
+<li><a href="http://atp.fm/episodes/193">ATP #193: The Escape Zone</a></li>
+</ul>
+</li>
+<li><code>#asktiff</code><ul>
+<li><a href="https://www.nintendo.com/switch/">Nintendo Switch</a></li>
+<li><a href="https://www.nintendo.com/games/detail/the-legend-of-zelda-breath-of-the-wild-explorers-edition-switch">Legend of Zelda: Breath of the Wild</a></li>
+<li><a href="http://www.altosodyssey.com/">Alto's Odyssey</a></li>
+<li><a href="https://www.apple.com/imac-pro/">iMac Pro</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Shadow_Complex">Shadow Complex</a></li>
+<li><a href="https://pusheenbox.com/">Pusheen Box</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Max out ❤️ or 🍩? (via <a href="https://twitter.com/jimmybosse/status/951142996485050371">Jimmy Bosse</a>)</li>
+<li>👾 nostalgia (via <a href="https://twitter.com/aapljack/status/888193913076424705">Brian Middleton</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Skee-Ball">Skee-Ball</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Street_Fighter_II:_The_World_Warrior">Street Fighter II</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cruis%27n_USA">Cruis'n USA</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Hydro_Thunder">Hyrdo Thunder</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Space_Invaders">Space Invaders</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pac-Man">Pac-Man</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ms._Pac-Man">Ms. Pac-Man</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Galaga">Galaga</a></li>
+<li><a href="https://goo.gl/cSbuxQ">Centipede</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Missile_Command">Missile Command</a></li>
+<li><a href="https://goo.gl/1gvYhS">Gauntlet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/The_Rundown">The Rundown</a></li>
+</ul>
+</li>
+<li>📷 for beginners (via <a href="https://twitter.com/simontaen/status/958950738511704065">Simon Tännler</a>)<ul>
+<li><a href="https://www.instagram.com/annstreetstudio">Jamie Beck</a></li>
+<li><a href="https://www.instagram.com/erinrbrooks/">Erin Brooks</a></li>
+<li><a href="https://www.flickr.com/photos/benoitpaille/">Benoit Paille</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://www.relay.fm/playingforfun">Playing for Fun</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/The_Long_Dark">The Long Dark</a></li>
+<li><a href="https://goo.gl/ziWRVN">Celeste</a></li>
+<li><a href="http://www.samandrosslikethings.com/">Sam and Ross Like Things</a></li>
+</ul>
+</li>
+</ul>
+<p>Guest-starring <a href="https://twitter.com/tiffanyarment">Tiffany Arment</a>!</p>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp100">Casper</a>: Experience Casper’s most innovative mattress in your own home for 100 nights, risk-free. Use code <strong>atp100</strong> for $100 off your Casper Wave.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 15% off your first order with code <strong>ATP17</strong>.</li>
+</ul>]]></description><itunes:subtitle>Casey's AIM handle was so much worse than yours.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a90e5ec24a69489a7bfb430</guid><pubDate>Sat, 24 Feb 2018 17:56:32 +0000</pubDate><title>262: A Clear Path to Okayness</title><itunes:title>A Clear Path to Okayness</itunes:title><itunes:episode>262</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:07</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp262.mp3" length="81579380" type="audio/mpeg"/><link>https://atp.fm/262</link><description><![CDATA[<ul>
+<li>Casey's new career of missing obvious programming solutions<ul>
+<li><a href="https://www.relay.fm/analogue/126">Analog(ue) #126: I Love You So Much; This is Infuriating</a></li>
+<li><a href="https://itunes.apple.com/us/app/gifwrapped/id782319880?mt=8&amp;at=1000l3yf">GIFwrapped</a></li>
+<li><a href="https://itunes.apple.com/us/app/slopes/id643351983?mt=8&amp;at=1000l3yf">Slopes</a></li>
+</ul>
+</li>
+<li>Siri <a href="http://bitsplitting.org/2018/02/15/the-nosiest-assistant/">all up in Daniel Jalkut's business</a></li>
+<li>Sonos and wood</li>
+<li>Who has a HomePod?<ul>
+<li><a href="http://www.amazon.com/dp/B073SQYXTW/?tag=marcoorg-20">Echo Spot</a></li>
+<li><a href="https://store.google.com/product/google_home_mini">Google Home Mini</a> </li>
+</ul>
+</li>
+<li>Doubting Apple<ul>
+<li><a href="https://slashdot.org/story/01/10/23/1816257/apple-releases-ipod">"No wireless. Less space than a Nomad. Lame."</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Creative_NOMAD">Creative Nomad</a></li>
+</ul>
+</li>
+<li><a href="https://media.giphy.com/media/26FPy3QZQqGtDcrja/giphy.gif">Siri</a><ul>
+<li><a href="https://daringfireball.net/thetalkshow/2018/02/18/ep-215">The Talk Show #215: The "Press Real Hard" Era</a></li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/amp/news/articles/2018-02-12/how-apple-plans-to-root-out-bugs-revamp-iphone-software">Apple pumps the brakes</a><ul>
+<li><a href="https://sixcolors.com/post/2018/01/apple-in-2017-the-six-colors-report-card/">Six Colors 2017 report card</a></li>
+<li><a href="https://twitter.com/stevesi/status/963142502604779520">Steven Sinofsky</a> tweets: <a href="https://twitter.com/stevesi/status/963145418237448192">28</a>, <a href="https://twitter.com/stevesi/status/963145431810224128">31</a>, <a href="https://twitter.com/stevesi/status/963145438818746369">32</a>, <a href="https://twitter.com/stevesi/status/963145488471117824">End</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Modular Mac Pro saves the Mac Mini? (via <a href="https://twitter.com/BartonMeeks/status/965975907855937537">Barton Meeks</a>)</li>
+<li>Why should one avoid monkeying with framerates? (via <a href="https://twitter.com/alastc/status/964997508983386112">Alastair Campbell</a>)<ul>
+<li><a href="http://makemkv.com/">MakeMKV</a></li>
+</ul>
+</li>
+<li>How do you preserve ebooks? (via <a href="https://twitter.com/bdesham/status/963847138026209281">Benjamin Esham</a>)<ul>
+<li><a href="https://calibre-ebook.com/">Calibre</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Post-show <a href="http://neutral.fm/">Neutral</a>: Car buying challenge<ul>
+<li><a href="https://www.bmwusa.com/vehicles/m-models/m5.html">BMW M5</a></li>
+<li><a href="https://www.audiusa.com/models/audi-a7">Audi A7</a></li>
+<li><a href="https://www.bmwusa.com/vehicles/m-models/m2.html">BMW M2</a></li>
+<li><a href="https://www.porsche.com/usa/models/718/718-cayman-models/">Porsche Cayman</a></li>
+<li><a href="https://www.bmwusa.com/vehicles/2-series/coupe.html">BMW M235i</a></li>
+<li><a href="https://www.porsche.com/usa/models/panamera/">Porsche Panamera</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Porsche_Mission_E">Porsche Mission E</a></li>
+<li><a href="https://www.tesla.com/supercharger">Tesla Supercharger</a></li>
+<li><a href="https://www.mazdausa.com/vehicles/mazda6">Mazda6</a></li>
+<li><a href="http://auto.ferrari.com/en_EN/sports-cars-models/car-range/ferrari-488-gtb/">Ferrari 488</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ferrari_458">Ferrari 458</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ferrari_F430">Ferrari F430</a></li>
+<li><a href="https://www.mbusa.com/mercedes/vehicles/model/class-E/model-E63W4S">AMG E 63</a></li>
+<li><a href="http://atp.fm/episodes/231">ATP #231: I Am Not a Salad Power User</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://simplecontacts.com/atp">Simple Contacts</a>: Renew your contact-lens prescription with our online vision test, and save $30 on your contacts with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>One of us finally got a HomePod, another has some thoughts on Siri, and the third is waffling on the purchase as usual.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a8509178165f5ac7ea36545</guid><pubDate>Fri, 16 Feb 2018 16:38:54 +0000</pubDate><title>261: Seven-Dollar Plastic Garbage</title><itunes:title>Seven-Dollar Plastic Garbage</itunes:title><itunes:episode>261</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:48:29</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp261.mp3" length="52195683" type="audio/mpeg"/><link>https://atp.fm/261</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://www.shakeshack.com/">Shake Shack</a>, <a href="http://www.fiveguys.com/">Five Guys</a>, and <a href="http://www.cookout.com/">Cookout</a></li>
+<li>Follow-up:<ul>
+<li>Battery feedback: <a href="https://twitter.com/carnigian/status/961898490568761344">1</a>, <a href="https://twitter.com/enguy/status/961945788896210944">2</a>, <a href="https://twitter.com/JackL66/status/961865566226071552">3</a></li>
+<li>Casey's boneheaded mistake</li>
+<li>Marco's grocery-list apps<ul>
+<li><a href="https://www.realmacsoftware.com/">Clear</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://thewirecutter.com/reviews/apple-homepod/#homepods-flaws-but-not-dealbreakers-homepod-vs-echo-vs-google-home-max-vs-sonos-one">HomePods put a ring on it</a><ul>
+<li><a href="https://support.apple.com/en-us/HT208435">Apple: Cleaning and taking care of HomePod</a></li>
+<li><a href="https://www.macintosh.fm/episodes/18">Welcome to Macintosh #18: If It's Broke, Don't Fix It</a></li>
+<li><a href="https://www.reddit.com/r/audiophile/comments/7wwtqy/apple_homepod_the_audiophile_perspective/?sort=top&amp;sh=c370e646&amp;st=JDJKCF67">Reddit audiophile review</a></li>
+<li><a href="http://pogueman.tumblr.com/post/170722337727/head-to-head-does-the-apple-homepod-really-sound">David Pogue's blind test</a></li>
+</ul>
+</li>
+<li><a href="https://www.waze.com/">Waze</a><ul>
+<li><a href="https://www.apple.com/ios/carplay/">CarPlay</a></li>
+<li><a href="http://www.valentine1.com">Valentine 1</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Are advanced safety features in cars comparable across marques?</li>
+<li>What's the deal with <a href="http://www.leica-camera.com/">Leica</a> cameras?<ul>
+<li><a href="https://marco.org/2012/12/28/leica-m9">Marco's M9 review</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show: Parenting </li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off any suitcase with code <strong>ATP</strong>.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $10/month. Use code <strong>atp2018</strong> for a $20 credit.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>ATP</strong> to make overnight shipping free.</li>
+</ul>]]></description><itunes:subtitle>Sound quality, HomePod rings, hamburgers, parenting, Waze, and Leica. No controversy here.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a7bd004f9619af8947147a3</guid><pubDate>Fri, 09 Feb 2018 01:01:41 +0000</pubDate><title>260: The Todoyist Problem</title><itunes:title>The Todoyist Problem</itunes:title><itunes:episode>260</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp260.mp3" length="55885907" type="audio/mpeg"/><link>https://atp.fm/260</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Is throttling old phones <em>really</em> better?</li>
+<li>Does anyone other than tech bloggers give a 💩 about smart speakers?</li>
+<li>Raspberri Pi music player update<ul>
+<li><a href="http://brendandawes.com/projects/plasticplayer2">Plastic Player</a></li>
+<li><a href="https://www.youtube.com/watch?v=3dgnD93pwX0">Mini NES Console</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Apple's emoji is theirs and <em>you can't have it</em>.<ul>
+<li><a href="https://www.relay.fm/connected/179">Connected #179: The Tiny Head Pandemic</a></li>
+<li><a href="https://twitter.com/Sam0711er/status/959535639174746112">Sam Eckert gets a phone call from App Review</a></li>
+<li><a href="https://twitter.com/Sam0711er/status/961312320537415681">Bittracker later gets approved with emoji</a></li>
+</ul>
+</li>
+<li>Marco's to-do app spirit walk<ul>
+<li><a href="https://www.taskpaper.com/">Taskpaper</a></li>
+<li><a href="http://www.dueapp.com/">Due</a></li>
+<li><a href="https://www.anylistapp.com/">AnyList</a></li>
+<li><a href="http://realmacsoftware.com/clear/">Clear</a></li>
+<li><a href="https://todoist.com/">Todoist</a></li>
+<li><a href="https://www.omnigroup.com/omnifocus/">Omnifocus</a></li>
+<li><a href="https://culturedcode.com/things/">Things</a></li>
+<li><a href="https://flexibits.com/fantastical">Fantastical</a></li>
+<li><a href="http://www.folklore.org/StoryView.py?story=Calculator_Construction_Set.txt">Calculator Construction Set</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Does Casey miss C#/.NET?</li>
+<li>Single vs. multithreading<ul>
+<li><a href="https://en.wikipedia.org/wiki/Embarrassingly_parallel">Embarrassingly parallel</a></li>
+</ul>
+</li>
+<li>Meditation</li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li>Baby update<ul>
+<li><a href="https://www.titosvodka.com/">Tito's Homemade Vodka</a></li>
+<li><a href="https://www.nbc.com/this-is-us">This is Us</a></li>
+<li><a href="https://twitter.com/simoncholland/status/961070472078217216">Funny tweet about <em>This Is Us</em></a></li>
+</ul>
+</li>
+<li>Casey's Car Corner</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://casper.com/savings">Casper</a>: Take advantage of the limited-time President's Day offer for the first time ever!</li>
+<li><a href="https://www.hellofresh.com/">Hello Fresh</a>: A meal-kit delivery service that shops, plans, and delivers your favorite step-by-step recipes and pre-measured ingredients. Get $30 off your first week with code <strong>ATP30</strong>.</li>
+</ul>]]></description><itunes:subtitle>App rejections for emoji, choosing a to-do app, and boosting spirits with an occasional spirit.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a7299f8c8302573ec2a9d16</guid><pubDate>Thu, 01 Feb 2018 20:34:06 +0000</pubDate><title>259: I Hired Myself</title><itunes:title>I Hired Myself</itunes:title><itunes:episode>259</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp259.mp3" length="63323086" type="audio/mpeg"/><link>https://atp.fm/259</link><description><![CDATA[<ul>
+<li>Who ordered a <a href="https://www.apple.com/homepod/">HomePod</a>?<ul>
+<li><a href="https://www.relay.fm/query/23">Query #23: Hands-on with the HomePod</a></li>
+<li><a href="https://www.macstories.net/stories/ipod-hi-fi/">iPod Hi-Fi</a></li>
+<li><a href="https://www.imore.com/homepod-faq">iMore HomePod FAQ</a></li>
+</ul>
+</li>
+<li>Casey orders <a href="http://www.amazon.com/dp/B00MYTSN18/?tag=liismo-20">an Ethernet adapter</a><ul>
+<li><a href="http://www.amazon.com/dp/B00XU6PM68/?tag=liismo-20">USB-C Ethernet Adapter</a></li>
+<li><a href="https://www.monoprice.com/product?c_id=103&amp;cp_id=10330&amp;cs_id=1033001&amp;p_id=15758&amp;seq=1&amp;format=2">USB-C HDMI Dongle</a></li>
+<li><a href="https://www.amazon.com/gp/help/customer/display.html?nodeId=201530900">Amazon Locker</a></li>
+<li><a href="http://www.amazon.com/dp/B00YUU3KC6/?tag=liismo-20">Forthcoming replacement</a></li>
+</ul>
+</li>
+<li>Casey's Mac "app"<ul>
+<li><a href="https://www.caseyliss.com/2016/5/29/photo-management">Casey's photo management workflow</a></li>
+<li><a href="http://www.leancrew.com/all-this/2013/10/photo-management-via-the-finder/">Dr. Drang's photo scripts</a></li>
+<li><a href="https://gist.github.com/cliss/6854904">Casey's scripts</a></li>
+<li><a href="https://developer.apple.com/documentation/foundation/operationqueue"><code>OperationQueue</code></a></li>
+</ul>
+</li>
+<li>Marco's secret project<ul>
+<li><a href="http://atp.fm/episodes/231">ATP #231: I Am Not a Salad Power User</a></li>
+<li><a href="https://www.arduino.cc/">Arduino</a></li>
+<li><a href="https://www.raspberrypi.org/">Raspberry Pi</a><ul>
+<li><a href="https://www.raspbian.org/">Raspbian</a></li>
+</ul>
+</li>
+<li><a href="https://www.musicpd.org">MPD</a></li>
+<li><a href="https://www.hifiberry.com/">HiFiBerry</a></li>
+<li><a href="https://shop.turntouch.com/">Turn Touch</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Netcat"><code>netcat</code></a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Long-term file storage<ul>
+<li><a href="http://www.mdisc.com/">M-Disc</a></li>
+</ul>
+</li>
+<li>AAA games for iOS/tvOS (via <a href="https://twitter.com/lewiz/status/951726896269606913">Lewis Thompson</a>)</li>
+</ul>
+</li>
+<li>Post-show: Casey on Cars Episode 2: <a href="https://www.alfaromeousa.com/cars/alfa-romeo-stelvio-ti">Alfa Romeo Stelvio Ti</a><ul>
+<li><a href="https://www.caseyliss.com/2018/1/30/alfa-romeo-stelvio">Blog post</a></li>
+<li><a href="https://www.youtube.com/watch?v=FtQD8SdVV2o">Video</a></li>
+<li><a href="https://www.relay.fm/analogue/125">Analog #125</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Get 10% off any domain name from Hover — extensions for anything you’re passionate about.</li>
+</ul>]]></description><itunes:subtitle>Casey makes an app and tells a story, Marco makes a gadget to reduce convenience, and all three of us fail to perform our basic duty as Apple podcasters.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a695479ec212d357d7ab3fc</guid><pubDate>Thu, 25 Jan 2018 21:52:51 +0000</pubDate><title>258: Non-Beta Data</title><itunes:title>Non-Beta Data</itunes:title><itunes:episode>258</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:35:30</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp258.mp3" length="45966359" type="audio/mpeg"/><link>https://atp.fm/258</link><description><![CDATA[<ul>
+<li>Follow up: Battery replacement reticence</li>
+<li>iOS 11.3 battery health messaging</li>
+<li><a href="https://daringfireball.net/linked/2018/01/23/macos-spectre-and-kernel-fixes">macOS Spectre and Meltdown fixes go back to El Capitan</a></li>
+<li><a href="https://daringfireball.net/linked/2018/01/23/homepod-shipping">HomePod preorders and ship date announced</a><ul>
+<li><a href="https://twitter.com/_inside/status/955843877147238401/photo/1">Some interaction tidbits</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/newsroom/2018/01/apple-previews-ios-11-3/">iOS 11.3 preview</a><ul>
+<li><a href="https://www.youtube.com/watch?v=2HgYkXFIyqo">Bohemian Rhapsody Animoji Karaoke</a></li>
+<li><a href="https://twitter.com/jsnell/status/956232621477937152">Jason Snell's wishful thinking</a></li>
+</ul>
+</li>
+<li>tvOS 11.3</li>
+<li>macOS 10.13.4 and the end of 32-bit</li>
+<li><code>#askatp</code><ul>
+<li>Unifying 3D Touch and long presses (via <a href="https://twitter.com/tvaziri/status/955610276656594945">Todd Vaziri</a>)</li>
+<li>What is AirPlay 2? (via <a href="https://twitter.com/AlexKDNT/status/956198655173775366">Alex</a>)<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2017/509/">WWDC 2017 Session</a></li>
+</ul>
+</li>
+<li>John's spines (via <a href="https://twitter.com/apenning_/status/954898320664674304">Andrew Lymn-Penning</a>)</li>
+</ul>
+</li>
+<li>Post-show: <a href="https://www.cnet.com/roadshow/news/bmw-carplay-fee-highway-robbery/">BMW are money-grubbing jerks</a><ul>
+<li><a href="https://daringfireball.net/linked/2018/01/19/bmw-shitheads">Gruber's clarification</a></li>
+<li><a href="https://www.apple.com/ios/carplay/available-models/">CarPlay availability</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://srcinc.com/atp">SRC, Inc</a>: SRC is hiring digital, software, systems and test engineers. Explore your career options today.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Get $50 toward select mattresses with code ATP. Terms and conditions apply.</li>
+</ul>]]></description><itunes:subtitle>HomePod's imminent release and the previews of iOS 11.3 and macOS 10.13.4.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a601944652deae65fabc1b0</guid><pubDate>Thu, 18 Jan 2018 19:58:28 +0000</pubDate><title>257: Smell the Wind</title><itunes:title>Smell the Wind</itunes:title><itunes:episode>257</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:35:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp257.mp3" length="46004835" type="audio/mpeg"/><link>https://atp.fm/257</link><description><![CDATA[<ul>
+<li>Casey and Erin <a href="https://www.caseyliss.com/2018/1/14/mikaela">had a baby!</a><ul>
+<li>John's <a href="http://www.gocomics.com/fminus/2006/12/07">first</a> and <a href="http://www.harrybliss.com/store/six-hours-tuition.html">second</a> dad comics</li>
+</ul>
+</li>
+<li><a href="https://www.caseyliss.com/2016/5/29/photo-management">Casey's photo management workflow</a></li>
+<li><a href="https://everymac.com/systems/apple/powermac/specs/powermac_5500_275.html">Follow-up: Europe's black Mac</a></li>
+<li><a href="http://pcalc.com/">PCalc</a> About screen, <a href="https://twitter.com/jamesthomson/status/951786393235271680">revver of fans</a></li>
+<li><a href="https://arstechnica.com/gadgets/2017/12/hp-asus-announce-first-windows-10-arm-pcs-20-hour-battery-life-gigabit-lte/">ARM Windows PCs</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Windows_RT">Windows RT</a></li>
+<li><a href="https://www.apple.com/macbook/">MacBook "Adorable"</a></li>
+<li><a href="https://www.relay.fm/upgrade/168">Upgrade #168: Hail Hydrant</a></li>
+<li><a href="https://twitter.com/marcoarment/status/952992299235110913">Marco's observational tweet about iPads</a></li>
+<li><a href="https://www.tripmode.ch">TripMode</a></li>
+<li><a href="https://en.wikipedia.org/wiki/MessagePad">MessagePad</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=3lEjuU-XFHg">Windows 10 Sets</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Multiple_document_interface">MDI</a></li>
+<li><a href="https://arstechnica.com/gadgets/2010/06/copland-2010-revisited/">Copland 2010</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_A11">Apple Bionic</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Google_Fuchsia">Google Fushcia</a></li>
+<li><a href="http://www.macwizard.com/errors.html">Old school error numbers</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Non-Pro iMac upgrade cadence (via <a href="https://twitter.com/sferik/status/953396809614876672">Erik Berlin</a>)</li>
+<li><a href="https://i.ebayimg.com/thumbs/images/g/mdwAAOSwR2RaK-7R/s-l225.jpg">John's 🧀 grater</a> (via <a href="https://twitter.com/monotypical/status/952149182109962240">Andy Hume</a>)</li>
+<li>Messages in iCloud (via <a href="https://twitter.com/astrolotz/status/948647610977603584">Kurt</a>)</li>
+</ul>
+</li>
+<li>Post-show: A gift for Casey</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://hullopillow.com/atp">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="http://rxbar.com/atp">RXBAR</a>: Whole-food protein bars. We tell you what’s on the inside on the outside. Use code <strong>ATP</strong> for 25% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Baby Liss II, photo management scripts, what ARM PCs and Windows Sets could mean for the evolution of the Mac, and a special gift for Casey.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a5593c153450a0fe1b2c6b5</guid><pubDate>Thu, 11 Jan 2018 15:55:09 +0000</pubDate><title>256: A Heroic Threshold for Pain</title><itunes:title>A Heroic Threshold for Pain</itunes:title><itunes:episode>256</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp256.mp3" length="58334132" type="audio/mpeg"/><link>https://atp.fm/256</link><description><![CDATA[<ul>
+<li><a href="https://support.apple.com/en-us/HT208394">Apple's Meltdown/Spectre statement</a><ul>
+<li><a href="https://webkit.org/blog/8048/what-spectre-and-meltdown-mean-for-webkit/">How it affects WebKit</a></li>
+<li><a href="https://www.raspberrypi.org/magpi/raspberry-pi-spectre-meltdown/">Raspberry Pi's writeup</a></li>
+<li><a href="https://reverse.put.as/2018/01/07/measuring-osx-meltdown-patches-performance/">Measuring performance ∆</a></li>
+</ul>
+</li>
+<li>iMac Pro peripherals on eBay<ul>
+<li><a href="https://www.ebay.com/itm/253340842253?ul_noapp=true">Full set: $1080</a></li>
+<li><a href="https://www.ebay.com/itm/173066006123?ul_noapp=true">Trackpad: $310+</a></li>
+<li><a href="https://www.ebay.com/itm/173066006123?ul_noapp=true">Magic Mouse: $295+</a></li>
+<li><a href="https://www.imore.com/1993s-macintosh-tv-worst-both-worlds">Macintosh TV</a></li>
+</ul>
+</li>
+<li>Follow-up: <a href="http://www.arcticsilver.com/">Arctic Silver</a></li>
+<li>Follow-up: Battery replacements and solving customer problems</li>
+<li>Follow-up: <a href="https://twitter.com/_inside/status/948634491534368768">iPhone X screen burn-in</a></li>
+<li>Marco's iMac Pro, one week in</li>
+<li><a href="https://www.amazon.com/dp/B076TGDHPT/?tag=marcoorg-20">Sony α7R III</a> review<ul>
+<li><a href="https://www.dpreview.com/reviews/sony-a7r-mark-iii-review">DP Review on the α7R III</a></li>
+<li><a href="https://www.usa.canon.com/internet/portal/us/home/products/details/cameras/dslr/eos-5d-mark-iv">Canon 5D Mark IV</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Would apple delay the Mac Pro for a new CPU architecture? (via <a href="https://twitter.com/clintcoady/status/950014469140250625">Clint</a>)</li>
+<li>What does <code>root</code> do that <code>sudo</code> doesn't? (via <a href="https://twitter.com/brysonholland/status/943930977650229248">Bryson</a>)</li>
+<li>Sonos One w/ Alexa? (via <a href="https://twitter.com/jimandtonic/status/949826409219936261">Jim Andeway</a>)</li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li>Baby baby baby</li>
+<li><a href="https://www.youtube.com/watch?v=hJOhfC7rz7U">Tyco Typhoon Hovercraft</a></li>
+<li><a href="https://www.youtube.com/watch?v=dyzn5lWsG2k">Typhoon over water</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $10/month. Use code <strong>atp2018</strong> for a $10 credit.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 15% off your first order with code <strong>ATP17</strong>.</li>
+</ul>]]></description><itunes:subtitle>An exploration of all seventeen of Casey's diversion kryptonites.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a4db20753450aa56e22e7ec</guid><pubDate>Thu, 04 Jan 2018 22:35:42 +0000</pubDate><title>255: The Thermal Paste Lottery</title><itunes:title>The Thermal Paste Lottery</itunes:title><itunes:episode>255</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp255.mp3" length="60246324" type="audio/mpeg"/><link>https://atp.fm/255</link><description><![CDATA[<ul>
+<li><a href="https://www.apple.com/iphone-battery-and-performance/">Apple's battery slowdown PR</a><ul>
+<li><a href="https://twitter.com/reneritchie/status/947118261778366464">Accelerated rollout</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2017/12/30/ep-210">The Talk Show #210: Australian Battery Scam</a></li>
+<li>Phone throttling isn't always the issue</li>
+</ul>
+</li>
+<li><a href="http://appleinsider.com/articles/17/12/29/video-does-the-imac-pro-get-too-hot-when-under-load">iMac Pro thermal throttling</a></li>
+<li>Marco's iMac Pro<ul>
+<li><a href="http://www.amazon.com/dp/B00CYX54C0/?tag=marcoorg-20">Microsoft Sculpt Keyboard</a></li>
+</ul>
+</li>
+<li><a href="https://googleprojectzero.blogspot.com/2018/01/reading-privileged-memory-with-side.html">Intel CPU exploit</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Speculative_execution">Speculative execution</a></li>
+<li><a href="https://spectreattack.com/">Exploits seem to have marketing pages now</a></li>
+<li><a href="https://twitter.com/aionescu/status/948609809540046849/photo/1">macOS fix</a></li>
+<li><a href="https://security.googleblog.com/2018/01/todays-cpu-vulnerability-what-you-need.html">Google's simplified summary</a></li>
+<li><a href="https://mjtsai.com/blog/2018/01/03/intel-cpu-design-flaw-necessitates-kernel-page-table-isolation/">Michael Tsai's summary</a></li>
+<li><a href="https://www.wired.com/story/critical-intel-flaw-breaks-basic-security-for-most-computers/">Wired summary</a></li>
+<li><a href="https://twitter.com/rhhackett/status/948654425824022530/photo/1">ARM's statement</a></li>
+<li><a href="http://fortune.com/2018/01/03/intel-kernel-security-flaw-amd/">Fortune's summary</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Heartbleed">Heartbleed</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>What if we <strong>had</strong> to use iOS? (via <a href="https://twitter.com/aaronbushnell/status/888160412402937857">Aaron Bushnell</a>)</li>
+<li>What if we <strong>had</strong> to use Windows? (via <a href="https://twitter.com/hackmodford/status/888161578717151232">Brandon Butler</a>)<ul>
+<li><a href="https://www.audacityteam.org/">Audacity</a></li>
+</ul>
+</li>
+<li>What if we <strong>didn't have</strong> advertisers? (via <a href="https://twitter.com/m4rkw/status/943568691509235712">Mark W</a>)</li>
+</ul>
+</li>
+<li>Post-show: Marco stages an intervention for Casey<ul>
+<li><a href="https://www.relay.fm/freeagents/34">Free Agents #34: I Think I Just Got Fired</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://flightlogger.co/">FlightLogger</a>: Real-time flight tracking for worry-free travels. Available for iOS and Android.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Start sleeping ahead of the curve. Get $50 toward select mattresses with code <strong>ATP</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>CPU exploits, iMac Pro impressions, iPhone battery PR, and a special intervention for Casey.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a3b3c7e9140b77c67c46af4</guid><pubDate>Tue, 26 Dec 2017 13:16:07 +0000</pubDate><title>254: Hot Box With Knobs</title><itunes:title>Hot Box With Knobs</itunes:title><itunes:episode>254</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp254.mp3" length="69689266" type="audio/mpeg"/><link>https://atp.fm/254</link><description><![CDATA[<ul>
+<li>Follow up: <ul>
+<li><a href="https://support.apple.com/en-us/HT208330">Secure Boot KBase Article</a><ul>
+<li><a href="https://twitter.com/cabel/status/940669641684262912/photo/1">Cabel's screenshot</a></li>
+</ul>
+</li>
+<li><a href="https://blackflag.jalopnik.com/">Women car journalists</a><ul>
+<li>From last week: <a href="http://www.cfawp.com/">Cars from a Woman's Perspective</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Attention detection and Apple Watch (via <a href="https://twitter.com/ScottIsLoud/status/942957443029585921">Scott Lougheed</a>)</li>
+<li>RAID and SSDs and Thunderbolt (via <a href="https://twitter.com/mvk/status/943520457432621056">Max Velasco Knott</a>)<ul>
+<li><a href="https://eshop.macsales.com/item/OWC/TB4MJB0GB/">Tiff's OWC ThunderBay 4 Mini</a><ul>
+<li><a href="https://www.amazon.com/dp/B009NQMESS/?tag=marcoorg-20">Noctua quiet fan</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Soundproofing in our in-home studios (via <a href="https://twitter.com/rogersjoshuad/status/943426049563643904">Joshua Rogers</a>)<ul>
+<li><a href="http://www.amazon.com/dp/B06XCWKZHD/?tag=liismo-20">Casey's acoustic panels</a></li>
+<li><a href="http://www.amazon.com/dp/B003OXKO10/?tag=marcoorg-20">Marco's SoundTrax Pro acoustic foam</a> and <a href="https://www.amazon.com/dp/B00WRQ5RVC/?tag=marcoorg-20">tape</a></li>
+<li><a href="https://marco.org/podcasting-microphones">Marco's Podcasting Microphones Mega-Review</a></li>
+<li><a href="https://www.caseyliss.com/2014/11/22/how-i-make-podcasts">Casey's [past] blanket</a></li>
+<li><a href="http://blog.shure.com/multi-pattern-microphones-what-where-and-how/">Microphone pickup patterns</a> (<a href="https://en.wikipedia.org/wiki/Microphone#Polar_patterns">more at Wikipedia</a>)</li>
+<li><a href="http://www.amazon.com/dp/B0002BACBO/?tag=marcoorg-20">Marco's microphone recommendation</a> (87A, not 87C!)</li>
+<li><a href="http://www.amazon.com/dp/B0002BACB4/?tag=liismo-20">Casey's microphone</a></li>
+<li><a href="http://www.amazon.com/dp/B001U1IVBI/?tag=liismo-20">John's microphone</a></li>
+<li><a href="http://www.meonlylouder.com/">Marcus dePaula</a></li>
+<li><a href="http://www.sounddevices.com/products/portable-audio-tools/usbpre2">Sound Devices USBPre 2</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.geekbench.com/blog/2017/12/iphone-performance-and-battery-age/">iPhone Performance and Battery Age</a><ul>
+<li><a href="https://www.reddit.com/r/iphone/comments/7inu45/psa_iphone_slow_try_replacing_your_battery/">Reddit post</a></li>
+<li><a href="https://techcrunch.com/2017/12/20/apple-addresses-why-people-are-saying-their-iphones-with-older-batteries-are-running-slower/">Panzarino's write-up</a></li>
+<li><a href="https://daringfireball.net/2017/12/iphone_battery_throttling">Gruber's response</a></li>
+<li><a href="https://twitter.com/reneritchie/status/943563799205879809">Apple's statement</a></li>
+<li><a href="https://twitter.com/marcoarment/status/943574888106942464">Marco's tweet</a></li>
+<li><a href="https://www.youtube.com/watch?feature=youtu.be&amp;v=6TWbXV5xeYE&amp;app=desktop">Is Apple Ruining Your Mac's Performance?</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Thermoelectric_cooling">Peltier plate</a> for <a href="https://www.reddit.com/r/hardware/comments/206tui/why_arent_peltier_cpugpu_coolers_more_popular/">overclocking</a></li>
+</ul>
+</li>
+<li><a href="https://www.bloomberg.com/news/articles/2017-12-20/apple-is-said-to-have-plan-to-combine-iphone-ipad-and-mac-apps">iOS and macOS apps as one?</a><ul>
+<li><a href="https://www.relay.fm/radar/111">Under the Radar #111: Universal Mac Apps?</a></li>
+<li><a href="https://twitter.com/siracusa/status/943510387923865600">John's tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Universal_Windows_Platform">UWP</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Functional_reactive_programming">Functional reactive programming</a></li>
+<li><a href="http://atp.fm/223">ATP #223: Throw the Fork Away</a></li>
+<li><a href="http://chameleonproject.org/">Chameleon</a></li>
+</ul>
+</li>
+<li>Post-show: <a href="https://www.amazon.com/TheGrandTour">The Grand Tour</a> season 2 review (so far)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Sabine_Schmitz">Sabine Schmitz</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: Start sleeping ahead of the curve. Get $50 toward any mattress purchase with code <strong>ATP</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.hellofresh.com/">Hello Fresh</a>: A meal-kit delivery service so you can just cook, eat, and enjoy. Get $30 off your first week with code <strong>ATP30</strong>.</li>
+</ul>]]></description><itunes:subtitle>iPhone slowdowns with old batteries, a unified iOS/macOS UI framework, and padded walls.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a3892ad9140b787273bba92</guid><pubDate>Wed, 20 Dec 2017 15:18:58 +0000</pubDate><title>253: I Think I Ordered One</title><itunes:title>I Think I Ordered One</itunes:title><itunes:episode>253</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp253.mp3" length="60524102" type="audio/mpeg"/><link>https://atp.fm/253</link><description><![CDATA[<ul>
+<li>Follow up: <ul>
+<li><a href="https://www.jeep.com/wrangler-jk.html">Jeep Wranglers</a></li>
+<li>iMac Pro RAM upgrades</li>
+<li>iMac Pro input devices</li>
+<li><a href="https://www.apple.com/newsroom/2017/12/imac-pro-the-most-powerful-mac-ever-available-today/">Mac Pro will be "upgradeable"</a></li>
+<li>iMac Pro orders</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Entry-level open-backed headphones (via JD Lewin)<ul>
+<li><a href="http://www.schiit.com/products/fulla-2">Schiit Fulla 2</a></li>
+<li><a href="https://www.amazon.com/dp/B00KYTNU9U/?tag=marcoorg-20">Grado SR60e</a>: $80, but uncomfortable</li>
+<li><a href="https://www.amazon.com/dp/B001B1QENY/?tag=marcoorg-20">Beyerdynamic DT 880 Pro</a>: $225, for treble lovers (250-ohm recommended)</li>
+<li><a href="https://www.amazon.com/dp/B00018MSNI/?tag=marcoorg-20">Sennheiser HD 650</a>: $300, for treble haters</li>
+</ul>
+</li>
+<li>Car magazines for kids (via <a href="https://twitter.com/jer051/status/941884716072005632">Jeremy Nachman</a>)<ul>
+<li><a href="https://www.youtube.com/user/MotorTrend">Motor Trend on YouTube</a></li>
+<li><a href="https://www.caranddriver.com/">Car and Driver</a><ul>
+<li><a href="https://twitter.com/siracusa/status/693823019857383424">John's observational tweet</a></li>
+</ul>
+</li>
+<li><a href="http://www.cfawp.com">Cars from a Woman's Perspective</a></li>
+</ul>
+</li>
+<li>Do we <em>really</em> need ECC RAM? (via <a href="https://twitter.com/japhisu/status/941712583643615232">japhisu</a>)<ul>
+<li><a href="https://research.google.com/pubs/pub35162.html">Google study</a></li>
+<li><a href="http://www.scientificamerican.com/article.cfm?id=solar-storms-fast-facts">IBM study</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>NVIDIA vs. AMD GPUs in Macs<ul>
+<li><a href="https://en.wikipedia.org/wiki/CUDA">CUDA</a></li>
+</ul>
+</li>
+<li>More about the iMac Pro<ul>
+<li><a href="https://en.wikipedia.org/wiki/Skylake_%28microarchitecture%29#Workstation_processors">Table of Skylake Xeon workstation processors</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_mobile_application_processors#Apple_T2">T2</a><ul>
+<li><a href="https://twitter.com/cabel/status/940669641684262912/photo/1">Startup Security Utility</a></li>
+<li><a href="https://help.apple.com/configurator/mac/2.6/index.html?localePath=en.lproj#/apdebea5be51">Recovery procedure</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Post-show <a href="https://relay.fm/analog">Analog(ue)</a>: Marco reflects on his interesting phone call<ul>
+<li><a href="https://twitter.com/atpreferences/status/941759507306127360">John's autobiography</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+</ul>]]></description><itunes:subtitle>NVIDIA in Macs, fancy headphones, and a lot more about the iMac Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a31ff380d9297f7991bdc57</guid><pubDate>Thu, 14 Dec 2017 21:49:19 +0000</pubDate><title>252: Any Day Could Be Mac Pro Day</title><itunes:title>Any Day Could Be Mac Pro Day</itunes:title><itunes:episode>252</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp252.mp3" length="56324493" type="audio/mpeg"/><link>https://atp.fm/252</link><description><![CDATA[<ul>
+<li>Pre-show Neutral: Casey has car problems</li>
+<li>Follow up: <a href="https://www.apple.com/shop/product/MQ052LL/A/magic-keyboard-with-numeric-keypad-us-english">Magic Keyboard with Numeric Keypad</a> is <a href="https://mjtsai.com/blog/2017/12/07/the-magic-keyboard-with-numeric-keypad-is-apparently-bendy/">apparently bendy</a></li>
+<li><code>#askatp</code><ul>
+<li>Holiday gift ideas<ul>
+<li><a href="https://www.apple.com/shop/product/HL812/mophie-wireless-charging-base?fnode=42">Mophie Qi charger</a></li>
+<li><a href="https://www.caseyliss.com/2015/12/2/holiday-gifts-2015">Casey's 2015 ideas</a></li>
+<li><a href="https://www.caseyliss.com/2016/11/17/holiday-gift-guide">Casey's 2016 ideas</a></li>
+<li><a href="https://www.amazon.com/dp/B01418RAZY/?tag=marcoorg-20">Fenix LD22 flashlight</a></li>
+<li><a href="https://grovemade.com/journal/wireless-charging-pad/">Grovemade Qi charger</a></li>
+<li><a href="https://www.briggs-riley.com/shop/function/backpacks">Briggs &amp; Riley backpack</a></li>
+<li><a href="https://www.amazon.com/dp/B01077GFV8/?tag=marcoorg-20">Zojirushi SM-YAE48 travel mug</a></li>
+<li><a href="http://www.thermoworks.com/Thermapen-Mk4">ThermoWorks Thermapen Mk4</a></li>
+<li><a href="https://www.caseyliss.com/2015/8/9/go-pack">Casey's Go Pack</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/fiorendino/status/931714521697222656">Code nostalgia</a></li>
+<li>A not-so-brief interlude about Overcast and feed redirects</li>
+<li><a href="https://twitter.com/StefanKozlowski/status/931386801503301632"><code>sudo</code></a></li>
+</ul>
+</li>
+<li>John's black screen of death<ul>
+<li><a href="http://atp.fm/episodes/96">ATP #96: The Windows of Siracusa County</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/imac-pro/">iMac Pro</a><ul>
+<li><a href="https://www.youtube.com/watch?v=h-h5Mhlt6O0">MKBHD's review</a></li>
+<li><a href="https://twitter.com/barefeats/status/940805162008023040">Barefeats' tweet</a></li>
+<li><a href="https://www.youtube.com/watch?v=3Z2ZSie7zeU&amp;feature=youtu.be">Cheesegrater upgrade</a></li>
+</ul>
+</li>
+<li>Post-show: More iMac Pro<ul>
+<li><a href="http://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">The Case for a True Mac Pro Successor</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 15% off your first order with code <strong>ATP17</strong>.</li>
+</ul>]]></description><itunes:subtitle>In case you haven't heard yet, the iMac Pro was released.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a28c39771c10b4cf9c38900</guid><pubDate>Thu, 07 Dec 2017 21:45:17 +0000</pubDate><title>251: Uninstall Your Water Reminder App!</title><itunes:title>Uninstall Your Water Reminder App!</itunes:title><itunes:episode>251</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:18:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp251.mp3" length="67111725" type="audio/mpeg"/><link>https://atp.fm/251</link><description><![CDATA[<ul>
+<li>Casey argues for day/month/year instead of year/month/day (<a href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601</a>)<ul>
+<li><a href="http://apt46.net/wp-content/upload/ucOQh.jpg">Celsius is stupid for ambient air temperature</a></li>
+</ul>
+</li>
+<li>Follow up:<ul>
+<li>Root bug post was in the dev forums, not the support forums.</li>
+<li>Reporting to <code>product-security@apple.com</code></li>
+<li>XProtect and <a href="https://digitasecurity.com/xplorer/">Xplorer</a><ul>
+<li><a href="https://github.com/rtrouton/rtrouton_scripts/blob/master/rtrouton_scripts/report_latest_xprotect_update/report%20latest_xprotect_update.sh">Shell script</a></li>
+</ul>
+</li>
+<li>iOS keyboard woes and <a href="https://www.blog.google/products/search/gboard-search-gifs-emojis-keyboard/">Gboard</a></li>
+</ul>
+</li>
+<li>John's Touch Bar switch<ul>
+<li><a href="http://www.dragthing.com/">DragThing</a></li>
+</ul>
+</li>
+<li>Jony Ive <a href="http://www.mysanantonio.com/technology/businessinsider/article/Apple-s-head-designer-Jony-Ive-says-he-hears-12401864.php">hears your feedback</a></li>
+<li><code>#askatp</code><ul>
+<li>Should we get rid of paper books? (via Josh Keegan)</li>
+<li>Will Apple ever make backlit desktop keyboards? (via <a href="https://twitter.com/craig79/status/931768191528796160">Craig</a>)</li>
+<li>How does dynamic podcast-ad targeting work? (via <a href="https://twitter.com/ProdanStatev/status/937807948780146688">Prodan Statev</a>)</li>
+</ul>
+</li>
+<li>iOS 11.2 emergency release for December 2 bug</li>
+<li>"Month 13 is out of bounds" bug in High Sierra</li>
+<li>John's phone is full<ul>
+<li><a href="https://www.youtube.com/watch?v=aEK37MBTUPk">Google Photos ad</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sparse_image#Sparse_bundle_disk_images">Sparse bundle</a></li>
+</ul>
+</li>
+<li>Post-show: <a href="https://overcast.fm/forecast">Forecast</a><ul>
+<li><a href="https://marco.org/apps">Quitter</a></li>
+<li><a href="https://en.wikipedia.org/wiki/LAME">LAME MP3 encoder</a></li>
+<li><a href="https://www.apple.com/logic-pro/">Logic Pro X</a></li>
+<li><a href="https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/CocoaBindings/Concepts/WhatAreBindings.html">Cocoa Bindings</a></li>
+<li><a href="https://www.relay.fm/radar/108">Under the Radar #108: Punch-List Mode</a></li>
+<li><a href="https://grafiksyndikat.com/">Forgotten Towel</a> <a href="https://twitter.com/forgottentowel">on Twitter</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order with code <strong>ATP17</strong>.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $10/month. Use code <strong>AccidentalPodcast10</strong> for a $10 credit.</li>
+</ul>]]></description><itunes:subtitle>Apple's big bugs, Casey's date formats, John's Touch Bar, and Marco's new Forecast app.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a1f8b82c830253d32d60e7f</guid><pubDate>Thu, 30 Nov 2017 22:06:51 +0000</pubDate><title>250: We're Doing a Show</title><itunes:title>We're Doing a Show</itunes:title><itunes:episode>250</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:29:15</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp250.mp3" length="71768397" type="audio/mpeg"/><link>https://atp.fm/250</link><description><![CDATA[<ul>
+<li>Keyboard imprints on laptop screens<ul>
+<li><a href="https://en.wikipedia.org/wiki/IBM_ThinkPad_Butterfly_keyboard">Butterfly keyboard</a></li>
+<li><a href="https://www.instagram.com/p/BJpyk7lguYD/">Video of Casey's old ThinkPad 701</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Steganography">Steganography</a></li>
+</ul>
+</li>
+<li>Marco is no longer case-liss<ul>
+<li><a href="https://jamieclawson.com/">Jamie Clawson leather skins</a></li>
+<li><a href="https://www.apple.com/shop/product/MQTA2ZM/A/iphone-x-leather-case-saddle-brown?fnode=99">Apple Leather Case</a></li>
+<li><a href="https://dbrand.com/shop/iphone-x-skins">dbrand skins</a></li>
+</ul>
+</li>
+<li>Follow-up: Fingerprint gloves <a href="https://twitter.com/miyagawa/status/935911372302385152">1</a> <a href="https://twitter.com/tokyuhands/status/932918434135805952">2</a></li>
+<li>Thanksgiving follow-up: What about <a href="https://www.nintendo.com/switch/">the Nintendo Switch</a>?<ul>
+<li><a href="https://twitter.com/caseyliss/status/859092581594083329">Casey has fun at work</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Thoughts on <a href="https://www.nintendo.com/games/detail/super-mario-odyssey-switch">Super Mario Odyssey</a> (via <a href="https://twitter.com/starsasumi/status/932516727447085056">Starsasumi</a>)</li>
+<li>Robotic vacuum cleaners (via <a href="https://twitter.com/MarosZofcin/status/932533757722185728">Maroš Žofčin</a>)</li>
+<li>Marco's editing approach (via <a href="https://twitter.com/ErikNeu/status/932128055962857472">Erik Neu</a>)</li>
+</ul>
+</li>
+<li><a href="https://twitter.com/lemiorhan/status/935578694541770752">High Sierra "root" security issue</a><ul>
+<li><a href="https://objective-see.com/blog/blog_0x24.html">Patrick Wardle's investigation</a><ul>
+<li><a href="https://twitter.com/objective_see/status/935990511042777088">Follow-up</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2017/11/28/how-to-set-root-password/">Temporary fix</a></li>
+<li><a href="https://forums.developer.apple.com/thread/79235">Original reporting on dev forums</a></li>
+<li><a href="https://sixcolors.com/post/2017/11/a-bit-more-about-apples-automatic-security-updates/">Apple automatic security updates</a></li>
+<li><a href="https://support.apple.com/en-us/HT208315">Actual fix</a></li>
+<li><a href="https://support.apple.com/en-us/HT208317">Fix for the fix</a></li>
+<li><a href="https://www.imore.com/macos-has-root-bug">Apple's statement</a></li>
+<li><a href="https://daringfireball.net/2017/11/high_sierra_root_login_two_weeks_ago">Gruber's writeup</a></li>
+<li><a href="https://nakedsecurity.sophos.com/2014/02/24/anatomy-of-a-goto-fail-apples-ssl-bug-explained-plus-an-unofficial-patch/"><code>goto fail;</code></a></li>
+<li><a href="https://twitter.com/CarlLittke/status/935852428599099393">Silver linings</a></li>
+<li><a href="https://www.caseyliss.com/2014/10/21/sms-relay">SMS on the Mac</a></li>
+</ul>
+</li>
+<li>Post-show: <ul>
+<li><a href="https://www.youtube.com/watch?v=KAm5Kws2zFM">Casey on Cars</a></li>
+<li><a href="https://www.caseyliss.com/2017/11/22/alfa-romeo-quadrifoglio">Casey's blog post</a></li>
+<li><a href="https://www.youtube.com/user/savagegeese">Savagegeese</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off a suitcase with code <strong>ATP</strong>.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works.</li>
+</ul>]]></description><itunes:subtitle>Our 250th Episode Spectacular!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a13b04771c10bfdba632fe0</guid><pubDate>Tue, 21 Nov 2017 20:31:11 +0000</pubDate><title>249: Beehives Full of Bees</title><itunes:title>Beehives Full of Bees</itunes:title><itunes:episode>249</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp249.mp3" length="69703258" type="audio/mpeg"/><link>https://atp.fm/249</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>iPhone X multitasking gesture</li>
+<li><a href="https://support.apple.com/en-us/HT202704">Requesting refunds on AppleCare</a> (via <a href="https://twitter.com/johnhimm/status/931132733304303616">John Himm</a>)</li>
+<li><a href="https://www.kickstarter.com/projects/nanotips/taps-touchscreen-sticker-w-touch-id-ships-before-x">Fake fingerprint stickers</a></li>
+<li>iCloud restores during iPhone X setup</li>
+</ul>
+</li>
+<li><a href="https://daringfireball.net/linked/2017/11/17/homepod-delayed">HomePod gets delayed</a><ul>
+<li><a href="https://www.relay.fm/upgrade/168">Upgrade #168: Hail Hydrant</a></li>
+<li><a href="https://www.macintosh.fm/episodes/14">Welcome to Macintosh #14: Hey Siri</a></li>
+</ul>
+</li>
+<li>Regarding conspiracy theories (<code>#caseywasright</code>)<ul>
+<li><a href="https://twitter.com/justlikethegame/status/931002097528688640">Jonathan's near-RTFU</a></li>
+<li><a href="http://neutral.fm/episodes/1-big-fat-and-bloated">Neutral #1: Big, Fat, and Bloated</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li><a href="https://twitter.com/ShaneBouslough/status/931869538374836224">Qi chargers and battery health</a><ul>
+<li><a href="https://www.apple.com/batteries/maximizing-performance/">Apple's tips</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/_JonTM/status/931543063356325889">AppleTV remote for AirPower</a></li>
+<li><a href="https://twitter.com/kentakgungor/status/932760212259332096">Apple is both brilliant and... inept?</a><ul>
+<li><a href="https://jenkins.io/index.html">Jenkins</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Tech Thanksgiving<ul>
+<li>Marco<ul>
+<li><a href="https://marco.org/2017/11/14/best-laptop-ever">Marco's Ancient Laptop</a></li>
+<li><a href="https://www.amazon.com/dp/B01D8C6ULO/?tag=marcoorg-20">Anker</a> <a href="https://www.amazon.com/dp/B0177MEIHE?tag=marcoorg-20">stuff</a></li>
+<li><a href="https://www.amazon.com/dp/B071GG9D7Q/?tag=marcoorg-20">10.5" iPad Pro</a> with <a href="https://www.amazon.com/dp/B072MHN91T/?tag=marcoorg-20">Smart Keyboard</a></li>
+<li><a href="https://www.sounddevices.com/">Sound Devices</a> (<a href="https://www.bhphotovideo.com/c/product/734341-REG/Sound_Devices_USBPRE_2_USBPre_2_Microphone.html">USBPre 2</a>)</li>
+</ul>
+</li>
+<li>Casey<ul>
+<li><a href="https://www.apple.com/airpods/">AirPods</a></li>
+<li><a href="https://www.apple.com/ios/carplay/">CarPlay</a></li>
+<li><a href="https://www.caseyliss.com/2017/6/25/macbook-adorable">MacBook Adorable</a></li>
+<li><a href="https://gopro.com/">GoPro</a></li>
+<li><a href="https://www.apple.com/apple-watch-series-3/">Apple Watch with LTE</a></li>
+</ul>
+</li>
+<li>John<ul>
+<li><a href="https://www.apple.com/airpods/">AirPods</a></li>
+<li><a href="https://www.apple.com/apple-tv-4k/">Apple TV 4K</a></li>
+<li><a href="https://www.amazon.com/dp/B007GK50X4/?tag=siracusa-20">Sony α6300</a></li>
+<li><a href="https://www.apple.com/mac-pro/">Mac Pro</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Casey's iPhone X Problems<ul>
+<li><a href="https://en.wikipedia.org/wiki/Keratoconus">Keratoconus</a></li>
+</ul>
+</li>
+<li><a href="https://marco.org/2017/11/14/best-laptop-ever">Marco's best laptop ever</a><ul>
+<li><a href="https://www.apple.com/shop/buy-mac/macbook-pro?product=MJLQ2LL/A&amp;step=config#">Buy new</a> or <a href="https://www.apple.com/shop/browse/home/specialdeals/mac/macbook_pro/15">refurbished</a> from Apple, or <a href="https://www.bhphotovideo.com/c/product/1151713-REG/apple_mjlq2ll_a_15_4_macbook_pro_notebook.html">new from B&amp;H</a></li>
+<li><a href="https://www.macrumors.com/2017/11/15/2015-macbook-pro-best-laptop-ever-opinion/">MacRumors link</a></li>
+<li><a href="https://news.ycombinator.com/item?id=15699423">Hacker News link</a></li>
+<li><a href="https://marco.org/rmbp-irtest.html">Image-retention test</a></li>
+<li><a href="https://www.macrumors.com/2017/11/17/apple-extends-free-staingate-repairs/">Anti-reflective coating repairs</a></li>
+<li><a href="https://marco.org/2017/10/14/impossible-dream-of-usb-c">Marco on USB-C</a></li>
+</ul>
+</li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>: <a href="https://www.tesla.com/roadster/">Tesla Roadster</a><ul>
+<li><a href="https://www.tesla.com/semi/">Tesla Semi</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Targa_top">Targa top</a></li>
+<li><a href="https://twitter.com/elonmusk/status/932113939181092864">Elon clarifies</a></li>
+<li><a href="https://www.porsche.com/usa/aboutporsche/christophorusmagazine/archive/374/articleoverview/article01/">Porsche Mission E</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://simplecontacts.com/atp">Simple Contacts</a>: Renew your contact-lens prescription with our online vision test, and save $30 on your contacts with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Tech we're thankful for, the context of white cars, Marco's ancient new laptop, and the Tesla Roadster.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a0d0e5ce4966bbd23602ddc</guid><pubDate>Thu, 16 Nov 2017 06:01:10 +0000</pubDate><title>248: Chili Cookoff</title><itunes:title>Chili Cookoff</itunes:title><itunes:episode>248</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp248.mp3" length="55029322" type="audio/mpeg"/><link>https://atp.fm/248</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>Tradespeople and Face ID</li>
+<li>Multitasking gesture wonkiness on the home screen</li>
+<li>"I got this phone for $50 and it's fine"</li>
+<li>Pro-rated AppleCare+</li>
+<li>MacBook key repairs</li>
+</ul>
+</li>
+<li>OLED and burn-in<ul>
+<li><a href="https://support.apple.com/en-us/HT208191">Kbase article</a> (👋🏻, Stephen)</li>
+<li><a href="https://twitter.com/bzamayo/status/926942042856583169/photo/1">iOS' commentary</a></li>
+</ul>
+</li>
+<li>iPhone X camera<ul>
+<li><a href="https://twitter.com/joesteel/">Joe Rosensteel</a> <a href="https://twitter.com/joesteel/status/929403291456356352">has thoughts</a>
+about <a href="https://twitter.com/joesteel/status/930987404151857152">portrait mode</a></li>
+<li>Casey notices <a href="https://twitter.com/caseyliss/status/930988250394710016">some failures</a> too</li>
+<li><a href="https://www.dpreview.com/news/4190457578/the-free-focos-app-brings-more-professional-looking-bokeh-to-your-dual-cam-iphone">Focos</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li><a href="https://www.youtube.com/watch?v=YtC1BsoADPE">GeForce Now</a> (via <a href="https://twitter.com/kimahlberg/status/929758551693697024">Kim Ahlberg</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/OnLive">OnLive</a></li>
+</ul>
+</li>
+<li>VPNs (via <a href="https://twitter.com/MarcMasVi/status/927556658976428032">MarcMV</a>)<ul>
+<li><a href="https://encrypt.me/">Encrypt.me</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2017/09/12/apple-reveals-airpower-wireless-charging-pad-coming-in-2018/">AirPower</a> for <a href="https://www.apple.com/shop/product/MLA02LL/A/magic-mouse-2">Magic Mouse</a> and <a href="https://www.apple.com/shop/product/MLA22LL/A/magic-keyboard-us-english">Magic Keyboard</a></li>
+<li>What does "close to the metal" mean? (via <a href="https://twitter.com/justlikethegame/status/927945088407351297">Jonathan Bowling</a>, <a href="https://twitter.com/justlikethegame/status/931002097528688640">who clarifies his position</a>)</li>
+</ul>
+</li>
+<li>Qi chargers<ul>
+<li><a href="https://www.apple.com/shop/product/HL812ZM/A/mophie-wireless-charging-base?fnode=85">Mophie disc</a></li>
+<li><a href="http://www.amazon.com/dp/B074QK9XKL/?tag=marcoorg-20">RAVPower stand</a></li>
+<li><a href="https://www.studioneat.com/products/dock">Studio Neat Material Dock</a></li>
+<li><a href="https://www.elevationlab.com/products/elevation-dock-4">Elevation Dock</a></li>
+<li><a href="https://twitter.com/jsnell/status/931000394645323776">Belkin vs. Mophie</a></li>
+<li><a href="http://www.ikea.com/us/en/catalog/products/90318023/">IKEA Qi charger</a></li>
+<li><a href="https://grovemade.com/product/wireless-charging-pad-dark/">Grovemade charger</a></li>
+<li><a href="https://youtu.be/OvVKnC6gGtg?t=898">The Verge's iPhone X Review (timestamp link)</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 15% off your first order with code <strong>ATP17</strong>.</li>
+</ul>]]></description><itunes:subtitle>After covering burn-in, Portrait Mode, VPNs, and Qi chargers, we're still friends. Probably.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5a05327e24a694dfd62b7dd6</guid><pubDate>Fri, 10 Nov 2017 16:14:10 +0000</pubDate><title>247: A Place to Stick Your Gum</title><itunes:title>A Place to Stick Your Gum</itunes:title><itunes:episode>247</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:34:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp247.mp3" length="74423035" type="audio/mpeg"/><link>https://atp.fm/247</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>Apple TV 11.2ß <a href="https://twitter.com/siracusa/status/926227549994323968">makes John happy</a></li>
+<li><a href="https://support.apple.com/en-us/HT204015">Time Machine local snapshots</a></li>
+</ul>
+</li>
+<li><a href="https://www.indiegogo.com/projects/app-camp-2020-help-us-expand-to-3-new-cities-education/">App Camp for Girls fundraiser</a></li>
+<li><code>#askatp</code><ul>
+<li>iPhone X cases (via <a href="https://twitter.com/base10/status/926836712608817152">Nathan Walls</a>)<ul>
+<li><a href="https://www.apple.com/shop/product/MQTA2ZM/A/iphone-x-leather-case-saddle-brown?fnode=99">Apple Leather Case</a> (Casey bought black)</li>
+</ul>
+</li>
+<li>Impact of Siri's ineptitude (via <a href="https://twitter.com/Kwimalar/status/927877470602240000">Kapila Wimalaratne</a>)</li>
+<li><a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-7rm3">Sony A7R III</a> (via <a href="https://twitter.com/kero905/status/925823651357822977">Ananda</a>)<ul>
+<li><a href="https://www.usa.canon.com/internet/portal/us/home/support/details/cameras/dslr/eos-5d-mark-iv">Canon 5D Mark IV</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>iPhone X: The ATP Review<ul>
+<li><a href="https://www.istocknow.com/live/#device.0=iphone">iStockNow</a></li>
+<li><a href="https://images.apple.com/business/docs/FaceID_Security_Guide.pdf">FaceID Security Guide</a></li>
+</ul>
+</li>
+<li>Post-show: Casey's odd in-flight activities</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order with code <strong>ATP17</strong>.</li>
+</ul>]]></description><itunes:subtitle>iPhone X: The ATP Review</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59fa95b19140b7ed47a8e0df</guid><pubDate>Thu, 02 Nov 2017 21:36:41 +0000</pubDate><title>246: I Just Want My Stories</title><itunes:title>I Just Want My Stories</itunes:title><itunes:episode>246</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:21:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp246.mp3" length="68490401" type="audio/mpeg"/><link>https://atp.fm/246</link><description><![CDATA[<ul>
+<li>Follow up: F1 flappy paddles</li>
+<li>iPhone X preorder results</li>
+<li>Recent performance of the rumor mill</li>
+<li>Marco's iMac returns</li>
+<li>MacBook Pro keyboard repair cost</li>
+<li><a href="https://arstechnica.com/gadgets/2017/10/apple-will-fix-apple-tv-4ks-hdr-issues-with-next-tvos-update/">Apple TV output formats</a><ul>
+<li><a href="https://developer.apple.com/videos/play/fall2017/503/">New "WWDC" video</a></li>
+<li><a href="https://www.macrumors.com/2017/10/30/apple-seeds-first-beta-of-tvos-11-2-to-developers/">New Apple TV beta</a></li>
+<li><a href="https://www.theverge.com/2017/10/31/16580306/tvos-content-matching-apple-tv-4k">The Verge's take</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Mac antivirus software?</li>
+<li>Would we use Apple OSes on any other hardware if they were theoretically compatible?<ul>
+<li><a href="http://blog.lenovo.com/en/blog/retro-thinkpad-time-machine/">Retro ThinkPad</a></li>
+<li><a href="https://overcast.fm/+BZhApa_U/45:30">Back to Work #346</a></li>
+</ul>
+</li>
+<li><a href="https://www.macrumors.com/2017/10/24/new-iphone-x-video-campus/">Apple fires engineer involved in iPhone X leak</a> (via <a href="https://twitter.com/mitkw/status/924658802359783427">Tim Walker</a>)<ul>
+<li><a href="https://www.instagram.com/p/BGuTq5LByv_/">Casey's Instagram post</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>iPhone X reviews, and the PR strategy<ul>
+<li><a href="https://www.wired.com/story/iphone-x-first-impression/">Stephen Levy's review</a></li>
+<li><a href="https://www.macrumors.com/2017/10/30/iphone-x-hands-on-videos/">YouTube reviews</a></li>
+<li><a href="https://one37.net/blog/31/10/2017/pr">Matt Alexander's take on the PR strategy</a></li>
+<li><a href="https://www.relay.fm/upgrade/165">Upgrade #165: The iPhone X Review</a></li>
+<li><a href="https://sixcolors.com/post/2017/10/iphone-x-tomorrows-iphone-today/">Jason's review</a></li>
+<li><a href="https://techcrunch.com/2017/10/31/review-the-iphone-x-goes-to-disneyland/">Panzarino's review</a></li>
+<li><a href="https://www.youtube.com/watch?v=mCZLypUEYS8&amp;feature=youtu.be">Juan Bagnell</a></li>
+</ul>
+</li>
+<li>Post-show: Casey the video editor<ul>
+<li><a href="https://twitter.com/caseyliss/status/925739689096761344">Casey's preview</a></li>
+<li><a href="https://www.youtube.com/channel/UCsqjHFMB_JYTaEnf_vmTNqg">Doug DeMuro</a></li>
+<li><a href="https://www.youtube.com/user/CGPGrey">CGP Grey</a></li>
+<li><a href="https://www.youtube.com/user/siracusa">John's YouTube channel</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: You can be sure of your purchase with Casper’s 100-night risk-free, sleep-on-it trial.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+</ul>]]></description><itunes:subtitle>iPhone X preorders and reviews, rumor mill report card, repair costs, and Casey's ascent into video.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59f15788a8b2b0999be90da1</guid><pubDate>Thu, 26 Oct 2017 21:16:09 +0000</pubDate><title>245: Senior-Citizen Advantage</title><itunes:title>Senior-Citizen Advantage</itunes:title><itunes:episode>245</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:15:02</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp245.mp3" length="65477893" type="audio/mpeg"/><link>https://atp.fm/245</link><description><![CDATA[<ul>
+<li>Follow up: The right to chair arms</li>
+<li><code>#askatp</code><ul>
+<li><a href="http://twitter.com/jonarogers/status/900933839505293312">Bitcoin</a><ul>
+<li><a href="http://www.muleradio.net/thetalkshow/74/">The Talk Show #74</a>: <a href="http://glennf.com/">Glenn Fleishmann</a> explains <a href="https://en.wikipedia.org/wiki/Bitcoin">Bitcoin</a></li>
+</ul>
+</li>
+<li>iPhone SE... X?<ul>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_SE/30">Macintosh SE/30</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/jamespodcasts/status/922995158228127744">How to catch Phish</a><ul>
+<li><a href="https://open.spotify.com/album/4UTjy2dLYT8i8ItyboijlW">A Live One</a></li>
+<li><a href="http://www.livephish.com">Live Phish</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/iphone-x/">It's preorder time</a><ul>
+<li><a href="https://www.caseyliss.com/2016/9/9/gimme-dat-iphone">Casey's tips</a></li>
+</ul>
+</li>
+<li>What are the iPhone X's biggest risks?</li>
+<li>The <a href="https://www.apple.com/mac-mini/">Mac Mini</a> is... <a href="https://www.macrumors.com/2017/10/19/tim-cook-mac-mini-important-product/">still a thing</a>?<ul>
+<li><a href="http://morrick.me/archives/7998">Riccardo Mori's 3 options</a></li>
+</ul>
+</li>
+<li>Post-show: Casey's still a <a href="https://www.alfaromeousa.com/cars/alfa-romeo-giulia-quadrifoglio">car journalist</a><ul>
+<li><a href="https://wheelbearings.media/">Wheel Bearings</a></li>
+<li><a href="http://drops.caseyliss.com/7woBYU">Parking garage clip</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ZF_8HP_transmission">ZF 8HP transmission</a></li>
+<li><a href="https://arstechnica.com/cars/2017/06/if-ferrari-built-an-m3-the-2017-alfa-romeo-giulia-quadrifoglio/">Ars Technica</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+</ul>]]></description><itunes:subtitle>Chair arms, Bitcoin, Phish, iPhone X orders, and the Mac Mini.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59e8154b8a02c7a7ecb06fdb</guid><pubDate>Thu, 19 Oct 2017 22:31:15 +0000</pubDate><title>244: The Mac Renaissance</title><itunes:title>The Mac Renaissance</itunes:title><itunes:episode>244</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp244.mp3" length="85270283" type="audio/mpeg"/><link>https://atp.fm/244</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="http://atp.fm/243">ATP 243 notes</a></li>
+<li>Follow up:<ul>
+<li><a href="http://thatgamecompany.com/sky/">Sky</a> platform exclusivity</li>
+<li><a href="http://store.hermanmiller.com/office/office-chairs/embody-task-chair/4737.html?lang=en_US">John's chair</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Torx">Torx</a></li>
+<li><a href="https://store.steelcase.com/learn/brochures/gesture">John's alternative chair</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/iphone/repair/service/express-replacement">Apple Express Replacement Service</a><ul>
+<li><a href="https://twitter.com/sikachu/status/918845958263267333/photo/1">Example image</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT205547">Apple Watch and proxied notifications</a><ul>
+<li><a href="https://twitter.com/dueapp/status/920475817645240320">Due weighs in</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li><a href="https://twitter.com/townsend/status/919238751917711360">Running Plex with no logged-in user</a></li>
+<li><a href="http://twitter.com/TomBloodyMyers/status/920054245902180354">Strong-ARMed Mac Pro</a></li>
+<li><a href="https://twitter.com/methodphoto/status/920191181841207296">Marco's Many iMac Pros</a></li>
+</ul>
+</li>
+<li><a href="http://static.marco.org/IMG_6376-eQ0hhMYudJ.JPG">Marco's MacBook Pro</a></li>
+<li><a href="https://theoutline.com/post/2402/the-new-macbook-keyboard-is-ruining-my-life">MacBook keyboard failures</a></li>
+<li>Somehow Casey got backed into a ton of Mac Pro talk (🙄 <em>–Ed.</em>)</li>
+<li><a href="https://www.youtube.com/watch?v=FdS3tjEIqUA">Special ending theme by Jonathan Mann</a>! Support Jonathan's work:<ul>
+<li><a href="https://www.youtube.com/channel/UCvj5S3f10rO6CoibatfRGzg">YouTube channel</a></li>
+<li><a href="https://www.patreon.com/jonathanmann">Patreon</a></li>
+<li><a href="http://jonathanmann.net">Hire him to write a song for you</a></li>
+<li><a href="http://www.thetruthpodcast.com/songonauts/">Songonauts podcast from The Truth</a>: An '80s cartoon for your ears. It's about Doc, Penny and Jojo who are in a band that's going nowhere - until they find a magical drum machine that transports them into their songs.</li>
+</ul>
+</li>
+<li>Post-show: The <a href="https://en.wikipedia.org/wiki/Variable_bitrate">VBR</a> experiment<ul>
+<li><a href="https://www.relay.fm/topfour/33">Top Four #33: Pumpkin Spice Everything 🎃</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>How many iMac Pros will Marco buy before the Mac Pro comes out?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59ded87fd55b41672e6cf088</guid><pubDate>Thu, 12 Oct 2017 20:42:31 +0000</pubDate><title>243: Knew About the Dollar Signs</title><itunes:title>Knew About the Dollar Signs</itunes:title><itunes:episode>243</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:42:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp243.mp3" length="53969073" type="audio/mpeg"/><link>https://atp.fm/243</link><description><![CDATA[<ul>
+<li>Pre-show: macOS upgrades vs. clean installs</li>
+<li>Follow up:<ul>
+<li>Google Pixel preorders (via <a href="https://twitter.com/HannesHauer/status/916285906964840448">Hannes Hauer</a>)</li>
+<li>Google customer service strategy</li>
+<li>Casey has received his first AT&amp;T bill with his Apple Watch</li>
+<li><a href="https://www.theverge.com/2017/10/4/16418914/sonos-one-speaker-google-assistant-integration">Sonos and Google sitting in a tree...</a><ul>
+<li><a href="https://www.engadget.com/2017/08/09/anker-genie-cheaper-echo-dot/">Anker and Amazon are K-I-S-S-I-N-G</a></li>
+<li><a href="https://512pixels.net/2017/10/my-smart-speaker-conundrum/">Speaker fragmentation</a></li>
+</ul>
+</li>
+<li>Google Home <a href="https://store.google.com/us/product/google_home_max">Max</a> and <a href="https://store.google.com/us/product/google_home_mini">Mini</a></li>
+<li>Casey's 👋🏻⛰️ FOMO</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Browser choices (from <a href="https://twitter.com/kgfromthemv/status/917442835095347200">Kyle</a>)</li>
+<li>Accord thoughts (from <a href="https://twitter.com/SebMaurino/status/917231709485240320">Sebastian</a>)</li>
+<li>Command line (from <a href="https://twitter.com/comay/status/916790194702999552">Comay</a>)<ul>
+<li><a href="https://www.git-tower.com/mac/">Git Tower</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tcsh">tcsh</a></li>
+<li><a href="https://www.perforce.com/">Perforce</a></li>
+<li><a href="http://fishshell.com/">fish</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Apple Phone → Watch notifications<ul>
+<li><a href="http://www.dueapp.com/">Due</a></li>
+</ul>
+</li>
+<li><a href="http://twitterrific.com/mac">Twitterrific for Mac</a></li>
+<li>Apple TV gaming and <a href="http://thatgamecompany.com/sky/">Sky</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Jenova_Chen">Jenova Chen</a></li>
+<li><a href="http://stardewvalley.net/">Stardew Valley</a></li>
+<li><a href="http://thatgamecompany.com/flower/">Flower</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show Neutral: Casey has pipe dreams about cars</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://audible.com/atp">Audible</a>: Get a free audiobook with a 30-day trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Window layouts, menu bars, clean installs, notification mysteries, and Apple TV gaming.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59d5a0428a02c7e2d81439cf</guid><pubDate>Fri, 06 Oct 2017 01:01:26 +0000</pubDate><title>242: These Arms Are Coming Off</title><itunes:title>These Arms Are Coming Off</itunes:title><itunes:episode>242</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:15</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp242.mp3" length="57367737" type="audio/mpeg"/><link>https://atp.fm/242</link><description><![CDATA[<ul>
+<li>Pre-show:<ul>
+<li>iPhone X</li>
+<li><a href="https://www.theverge.com/2017/10/4/16405192/new-google-pixel-2-xl-phone-photos-video-hands-on">New Google Pixels</a></li>
+</ul>
+</li>
+<li>Follow up: John received his Apple TV 4K</li>
+<li><code>#askatp</code><ul>
+<li>iOS error-logging frameworks</li>
+<li><a href="http://twitter.com/Darkandtwisty89/status/914188809503461376">Qi chargers</a></li>
+<li><a href="http://www.imdb.com/character/ch0001916/">Mike Bolton</a> proposes a <a href="http://play.typeracer.com/">typing challenge</a><ul>
+<li><a href="http://fundraising.stjude.org/site/TR?px=2016588&amp;fr_id=78478&amp;pg=personal">St. Jude Children's Research Hospital</a></li>
+<li><a href="https://www.bradycampaign.org/ways-to-give">Brady Center to prevent gun violence</a></li>
+<li><a href="https://hispanicfederation.org/unidos/">Hispanic Federation for Puerto Rico relief</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2017/09/spot-and-catch-fire-tv-a-round-up-of-yesterdays-amazon-announcements/">New Amazon Echo announcements</a><ul>
+<li><a href="https://www.theverge.com/2017/9/27/16374254/amazon-event-2017-news-recap-echo-spot-fire-tv-hardware">Verge Summary</a></li>
+<li><a href="https://www.theverge.com/2017/9/27/16372578/new-amazon-echo-speaker-announced-price-release-date-2017">New Echo</a></li>
+<li><a href="https://www.theverge.com/2017/9/27/16374862/amazon-echo-connect-speakerphone">Echo Connect</a></li>
+<li><a href="https://www.theverge.com/2017/9/27/16375116/amazon-echo-plus-speaker-alexa-annnounced-smart-home-hub">Echo Plus</a></li>
+<li><a href="https://www.amazon.com/All-New-Ultra-Remote-Streaming-Player/dp/B01N32NCPM">Fire TV 4K</a></li>
+<li><a href="http://www.sonos.com/en-us/shop/one.html">Sonos One</a></li>
+<li><a href="https://www.theverge.com/2017/9/27/16375186/amazon-echo-spot-alarm-clock-announced-price">Echo Spot</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: John buys a chair<ul>
+<li><a href="https://thewirecutter.com/reviews/best-office-chair/">Wirecutter</a></li>
+<li><a href="https://www.amazon.com/dp/B016OIF2JU/?tag=siracusa-20">Steelcase Gesture</a></li>
+<li><a href="http://www.amazon.com/dp/B01DGM7ZII/?tag=siracusa-20">Herman Miller Embody</a></li>
+<li><a href="http://www.amazon.com/dp/B01K31X4HG/?tag=siracusa-20">Herman Miller Aeron</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hullopillow.com/atp">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do.</li>
+<li><a href="http://casper.com/atp">Casper</a>: Dive deeper into the science behind the perfect mattress. Use code <strong>ATP</strong> for $50 toward any mattress purchase.</li>
+</ul>]]></description><itunes:subtitle>Google Pixels, Amazon Echoes, Sonos One, and expensive chairs.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59cdbd1be3df283ef0b1ae36</guid><pubDate>Fri, 29 Sep 2017 21:15:35 +0000</pubDate><title>241: Jazzercise Boot Camp</title><itunes:title>Jazzercise Boot Camp</itunes:title><itunes:episode>241</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp241.mp3" length="55040729" type="audio/mpeg"/><link>https://atp.fm/241</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://www.youtube.com/watch?v=LD1xSc7oRRk">Jazzercise 1982 video compilation</a></li>
+<li>Follow up:<ul>
+<li><a href="http://fundraising.stjude.org/site/TR?px=2016588&amp;fr_id=78478&amp;pg=personal">St. Jude Fundraiser Update</a></li>
+<li><a href="https://9to5mac.com/2017/09/26/apple-tv-4k-fan-vents-teardown/">Apple TV 4K has a fan 😭</a><ul>
+<li><a href="https://www.ifixit.com/Teardown/Apple+TV+4K+Teardown/97511">Teardown</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT207949">Downloading 4K iTunes movies</a></li>
+<li><a href="https://support.apple.com/boot-camp">Boot Camp</a> and <a href="https://youtu.be/WyB7dYexozc">cheesy Apple videos</a></li>
+<li><a href="https://sam.abuelsamid.com/">Sam Abuelsamid</a> of <a href="https://wheelbearings.media/">Wheel Bearings</a> clarifies <a href="https://sam.abuelsamid.com/2015/01/05/2015-acura-tlx/">TLX DCT</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Being good beta citizens and not making <a href="https://twitter.com/tapbot_paul">@tapbot_paul</a> angry</li>
+<li>APFS and Fusion drives</li>
+</ul>
+</li>
+<li>Apple Watch Series 3 review<ul>
+<li><a href="https://marco.org/2017/09/24/what-watch-podcast-apps-need">Marco's post about APIs</a></li>
+<li><a href="https://www.relay.fm/radar/99">Under the Radar #99: Effecting Change</a></li>
+<li><a href="https://www.relay.fm/upgrade/160">Upgrade #160: A Helipad on Your Table</a></li>
+<li><a href="https://www.relay.fm/connected/161">Connected #161: A Handbag? Face Cream? A Chainsaw?</a></li>
+</ul>
+</li>
+<li>👋🏻⛰️<ul>
+<li><a href="https://512pixels.net/2017/09/macos-high-sierra-review/">Stephen Hackett's review</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Casey is a <a href="https://www.jeep.com/grand-cherokee.html">car</a> journalist</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Our reviews of Apple Watch Series 3 and High Sierra, and a special Neutral post-show.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59c3320146c3c40f64277c70</guid><pubDate>Thu, 21 Sep 2017 19:51:29 +0000</pubDate><title>240: Undefined Wait Period</title><itunes:title>Undefined Wait Period</itunes:title><itunes:episode>240</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:16:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp240.mp3" length="66861899" type="audio/mpeg"/><link>https://atp.fm/240</link><description><![CDATA[<ul>
+<li><a href="https://512pixels.net/2017/09/september-national-childhood-cancer-month-2017/">Stephen Hackett's St. Jude's Fundraiser</a></li>
+<li>Follow up:<ul>
+<li><a href="https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions0">iPhone X screen size</a></li>
+<li>John Siracusa, Dongletown, USA<ul>
+<li><a href="https://eshop.macsales.com/shop/docks/owc-thunderbolt-3-dock">Bigger OWC dock</a></li>
+<li><a href="https://eshop.macsales.com/shop/usb-c/owc/usb-c-dock">John's forthcoming OWC dock</a></li>
+<li><a href="https://www.elgato.com/en/dock">Elgato dock</a></li>
+</ul>
+</li>
+<li>Window management</li>
+<li>Apple Watch LTE pricing: <a href="https://theoverspill.blog/2017/09/15/the-apple-watch-series-3-ripoff-how-carriers-want-to-charge-for-zero-data-use/">Data is substitutive, not additive</a> (via <a href="https://twitter.com/ulliverti/status/908715116396531713">Oliver Thomas</a>)</li>
+</ul>
+</li>
+<li>More on Apple TV 4K<ul>
+<li>Whether it has a fan or supports 24 Hz output</li>
+<li>32 vs. 64 GB</li>
+</ul>
+</li>
+<li>Craig Federighi's Face ID apology tour<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2017/09/15/ep-200">The Talk Show #200</a></li>
+<li><a href="https://overcast.fm/+BtuyYAAIQ/16:45">Confirmation of John's prediction about face swipe timing</a></li>
+</ul>
+</li>
+<li>Running Mac betas<ul>
+<li><a href="https://beta.apple.com/sp/betaprogram/apfsfusion">No APFS for Fusion Drives</a></li>
+</ul>
+</li>
+<li>More on Apple Retail<ul>
+<li>Genius Bar appointments</li>
+<li><a href="https://www.youtube.com/watch?v=_1jrXTmOfgs">Seinfeld on car reservations</a></li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Mac Pro &amp; Nvidia</li>
+<li><a href="https://twitter.com/invalidname/status/906244965923246081">Twitter app preferences</a><ul>
+<li><a href="http://twitterrific.com/mac/">Twitterrific for Mac: Project Phoenix</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Training FaceID<ul>
+<li><a href="https://techcrunch.com/2017/09/15/interview-apples-craig-federighi-answers-some-burning-questions-about-face-id/amp/">Federighi interview on TechCrunch</a></li>
+</ul>
+</li>
+<li>Last week's keynote, continued<ul>
+<li>Watch capacities and LTE streaming behavior</li>
+<li>iPhone cables &amp; dongles &amp; predictions<ul>
+<li><a href="https://www.caseyliss.com/2017/8/8/i-always-think-dumb-stuff-like-this-but-im-on-vacation-so-yolo-i-guess">Casey's theory</a></li>
+</ul>
+</li>
+<li>Fast-charging equipment<ul>
+<li><a href="http://www.amazon.com/dp/B00VU2Z3J0/?tag=liismo-20">Apple 29W USB-C Power Adapter</a></li>
+<li><a href="http://www.amazon.com/dp/B01DPSJQRG/?tag=liismo-20">Apple USB-C → Lightning cable</a></li>
+<li><a href="http://www.amazon.com/dp/B01D8C6ULO/?tag=marcoorg-20">Anker 5-Port USB-C charger</a></li>
+</ul>
+</li>
+<li>AirPower vs. Nightstand Mode<ul>
+<li><a href="https://www.studioneat.com/products/dock">Studio Neat Material Dock</a></li>
+<li><a href="https://www.relay.fm/tc/30">Thoroughly Considered #30</a></li>
+<li><a href="https://www.amazon.com/dp/B0093162RM/?tag=marcoorg-20">Marco's alarm clock</a></li>
+<li><a href="http://www.jaeger-lecoultre.com/us/en/watches/atmos/atmos-by-marc-newson/5165107.html">John's future clock</a></li>
+</ul>
+</li>
+<li><a href="https://www.macrumors.com/2017/09/20/iphone-x-production-further-delays/">iPhone X production delays?</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <ul>
+<li><a href="https://www.macstories.net/reviews/twim-instant-messaging-built-on-twitter-direct-messages/">TwIM</a></li>
+<li><a href="https://www.acura.com/tlx">Acura TLX</a> and <a href="https://www.acura.com/-/media/Acura-Platform/Vehicle-Pages/TLX/2018/gallery-page/interior/TLX18-041-gallery04-L.jpg">dual screens</a> </li>
+<li><a href="https://www.apple.com/ios/carplay/">CarPlay</a>, and touch screens</li>
+<li><a href="http://nsx.acura.com/explore/nsx">Acura NSX</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Honda_NSX#First_generation_.281990.E2.80.932005.29">Original NSX</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+</ul>]]></description><itunes:subtitle>A grab bag of updates and additional topics from the latest Apple releases.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59ba00cf7131a53af9540926</guid><pubDate>Thu, 14 Sep 2017 23:27:34 +0000</pubDate><title>239: Set This Money on Fire</title><itunes:title>Set This Money on Fire</itunes:title><itunes:episode>239</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>03:11:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp239.mp3" length="92077032" type="audio/mpeg"/><link>https://atp.fm/239</link><description><![CDATA[<ul>
+<li><a href="https://www.apple.com/apple-events/september-2017/">Apple Special Event, September 2017</a><ul>
+<li><a href="https://www.recode.net/2017/9/13/16299086/apple-park-steve-jobs-theater-iphone-event-photos">Dan Frommer's photo essay</a></li>
+<li><a href="https://www.apple.com/today/">Today at Apple</a></li>
+<li><a href="https://www.youtube.com/watch?v=N-x8Ik9G5Dg">Apple Watch intro video</a><ul>
+<li>Featuring <a href="https://kylesethgray.com/dear-apple/">Kyles the Gray</a>!</li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=q8LaT5Iiwo4">Louis CK: Everything is Amazing &amp; Nobody is Happy</a></li>
+<li><a href="https://marco.org/2017/08/10/removed-send-to-watch">Overcast and Apple Watch offline playback</a></li>
+<li><a href="https://shop.watchdots.com">Watch Dots</a></li>
+<li><a href="https://goo.gl/pu1YcS">Qi charging standard</a></li>
+<li><a href="https://overcast.fm/+CdTbqu34/58:06">ATP #172: iPhone X</a></li>
+<li><a href="https://arstechnica.com/gadgets/2006/03/osx-fiveyears/">Five Years of OS X</a></li>
+<li><a href="https://developer.apple.com/ios/human-interface-guidelines/overview/iphone-x">iPhone X in the HIG</a></li>
+<li><a href="https://twitter.com/BenPackard/status/907785129829036033/photo/1">Disappearing scroll thumb</a></li>
+<li><a href="https://twitter.com/vojtastavik/status/907911237983449088">Jokey notch scrolling</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rolodex">Rolodex</a></li>
+<li><a href="https://light.co">Light L16 camera</a></li>
+<li><a href="http://5by5.tv/b2w/341">Back to Work #341: Rich Boy Phone</a></li>
+<li><a href="https://usercontent.irccloud-cdn.com/file/l8SigCvj/iPhone%20X%20Leather%20Folio.jpg">iPhone Folio Case Inside</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco figures out how to buy a bike<ul>
+<li><a href="https://en.wikipedia.org/wiki/Penny-farthing">Penny-farthing</a></li>
+<li><a href="https://www.specialized.com/us/en/men/bikes/mountain/fuse6fattie29/129260">Fuse 6Fattie/29</a></li>
+<li><a href="http://www.mbr.co.uk/reviews/hardtail/orbea-loki-27-h10">Orbea Loki 27+ H10</a></li>
+<li>Special thanks to:<ul>
+<li><a href="https://budnitzbicycles.com/">Budnitz Bicycles</a></li>
+<li><a href="http://westwoodcycle.com/about/westwood-nj-bike-shop-pg247.htm">Albert's Westwood Cycle</a>, an excellent bike shop in New Jersey that's worth the drive</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+</ul>]]></description><itunes:subtitle>In-depth analysis of the iPhone X event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59b0c0618419c2e19a1fbbe5</guid><pubDate>Thu, 07 Sep 2017 18:06:47 +0000</pubDate><title>238: Begging for the Hub</title><itunes:title>Begging for the Hub</itunes:title><itunes:episode>238</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:33:30</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp238.mp3" length="73890486" type="audio/mpeg"/><link>https://atp.fm/238</link><description><![CDATA[<ul>
+<li>Follow-Up: <ul>
+<li>Isn't iCloud close to full-machine backup?</li>
+<li>Do you really need to spend $1000 on a camera?</li>
+<li>Printing photos</li>
+<li>Photo resolution</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>iPhone-buying strategies<ul>
+<li><a href="https://www.caseyliss.com/2016/9/9/gimme-dat-iphone">Casey's lessons learned</a></li>
+</ul>
+</li>
+<li>Is <a href="https://en.wikipedia.org/wiki/4K_resolution">4K</a> worth it?<ul>
+<li><a href="http://www.yedlin.net/BigK_2014.html">Steve Yedlin on 4K</a></li>
+<li><a href="https://stari.co/tv-monitor-viewing-distance-calculator">Viewing distance calculator</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/mattone/status/904712256558178306">Why &amp; how we use Plex</a><ul>
+<li><a href="https://www.caseyliss.com/2015/4/21/plex">Casey's Plex Primer</a></li>
+<li><a href="https://github.com/donmelton/video_transcoding">Don Melton's scripts</a></li>
+<li><a href="https://www.caseyliss.com/2017/8/17/ffmpeg"><code>ffmpeg</code></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>John's 2017 MacBook Pro impressions<ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Cinema_Display#LED_Cinema_Display">Apple LED Cinema Display</a></li>
+<li><a href="https://www.apple.com/shop/product/MQ052LL/A/magic-keyboard-with-numeric-keypad-us-english?fnode=56">Magic Keyboard with Numeric Keypad</a></li>
+<li><a href="http://www.amazon.com/dp/B000RHV46U/?tag=siracusa-20">Logitech Optical USB Mouse</a></li>
+<li><a href="http://atp.fm/episodes/96">ATP #96: The Windows of Siracusa County</a></li>
+<li><a href="http://thepodcastcomic.com/comics/business-as-usual-at-atp/">Business as Usual at ATP</a></li>
+</ul>
+</li>
+<li>iPhone 7 exit interview</li>
+<li>iPhone 7S/8/Pro/Edition predictions</li>
+<li>Apple Watch predictions</li>
+<li>Wildcard predictions</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco is still obsessed with bikes</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Predictions for next week's event… after nearly two hours of other stuff.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59a77e6ca9db09c622c8edab</guid><pubDate>Fri, 01 Sep 2017 16:58:20 +0000</pubDate><title>237: You Are Not a Datacenter</title><itunes:title>You Are Not a Datacenter</itunes:title><itunes:episode>237</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp237.mp3" length="82888490" type="audio/mpeg"/><link>https://atp.fm/237</link><description><![CDATA[<ul>
+<li>Follow-Up: <ul>
+<li>Marco's tukhus, <a href="https://en.wikipedia.org/wiki/Ischial_tuberosity">sit bones</a>, and cushioned saddles</li>
+<li>Backing up <code>/Applications</code><ul>
+<li><a href="https://www.caseyliss.com/2016/7/2/new-mac-who-dis">Casey's new-Mac strategy</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/philstollery/status/902756986751725570">CrashPlan native client may not be for small business</a></li>
+<li><a href="https://support.crashplan.com/Subscriptions/Migrate_your_CrashPlan_for_Home_account_to_CrashPlan_for_Small_Business">CrashPlan migrations over 5 TB</a></li>
+<li><a href="https://www.haystacksoftware.com/support/arqfaq.php">Arq and macOS metadata</a><ul>
+<li><a href="https://mjtsai.com/blog/2014/05/22/what-backblaze-doesnt-back-up/">Michael Tsai: What Backblaze Doesn't Back Up</a></li>
+</ul>
+</li>
+<li>Backblaze's 30 day retention</li>
+<li>Peer-to-peer NAS backups</li>
+<li><a href="https://c2.synology.com/en-global/backup">Synology C2 backup</a></li>
+<li><a href="https://www.macworld.com/article/3219654/data-center-cloud/why-the-mac-needs-icloud-backup.html">Dan Moren: iCloud Backup for Mac?</a></li>
+<li>Casey's MacBook keyboard woes<ul>
+<li><a href="https://support.apple.com/en-us/HT205662">Apple KnowledgeBase article</a> (👋🏻, <a href="https://twitter.com/ismh">@ismh</a>)</li>
+</ul>
+</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li>Photo storage between generations</li>
+<li>Camera advice for beginners<ul>
+<li><a href="https://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's O-MD E-M10 Review</a></li>
+<li><a href="http://toolsandtoys.net/reviews/the-olympus-om-d-e-m10/">Shawn Blanc's review</a></li>
+<li><a href="https://www.lensrentals.com/">LensRentals</a></li>
+<li><a href="http://thewirecutter.com/">Wirecutter</a></li>
+<li><a href="https://www.dpreview.com/">DPReview</a></li>
+</ul>
+</li>
+<li>Playing the notoriety card</li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT208018">APFS in High Sierra</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2017-08-30/how-apple-plans-to-change-the-way-you-use-the-next-iphone">No home button on "iPhone 8"?</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Caseys deep thought about batteries</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: Dive deeper into the science behind the perfect mattress. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://audible.com/atp">Audible</a>: An unmatched selection of audiobooks, original audio shows, news, comedy, and more. Get a free 30-day trial.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>More on backups, camera advice, and whatever "sit bones" are.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:599e4426e3df2831f0e7f1d8</guid><pubDate>Thu, 24 Aug 2017 19:21:42 +0000</pubDate><title>236: Irresponsible Use of Infinite Terabytes</title><itunes:title>Irresponsible Use of Infinite Terabytes</itunes:title><itunes:episode>236</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp236.mp3" length="94101224" type="audio/mpeg"/><link>https://atp.fm/236</link><description><![CDATA[<ul>
+<li>Pre-show: <ul>
+<li><a href="http://www.amazon.com/dp/B00EAHSBV4/?tag=liismo-20">Baby Clocks</a></li>
+<li><a href="https://www.caseyliss.com/2017/8/17/same-as-it-ever-was">Casey has news</a></li>
+<li><a href="https://www.izotope.com/en/products/repair-and-edit/rx.html">iZotope RX</a></li>
+</ul>
+</li>
+<li>Follow-Up: <ul>
+<li><a href="https://www.macstories.net/news/itunes-u-collections-are-moving-to-apple-podcasts/">iTunes U → Apple Podcasts</a><ul>
+<li><a href="https://www.joelonsoftware.com/2000/04/06/things-you-should-never-do-part-i/">Joel on Software: Things You Should Never Do, Part 1</a></li>
+<li><a href="https://panic.com/">Panic</a></li>
+<li><a href="https://www.omnigroup.com/">Omni</a></li>
+<li><a href="http://www.barebones.com/products/bbedit">BBEdit</a></li>
+</ul>
+</li>
+<li>Marco's hindquarters</li>
+</ul>
+</li>
+<li><code>#askatp</code><ul>
+<li><a href="https://twitter.com/robertprejs/status/888472802268921856">OLED vs. LCD</a></li>
+<li><a href="https://twitter.com/JoshStaiger/status/888736566465527808">Mall of Marco</a><ul>
+<li><a href="https://www.gazelle.com/">Gazelle</a></li>
+<li><a href="https://www.macmeanoffer.com/">Mac Me an Offer</a></li>
+</ul>
+</li>
+<li>Have we had RSI issues?<ul>
+<li><a href="https://en.wikipedia.org/wiki/Microsoft_Natural_Keyboard">Microsoft Natural Keyboard</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Casey's Bad News<ul>
+<li><a href="https://photos.google.com/apps">Google Photos Uploader</a></li>
+<li><a href="https://www.topgear.com/car-news/first-look/new-bmw-m5-has-592bhp-will-drift">The new M5</a></li>
+</ul>
+</li>
+<li><a href="http://tidbits.com/article/17412">CrashPlan sunsets consumer backups</a><ul>
+<li><a href="https://www.crashplan.com/en-us/consumer/nextsteps/">Official announcement</a></li>
+<li><a href="https://twitter.com/backblaze/status/900021903452012548">Backblaze on NAS business model</a></li>
+<li><a href="https://www.backblaze.com/b2/cloud-storage.html">Backblaze B2</a><ul>
+<li><a href="https://www.backblaze.com/b2/cloud-storage-pricing.html">Pricing</a></li>
+</ul>
+</li>
+<li><a href="https://www.caseyliss.com/2017/2/11/nas-for-n00bs">Casey justifies using a NAS</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ISCSI">iSCSI</a></li>
+<li><a href="https://www.arqbackup.com/">Arq</a></li>
+<li><a href="https://www.softraid.com/">SoftRAID</a></li>
+<li><a href="http://www.amazon.com/dp/B00JKFTYA8/?tag=marcoorg-20">HeadLiss adapter</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco's security adventures<ul>
+<li><a href="https://nest.com/camera/meet-nest-cam-iq/">Nest IQ</a></li>
+<li><a href="https://www.relay.fm/rd">Reconcilable Differences</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Rethink what your money can do. Get up to 1 year managed free.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+</ul>]]></description><itunes:subtitle>iTunes' future, huge media collections and NAS backups, and Marco buys some more stuff.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:599508e349fc2b77f9de7cb9</guid><pubDate>Fri, 18 Aug 2017 05:28:40 +0000</pubDate><title>235: Notch-Savvy</title><itunes:title>Notch-Savvy</itunes:title><itunes:episode>235</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:08:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp235.mp3" length="92925016" type="audio/mpeg"/><link>https://atp.fm/235</link><description><![CDATA[<ul>
+<li>Pre-show: Always on vacation in... New York?</li>
+<li>Follow-Up: <ul>
+<li><a href="https://www.theverge.com/circuitbreaker/2017/7/12/15958430/mighty-spotify-ipod-shuffle-preview">Mighty</a>, the Spotify "iPod Shuffle"</li>
+<li><a href="https://en.wikipedia.org/wiki/Audio_bit_depth">Audio bit depth</a><ul>
+<li><a href="https://people.xiph.org/~xiphmont/demo/neil-young.html">24/192 Music Downloads... and why they make no sense</a></li>
+<li><a href="https://www.xiph.org/video/vid2.shtml">Monty's explainer video</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>"iPhone Pro" notch<ul>
+<li>What happens in landscape?</li>
+<li>Why bother with a notch?<ul>
+<li><a href="https://cdn.vox-cdn.com/uploads/chorus_asset/file/8597673/ph_1_color_black_moon_copy_1000x1000.png">Android notch</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://blog.agilebits.com/2017/08/01/1password-6-7-for-windows-a-feature-buffet/">1Password backpedals a bit</a></li>
+<li><a href="http://www.stereogum.com/1957739/that-silent-a-a-a-a-a-very-good-song-track-is-still-climbing-the-itunes-chart/news/">A a a a a Very Good Song</a></li>
+<li><code>#askatp</code><ul>
+<li><a href="https://twitter.com/khaine_/status/888366116053143552">How do you sync your home directories?</a></li>
+<li><a href="https://twitter.com/pkamb/status/888463692320227328">Old tech that's still in use?</a></li>
+<li><a href="https://twitter.com/crjohn/status/890392560065277952">🙄 Destiny 🙄</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Google%27s_Ideological_Echo_Chamber">Google's diversity "memo"</a><ul>
+<li><a href="https://medium.com/@yonatanzunger/so-about-this-googlers-manifesto-1e3773ed1788">Yonatan Zunger, ex-Googler</a></li>
+<li><a href="https://www.quora.com/What-do-scientists-think-about-the-biological-claims-made-in-the-document-about-diversity-written-by-a-Google-employee-in-August-2017">Suzanne Sadedin, Ph.D. in evolutionary bio</a></li>
+<li><a href="https://www.recode.net/2017/8/11/16127992/google-engineer-memo-research-science-women-biology-tech-james-damore">Rosalind C. Barnett and Caryl Rivers, gender/STEM researchers</a></li>
+<li><a href="https://www.wired.com/story/the-pernicious-science-of-james-damores-google-memo/">Megan Molteni and Adam Rogers</a></li>
+<li><a href="https://www.vox.com/the-big-idea/2017/8/11/16130452/google-memo-women-tech-biology-sexism">Cynthia Lee, woman in computer science</a></li>
+</ul>
+</li>
+<li><a href="http://variety.com/2017/digital/news/apple-1-billion-original-tv-shows-movies-budget-1202529421/">Apple sets $1B budget for original TV/movies</a></li>
+<li><a href="https://marco.org/2017/08/10/removed-send-to-watch">No more send-to-watch in Overcast</a><ul>
+<li><a href="https://www.relay.fm/radar/91">Under the Radar #91: Removing Features</a></li>
+<li><a href="https://www.relay.fm/clockwise/202">Clockwise #202: Explode a Knee</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco's continued bike escapades<ul>
+<li><a href="https://www.prioritybicycles.com/products/thecoast">Tiff's Priority Coast</a></li>
+<li><a href="https://www.prioritybicycles.com/products/continuumonyx">Marco's Priority Continuum Onyx</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Point_O%27_Woods,_New_York">Point O'Woods fence</a></li>
+</ul>
+</li>
+<li><a href="https://www.prioritybicycles.com/products/startfw2">Adam's Priority Start F/W 2.0</a></li>
+<li><a href="https://budnitzbicycles.com/bicycles/view/no3-titanium-city-bike">Budnitz No. 3</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works.</li>
+</ul>]]></description><itunes:subtitle>A a a a a Very Good Episode.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:598548f6ff7c50408a48aa64</guid><pubDate>Fri, 11 Aug 2017 04:11:04 +0000</pubDate><title>234: Everybody Has Asterisks</title><itunes:title>Everybody Has Asterisks</itunes:title><itunes:episode>234</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:15</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp234.mp3" length="82396737" type="audio/mpeg"/><link>https://atp.fm/234</link><description><![CDATA[<ul>
+<li>Toasters<ul>
+<li><a href="https://www.caseyliss.com/2015/9/10/siracusa-on-toasters">Toaster reviews</a></li>
+<li><a href="http://dobyfriday.com/">Do By Friday</a></li>
+</ul>
+</li>
+<li>Cameras<ul>
+<li><a href="https://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">O-MD E-M10</a><ul>
+<li><a href="http://www.amazon.com/dp/B009CNILX4/?tag=liismo-20">Zoom lens</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Sony_%CE%B17R_II">Sony α7R II</a></li>
+<li><a href="https://www.sony.com/electronics/interchangeable-lens-cameras/ilce-6300-body-kit">Sony α6300</a></li>
+</ul>
+</li>
+<li>Ad Blockers<ul>
+<li><a href="https://1blocker.com/">1Blocker</a></li>
+<li><a href="http://better.fyi">Better</a></li>
+</ul>
+</li>
+<li>A/V<ul>
+<li><a href="https://en.wikipedia.org/wiki/FLAC">FLAC</a></li>
+<li><a href="https://www.ponomusic.com/">Pono</a></li>
+<li><a href="http://tidal.com/us">Tidal</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Indent_style#Brace_placement_in_compound_statements">Brace styles</a></li>
+<li><a href="https://twitter.com/caseyliss/status/892005766537805825">Dolphin emulator behind the scenes</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>The #askatp Q&amp;A episode!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59853178a5790a7d30c30555</guid><pubDate>Sun, 06 Aug 2017 04:04:19 +0000</pubDate><title>233: Nobody Cares But Me, But I Do Care</title><itunes:title>Nobody Cares But Me, But I Do Care</itunes:title><itunes:episode>233</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp233.mp3" length="78283880" type="audio/mpeg"/><link>https://atp.fm/233</link><description><![CDATA[<ul>
+<li>Follow-Up:<ul>
+<li>TSMC 10nm vs. Intel 10nm<ul>
+<li><a href="https://semiaccurate.com/2016/09/26/globalfoundries-7nm-process-isnt-even-close-name/">Naming of process nodes</a></li>
+<li><a href="https://www.extremetech.com/computing/246902-intel-claims-three-year-advantage-10nm-process-wants-change-define-process-nodes">Intel's claimed three-year advantage</a></li>
+<li><a href="https://seekingalpha.com/article/4049095-truth-behind-intels-manufacturing-lead">Intel set to lose process leadership after 2018?</a></li>
+</ul>
+</li>
+<li>Home audio &amp; subwoofers<ul>
+<li><a href="https://www.cnet.com/news/being-there-the-hifiman-he-6-headphones/">HiFiMan HE-6</a></li>
+<li><a href="https://www.youtube.com/watch?v=LNKgh6TfWXo">Christmas Island crabs</a></li>
+</ul>
+</li>
+<li><del>Neutral</del> Coast?<ul>
+<li><a href="http://www.islabikes.co.uk/">Isla</a><ul>
+<li><a href="https://www.facebook.com/Islabikes/videos/850995221655668">Pronunciation video</a></li>
+</ul>
+</li>
+<li><a href="https://us.woombikes.com/">Woom</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Derailleur_gears">Derailleur gears</a></li>
+<li><a href="https://www.prioritybicycles.com/products/thecoast?variant=27838674119">Priority Coast</a></li>
+<li><a href="https://www.fastcompany.com/47593/wal-mart-you-dont-know">Huffy and Wal-Mart</a></li>
+</ul>
+</li>
+<li><a href="http://www.imdb.com/title/tt0085334/quotes/qt0348951">A Christmas Story</a> quote corrected by <a href="https://twitter.com/atpreferences/status/890320868160688128">@ATPReferences</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2017/07/apple-firmware-release-may-reveal-iphone-plans/">The HomePod firmware leak</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/891841607728844801/photo/1">Steve Troughton-Smith</a><ul>
+<li><a href="https://www.patreon.com/steventroughtonsmith">His Patreon</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/_inside/status/892798767019286529">Guilherme Rambo</a></li>
+<li><a href="http://www.allenpike.com/2017/developing-for-iphone-pro/">Allen Pike's take</a></li>
+<li><a href="http://blog.maxrudberg.com/post/163725682478/iphone-pros-edge-to-edge-screen-and-what-it-could">Max Rudberg's take</a></li>
+<li><a href="https://daringfireball.net/linked/2017/08/01/d22-ferrari">"Ferrari"</a></li>
+</ul>
+</li>
+<li><a href="https://512pixels.net/2017/07/rip-ipod-nano-shuffle/">RIP [most] iPods</a></li>
+<li><a href="https://sixcolors.com/link/2017/07/final-thoughts-on-flash/">RIP Flash</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Storing photos<ul>
+<li><a href="http://www.spacegremlinapp.com/">Space Gremlin</a></li>
+<li><a href="http://www.derlien.com/">Disk Inventory X</a></li>
+<li><a href="https://daisydiskapp.com/">DaisyDisk</a></li>
+<li><a href="http://grandperspectiv.sourceforge.net/">Grand Perspective</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: The Casper mattress was designed by a team of 20 engineers, and perfected by a community of nearly half a million sleepers. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/atp">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>HomePod firmware, iPod Shuffles, bikes, and bug spray.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59717167440243149e88172a</guid><pubDate>Tue, 25 Jul 2017 23:30:00 +0000</pubDate><title>232: You've Exceeded Some Limit</title><itunes:title>You've Exceeded Some Limit</itunes:title><itunes:episode>232</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp232.mp3" length="96831682" type="audio/mpeg"/><link>https://atp.fm/232</link><description><![CDATA[<ul>
+<li>Send us questions! Tweet with the hashtag <code>#askatp</code>!</li>
+<li>The <a href="https://en.wikipedia.org/wiki/Apple_A10X">A10X</a> is 10nm as per <a href="http://www.anandtech.com/show/11596/techinsights-confirms-apple-a10x-soc-10nm-tsmc">AnandTech</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Transistor#Simplified_operation">Source &amp; Drain</a></li>
+<li><a href="https://goo.gl/zty1ma">Larrabee</a></li>
+</ul>
+</li>
+<li><a href="https://www.theverge.com/2017/3/17/14959650/netflix-skip-intro-button">Netflix credits skipping</a><ul>
+<li><a href="http://hypercritical.co/2013/02/24/annoyance-driven-development">John's original complaint</a></li>
+</ul>
+</li>
+<li>Community management<ul>
+<li><a href="https://www.bloomberg.com/news/articles/2016-10-17/disney-said-to-have-dropped-twitter-pursuit-partly-over-image">Disney may have wanted to buy Twitter</a>... a long time ago</li>
+<li><a href="http://www.playbattlegrounds.com/main.pu">Player Unknown's Battlegrounds</a></li>
+</ul>
+</li>
+<li>Odd Overcast crash</li>
+<li>Post-show: <a href="http://bmxmuseum.com/bikes/mongoose/?model=131&amp;year=1984">Mongoose Californian</a><ul>
+<li><a href="http://www.bmxsociety.com/uploads/monthly_09_2008/post-2048-1220829004.jpg">Alternative image</a></li>
+<li><a href="http://stormingmortal.com/15">Storming Mortal #15: Apple Kool-Aid and the Mongoose</a> (dated 18 June 2014)</li>
+<li><a href="https://twitter.com/siracusa/status/1104322538">John realizes his full potential</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pee-wee%27s_Big_Adventure#/media/File:Peewee%27s_bike.jpg">Pee Wee's bike</a></li>
+<li><a href="https://storage.bhs1.cloud.ovh.net/v1/AUTH_3dd9d107e8f64e41a88bae4363b3319b/listlux/atlanta/f3G63Ka3Lf5Gd5Ha5J5d4kf1d00faad3f61cf2.jpg">Huffy White Heat</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Cleaning out the show-notes cabinet.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:596d79ee3a04110b1bb4e893</guid><pubDate>Thu, 20 Jul 2017 13:26:11 +0000</pubDate><title>231: I Am Not a Salad Power User</title><itunes:title>I Am Not a Salad Power User</itunes:title><itunes:episode>231</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:15</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp231.mp3" length="81945819" type="audio/mpeg"/><link>https://atp.fm/231</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Calibrating a TV<ul>
+<li><a href="http://www.rtings.com/tv">Rtings TV Settings</a></li>
+<li><a href="http://choptsalad.com">Chopt</a> or <a href="http://saladworks.com">SaladWorks</a></li>
+<li><a href="http://www.samsung.com/uk/business/business-products/smart-signage/">Smart Signage</a></li>
+<li><a href="http://www.samsung.com/us/explore/frame-tv/4k-uhd/?wcmmode=disabled">Samsung Frame TV</a></li>
+<li><a href="http://www.thx.com/tune-up-app/">THX Tune-Up app</a><ul>
+<li><a href="https://www.apple.com/shop/product/MD826AM/A/lightning-digital-av-adapter">Lightning Digital AV Adapter</a></li>
+<li><a href="https://panic.com/blog/the-lightning-digital-av-adapter-surprise/">Panic's surprise</a></li>
+</ul>
+</li>
+<li>Sony / <code>7669</code></li>
+</ul>
+</li>
+<li>Marco's discontinued small speaker amp: <a href="http://www.ecoustics.com/products/nuforce-dia-stereo-amplifier-dac/">NuForce Dia</a>. Some alternatives Marco has considered (but not tested!):<ul>
+<li><a href="https://www.amazon.com/dp/B00PLCMZ8W/?tag=marcoorg-20">Grace Digital GDI-BTAR513</a>, $110</li>
+<li><a href="https://www.amazon.com/dp/B017W12UCU/?tag=marcoorg-20">SMSL Q5</a>, $140</li>
+<li><a href="https://www.amazon.com/dp/B00UOVOVXM/?tag=marcoorg-20">NuForce DDA-120</a>, $300</li>
+<li><a href="https://www.amazon.com/dp/B00L9FRJVS?tag=marcoorg-20">Teac AI-301DA</a>, $350</li>
+<li><a href="https://www.amazon.com/dp/B00F0OMUGS/?tag=marcoorg-20">NAD D 3020</a>, $400</li>
+</ul>
+</li>
+<li><a href="http://ioblog.suider.com/type-c-personality/">Type-C Personality</a></li>
+<li><a href="https://en.wikipedia.org/wiki/OLED">OLED</a> image retention<ul>
+<li><a href="https://marco.org/rmbp-irtest.html">Marco's image retention test</a></li>
+</ul>
+</li>
+<li><a href="http://www.osnews.com/story/29922/Apple_s_deafening_silence_on_net_neutrality">Apple's silence on Net Neutrality</a></li>
+</ul>
+</li>
+<li>Send us questions! Tweet with the hashtag <code>#askatp</code>!</li>
+<li><a href="https://1password.com/">1Password</a> kerfuffle<ul>
+<li><a href="https://blog.agilebits.com/2017/07/13/why-we-love-1password-memberships/">Their blog post</a></li>
+<li><a href="https://textexpander.com/">TextExpander</a></li>
+</ul>
+</li>
+<li>Overcast UI Dilemma<ul>
+<li><a href="https://www.relay.fm/radar/87">Under the Radar #87: Old Code vs. New APIs</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="http://neutral.fm/">Neutral</a>: Casey's latest impulse buy<ul>
+<li><a href="http://drops.caseyliss.com/sLVILP">The family</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://atp.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Get 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>TV calibration, 1Password subscription rumblings, Overcast UI debates, and Casey's latest impulse buy.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5966e0a9d2b857c21290de7a</guid><pubDate>Fri, 14 Jul 2017 00:41:25 +0000</pubDate><title>230: Auto, Dynamic, Fresh, Dank</title><itunes:title>Auto, Dynamic, Fresh, Dank</itunes:title><itunes:episode>230</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:39:07</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp230.mp3" length="71489768" type="audio/mpeg"/><link>https://atp.fm/230</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://www.microsoft.com/en-us/windows/windows-hello">Windows Hello</a><ul>
+<li><a href="https://www.youtube.com/watch?v=nMdVHDqJsEs">Demo video</a></li>
+<li><a href="https://www.youtube.com/watch?v=J1NL246P9Vg">Telling Twins Apart</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rubber-hose_cryptanalysis">Rubber-hose cyptanalysis</a></li>
+<li><a href="https://xkcd.com/538/">Relevant xkcd Comic</a></li>
+<li><a href="https://www.youtube.com/watch?v=8-dWSIUNF10">Apollo Robbins</a></li>
+</ul>
+</li>
+<li><a href="https://goo.gl/9bFSwb"><code>mDNSResponder</code></a><ul>
+<li><a href="https://www.joelonsoftware.com/2000/04/06/things-you-should-never-do-part-i/">Never re-write software</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Vint_Cerf">Vint Cerf</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Zero-configuration_networking">Zero-config</a></li>
+<li><a href="https://opensource.apple.com/source/mDNSResponder/"><code>mDNSResponder</code> source</a></li>
+<li><a href="https://arstechnica.com/apple/2002/09/macosx-10-2/7/">Siracusa on Rendezvous</a></li>
+</ul>
+</li>
+<li>On rewriting <a href="https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/dyld.1.html"><code>dyld</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_IIfx">Mac IIfx</a><ul>
+<li><a href="http://www.imdb.com/title/tt0089118/">F/X</a></li>
+<li><a href="http://www.imdb.com/title/tt0108865/?ref_=fn_al_tt_1">Movie Magic</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Marco's latest impulse buy<ul>
+<li><a href="http://www.amazon.com/dp/B01MZF7WCT/?tag=marcoorg-20">LG 2017 4K OLED Series</a></li>
+<li><a href="http://hypercritical.co/2013/01/07/ces-worse-products-through-software">Worse Products Through Software</a></li>
+<li><a href="http://hypercritical.co/2016/04/22/canonical-bagel-flavors">Canonical Bagel Flavors</a></li>
+<li><a href="https://github.com/JohnCoates/Aerial">Aerial screensaver</a></li>
+<li><a href="https://www.paradigm.com/products-current/type=bookshelf/model=atom-monitor">Paradigm Atom</a></li>
+<li><a href="http://www.harmankardon.com/computer-speakers/SOUNDSTICKS+III.html">Harman Kardon Soundsticks</a></li>
+<li><a href="https://technabob.com/blog/wp-content/uploads/2010/11/g4-cube-speaker.jpg">G4 Cube Speakers</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a> (a brief return of the Summer 2014 remix)</li>
+<li>Post-show:<ul>
+<li><a href="https://goo.gl/Gn2oTi">Double Dare</a><ul>
+<li><a href="http://knowyourmeme.com/photos/1152332-webcomics">Let People Enjoy Things</a></li>
+<li><a href="https://www.thrillist.com/entertainment/nation/an-oral-history-of-nickelodeons-double-dare">Oral History of Double Dare</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Net_neutrality">Net Neutrality</a><ul>
+<li><a href="https://www.youtube.com/watch?v=l6UZUhRdD6U">Vihart video</a></li>
+<li><a href="https://www.youtube.com/watch?v=wtt2aSV8wdw">CGP Grey video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ajit_V._Pai">Ajit Pai</a></li>
+<li><a href="https://arstechnica.com/tech-policy/2017/07/saving-net-neutrality-tips-for-writing-persuasive-comments-to-the-fcc/">Ars advice</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/atp">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>Marco bought something again.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:595da43044024313332c996d</guid><pubDate>Thu, 06 Jul 2017 16:14:37 +0000</pubDate><title>229: Just Smush the Screen Somewhere</title><itunes:title>Just Smush the Screen Somewhere</itunes:title><itunes:episode>229</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:36:05</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp229.mp3" length="69307254" type="audio/mpeg"/><link>https://atp.fm/229</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>DragonDrop replacement: <a href="http://eternalstorms.at/yoink/">Yoink</a> (<a href="https://itunes.apple.com/us/app/yoink-improved-drag-drop-file-management/id457622435?mt=12&amp;ign-mpt=uo%3D4">App Store</a>)</li>
+<li>Mac stuff for 👵🏻👴🏻 (including Stephen Hackett)</li>
+<li><code>dyld</code> vs. <code>dyldd</code> vs. <code>closured</code></li>
+<li><a href="https://blog.automatic.com/how-we-cut-our-ios-apps-launch-time-in-half-with-this-one-cool-trick-7aca2011e2ea">App launch time thanks to <code>dyld</code></a><ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2016/406/">Relevant WWDC 2016 talk</a></li>
+</ul>
+</li>
+<li>Encoding/decoding new formats on old hardware<ul>
+<li><a href="https://en.wikipedia.org/wiki/Sorenson_Media#Encoding_Technologies">Sorenson</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/WebRTC">WebRTC</a> and <a href="https://goo.gl/Q1iGv">Opus</a><ul>
+<li><a href="https://webkit.org/blog/7726/announcing-webrtc-and-media-capture/">WebKit announcement</a></li>
+<li><a href="https://tools.ietf.org/html/draft-ietf-rtcweb-audio-11#section-3">Codec requirements</a></li>
+<li><a href="http://acid2.acidtests.org/#top">Acid2 Test</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>iOS 11 Multitasking<ul>
+<li><a href="https://www.relay.fm/connected">Connected</a> with <a href="https://macstories.net">Federico Viticci</a>, <a href="https://twitter.com/imyke">Myke Hurley</a>, <a href="https://512pixels.net">Stephen Hackett</a></li>
+<li><a href="https://www.relay.fm/canvas">Canvas</a> with <a href="http://www.speirs.org/">Fraser Speirs</a> and Federico Viticci</li>
+<li><a href="https://www.relay.fm/cortex">Cortex</a> with <a href="http://www.cgpgrey.com/">CGP Grey</a> and Myke Hurley</li>
+<li><a href="https://www.relay.fm/upgrade">Upgrade</a> with <a href="https://sixcolors.com">Jason Snell</a> and Myke Hurley</li>
+<li><a href="https://goo.gl/0vjR8W">WIMP</a></li>
+</ul>
+</li>
+<li><a href="https://daringfireball.net/linked/2017/07/03/kuo-iphone-2017-touch-id">New iPhone Rumors</a><ul>
+<li><a href="https://www.relay.fm/connected/149">Connected #149: Caramel</a></li>
+<li><a href="https://goo.gl/ZS7zK3">Sneakers</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="https://www.apple.com/shop/product/HKN62LL/A/lg-ultrafine-5k-display?fnode=8a">LG UltraFine 5K Display</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% of your first order.</li>
+</ul>]]></description><itunes:subtitle>Face-unlock possibilities, iOS 11 multitasking so far, and the latest news about floppy drives.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59546f0372af659452cd5f97</guid><pubDate>Thu, 29 Jun 2017 18:20:46 +0000</pubDate><title>228: I Never Cancel a Drag</title><itunes:title>I Never Cancel a Drag</itunes:title><itunes:episode>228</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp228.mp3" length="79597013" type="audio/mpeg"/><link>https://atp.fm/228</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>MacBook Adorable<ul>
+<li><a href="http://www.amazon.com/dp/B01JD9GN6I/?tag=liismo-20">Example multi-use hub</a></li>
+<li><a href="https://www.caseyliss.com/2017/6/25/macbook-adorable">Casey's Review</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/Broooks/status/879117933309513728/photo/1">Keyboard "shim kit"</a></li>
+<li>USB-C hubs<ul>
+<li><a href="http://www.amazon.com/dp/B017H9CF1S/?tag=marcoorg-20">Belkin hub</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/homepod/">HomePod</a>'s "screen"<ul>
+<li><a href="https://overcast.fm/+CKslfwtw4/02:50">Marco's favorite follow-up ever in Analog(ue) #10</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://www.amazon.com/dp/B01J24C0TI/?tag=marcoorg-20">Echo Show</a></li>
+<li>iOS Drag and Drop<ul>
+<li><a href="https://twitter.com/drwave">Dr. Wave</a></li>
+<li><a href="https://www.macstories.net/reviews/dragondrop-simplifies-os-x-drag-drop/">DragonDrop</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Dynamic_linker#macOS_and_iOS"><code>dyld</code> 3</a><ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2017/413/">App Startup Time: Past, Present, Future</a></li>
+</ul>
+</li>
+<li>Marco gets <a href="https://marco.org/2016/08/15/vbr-mp3-plea">his VBR wish</a><ul>
+<li><a href="http://atp.fm/182">Original ATP discussion</a> (<a href="https://overcast.fm/+CdTym-vo/1:24:30">Overcast timestamp link</a>)</li>
+<li>This episode, for example:<ul>
+<li><a href="http://traffic.libsyn.com/atpfm/atp228.mp3">Official CBR version</a>, 80 MB</li>
+<li><a href="http://static.marco.org/atp228-vbr-23Vy3Z2a2xT.mp3">VBR version</a>, 56 MB</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="https://en.wikipedia.org/wiki/IBM_PC_Convertible">PC Convertible</a></li>
+<li><a href="https://www.youtube.com/watch?v=vMNw99Q8Ok0">Spaaaaacccccceeeeeee</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% of your first order.</li>
+<li><a href="http://harrys.com/atp">Harry's</a>: A great shave at a fair price. Get your free trial set.</li>
+</ul>]]></description><itunes:subtitle>Echo Show, USB-C hubs, iOS drag-and-drop, and dyld 3!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5948976259cc684e3fe2522a</guid><pubDate>Thu, 22 Jun 2017 03:55:54 +0000</pubDate><title>227: Typing on Pillows</title><itunes:title>Typing on Pillows</itunes:title><itunes:episode>227</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:21</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp227.mp3" length="85344330" type="audio/mpeg"/><link>https://atp.fm/227</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://www.imore.com/ipad-pro-2">Serenity Caldwell on the new iPad</a><ul>
+<li><a href="https://www.imore.com/sites/imore.com/files/styles/xlarge/public/field/image/2017/06/ipad-pro-size-classes-2017_0.jpg?itok=FAYRfNv0">Body size comparison</a></li>
+<li><a href="https://www.imore.com/sites/imore.com/files/styles/xlarge/public/field/image/2017/06/ipad-pro-screen-resolution-classes-2017.jpg?itok=UGUksgAm">Screen size comparison</a></li>
+<li><a href="https://www.imore.com/ios-11-will-let-you-type-queries-siri">Typing to Siri</a></li>
+</ul>
+</li>
+<li>Ryan Jones makes some observations<ul>
+<li><a href="https://twitter.com/rjonesy/status/871826284611080198">New lock &amp; power off behavior</a></li>
+<li><a href="https://twitter.com/rjonesy/status/871831407018094594/photo/1">"Offload"ing unused apps</a><ul>
+<li><a href="https://pics.cydiageeks.com/wp-content/uploads/2017/06/offloaded-app-in-use.png">Springboard treatment</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Steve Troughton-Smith makes some observations<ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/873096556852805632">Spaces persistence</a><ul>
+<li><a href="https://arstechnica.com/apple/2003/04/finder/">Spatial Finder</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/stroughtonsmith/status/873129974676373506">Document-based apps' launch UI</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/macos/high-sierra-preview/">FaceTime capture of Live Photos</a></li>
+<li><a href="https://twitter.com/zkahn/status/872542668047368192/photo/1">ADAs and default apps</a></li>
+<li><a href="https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format">HEIF is good!</a> is good</li>
+<li><a href="https://twitter.com/Catfish_Man/status/871843485086695424">32-bit support "sunset" in macOS</a><ul>
+<li><a href="http://www.sealiesoftware.com/blog/archive/2009/01/27/objc_explain_Non-fragile_ivars.html">Non-fragile ivars</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/High_Sierra_Format">High Sierra Format</a><ul>
+<li><a href="http://photobucket.com/gallery/user/ballsandy/media/bWVkaWFJZDo5MDI2Mzg5Mw==/?ref=">CD caddy</a></li>
+</ul>
+</li>
+<li>APFS is good!</li>
+<li><a href="http://www.pcgamer.com/apples-new-imac-pro-costs-5000-but-is-it-overpriced/">iMac Pro price comparison</a></li>
+<li><a href="https://twitter.com/BillyTheDragon/status/872465040389091329/photo/1">Oddities between iMac Tiers</a></li>
+<li><a href="https://developer.apple.com/support/homekit-accessory-protocol/">HomeKit is available to all</a></li>
+<li><a href="http://www.appstorereviewguidelineshistory.com/articles/2017-06-08-new-rules-following-wwdc-2017/">Apps can allow "programming environments"</a></li>
+<li><a href="https://developer.apple.com/app-store/product-page/">App Store reviews don't <em>have</em> to reset on update</a></li>
+<li>Keynote presentation diversity</li>
+<li><a href="http://5by5.tv/movies/1">Siracusa reviews Goodfellas</a></li>
+</ul>
+</li>
+<li>Casey got a <a href="https://www.apple.com/macbook/">MacBook Adorable</a><ul>
+<li><a href="http://www.amazon.com/dp/B00XU6PM68/?tag=liismo-20">USB &amp; Ethernet</a></li>
+<li><a href="https://www.monoprice.com/product?c_id=103&amp;cp_id=10330&amp;cs_id=1033001&amp;p_id=15758&amp;seq=1&amp;format=2">HDMI &amp; USB</a></li>
+<li><a href="https://www.monoprice.com/product?c_id=103&amp;cp_id=10330&amp;cs_id=1033001&amp;p_id=21823&amp;seq=1&amp;format=2">SD Card Reader</a></li>
+<li><a href="http://www.amazon.com/dp/B06W2PH284/?tag=liismo-20">Lightning Cable</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <ul>
+<li>WWDC doughnuts</li>
+<li><a href="http://titlecase.com/">TitleCase.com</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://hover.com/transfermydomain">Hover</a>: Transfer your domain to Hover by the end of June to save 40% on your first year.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>After a Follow-Upocalypse, we finally hear about Casey's new family member.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5941fe33ff7c503b3f7b148a</guid><pubDate>Thu, 15 Jun 2017 21:40:49 +0000</pubDate><title>226: Smooth Scrolling Is For Suckers</title><itunes:title>Smooth Scrolling Is For Suckers</itunes:title><itunes:episode>226</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:16:14</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp226.mp3" length="98219914" type="audio/mpeg"/><link>https://atp.fm/226</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://twitter.com/caseyliss/status/875064691348971521">Lots of Follow Up</a></li>
+<li>John's ancient, slow, Mac Pro</li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2017/715/">APFS WWDC session</a> and file name encoding<ul>
+<li><a href="http://www.unicode.org/reports/tr15/#Norm_Forms">Norm forms</a></li>
+<li>Compression vs. HFS+</li>
+</ul>
+</li>
+<li>iOS 11<ul>
+<li>Dots vs. Bars for signal strength</li>
+<li><a href="http://adcdownload.apple.com/Documentation/Beta_Release_Notes_Jun_5_2017/iOS_11_beta_Release_Notes.pdf">Drop of third party service integration</a><ul>
+<li><a href="https://twitter.com/RealDarrenCohen/status/871881091405283329">Perhaps the APIs were removed?</a></li>
+</ul>
+</li>
+<li>Many touch options for iOS 11 home screens on non-Force Touch devices</li>
+<li><a href="https://9to5mac.com/2017/06/06/ios-11-share-your-wifi/">Log your friends into your WiFi</a></li>
+<li><a href="https://twitter.com/settern/status/874797098729918464">Multiple file uploads → Mobile Safari</a></li>
+</ul>
+</li>
+<li>Tidbits from <a href="https://daringfireball.net/thetalkshow/2017/06/08/ep-193">The Talk Show #193: Crack Marketing Team</a></li>
+<li>tvOS</li>
+<li>iCloud storage: 1TB → 2TB</li>
+<li><a href="http://www.sonnettech.com/product/egfx-breakaway-box.html">Sonnet eGFX</a></li>
+<li><a href="https://www.google.com/search?q=Apple+Wireless+Keyboard+A1016&amp;tbm=isch">Apple Wireless Keyboard A1016</a></li>
+<li>New iPads<ul>
+<li><a href="https://twitter.com/settern/status/873017058144866304">20ms vs. 50ms latency</a> <a href="https://twitter.com/settern/status/873017294766485504">2</a> <a href="https://twitter.com/settern/status/873017638737240064">3</a></li>
+<li><a href="https://twitter.com/settern/status/874222589337640961">Sample rate video</a></li>
+<li><a href="http://hypercritical.co/2013/02/08/dont-stop-thinking-about-tomorrow">Microsoft video</a></li>
+<li><a href="https://us.hardware.info/reviews/4592/vast-majority-of-gamers-prefers-120-hz-monitors">People prefer 120 Hz displays</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li>Casey steals something from WWDC</li>
+<li>Marco holds court at <a href="https://sopocafe.com/">Social Policy</a> (more on <a href="http://www.therunloop.com/7">Run Loop</a> and <a href="https://www.relay.fm/radar/84">Under the Radar</a>)</li>
+<li><a href="http://www.levi.com/US/en_US/levi/p/723340223">Jackets</a> and pins</li>
+<li>WWDC Food<ul>
+<li><a href="https://budgetbytes.com/wp-content/uploads/2014/09/Cream-Cheese.jpg">Philadelphia cream cheese brick</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>]]></description><itunes:subtitle>Much more WWDC discussion, including what you've all been waiting for.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:59365b4815cf7df0e275d734</guid><pubDate>Tue, 06 Jun 2017 07:45:41 +0000</pubDate><title>225: A Conversation with Siri</title><itunes:title>A Conversation with Siri</itunes:title><itunes:episode>225</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp225.mp3" length="103691242" type="audio/mpeg"/><link>https://atp.fm/225</link><description><![CDATA[<p>Our WWDC 2017 live show!</p>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% of your first order.</li>
+</ul>]]></description><itunes:subtitle>Our WWDC 2017 live show!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:592f8ebbd2b857caa394a720</guid><pubDate>Thu, 01 Jun 2017 19:08:02 +0000</pubDate><title>224: Yearning for Reflection</title><itunes:title>Yearning for Reflection</itunes:title><itunes:episode>224</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:40:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp224.mp3" length="115915495" type="audio/mpeg"/><link>https://atp.fm/224</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li><a href="https://twitter.com/kubabogaczewicz/status/868118512782462976">Multiple versions of photos</a></li>
+<li>Quietly improving MacBook Pro keyboards</li>
+</ul>
+</li>
+<li>Pre-<a href="https://developer.apple.com/wwdc">WWDC</a> hopes and dreams<ul>
+<li><a href="https://www.relay.fm/upgrade/143">Upgrade #143: The WWDC Keynote Draft 2017</a></li>
+<li><a href="https://daringfireball.net/2017/05/ipad_trackpad">What If the iPad Smart Keyboard Had a Trackpad?</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://jet.com/">Jet</a>: A shopping site that makes it easy to save money on the stuff you buy all the time. Use code <strong>ATP</strong> at checkout for 20% off your first 2 orders over $35 (terms and conditions apply).</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>Our WWDC 2017 predictions and wishes.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:592646963a04114633e6f227</guid><pubDate>Thu, 25 May 2017 17:53:31 +0000</pubDate><title>223: Throw the Fork Away</title><itunes:title>Throw the Fork Away</itunes:title><itunes:episode>223</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp223.mp3" length="74402441" type="audio/mpeg"/><link>https://atp.fm/223</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>Those ✂️️🔑<ul>
+<li><a href="https://twitter.com/ian_mcdowell/status/865028964015685633">What do Apple Geniuses do?</a></li>
+<li><a href="https://support.apple.com/en-us/HT205662">Official procedure</a></li>
+<li><a href="https://www.youtube.com/watch?v=5yZsc6JnFcQ">Sketchy keycap removal procedure</a></li>
+<li><a href="https://www.flickr.com/photos/150857257@N08/sets/72157683909112876/">Regrets from home repair</a></li>
+</ul>
+</li>
+<li>More on box lunches!</li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2017/05/23/apple-denise-young-smith-vp-hr-includsion-diversity/">Denise Young Smith: VP, HR → VP, Inclusion &amp; Diversity</a><ul>
+<li><a href="https://www.apple.com/pr/bios/denise-young-smith.html">Denise Young Smith</a></li>
+<li><a href="https://www.apple.com/pr/bios/lisa-jackson.html">Lisa Jackson</a></li>
+<li><a href="https://daringfireball.net/thetalkshow/2017/04/21/ep-188">The Talk Show #188: Apple VP Lisa Jackson</a></li>
+</ul>
+</li>
+<li><a href="https://arstechnica.com/gadgets/2017/05/intel-to-make-thunderbolt-3-royalty-free-in-bid-to-spur-adoption/">Thunderbolt to become royalty-free</a> (<a href="https://newsroom.intel.com/editorials/envision-world-thunderbolt-3-everywhere/">Intel press release</a>)</li>
+<li><a href="https://techcrunch.com/2017/05/14/get-ready-for-a-new-ipad-and-a-mysterious-siri-speaker-at-wwdc/">Apple Siri-speaker-with-screen</a></li>
+<li><a href="https://events.google.com/io/">Google I/O</a><ul>
+<li><a href="https://events.google.com/io/schedule/?section=may-17&amp;sid=__keynote__">Keynote</a></li>
+<li><a href="https://www.theverge.com/2017/5/17/15650096/google-photos-new-features-shared-libraries-printed-books-io-2017">Google Photos improvements</a></li>
+<li><a href="http://5by5.tv/hypercritical/9">Hypercritical #9: No iLife is an Island</a></li>
+</ul>
+</li>
+<li><a href="http://kotlinlang.org/">Kotlin</a><ul>
+<li><a href="http://nilhcem.com/swift-is-like-kotlin/">Compared to Swift</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% of your first order.</li>
+</ul>]]></description><itunes:subtitle>We tried really hard to talk about Google I/O.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:591d0e9117bffc24f111b237</guid><pubDate>Thu, 18 May 2017 18:06:44 +0000</pubDate><title>222: As Thin as Humans Will Tolerate</title><itunes:title>As Thin as Humans Will Tolerate</itunes:title><itunes:episode>222</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp222.mp3" length="75536569" type="audio/mpeg"/><link>https://atp.fm/222</link><description><![CDATA[<ul>
+<li>Follow up: Revisiting <a href="https://www.nytimes.com/interactive/2017/05/10/technology/Ranking-Apple-Amazon-Facebook-Microsoft-Google.html">the quiz</a> from last episode</li>
+<li><a href="https://marco.org/2017/05/15/mp3-isnt-dead">MP3 is dead; long live MP3</a><ul>
+<li><a href="https://www.iis.fraunhofer.de/en/ff/amm/prod/audiocodec/audiocodecs/mp3.html">Fraunhofer's announcement</a></li>
+<li><a href="http://www.amazon.com/dp/B0004LYFKQ/?tag=siracusa-20">Cookies</a></li>
+<li><a href="http://lame.sourceforge.net/">LAME encoder</a></li>
+<li><a href="http://manual.audacityteam.org/man/faq_about_audacity.html#mp3">Audacity 💔 MP3</a></li>
+<li><a href="https://support.spotify.com/us/using_spotify/search_play/what-bitrate-does-spotify-use-for-streaming/">Spotify uses Ogg Vorbis</a></li>
+<li><a href="http://opus-codec.org/comparison/">Opus codec</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DivX">DivX codec</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/DIVX">DIVX disc format</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2017/05/16/ipad-mini-discontinued-report/">iPad Mini is dead?</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2017-05-16/apple-said-to-plan-laptop-upgrades-as-microsoft-enters-market">MacBooks and MacBook Pros are alive?</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="https://www.wired.com/2017/05/apple-park-new-silicon-valley-campus">Apple Park</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ray_and_Maria_Stata_Center">MIT Stata Center</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass.</li>
+<li><a href="http://audible.com/atp">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>The reports of MP3's death are greatly exaggerated.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5913dd6ae3df28c1113dcf98</guid><pubDate>Thu, 11 May 2017 17:27:16 +0000</pubDate><title>221: Personal Body Chemistry</title><itunes:title>Personal Body Chemistry</itunes:title><itunes:episode>221</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:48</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp221.mp3" length="94310432" type="audio/mpeg"/><link>https://atp.fm/221</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>The politics in <a href="http://atp.fm/episodes/220">the last episode</a></li>
+<li>Rear Touch ID and prototypes</li>
+<li><a href="http://bgr.com/2017/05/05/surface-laptop-keyboard-dirt-alcantara/">Dirty laptop fabric</a><ul>
+<li><a href="https://goo.gl/aWYYeh">Alcantara</a></li>
+<li><a href="http://www.amazon.com/dp/B001339ZMW/?tag=liismo-20">Mr. Clean Magic Eraser</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Lipophobicity">Oleophobic coating</a></li>
+</ul>
+</li>
+<li>Are people being backed into liking touchscreen laptops?</li>
+<li><a href="https://www.wikitribune.com/">WikiTribune</a><ul>
+<li><a href="https://lists.wikimedia.org/pipermail/wikimedia-l/2017-April/087336.html">...is based on Wordpress and not maintained by Wikimedia</a></li>
+<li><a href="https://www.wikinews.org/">...already has a competitor called Wikinews</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.amazon.com/dp/B01J24C0TI/">Amazon Echo Show</a><ul>
+<li><a href="https://twitter.com/evleaks/status/860568968943341570">Previous rumor Marco was enamored with</a></li>
+<li><a href="http://www.imdb.com/title/tt0099810/">Hunt for Red October</a></li>
+<li><a href="https://www.caseyliss.com/2015/3/19/duckduckgo">You Should Use DuckDuckGo</a></li>
+<li><a href="https://en.wikipedia.org/wiki/3Com_Audrey">3Com Audrey</a></li>
+</ul>
+</li>
+<li><a href="https://www.nytimes.com/interactive/2017/05/10/technology/Ranking-Apple-Amazon-Facebook-Microsoft-Google.html">Brief Quiz</a></li>
+<li>Dropping Dropbox</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco and Casey can't shut up about the Switch and Mario Kart</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Amazon Echo Show, dropping Dropbox, Mario Kart, and a "brief quiz".</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:590a9e9446c3c4b3041ee609</guid><pubDate>Thu, 04 May 2017 18:51:03 +0000</pubDate><title>220: Executive Box Lunch</title><itunes:title>Executive Box Lunch</itunes:title><itunes:episode>220</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:57</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp220.mp3" length="93694386" type="audio/mpeg"/><link>https://atp.fm/220</link><description><![CDATA[<ul>
+<li>Follow up: <a href="http://bitsplitting.org/2017/05/03/40-box-lunch/">Moscone food research by Daniel Jalkut</a></li>
+<li>More on the potential rear Touch ID<ul>
+<li><a href="http://www.samsung.com/global/galaxy/galaxy-s8/">Samsung Galaxy S8</a></li>
+<li><a href="https://support.apple.com/en-us/HT202658">Assistive Touch</a></li>
+<li>Turning off Haptics:<br><code>Settings</code> → <code>Sounds &amp; Haptics</code> → <code>System Haptics</code></li>
+</ul>
+</li>
+<li><a href="https://www.wikitribune.com/">WikiTribune</a></li>
+<li>Basic humanity<ul>
+<li><a href="https://www.youtube.com/watch?v=MmWWoMcGmo0">Jimmy Kimmel's story</a></li>
+<li><a href="https://www.caseyliss.com/2017/1/14/that-escalated-quickly">Casey's tweet recap</a></li>
+<li><a href="https://www.relay.fm/analogue/98">Associated episode of Analog(ue)</a></li>
+</ul>
+</li>
+<li><a href="http://www.amazon.com/dp/B0186JAEWK/?tag=liismo-20">Amazon Echo Look</a><ul>
+<li><a href="https://www.relay.fm/download/1">Download #1: Wardrobe Philosophy</a></li>
+</ul>
+</li>
+<li><a href="https://www.microsoftstore.com/store/msusa/en_US/pdp/productID.5102691100">Microsoft Surface Laptop</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Casey <a href="https://twitter.com/caseyliss/status/859092581594083329">really loves</a> his new copy of <a href="http://www.amazon.com/dp/B01N1037CV/?tag=liismo-20">Mario Kart 8 Deluxe</a><ul>
+<li>Mario Kart <a href="http://mariokart8.nintendo.com/?info=switch&amp;">over LAN</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Surface Laptop, Echo Look, WikiTribune, and basic humanity.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:590161dfdb29d6372510b6b9</guid><pubDate>Fri, 28 Apr 2017 00:01:32 +0000</pubDate><title>219: Million Dollar Lunch</title><itunes:title>Million Dollar Lunch</itunes:title><itunes:episode>219</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp219.mp3" length="87803424" type="audio/mpeg"/><link>https://atp.fm/219</link><description><![CDATA[<ul>
+<li><a href="https://medium.com/@anna_crook/c806fe4aeaa4">ATP WWDC Live at AltConf!</a> Monday, 5 June at 5 PM PDT. <a href="https://ti.to/altconf/2017/with/ckutll2gc">Get tickets here</a>, and hurry in case they sell out!</li>
+<li>Follow up:<ul>
+<li>APFS compression?</li>
+<li>WWDC lunches are probably about <a href="http://www.gamasutra.com/view/news/117681/GDC_Bosslady_Blog_The_Countdown_Begins.php">$40 each</a> (via <a href="https://twitter.com/davidcarlton/status/855273183489826816">David Carlton</a>)</li>
+<li><a href="https://www.relay.fm/connected/139">Connected #139</a> where Casey discusses <a href="http://plex.tv/">Plex</a></li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2017/04/21/iphone-8-chassis-rear-touch-id/">Touch ID moving to the back?</a><ul>
+<li>Revisiting the iPhone 7 Taptic home button</li>
+<li><a href="https://en.wikipedia.org/wiki/Touch_ID#Hardware">Touch ID is capacitive</a></li>
+</ul>
+</li>
+<li>Overcast improvements<ul>
+<li><a href="https://twitter.com/OvercastFM/status/854089266229645312">M4A chapter support</a></li>
+<li>Forecast</li>
+<li>Watch support <a href="https://twitter.com/OvercastFM/status/855388455618187265">1</a> &amp; <a href="https://twitter.com/OvercastFM/status/856858192516698120">2</a></li>
+<li><a href="https://developer.apple.com/design/awards/">Apple Design Awards</a></li>
+</ul>
+</li>
+<li><a href="https://www.nytimes.com/2017/04/23/technology/travis-kalanick-pushes-uber-and-himself-to-the-precipice.html?_r=2">Uber is über-gross</a><ul>
+<li><a href="https://developer.apple.com/reference/iokit"><code>IOKit</code></a></li>
+<li><a href="https://developer.apple.com/reference/uikit/uidevice"><code>UIDevice</code></a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: John travels to 🇬🇧<ul>
+<li><a href="https://en.wikipedia.org/wiki/Midwest_Airlines">Midwest Express</a></li>
+<li><a href="https://twitter.com/siracusa/status/853208475475824641">John forgets something</a></li>
+<li><a href="https://twitter.com/siracusa/status/853209921554456580">...but has a workaround</a></li>
+<li><a href="https://disneyworld.disney.go.com/">Walt Disney World</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass.</li>
+</ul>]]></description><itunes:subtitle>iPhone rumors, Overcast Watch updates, yet more Uber shenanigans, and John's first international travel.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58f038afebbd1aeb69df9a70</guid><pubDate>Wed, 19 Apr 2017 13:42:34 +0000</pubDate><title>218: MagSafe Cups of Water</title><itunes:title>MagSafe Cups of Water</itunes:title><itunes:episode>218</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:39:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp218.mp3" length="72277645" type="audio/mpeg"/><link>https://atp.fm/218</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>APFS iOS app updates hit the app store</li>
+<li>Marco's <a href="https://overcast.fm/">Overcast</a> hacks<ul>
+<li><a href="https://podlove.org/simple-chapters/">Podlove Simple Chapters</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/kylesethgray/status/852129644753145856/photo/1">APFS free space</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2016-09-23/nvidia-job-postings-suggest-an-nvidia-chip-return-to-apple-macs">Nvidia coming back to the Mac</a></li>
+<li><a href="https://kieranhealy.org/">Kieran Healy</a>'s thoughts regarding <a href="https://overcast.fm/+CdSlx2ec/43:15">Marco's comments</a> about schedules</li>
+<li><a href="https://www.apple.com/clips/">Clips</a> gets <a href="https://twitter.com/iosight/status/850136381859004416">special treatment in the app store</a></li>
+<li><a href="http://atp.fm/shirt">T-Shirts!</a> will be available <strong>until April 26</strong>. <ul>
+<li>We know what the site says. Trust us.</li>
+<li>Jet Black considerations<ul>
+<li><a href="https://twitter.com/SamTheGeek/status/854698521014001665">Example Jet Black</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Inverted_Jenny">Inverted Jenny</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Apple <a href="https://9to5mac.com/2017/04/04/magsafe-usb-c-cable-for-macbook/">USB-C MagSafe patent</a><ul>
+<li><a href="https://gaming.stackexchange.com/questions/113656/why-do-xbox-controllers-have-breakaway-cables">Xbox breakaway cable</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2017/04/is-this-the-beginning-of-the-end-for-itunes/">Beginning of the end for iTunes?</a></li>
+<li>John's evaluation of Nintendo today<ul>
+<li><a href="https://en.wikipedia.org/wiki/PlayStation_Vita">PS Vita</a></li>
+<li><a href="http://www.istocknow.com/product/switch">iStockNow</a></li>
+<li><a href="http://5by5.tv/hypercritical/49">Hypercritical #49: Pinching the Harmonica</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="http://farm9.staticflickr.com/8148/7372694608_4170f97440_o.jpg">WWDC lunches</a><ul>
+<li>Casey <a href="https://twitter.com/caseyliss/statuses/607916405934034944">loves Odwalla</a>... <a href="https://twitter.com/caseyliss/statuses/608291286655705088">a lot</a>. <a href="https://twitter.com/caseyliss/statuses/609376055275618304">Really</a>.</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://jamf.com/atp">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>]]></description><itunes:subtitle>iTunes’ future, USB-C MagSafe, grading Nintendo, and a very special post-show.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58e701f36b8f5b4c80f76432</guid><pubDate>Wed, 12 Apr 2017 09:15:22 +0000</pubDate><title>217: Apology Mac Pro</title><itunes:title>Apology Mac Pro</itunes:title><itunes:episode>217</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp217.mp3" length="85686862" type="audio/mpeg"/><link>https://atp.fm/217</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li><a href="https://techcrunch.com/2017/04/06/transcript-phil-schiller-craig-federighi-and-john-ternus-on-the-state-of-apples-pro-macs/">Mac Pro transcript posted</a></li>
+<li><a href="http://workflow.is">Workflow</a> on ice</li>
+<li>APFS and free space</li>
+<li><a href="http://atp.fm/shirt">T-Shirt</a> Update</li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/clips/">Clips</a></li>
+<li>Mac Pro<ul>
+<li><a href="http://www.osnews.com/story/29755/Some_notes_regarding_the_new_Mac_Pro">OSNews rumors</a></li>
+<li><a href="http://mashable.com/2017/04/04/apple-reveals-mac-pro-imac-plans/#I48p0AHEvPqj">Lance Ulanoff</a></li>
+<li><a href="http://daringfireball.net/2017/04/the_mac_pro_lives">Gruber</a></li>
+<li><a href="https://pikeralpha.wordpress.com/2017/04/05/imac181-with-xeon-e3-1280-v6-processor/">iMac Pro Rumor</a></li>
+<li><a href="https://blogs.nvidia.com/blog/2017/04/06/titan-xp/">NVIDIA Titan Xp</a></li>
+<li><a href="http://wanderingcoder.net/2017/04/04/apple-no-more-imagination/">Apple moves away from Imagination Technologies GPUs</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li>Marco convinces himself Casey owes him $5</li>
+<li>Managing Mac Pro expectations</li>
+<li>Apple speed bumps</li>
+<li><a href="https://buyersguide.macrumors.com/#Mac">MacRumors Buyer's Guide</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/atp">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass.</li>
+</ul>]]></description><itunes:subtitle>Clips, Workflow, GPUs, a big Escape, and more Mac Pro!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58e469565016e194dd58b6a7</guid><pubDate>Wed, 05 Apr 2017 18:49:01 +0000</pubDate><title>216: Thermal Corner</title><itunes:title>Thermal Corner</itunes:title><itunes:episode>216</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:23:45</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp216.mp3" length="103996999" type="audio/mpeg"/><link>https://atp.fm/216</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li><a href="https://developer.apple.com/library/content/documentation/FileManagement/Conceptual/APFS_Guide/FAQ/FAQ.html">APFS file name encoding</a></li>
+<li><a href="https://developer.apple.com/wwdc/">WWDC</a> sitrep</li>
+</ul>
+</li>
+<li><a href="https://www.caseyliss.com/2017/4/3/my-favorite-prankster">RIP Jason Seifer</a></li>
+<li>The <a href="http://www.apple.com/mac-pro/">Mac Pro</a><ul>
+<li><a href="http://daringfireball.net/2017/04/the_mac_pro_lives">Gruber's take</a></li>
+<li><a href="https://techcrunch.com/2017/04/04/apple-pushes-the-reset-button-on-the-mac-pro/">Panzarino's take</a></li>
+<li><a href="http://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">The Case for a True Mac Pro Successor</a></li>
+</ul>
+</li>
+<li>The new iMac... Pro?<ul>
+<li><a href="https://en.wikipedia.org/wiki/Project_Ara">Project Ara</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li>We adjudicate <a href="http://atp.fm/episodes/213">a bet</a></li>
+<li><a href="http://atp.fm/shirt"><em>T-Shirts are for sale!</em></a> until 26 April</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Mac Pro news! (Really!)</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58dc7251bf629a2d3b8f58db</guid><pubDate>Thu, 30 Mar 2017 19:41:53 +0000</pubDate><title>215: Pots Are Made to Be Broken</title><itunes:title>Pots Are Made to Be Broken</itunes:title><itunes:episode>215</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp215.mp3" length="75447199" type="audio/mpeg"/><link>https://atp.fm/215</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>APFS on iOS<ul>
+<li><code>Settings</code> → <code>General</code> → <code>Storage &amp; iCloud Usage</code> → <code>Manage Storage</code></li>
+<li>Oddities with file names</li>
+</ul>
+</li>
+<li>Ahoy, Telephone!</li>
+<li><a href="https://www.engadget.com/2017/03/23/apple-explores-using-an-iphone-or-ipad-to-power-a-laptop/">Naked-er Robotic Core</a></li>
+</ul>
+</li>
+<li>Marco eats waffles<ul>
+<li><a href="https://github.com/JohnCoates/Aerial">Aerial</a></li>
+</ul>
+</li>
+<li>MacBook One vs. MacBook Adorable<ul>
+<li><a href="http://www.hellointernet.fm/">Hello Internet</a>, <a href="https://www.relay.fm/cortex">Cortex</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc">WWDC</a><ul>
+<li><a href="https://www.relay.fm/radar/73">Under the Radar #73: WWDC Event Planning</a></li>
+<li><a href="https://layers.is/">Layers</a> (<a href="https://www.caseyliss.com/2016/6/17/layers-2016">Casey's 2016 Review</a>)</li>
+<li><a href="https://developer.apple.com/wwdc/more/">Beyond WWDC</a></li>
+<li><a href="https://developer.apple.com/wwdc/attending/">Code of Conduct &amp; Childcare</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="https://twitter.com/tiffanyarment">Tiff</a> joins us to talk <a href="https://en.wikipedia.org/wiki/The_Legend_of_Zelda:_Breath_of_the_Wild">Zelda: Breath of the Wild</a><ul>
+<li><a href="https://goo.gl/IzXX1I">Fable</a></li>
+<li><a href="https://www.youtube.com/watch?v=f5uik5fgIaI&amp;t=8s">First Look video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mario_Kart_8">Mario Kart 8</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Splatoon_2">Splatoon 2</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Who knew waffles were so delicious?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58d33b8ce4fcb51bf3a69393</guid><pubDate>Thu, 23 Mar 2017 21:13:21 +0000</pubDate><title>214: Christmas Phone</title><itunes:title>Christmas Phone</itunes:title><itunes:episode>214</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp214.mp3" length="87438947" type="audio/mpeg"/><link>https://atp.fm/214</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="http://www.eurogamer.net/articles/df-hardware-wii-u-gamepad-latency-analysis">Wii U display lag</a> from <a href="https://twitter.com/StevenImpson/status/842737463097344000">Steven Impson</a></li>
+<li>Zelda heads-up-display woes</li>
+<li>Intel X99 high-end desktop options</li>
+<li>Reasons for delaying the Mac Pro</li>
+<li>Americans are cheap jerks</li>
+</ul>
+</li>
+<li>Marco needs a new pair of shoelaces<ul>
+<li><a href="https://www.relay.fm/analogue/9">Analog(ue) #9: My Shoes Are a Bit Dusty</a></li>
+<li><a href="http://ull.ie/">Úll</a></li>
+</ul>
+</li>
+<li><a href="http://www.theverge.com/2017/3/1/14781854/apple-shareholders-reject-diversity-proposal-for-second-year">Apple executive diversity shareholder vote</a></li>
+<li><a href="https://techcrunch.com/2017/03/22/apple-has-acquired-workflow-a-powerful-automation-tool-for-ipad-and-iphone/">Apple buys Workflow</a><ul>
+<li><a href="https://itunes.apple.com/us/app/workflow-powerful-automation-made-simple/id915249334?mt=8&amp;at=1000l3yf">Workflow on the App Store</a></li>
+<li><a href="https://twitter.com/trevormkay/status/844722990432436225">Workflow removes Chrome</a></li>
+<li><a href="https://workflow.is/whatsnew">Workflow change log</a> (see 1.7.3)</li>
+<li><a href="http://x-callback-url.com/"><code>x-callback-url</code></a></li>
+</ul>
+</li>
+<li>New Apple products<ul>
+<li><a href="http://www.apple.com/pr/library/2017/03/21Apple-Introduces-iPhone-7-iPhone-7-Plus-PRODUCT-RED-Special-Edition.html">Red iPhone 7</a><ul>
+<li><a href="https://sixcolors.com/post/2017/03/apple-introduces-productred-versions-of-iphone-7-7-plus-doubles-iphone-se-capacity/">Six Colors</a></li>
+<li><a href="https://techcrunch.com/2017/03/22/apple-red-iphone-china/">Branding in China</a></li>
+</ul>
+</li>
+<li>New iPhone SE storage sizes</li>
+<li><a href="http://www.apple.com/pr/library/2017/03/21New-9-7-inch-iPad-Features-Stunning-Retina-Display-Incredible-Performance.html">New 9.7" iPad</a><ul>
+<li><a href="https://sixcolors.com/post/2017/03/new-97-inch-ipad-replaces-air-2-ipad-mini-4-increases-capacities/">Six Colors</a></li>
+<li><a href="https://512pixels.net/2017/03/on-that-new-ipad-2/">Stephen Hackett on marketing</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2017/03/apple-sneaks-in-new-watch-bands/">New Watch bands</a></li>
+<li><a href="http://www.apple.com/clips/">Clips iOS App</a><ul>
+<li><a href="http://www.apple.com/pr/library/2017/03/21Apple-Introduces-Clips-The-Fun-New-Way-to-Create-Expressive-Videos-on-iOS.html">Press release</a></li>
+<li><a href="https://www.wired.com/2017/03/hidden-breakthrough-apples-new-video-app/">Wired</a></li>
+</ul>
+</li>
+<li>What was missing<ul>
+<li><a href="http://daringfireball.net/linked/2017/03/21/new-apple-stuff">Gruber on the 10" iPad</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: APFS news</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>CLEAN</strong> for 20% off by March 31.</li>
+<li><a href="http://hellofresh.com/">HelloFresh</a>: Delicious ingredients you'll love to eat. Simple recipes you'll live to cook. Use code <strong>ATP</strong> for $35 off your first shipment.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Red iPhones, nameless iPads, incredible waffles, and disruption to our workflows.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58ca047aa5790a21846ec412</guid><pubDate>Thu, 16 Mar 2017 21:18:16 +0000</pubDate><title>213: Siri in a Can</title><itunes:title>Siri in a Can</itunes:title><itunes:episode>213</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp213.mp3" length="96509370" type="audio/mpeg"/><link>https://atp.fm/213</link><description><![CDATA[<ul>
+<li>Pre-show: A friendly bet for January 1, 2018</li>
+<li>Follow up:<ul>
+<li>Windows on iPad (for example, <a href="https://twitter.com/command_tab/status/840232692293672960/photo/1">Blackboard</a>)</li>
+<li>Steve Troughton-Smith's <a href="https://github.com/steventroughtonsmith/floatingkeyboard-playground">Floating Keyboard Playground</a><ul>
+<li><a href="https://9to5mac.com/2017/03/10/ipad-floating-keyboard-ios-10-3/">Writeup from 9to5mac</a></li>
+</ul>
+</li>
+<li>Apple in Education</li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/ios/home/">Apple's HomeKit Promo Website &amp; Video</a><ul>
+<li><a href="https://twitter.com/blankbaby/status/837320797874171905">Scott McNulty's Tweet</a></li>
+</ul>
+</li>
+<li><a href="https://tv.youtube.com/welcome/">YouTube TV</a> (<a href="http://www.theverge.com/2017/2/28/14750894/youtube-streaming-tv-service-announced-hd-live-cable-channels">Verge Writeup</a>)</li>
+<li><a href="http://www.anandtech.com/show/11115/intel-confirms-8th-gen-core-on-14nm-data-center-first-to-new-nodes">Intel goes 14nm again</a></li>
+<li><a href="http://www.anandtech.com/show/11143/amd-launch-ryzen-52-more-ipc-eight-cores-for-under-330-preorder-today-on-sale-march-2nd">AMD Ryzen</a></li>
+<li><a href="https://www.techpowerup.com/230400/intel-readies-the-xeon-gold-series-processors-for-media-workstations">Xeon Gold</a></li>
+<li><a href="https://9to5mac.com/2017/02/28/apple-annual-shareholders-meeting/">Tim Cook's tease at the shareholders meeting</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Initital thoughts on the <a href="https://www.nintendo.com/switch/">Nintendo Switch</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>YouTube TV, Ryzen, HomeKit, and the cylinder business.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58c0d681a5790ae223f39d52</guid><pubDate>Thu, 09 Mar 2017 06:09:41 +0000</pubDate><title>212: Meatspace Windows</title><itunes:title>Meatspace Windows</itunes:title><itunes:episode>212</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp212.mp3" length="83443913" type="audio/mpeg"/><link>https://atp.fm/212</link><description><![CDATA[<ul>
+<li>Follow-up: USB-C iPhone 8<ul>
+<li><a href="https://www.macrumors.com/2017/03/02/iphone-8-lightning-usb-c-power-delivery/">Ming-Chi Kuo pours cold water on Apple USB-C notions</a></li>
+<li><a href="http://www.amazon.com/dp/B00VH8ZW02/?tag=marcoorg-20">Anker bricks</a></li>
+<li><a href="https://www.amazon.com/Goliton-Female-Adapter-Macbook-Tablet/dp/B01C43FUIW">Questionable USB-C-to-A adapter</a></li>
+<li><a href="https://enterprise.google.com/chrome/devices/#meetings">Chromebox for Meetings</a></li>
+</ul>
+</li>
+<li><a href="http://www.yankodesign.com/2017/03/01/a-supercase-for-your-macbook/">MacBook Boost case</a></li>
+<li>Windowing on iOS<ul>
+<li><a href="https://twitter.com/stroughtonsmith">Steve Troughton-Smith</a> writes <a href="https://twitter.com/stroughtonsmith/status/837980179351941120/photo/1">Finder-like app for iOS</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/837973568260558848">Apple does not see the humor</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/837973860335108096">This is why iPad can't have nice things</a></li>
+<li><a href="https://twitter.com/cabel/status/838109536254775296/photo/1">Cabel Sasser of Panic weighs in</a></li>
+</ul>
+</li>
+<li><a href="https://github.com/louisdh/panelkit">PanelKit</a></li>
+</ul>
+</li>
+<li>Accidental programmers<ul>
+<li><a href="https://www.relay.fm/cortex/">Cortex</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_Toolbox">Macintosh Toolbox</a></li>
+<li><a href="https://en.wikipedia.org/wiki/HyperCard">HyperCard</a></li>
+</ul>
+</li>
+<li><a href="https://www.nytimes.com/2017/03/02/technology/apple-products-schools-education.html">Apple's decline in the education market</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>ATP</strong>.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+</ul>]]></description><itunes:subtitle>John still really, really likes windows.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58b7992febbd1ab428a1d883</guid><pubDate>Thu, 02 Mar 2017 18:40:48 +0000</pubDate><title>211: Hardware Mind Virus</title><itunes:title>Hardware Mind Virus</itunes:title><itunes:episode>211</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:28</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp211.mp3" length="85423453" type="audio/mpeg"/><link>https://atp.fm/211</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://www.techpowerup.com/230400/intel-readies-the-xeon-gold-series-processors-for-media-workstations">Xeon Gold</a></li>
+<li>Follow up:<ul>
+<li>Booting APFS</li>
+<li><a href="https://www.theguardian.com/technology/2017/feb/28/tesla-female-engineer-lawsuit-harassment-discrimination">Tesla harassment suit</a></li>
+<li>Uber, <a href="https://en.wikipedia.org/wiki/Generic_trademark">generic trademarks</a>, Lyft, and alternatives<ul>
+<li><a href="http://jalopnik.com/uber-is-quietly-terrible-for-women-and-black-people-st-1788392405">Uber is Quietly Terrible for Women &amp; Black People</a></li>
+<li><a href="http://www.slate.com/blogs/moneybox/2016/10/31/anti_black_discrimination_is_rampant_on_uber_and_lyft.html">New Business Model, Same Racist Cab Drivers</a></li>
+<li><a href="https://www.theguardian.com/technology/2017/feb/28/uber-ceo-travis-kalanick-driver-argument-video-fare-prices">Uber CEO argues with driver</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://overcast.fm/account/buy_ad">Overcast Ads</a></li>
+<li><a href="http://gizmodo.com/this-wsj-iphone-8-rumor-is-absolutely-insane-1792817865">iPhones with USB-C?</a><ul>
+<li><a href="https://goo.gl/vZX4lp">Lightning connector</a></li>
+<li><a href="https://www.studioneat.com/products/dock">Studio Neat Material Dock</a></li>
+</ul>
+</li>
+<li><a href="http://www.theverge.com/2017/3/1/14778316/nintendo-switch-cartridge-taste-test-dont-lick-it">Nintendo Switch cartridges have bitter taste</a><ul>
+<li><a href="https://www.amazon.com/dp/B0000YUXI0/?tag=marcoorg-20">Mavala Stop nail polish</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li>Decoding <a href="https://www.macrumors.com/2017/02/28/apple-ceo-tim-cook-pro-creative-area-important/">Tim Cook's shareholder-meeting remarks</a></li>
+<li><a href="https://youtu.be/HRgtHE9_3KU?t=184">MKBHD: Dear Apple! (2017)</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>USB-C iPhones, Overcast ads, and bitter-tasting game cartridges.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58ae618e86e6c02123ff76fa</guid><pubDate>Fri, 24 Feb 2017 04:57:46 +0000</pubDate><title>210: My Stupid Thumb</title><itunes:title>My Stupid Thumb</itunes:title><itunes:episode>210</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:29</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp210.mp3" length="94071969" type="audio/mpeg"/><link>https://atp.fm/210</link><description><![CDATA[<ul>
+<li>Pre-show: Noses, Sinuses, and Snot<ul>
+<li><a href="http://dobyfriday.com/15">Do By Friday</a></li>
+</ul>
+</li>
+<li>Follow up:<ul>
+<li>Control Center and AirPods</li>
+<li><a href="http://www.stagehandgame.com/">Stagehand</a><ul>
+<li><a href="https://www.youtube.com/watch?v=MFzDaBzBlL00">Backwards Bike</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/bytomw/status/832600553591025664">Online chat latency</a></li>
+<li><a href="https://twitter.com/TylerLoch/status/834094783618568192">Booting macOS from case-insensitive APFS</a><ul>
+<li>Recipe parts <a href="https://twitter.com/TylerLoch/status/834096046800257024">1</a> &amp; <a href="https://twitter.com/TylerLoch/status/834096712717332480">2</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://marco.org/2017/02/20/overcast3">Overcast 3</a><ul>
+<li><a href="https://www.relay.fm/radar/68">Under the Radar #68: Overcast 3</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2017/02/22/ep-182">The Talk Show #182: AAA Podcast</a></li>
+<li><a href="https://developer.apple.com/ios/human-interface-guidelines/overview/design-principles/">iOS Human Interface Guidelines</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/WordStar">WordStar</a></li>
+</ul>
+</li>
+<li><a href="https://overcast.fm/contact">Ad Sales</a></li>
+</ul>
+</li>
+<li><a href="https://www.susanjfowler.com/blog/2017/2/19/reflecting-on-one-very-strange-year-at-uber">Uber is a total cesspool</a><ul>
+<li><a href="https://pando.com/2017/02/14/white-men-women-and-minorities-tech-we-just-dgaf/ceba19a45685d33b6f9cb161593d0fc5a9353144/">Men don't care</a></li>
+<li><a href="https://twitter.com/physicsNcoffee/status/834566962998960128">Uber departures</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Social_justice_warrior">SJW</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc/">WWDC 2017 in San Jose announced</a><ul>
+<li><a href="http://www.apple.com/newsroom/2017/02/apple-park-opens-to-employees-in-april.html">Apple Park</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Gaming on the Apple TV<ul>
+<li><a href="https://github.com/jasarien/Provenance">Provenance</a></li>
+<li><a href="https://steelseries.com/gaming-controllers/nimbus">SteelSeries Nimbus</a></li>
+<li><a href="http://www.apple.com/shop/product/HJ172ZM/A/horipad-ultimate-wireless-game-controller">Horipad Ultimate</a></li>
+<li><a href="http://christianwhitehead.com/">Christian Whitehad</a></li>
+<li><a href="https://www.youtube.com/watch?v=LQ1SbHLXlH8">Sonic Mania Trailer</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>ATP10</strong> for 10% off your first purchase.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Overcast 3 is out, WWDC is moving back to San Jose, and Uber is awful.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58a52a66725e252edfa0c4f3</guid><pubDate>Thu, 16 Feb 2017 22:42:10 +0000</pubDate><title>209: Making Sausage-Making Glamorous</title><itunes:title>Making Sausage-Making Glamorous</itunes:title><itunes:episode>209</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:06:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp209.mp3" length="91509657" type="audio/mpeg"/><link>https://atp.fm/209</link><description><![CDATA[<ul>
+<li>AirPods, a couple of months in</li>
+<li>Follow up:<ul>
+<li>Compelling users to upgrade their iPhones</li>
+<li>Biometrics<ul>
+<li><a href="https://phys.org/news/2017-01-japan-fingerprint-theft-peace.html">✌️</a></li>
+<li><a href="http://www.bbc.com/news/technology-30623611">✋</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://www.google.com/chromebook/">Chromebooks</a> vs. ARM Macs<ul>
+<li><a href="https://www.oxo.com/our-roots">OXO's story</a></li>
+</ul>
+</li>
+<li>Case sensitive HFS+</li>
+<li><a href="https://www.kickstarter.com/projects/1548768604/twitterrific-for-mac-project-phoenix">Twitterrific for the Mac</a><ul>
+<li><a href="http://furbo.org/2013/06/28/the-origin-of-tweet/">Origin of "tweet"</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=0RInsFIWl-Q&amp;feature=youtu.be">Planet of the Apps</a><ul>
+<li><a href="https://arstechnica.com/apple/2012/05/is-it-macman-or-imac-the-creative-director-behind-apples-turnaround/">MacMan</a></li>
+<li><a href="http://abc.go.com/shows/shark-tank">Shark Tank</a></li>
+<li><a href="https://twitter.com/cabel/status/831609486984949760">Cabel Sasser's take</a></li>
+</ul>
+</li>
+<li><a href="http://www.caavo.com/">Caavo</a><ul>
+<li><a href="http://www.theverge.com/2017/2/14/14588466/caavo-new-media-streaming-box-tv-sling-founder-blake-krikorian">Verge video</a></li>
+<li><a href="http://hypercritical.co/fatbits/2010/09/02/apples-trouble-with-tv">John on the omnivorous box</a></li>
+<li><a href="http://5by5.tv/hypercritical/1">Hypercritical #1: Dream Crusher</a></li>
+<li><a href="https://cdn0.vox-cdn.com/thumbor/3YM-t86ttBel28br8ZPHUnWJtsg=/800x0/filters:no_upscale%28%29/cdn0.vox-cdn.com/uploads/chorus_asset/file/2909916/sony-google-tv-remote.0.jpg">Original GoogleTV remote</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li>John's Mac</li>
+<li><a href="https://twitter.com/caseyliss/timelines/830375287368142848">Casey doesn't want a WRX</a></li>
+<li><a href="http://jalopnik.com/you-can-finally-get-a-great-deal-on-a-volkswagen-golf-r-1792353073">You can get a good deal on a Golf R</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+<li><a href="http://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free expedited shipping.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Planet of the Apps, Chromebooks, and the endurance race between a car and a Mac Pro.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:589bf1b3579fb3fd7fe17f67</guid><pubDate>Thu, 09 Feb 2017 21:43:16 +0000</pubDate><title>208: Your Face Is Your Face</title><itunes:title>Your Face Is Your Face</itunes:title><itunes:episode>208</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp208.mp3" length="88390398" type="audio/mpeg"/><link>https://atp.fm/208</link><description><![CDATA[<ul>
+<li>Follow up: <ul>
+<li>What could ARM coprocessors in Macs do?</li>
+<li><a href="https://support.microsoft.com/en-us/help/17215/windows-10-what-is-hello">Windows Hello</a> face recognition</li>
+</ul>
+</li>
+<li>More on iPads vs. Macs<ul>
+<li><a href="https://www.relay.fm/upgrade/127">Upgrade #127</a></li>
+<li><a href="https://www.relay.fm/connected/128">Connected #128</a></li>
+<li><a href="https://marco.org/2017/01/31/the-wrong-future">Marco's blog post</a></li>
+<li><a href="https://www.macsparky.com/blog/2017/2/a-few-thoughts-about-ipad">David Sparks on iPad hardware longevity</a></li>
+</ul>
+</li>
+<li><a href="https://hardware.slashdot.org/comments.pl?sid=10191963&amp;cid=53786433">Crazy locked-down ARM-Mac rumor</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Casey learns the fine art of waffling</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://setapp.com/">Setapp</a>: The best collection of Mac software at your fingertips for one low monthly price.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>The long-term future of the Mac, and the near-term future of Casey's garage.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5892af09f5e231c7e2acfc3f</guid><pubDate>Thu, 02 Feb 2017 20:47:41 +0000</pubDate><title>207: Selling Hot Dogs on a Stick</title><itunes:title>Selling Hot Dogs on a Stick</itunes:title><itunes:episode>207</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:24</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp207.mp3" length="83938966" type="audio/mpeg"/><link>https://atp.fm/207</link><description><![CDATA[<ul>
+<li>iPhone 7 long-term review, waffling about sizes<ul>
+<li><a href="https://marco.org/2017/01/08/call-blockers">Marco's review of spam-call blockers</a></li>
+<li><a href="https://www.nomorobo.com/">Nomorobo</a>, the one you should get</li>
+</ul>
+</li>
+<li>Follow up: Casey is un-American</li>
+<li>Upgrading your iOS device from HFS+ to APFS<ul>
+<li><a href="https://twitter.com/sterrenboer/status/824986535229538304">Will APFS be open-source?</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2017/01/apples-record-quarter-by-the-numbers/">Apple earnings results</a></li>
+<li>What's up with iPad sales?<ul>
+<li><a href="https://marco.org/2017/01/31/the-wrong-future">The Future of Computing</a></li>
+<li><a href="https://twitter.com/axios/status/826492493415927808">PC use dies on the weekends</a> (via <a href="https://twitter.com/asymco">@asymco</a>)</li>
+<li><a href="https://www.relay.fm/upgrade/126">Upgrade #126: Spinny Propellery Guy</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="https://www.bloomberg.com/news/articles/2017-02-01/apple-developing-new-mac-chip-in-test-of-intel-independence">ARM chip doing more in future MacBooks</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>ATP</strong>.</li>
+<li><a href="http://audible.com/atp">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://hellofresh.com/">HelloFresh</a>: Delicious ingredients you'll love to eat. Simple recipes you'll live to cook. Use code <strong>ATP</strong> for $35 off your first shipment.</li>
+</ul>]]></description><itunes:subtitle>Phone-size waffling, taking too many showers, and saving the iPad.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58897ba59f7456b64954aaff</guid><pubDate>Thu, 26 Jan 2017 23:20:31 +0000</pubDate><title>206: All You Need Is Five Nerds</title><itunes:title>All You Need Is Five Nerds</itunes:title><itunes:episode>206</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp206.mp3" length="90544420" type="audio/mpeg"/><link>https://atp.fm/206</link><description><![CDATA[<ul>
+<li>Pre-show: Casey needs his morning coffee</li>
+<li>Follow up:<ul>
+<li><a href="http://www.consumerreports.org/apple/consumer-reports-now-recommends-macbook-pros/">Consumer Reports does an about-face</a><ul>
+<li><a href="https://www.microsoft.com/en-us/surface/accessories/surface-ergonomic-keyboard">Microsoft Surface Ergonomic Keyboard</a></li>
+<li><a href="https://marco.org/2013/08/30/sculpt-ergonomic-keyboard-review">Microsoft Sculpt Ergonomic Keyboard</a></li>
+<li><a href="http://www.apple.com/shop/product/MLA22LL/A/magic-keyboard">Apple Magic Keyboard</a></li>
+</ul>
+</li>
+<li><a href="https://webkit.org/blog/7122/introducing-riptide-webkits-retreating-wavefront-concurrent-garbage-collector/">WebKit's new Garbage Collector: Riptide</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_File_System">APFS</a> is <a href="https://twitter.com/stroughtonsmith/status/823956894880563201/photo/1">in iOS 10.3</a></li>
+<li><a href="https://twitter.com/cabel/status/823964312368599040">Developers will be able to respond to App Store reviews</a><ul>
+<li><a href="https://www.relay.fm/radar/64">Under the Radar #64</a></li>
+<li><a href="http://furbo.org/2009/07/10/year-two/">Craig Hockenberry asks for this in 2009</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/reference/uikit/uiapplication/2806818-setalternateiconname">Apps can change their own icons</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/823988446108774400">Steve Troughton-Smith's digging</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/824348043759722496">App change dialog</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/824363403804295169">Sample project</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/stroughtonsmith/status/824004549564317702">Floating iPad keyboard</a><ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/824006036218675200">...that isn't public</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/824166853576654848">...that aren't that new</a></li>
+<li><a href="https://github.com/JoeKuhns/PiedPiPer.safariextension">PiedPiPer for Safari on Sierra</a><ul>
+<li><a href="http://drops.caseyliss.com/E0MN">Double-click trick for YouTube</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://www.loopinsight.com/2017/01/24/apple-explains-the-new-app-reviews-api-for-developers/">Apple API for Soliciting Reviews</a><ul>
+<li><a href="https://www.relay.fm/radar/64">Under the Radar #64</a> again</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li><a href="https://blog.studioneat.com/why-would-apple-release-a-10-5-ipad-ca4441f7f628#.yiesi0jfh">A 10.5" iPad? Let's do math.</a><ul>
+<li><a href="https://sixcolors.com/post/2017/01/ipad-pro-10-5/">Jason Snell's thoughts</a></li>
+<li><a href="http://www.macrumors.com/2016/11/28/bezel-free-10-9-ipad-pro-no-home-button/">Original rumor</a></li>
+<li><a href="http://www.macworld.com/article/3159549/hardware/apple-pencil-2-might-be-coming-this-spring-along-with-a-new-105-inch-ipad-pro.html">Apple Pencil 2?</a></li>
+</ul>
+</li>
+<li>Post-show:<ul>
+<li>Representation of tech interests in elected officials<ul>
+<li><a href="https://briannawu2018.com/">Brianna Wu running for Congress</a></li>
+</ul>
+</li>
+<li>Marco convinces Casey to spend money<ul>
+<li><a href="http://jalopnik.com/heres-what-it-cost-me-to-own-a-ferrari-for-a-year-1669923931">Cost of owning a used Ferrari</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>iOS 10.3 changes, developers responding to reviews, year of iPad, and Casey's morning routine.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:587ec75cdb29d66d9a1d62dd</guid><pubDate>Wed, 18 Jan 2017 18:13:44 +0000</pubDate><title>205: People Don't Use the Weird Parts</title><itunes:title>People Don't Use the Weird Parts</itunes:title><itunes:episode>205</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:18:08</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp205.mp3" length="99579717" type="audio/mpeg"/><link>https://atp.fm/205</link><description><![CDATA[<p><strong><a href="http://atp.fm/205-chris-lattner-interview-transcript">Transcript of this episode</a></strong></p>
+<ul>
+<li>Follow up: <a href="http://www.macrumors.com/2017/01/17/chris-lattner-says-tesla-irresistible/">MacRumors talks with Lattner</a></li>
+<li><a href="http://llvm.org/">LLVM</a><ul>
+<li><a href="http://releases.llvm.org/1.3/docs/BytecodeFormat.html">LLVM Bytecode</a> vs. <a href="http://llvm.org/docs/BitCodeFormat.html">LLVM Bitcode</a></li>
+<li><a href="https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/AppThinning/AppThinning.html#//apple_ref/doc/uid/TP40012582-CH35-SW2">Bitcode</a></li>
+<li><a href="https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/AppThinning/AppThinning.html#//apple_ref/doc/uid/TP40012582-CH35-SW1">Slicing</a></li>
+</ul>
+</li>
+<li><a href="http://clang.llvm.org">Clang</a></li>
+<li><a href="https://www.opengl.org">OpenGL</a></li>
+<li><a href="https://swift.org">Swift</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Automatic_Reference_Counting">ARC</a></li>
+<li><a href="https://github.com/apple/swift">Swift Open Source</a></li>
+<li><a href="https://www.caseyliss.com/2016/2/27/swift-enums">Casey's love letter to Swift <code>enum</code>s</a></li>
+<li><a href="https://github.com/apple/swift-evolution/blob/master/commonly_proposed.md">Swift Evolution "Commonly Rejected Changes" list</a></li>
+<li><a href="http://asmjs.org">asm.js</a>, <a href="http://webassembly.org">WebAssembly</a> &amp; <a href="http://www.typescriptlang.org">TypeScript</a></li>
+<li><a href="https://github.com/ReactiveX/RxSwift">RxSwift</a><ul>
+<li><a href="https://www.caseyliss.com/2016/12/15/rxswift-primer-part-1">Casey's primer series</a></li>
+</ul>
+</li>
+<li><a href="https://goo.gl/eDa8Dj">Garbage collection</a> vs. ARC<ul>
+<li><a href="https://opensource.apple.com/source/libauto/libauto-77.1/README.html?txt"><code>libauto</code></a></li>
+<li><a href="https://www.microsoft.com/en-us/research/project/singularity/">Singularity</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Finalizer">Finalizer</a></li>
+<li><a href="https://golang.org/doc/faq#garbage_collection">Go's garbage collection</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Java_Native_Interface">Java Native Interface</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://audible.com/atp">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="https://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free expedited shipping.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>A surprisingly deep dive into Swift, now that one of us is finally using it.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58770483725e25a566fe7ad4</guid><pubDate>Fri, 13 Jan 2017 03:49:39 +0000</pubDate><title>204: You’re Only Stable When You’re Dead</title><itunes:title>You’re Only Stable When You’re Dead</itunes:title><itunes:episode>204</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp204.mp3" length="84437218" type="audio/mpeg"/><link>https://atp.fm/204</link><description><![CDATA[<ul>
+<li>Follow up: Marco and AirDrop</li>
+<li>Mac Progress Quandary <a href="https://twitter.com/BlackPlastic/status/817095490311454722">1</a> <a href="https://twitter.com/BlackPlastic/status/817095695761100801">2</a> <a href="https://twitter.com/BlackPlastic/status/817095885536579584">3</a><ul>
+<li><a href="http://tripmode.ch/">Tripmode.Helvetica</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2017/01/consumer-reports-battery-test-uncovers-an-apple-bug/">Consumer Reports test results</a></li>
+<li><a href="http://nondot.org/sabre/">Chris Lattner</a> <a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20170109/030063.html">leaves Apple</a> <a href="https://www.tesla.com/blog/welcome-chris-lattner">for Tesla</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/LLVM">LLVM</a>, <a href="https://en.wikipedia.org/wiki/GNU_Compiler_Collection">GCC</a>, <a href="https://en.wikipedia.org/wiki/Clang">Clang</a></li>
+<li><a href="http://gizmodo.com/damn-apple-is-losing-a-lot-of-people-to-tesla-1791082532">Apple → Tesla defections</a></li>
+<li><a href="https://twitter.com/clattner_llvm/status/818499400313909249">Chris' woodworking</a> (and <a href="https://twitter.com/clattner_llvm/status/818620198336937984">making of</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Benevolent_dictator_for_life">Benevolent dictator for life</a></li>
+<li><a href="https://vimeo.com/198256576">Self-driving car challenges and techniques</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Blog CMS languages<ul>
+<li><a href="https://www.owasp.org/index.php/Regular_expression_Denial_of_Service_-_ReDoS">Regular expression Denial of Service</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://hellofresh.com/">HelloFresh</a>: Delicious ingredients you'll love to eat.
+Simple recipes you'll live to cook. Use code <strong>ATP</strong> for $35 off your first shipment.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>The Consumer Reports test, Lattner leaving Apple, and big ideas for macOS.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:586daeb5414fb5fe741e5ed4</guid><pubDate>Thu, 05 Jan 2017 19:02:04 +0000</pubDate><title>203: Screaming At Us From The Future</title><itunes:title>Screaming At Us From The Future</itunes:title><itunes:episode>203</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:24</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp203.mp3" length="79828045" type="audio/mpeg"/><link>https://atp.fm/203</link><description><![CDATA[<ul>
+<li><a href="https://www.owcdigital.com/DEC/">Naked robotic MacBook Pro core</a> <ul>
+<li><a href="http://www.macrumors.com/2017/01/03/owc-dec-adds-ports-to-2016-macbook-pro/">MacRumors post</a> (<a href="http://www.macrumors.com/2017/01/05/hands-on-with-the-dec-for-macbook-pro-from-owc/">Hands-on video from after we recorded</a> that answers some of our questions)</li>
+<li><a href="http://www.dansdata.com/images/buildpc/320/passthru.JPG">VGA passthrough coupler</a></li>
+<li><a href="http://www.fishtankclan.com/e107_plugins/autogallery/autogallery.php?show=Funny%20Pictures%2FThe_NEW_Powerbook_G5!.jpg&amp;start=72">Powerbook G5 Faux Mockup</a></li>
+</ul>
+</li>
+<li>On <img data-preserve-html-node="true" src="https://www.caseyliss.com/images/scare-open.gif"> pros <img data-preserve-html-node="true" src="https://www.caseyliss.com/images/scare-close.gif"> <a href="http://www.schoolofmotion.com/mac-vs-pc-motion-designers-part-1-bang-buck/#">leaving the Mac</a></li>
+<li>Sam Abuelsamid of <a href="http://wheelbearings.media/">Wheel Bearings</a> on CarPlay</li>
+<li>Mac users are grumpy<ul>
+<li><a href="https://chuqui.com/2017/01/apples-2016-in-review/">Apple's 2016 Year in Review</a></li>
+<li><a href="http://subfurther.com/blog/2017/01/03/capitulation/">Chris Adamson buys a Mac Pro he didn't want</a></li>
+<li><a href="http://mjtsai.com/blog/2017/01/03/finding-an-alternative-to-mac-os-x/">Finding an Alternative to macOS</a><ul>
+<li><a href="https://twitter.com/siracusa/status/816505511172567040">John's tweet</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>John's <a href="https://madeby.google.com/home/">Google Home</a><ul>
+<li><a href="https://sixcolors.com/post/2017/01/google-home-early-impressions-of-an-echo-competitor/">Dan Moren's early impressions</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco goes for a drive</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>All three of us rush to do our homework during the show.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:585cac11f5e2319c20399e03</guid><pubDate>Thu, 29 Dec 2016 15:12:43 +0000</pubDate><title>202: Something Has Gone Wrong</title><itunes:title>Something Has Gone Wrong</itunes:title><itunes:episode>202</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:33:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp202.mp3" length="110699119" type="audio/mpeg"/><link>https://atp.fm/202</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="https://launchpad.net/backchan.nl">Back Channel</a></li>
+<li>Follow up: <a href="https://twitter.com/rjonesy/status/811975763603890176/photo/1">Ryan Jones on the AirPods charging port</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2016-12-20/how-apple-alienated-mac-loyalists">Gurman on Mac Malaise</a></li>
+<li>Q&amp;A<ul>
+<li><a href="https://www.caseyliss.com/2015/9/10/siracusa-on-toasters">Siracusa toaster reviews</a></li>
+<li><a href="http://www.dovenote.com">Dovenote</a></li>
+<li><a href="http://weatherlineapp.com/">Weather Line</a></li>
+<li><a href="https://www.caseyliss.com/2016/5/29/photo-management">Casey's photo management workflow</a></li>
+<li><a href="http://www.varidesk.com/product/standing-desk-pro-plus-36">Casey's standing desk</a> and <a href="http://www.amazon.com/dp/B00M8O122G/?tag=liismo-20">mat</a></li>
+<li><a href="https://www.caseyliss.com/2015/8/23/tom-bihn-cadet">Casey's laptop bag</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://cocoaconf.com/">CocoaConf</a>: A technical conference for Apple developers and designers. Get 15% off tickets for Yosemite (March 20–23) and Chicago (April 21–22) with code <strong>ATP</strong>.</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>The future of the Mac, and our first listener Q&amp;A.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:585b56569f7456394cde3e9b</guid><pubDate>Thu, 22 Dec 2016 20:56:57 +0000</pubDate><title>201: Volume Micromanager</title><itunes:title>Volume Micromanager</itunes:title><itunes:episode>201</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:01</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp201.mp3" length="93259624" type="audio/mpeg"/><link>https://atp.fm/201</link><description><![CDATA[<ul>
+<li><a href="http://atp.fm/episodes/96">Windows and Tabs of Siracusa County</a> (<a href="https://overcast.fm/+CdRRhGxw/1:29:43">Overcast</a>)<ul>
+<li><a href="http://origin.arstechnica.com/reviews/01q4/macosx-10.1/images/universal-access.gif">10.1 tabs</a></li>
+<li>10.2 tabs <a href="http://origin.arstechnica.com/reviews/02q3/macosx-10.2/images/ink-1.jpg">1</a> <a href="http://origin.arstechnica.com/reviews/02q3/macosx-10.2/images/ink-1.jpg">2</a> <a href="http://origin.arstechnica.com/reviews/02q3/macosx-10.2/images/firewall.jpg">3</a> <a href="http://www.guidebookgallery.org/pics/gui/settings/display/macosx100-1-1.png">4</a></li>
+<li><a href="http://d.pr/i/Y3d6">10.3 tabs</a></li>
+<li><a href="http://cdn.arstechnica.net/mac-os-x-10.3/nested-tabs.png">10.3 nested tabs</a></li>
+</ul>
+</li>
+<li>Follow up:<ul>
+<li>Android Battery <a href="https://en.wikipedia.org/wiki/Burn_down_chart">burn-down chart</a></li>
+</ul>
+</li>
+<li>Our reviews of <a href="http://www.theverge.com/2016/12/16/13982844/super-mario-run-first-day-downloads">Super Mario Run launches</a><ul>
+<li><a href="http://www.polygon.com/2016/12/21/14041958/super-mario-run-downloads-sales-revenue">Updated numbers</a></li>
+<li>Angry reviewers</li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2016/12/apple-extends-accessory-discount-period/">Apple extends accessory discount</a><ul>
+<li><a href="http://www.apple.com/shop/product/HKN62LL/A/lg-ultrafine-5k-display?fnode=8a">LG UltraFine 5K Display</a></li>
+</ul>
+</li>
+<li>Our reviews of <a href="http://www.apple.com/shop/product/MMEF2/airpods">AirPods</a><ul>
+<li><a href="http://www.theverge.com/2016/12/15/13975704/apple-lost-damaged-airpod-replacement-service-charge">Replacement singles</a></li>
+<li><a href="https://www.ifixit.com/Teardown/AirPods+Teardown/75578">iFixit Teardown</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2016/12/19/apples-tim-cook-assures-employees-that-it-is-committed-to-the-mac-and-that-great-desktops-are-coming/">Tim Cook's comment</a> on Mac desktops<ul>
+<li><a href="https://marco.org/2016/11/05/world-without-mac-pro">Marco makes the case for a Mac Pro</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <ul>
+<li>Marco discovers gasoline</li>
+<li>A new member of the Siracusa family</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://cocoaconf.com/">CocoaConf</a>: A technical conference for Apple developers and designers. Get 15% off tickets for Yosemite (March 20–23) and Chicago (April 21–22) with code <strong>ATP</strong>.</li>
+<li><a href="https://www.sqlprostudio.com/">SQLPro</a>: A simple, powerful database manager for macOS. Use code <strong>ATP20</strong> for 20% off.</li>
+<li><a href="https://www.wesellsocks.com/">Wesell Socks</a>: Awesome socks delivered monthly. Put your best foot forward.</li>
+</ul>]]></description><itunes:subtitle>Super Mario Run, AirPods, tabs vs. apps, and Cook on desktops.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:585217b66b8f5b8b5d887440</guid><pubDate>Thu, 15 Dec 2016 21:32:19 +0000</pubDate><title>200: I Had a Dream About the Mac Pro</title><itunes:title>I Had a Dream About the Mac Pro</itunes:title><itunes:episode>200</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:04:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp200.mp3" length="90500250" type="audio/mpeg"/><link>https://atp.fm/200</link><description><![CDATA[<ul>
+<li>Our 200th-episode spectacular! 🎉</li>
+<li>Pre-show: <a href="https://en.wikipedia.org/wiki/PC_System_Design_Guide#PC_99">PC 99 standard</a></li>
+<li>Holiday clip show:<ul>
+<li><a href="http://atp.fm/174">ATP 174: A Ding in the Room</a> (<a href="https://overcast.fm/+CdTHWA8I">Overcast</a>)</li>
+<li><a href="http://atp.fm/96">ATP 96: The Windows of Siracusa County</a> (<a href="https://overcast.fm/+CdRRhGxw/1:29:43">Overcast</a>)</li>
+</ul>
+</li>
+<li>Follow up:<ul>
+<li><a href="http://www.theverge.com/2016/12/14/13946664/4k-hdr-pc-monitor-lg-ces">LG 4K <strong>HDR</strong> monitor</a></li>
+<li><a href="https://www.youtube.com/watch?v=UFNEqY6nn0g">Machining crankshafts</a></li>
+<li><a href="https://www.amazon.com/b?ie=UTF8&amp;node=16008589011">Amazon Go</a></li>
+</ul>
+</li>
+<li><a href="https://www.apple.com/airpods/">AirPods</a> are now for sale<ul>
+<li>Casey's <a href="http://www.amazon.com/dp/B018XNGQOE/?tag=liismo-20">Aftershokz Trekz Titanium</a> bone-conducting headphones</li>
+<li>Marco's discontinued <a href="https://www.amazon.com/dp/B002WB0PUK/?tag=marcoorg-20">Sennheiser PX 210 BT</a>, succeeded by the <a href="https://www.amazon.com/dp/B007JG54DG/?tag=marcoorg-20">MM 400-X</a></li>
+</ul>
+</li>
+<li>Marco tried a <a href="https://www.microsoft.com/en-us/surface/devices/surface-studio/overview">Surface Studio</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Super_Mario_Run">Super Mario Run</a> is <a href="http://arstechnica.com/gaming/2016/12/super-mario-run-online-only/#p3">online-only</a><ul>
+<li><a href="https://www.relay.fm/connected/121">Connected #121: Software Update Therapy</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2016/12/13/macos-sierra-update-fixes-macbook-pros-graphics-issues-removes-time-remaining-estimate-following-battery-life-complaints/">macOS 10.12.2 removes battery-time-remaining estimate</a><ul>
+<li><a href="https://gfx.io/">gfxCardStatus</a></li>
+<li><a href="http://arstechnica.com/video/2016/11/the-2016-13-and-15-inch-touch-bar-macbook-pros-reviewed/4/">Ars Technica's review</a><ul>
+<li><a href="https://cdn.arstechnica.net/wp-content/uploads/2016/11/touch-bar-charts.009.png">Chart in question</a></li>
+</ul>
+</li>
+<li><a href="http://supermegaultragroovy.com//2016/12/10/auto-graphics-switching/">The Discrete GPU and You</a></li>
+<li><a href="https://marco.org/2016/12/13/apple-removes-battery-time-remaining">Marco's post</a></li>
+<li><a href="https://bjango.com/mac/istatmenus/">iStat Menus</a></li>
+<li><a href="http://www.macrumors.com/2016/12/14/macos-10-2-2-improved-battery-life-reports/">Improved battery life in 10.12.2</a>?</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>:<ul>
+<li><a href="https://www.caseyliss.com/2016/12/11/the-grand-navel-gazing">Grand Tour update</a></li>
+<li>Marco tries to use an internal combustion engine</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>AIRPODS</strong> for 10% off your first purchase.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Our 200th-episode spectacular!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5848d937e4fcb5d734a4c299</guid><pubDate>Thu, 08 Dec 2016 19:11:44 +0000</pubDate><title>199: 10,000 Hours of Coughing</title><itunes:title>10,000 Hours of Coughing</itunes:title><itunes:episode>199</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp199.mp3" length="79779766" type="audio/mpeg"/><link>https://atp.fm/199</link><description><![CDATA[<ul>
+<li>Coughing and machining<ul>
+<li><a href="https://www.youtube.com/watch?v=UFNEqY6nn0g">Video: Machining a crankshaft</a> (thanks, <a href="https://twitter.com/gak_pdx/status/804926056167718912">Greg Koenig</a> of <a href="https://lu.ma/">Luma Labs</a>)</li>
+<li><a href="https://www.amazon.com/dp/B01F0C4FY4/?tag=marcoorg-20">Fisherman's Friend cough drops</a></li>
+</ul>
+</li>
+<li>Follow-up: <a href="https://www.bloomberg.com/news/articles/2016-10-28/nintendo-s-big-switch-q-a-with-president-tatsumi-kimishima">The future of the Nintendo 3DS</a></li>
+<li>John's Keychain woes</li>
+<li>John's headphone woes</li>
+<li><a href="https://www.amazon.com/b?node=16008589011">Amazon Go</a><ul>
+<li><a href="https://www.youtube.com/watch?v=7Pq-S557XQU">Humans Need Not Apply</a></li>
+<li><a href="https://www.relay.fm/clockwise/166">Clockwise #166: Walk-In Vending Machine</a></li>
+</ul>
+</li>
+<li><a href="http://www.theverge.com/2016/12/7/13866936/microsoft-windows-10-arm-desktop-apps-support-qualcomm">Windows on ARM</a><ul>
+<li><a href="https://www.relay.fm/upgrade/118">Upgrade #118: Missed That by 100%</a> (Relevant section <a href="https://overcast.fm/+DeCl0kMgQ/34:15">Overcast link</a>)</li>
+</ul>
+</li>
+<li><a href="http://qz.com/856546/inside-the-secret-meeting-where-apple-aapl-revealed-the-state-of-its-ai-research/">Apple's Machine Learning</a><ul>
+<li><a href="https://twitter.com/olivercameron/status/806603661946163200">Summary by Oliver Cameron</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Not complaining about the Apple TV<ul>
+<li><a href="https://github.com/JohnCoates/Aerial">Aerial</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+</ul>]]></description><itunes:subtitle>John needs tech support, Marco needs tech support, and Casey thinks he doesn't.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:583fa5298419c28daa80e171</guid><pubDate>Thu, 01 Dec 2016 23:14:28 +0000</pubDate><title>198: Puppy Game Boy</title><itunes:title>Puppy Game Boy</itunes:title><itunes:episode>198</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:20</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp198.mp3" length="85329554" type="audio/mpeg"/><link>https://atp.fm/198</link><description><![CDATA[<ul>
+<li>Casey learns <a href="http://scala-lang.org/">Scala</a> and <a href="https://goo.gl/mXCB0h">Akka</a><ul>
+<li><a href="http://4.bp.blogspot.com/-MkvUle9fU9U/UKcLnRvxbKI/AAAAAAAAANo/59vecwsBFyg/s1600/VS+All+Caps.png">Shouty Visual Studio</a></li>
+<li>Programming language genealogy</li>
+</ul>
+</li>
+<li>Follow up:<ul>
+<li>John's EarPods</li>
+<li><a href="http://amazon.com/thegrandtour">The Grand Tour</a> downloads<ul>
+<li>Episode 2 mini-review</li>
+<li><a href="https://sixcolors.com/post/2016/11/netflix-will-finallyfinallylet-you-download-content-to-watch-offline/">Netflix allowing downloads</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>New MacBook Pro power bricks<ul>
+<li><a href="http://www.apple.com/shop/product/MLL82AM/A/usb-c-charge-cable-2-m?fnode=8b">Apple USB-C Charge Cable</a></li>
+<li><a href="https://www.anker.com/products/A8183011">Anker USB-C Charge Cable</a></li>
+<li><a href="http://www.apple.com/shop/product/MNF82LL/A/87w-usb-c-power-adapter">87W USB-C Power Adapter</a></li>
+<li><a href="http://www.apple.com/shop/product/MK122LL/A/power-adapter-extension-cable">Apple Power Adapter Extension Cable</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2016/11/apple-ranks-highest-in-wi-fi-router-customer-satisfaction/">People love Apple's Wi-Fi routers</a></li>
+<li><a href="https://www.nintendo.com/switch">Nintendo Switch</a><ul>
+<li><a href="https://www.youtube.com/watch?v=f5uik5fgIaI">First Look video</a></li>
+<li><a href="http://toucharcade.com/2016/11/30/desert-golfing-end/">End of Desert Golfing</a></li>
+<li><a href="https://www.playstation.com/en-us/explore/ps4-pro/">Playstation 4 Pro</a></li>
+<li><a href="http://www.xbox.com/en-US/project-scorpio">Project Scorpio</a></li>
+<li><a href="http://www.unchartedthegame.com/en-us/">Uncharted 4</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sonic_the_Hedgehog_Spinball">Sonic Spinball</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="https://www.youtube.com/watch?v=YlXM6RUB_g0">Marco posts to YouTube</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>]]></description><itunes:subtitle>John talks about the Nintendo Switch for a long time.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58366a0a197aeac1e8d7484e</guid><pubDate>Fri, 25 Nov 2016 21:30:21 +0000</pubDate><title>197: Life by a Thousand Hugs</title><itunes:title>Life by a Thousand Hugs</itunes:title><itunes:episode>197</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp197.mp3" length="94233647" type="audio/mpeg"/><link>https://atp.fm/197</link><description><![CDATA[<ul>
+<li>John's <a href="https://en.wikipedia.org/wiki/Energy_Star">Energy Star</a> sticker<ul>
+<li><a href="https://en.wikipedia.org/wiki/Trust,_but_verify">"Trust, but verify"</a></li>
+<li><a href="http://5by5.tv/hypercritical/28">Hypercritical: Trust, but Verify</a></li>
+</ul>
+</li>
+<li>Casey and John visit an Apple Store<ul>
+<li><a href="https://www.youtube.com/watch?v=rw4Ri7XQk_M">Stephen Hackett's keyboard sound comparison video</a></li>
+</ul>
+</li>
+<li>Marco buys a thing<ul>
+<li><a href="https://gfx.io/">gfxCardStatus</a></li>
+<li><a href="https://bjango.com/mac/istatmenus/">iStat Menus</a></li>
+<li><a href="https://griffintechnology.com/us/breaksafe-magnetic-usb-c-power-cable">Griffin BreakSafe Power Cable</a></li>
+<li><a href="https://www.youtube.com/watch?v=avj7mYRxVjo">Designed by Apple in California with Actual Products</a></li>
+</ul>
+</li>
+<li>John's new phone<ul>
+<li><a href="https://twitter.com/markalexmclenna/status/801623509487284224">Jack size comparisons</a></li>
+</ul>
+</li>
+<li><a href="https://www.youtube.com/watch?v=i_InsYgk620">Comparing color gamuts</a> (via <a href="https://twitter.com/auniverseaway/status/799665138290655233">@auniverseaway</a>)</li>
+<li><a href="http://www.dazeddigital.com/artsandculture/article/33692/1/discussing-design-with-the-man-behind-your-iphone">Jony Ive on used iPhones</a></li>
+<li><a href="https://www.penny-arcade.com/news/post/2016/10/26/the-surface-studio">Penny Arcade and the Surface Studio</a></li>
+<li><a href="http://www.zdnet.com/article/microsofts-x86-on-arm64-emulation-a-windows-10-redstone-3-fall-2017-deliverable/">Microsoft to enable x86 emulation on ARM64</a><ul>
+<li><a href="http://www.macworld.com/article/3143953/macs/why-apple-probably-wont-make-an-arm-powered-mac.html">Jason Snell on ARM Macs</a> </li>
+</ul>
+</li>
+<li><a href="https://9to5mac.com/2016/11/21/apple-reportedly-stops-developing-airport-wifi-router-products-moving-employees-to-other-projects/">Apple to discontinue AirPort and Time Capsule wireless routers</a><ul>
+<li><a href="https://www.amazon.com/dp/B00XEW3YD6/?tag=liismo-20">Eero</a> and <a href="https://www.amazon.com/dp/B01K4CZOBS/?tag=siracusa-20">Netgear Orbi</a></li>
+<li><a href="https://twitter.com/siracusa/status/800701935535824897">John's tweet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/LaserWriter">LaserWriter</a></li>
+<li><a href="https://twitter.com/bad_attitude_en/status/800702567760138240">Maxim Samolyenko</a></li>
+<li><a href="https://twitter.com/Tales/status/800703296084312064">Alex</a><ul>
+<li><a href="https://developer.apple.com/library/content/releasenotes/NetworkingInternetWeb/Time_Machine_SMB_Spec/">Time Machine over SMB</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/link/2016/11/report-apples-getting-out-of-the-wi-fi-game/">Dan Moren</a></li>
+</ul>
+</li>
+<li><a href="http://inessential.com/2016/11/21/the_reverse_of_the_halo_effect">Brent Simmons and the "Reverse Halo Effect"</a><ul>
+<li><a href="https://www.relay.fm/upgrade/116">Upgrade #116: Design Team Yearbook</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show Neutral: <a href="http://amazon.com/thegrandtour">The Grand Tour</a><ul>
+<li><a href="https://www.caseyliss.com/2016/11/20/the-holy-trinity">Casey's post</a></li>
+<li><a href="https://www.relay.fm/analogue/94">Analog #94: It Was Eye Watering</a> (to be released Sunday, 27 November)</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+</ul>]]></description><itunes:subtitle>Marco buys something, John buys something else, and Casey watches a car show instead.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:582d2badf5e231ff4d24b0e7</guid><pubDate>Thu, 17 Nov 2016 19:07:06 +0000</pubDate><title>196: Roasting Your Own Beans</title><itunes:title>Roasting Your Own Beans</itunes:title><itunes:episode>196</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:01</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp196.mp3" length="82009579" type="audio/mpeg"/><link>https://atp.fm/196</link><description><![CDATA[<ul>
+<li><a href="http://www.amazon.com/dp/B01A0ZRQTW/?tag=siracusa-20">John's 4K display</a><ul>
+<li><a href="http://www.amazon.com/dp/B01CH9ZTI4/?tag=siracusa-20">And also this</a></li>
+<li><a href="http://www.amazon.com/dp/B01LPNKFK0/?tag=liismo-20">Casey's work monitor</a></li>
+<li><a href="https://en.wikipedia.org/wiki/High-bandwidth_Digital_Content_Protection">HDCP</a></li>
+<li><a href="https://twitter.com/marcedwards/status/795602525772578817">Marc Edwards on monitor DPI ranges by size</a></li>
+</ul>
+</li>
+<li>Invisibly wide colors<ul>
+<li><a href="https://webkit.org/blog-files/color-gamut/">Sample images</a></li>
+<li><a href="http://blog.iconfactory.com/2016/04/looking-at-the-future/">Hockenberry's post</a></li>
+</ul>
+</li>
+<li>Follow-up on Windows: Jordan's tweets <a href="https://twitter.com/Nerdiophage/status/797468667932012546">1</a> <a href="https://twitter.com/Nerdiophage/status/797469302622482432">2</a> <a href="https://twitter.com/Nerdiophage/status/797469932816596992">3</a> <a href="https://twitter.com/Nerdiophage/status/797470495134416897">4</a> <a href="https://twitter.com/Nerdiophage/status/797471315506688000">5</a></li>
+<li>Marco and laptops</li>
+<li>Apple's new art book, <a href="http://www.apple.com/designed-by-apple/">Designed by Apple in California</a><ul>
+<li><a href="http://www.apple.com/newsroom/2016/11/designed-by-apple-in-california-chronicles-20-years-of-apple-design.html">Press release</a></li>
+<li><a href="https://www.youtube.com/watch?v=IkskY9bL9Bk">Release video</a></li>
+<li><a href="http://www.wallpaper.com/design/apple-charts-twenty-years-of-product-design-in-new-book#180304">Jony Ive interview at Wallpaper</a></li>
+<li><a href="http://www.amazon.com/dp/098858171X/?tag=liismo-20">Iconic book</a></li>
+<li><a href="http://www.amazon.com/dp/1888001259/?tag=siracusa-20">Appledesign book</a></li>
+</ul>
+</li>
+<li>Humanity and whimsy</li>
+<li><a href="https://www.microsoft.com/en-us/surface/devices/surface-studio/overview">Microsoft Surface Studio</a><ul>
+<li><a href="https://www.youtube.com/watch?v=BzMLA8YIgG0">Intro video</a></li>
+<li><a href="http://wacom.com/en-us/products/pen-displays">Wacom Cintiq</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Reebok_Pump">Reebok Pump</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="https://macosxautomation.com/about.html">Sal Soghoian leaves Apple</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/List_of_macOS_components#Automator">Automator</a></li>
+<li><a href="https://en.wikipedia.org/wiki/HyperCard">HyperCard</a></li>
+<li><a href="http://workflow.is/">Workflow</a></li>
+<li><a href="https://marco.org/2016/11/05/world-without-mac-pro">Marco's Mac Pro post</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Apple's art book, Surface Studio, and what happened when John tried to buy a PC monitor.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5823f337b8a79b7c7e4af0a8</guid><pubDate>Thu, 10 Nov 2016 19:41:48 +0000</pubDate><title>195: The Show Must Go On</title><itunes:title>The Show Must Go On</itunes:title><itunes:episode>195</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:48</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp195.mp3" length="75588470" type="audio/mpeg"/><link>https://atp.fm/195</link><description><![CDATA[<ul>
+<li>Follow up:<ul>
+<li>Iris Pro and Skylake</li>
+<li>Touch Bar and touch sensitivity</li>
+</ul>
+</li>
+<li><a href="https://github.com/bikkelbroeders/TouchBarDemoApp">TouchBar app with iPad viewer</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Control_Strip">Control Strip</a></li>
+</ul>
+</li>
+<li><a href="https://marco.org/2016/11/05/world-without-mac-pro">Marco's Mac Pro post</a><ul>
+<li><a href="http://atp.fm/episodes/115">Empathy for the Machine</a></li>
+<li>External monitors in Cupertino<ul>
+<li><a href="https://www.amazon.com/dp/B00OKSFXZU/?tag=liismo-20">Dell 5K display</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/DisplayPort">DisplayPort</a> and <a href="https://goo.gl/czP26">Thunderbolt</a> capabilities</li>
+<li>MacBook Pro as the <a href="http://5by5.tv/hypercritical/86">Naked Robotic Core</a></li>
+</ul>
+</li>
+<li><a href="http://www.imore.com/apple-usb-c-thunderbolt-3-price-cut">Apple discounts USB-C peripherals and dongles</a><ul>
+<li><a href="http://www.apple.com/shop/product/HKN62LL/A/lg-ultrafine-5k-display?afid=p231%7Ccamref%3A1100lcZ8&amp;cid=AOS-US-AFF-PHG">LG UltraFine 5K Display</a></li>
+<li><a href="https://support.apple.com/en-us/HT207256">Thunderbolt 3 and Macs</a></li>
+</ul>
+</li>
+<li>ARM on Macs?<ul>
+<li><a href="http://browser.primatelabs.com/v4/cpu/compare/1001315?baseline=1001506">MacBook Escape vs. iPhone 7 benchmarks</a></li>
+<li><a href="http://atp.fm/episodes/35-sea-level-executives">ATP #35: Sea-Level Executives</a></li>
+</ul>
+</li>
+<li>Mac clones?<ul>
+<li><a href="http://furbo.org/2016/11/05/apples-lenovo/">Apple's Lenovo</a></li>
+<li><a href="http://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">John's halo car</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="https://www.amazon.com/b?ie=UTF8&amp;node=11909489011">The Grand Tour</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Black_Mirror">Black Mirror</a> and <a href="https://en.wikipedia.org/wiki/San_Junipero">San Junipero</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/namemyblog">Hover</a>: Be notified the moment .BLOG domains are available. And for all of your domain-name needs, use coupon code <strong>DONGLESALE</strong> for 10% off your first purchase.</li>
+<li><a href="http://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>Touch Bar iPads, all-in-one Mac Pros, ARM Macs, and Mac clones.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:581aabff9de4bbcf7332ef23</guid><pubDate>Thu, 03 Nov 2016 19:23:08 +0000</pubDate><title>194: Dark Night of the Soul</title><itunes:title>Dark Night of the Soul</itunes:title><itunes:episode>194</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp194.mp3" length="93628988" type="audio/mpeg"/><link>https://atp.fm/194</link><description><![CDATA[<ul>
+<li><a href="https://en.wikipedia.org/wiki/Baseball">Baseball</a></li>
+<li>"MacBook Escape"<ul>
+<li><a href="https://www.ifixit.com/Teardown/MacBook+Pro+13-Inch+Function+Keys+Late+2016+Teardown/72415">iFixit Teardown</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Strauss%E2%80%93Howe_generational_theory#Timing_of_generations_and_turnings">Millenials</a></li>
+<li>External Thunderbolt GPUs<ul>
+<li><a href="https://bizon-tech.com/us/bizonbox3-egpu.html/">BizonBOX</a></li>
+<li><a href="http://www.apple.com/shop/product/HKKP2ZM/A/belkin-lightning-audio-charge-rockstar?fnode=97">Belkin Lightning Audio + Charge Rockstar</a></li>
+</ul>
+</li>
+<li>Is Apple <a href="https://twitter.com/reckless/status/792069952916197376">out of the standalone display business?</a></li>
+<li>Pushback on new MacBook Pros<ul>
+<li>16 GB RAM limit<ul>
+<li><a href="http://www.macrumors.com/2016/10/28/new-macbook-pros-no-32gb-ram-battery-life/">Email from Schiller</a></li>
+<li><a href="http://appleinsider.com/articles/16/10/31/intels-chip-design-not-apples-choices-reason-behind-thunderbolt-3-ram-issues-in-new-macbook-pro">Deep dive</a></li>
+<li><a href="http://arstechnica.com/apple/2016/11/review-cheapest-2016-macbook-pro-is-good-but-its-missing-all-the-cool-stuff/">Andrew Cunningham's MacBook Escape review</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/stevenf/status/793110172839227393">Stephen Frank's tweet</a></li>
+<li><a href="https://storify.com/siracusa/if-current-trends-continue">John's keybord tweets</a> (<a href="https://twitter.com/siracusa/status/793458588547158016">1</a> <a href="https://twitter.com/siracusa/status/793459125606834180">2</a> <a href="https://twitter.com/siracusa/status/793459303357280258">3</a>)</li>
+</ul>
+</li>
+<li><a href="https://512pixels.net/2016/10/the-startup-chime-is-dead/">Mac startup chime is dead</a><ul>
+<li><a href="https://pingie.com/2016/10/31/how-to-enable-the-startup-chime-on-the-2016-macbook-pros/">Restoration instructions</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: A silver lining for Macs?<ul>
+<li><a href="https://twitter.com/worrydream/status/791767756928462848">Brett Victor</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://harrys.com/atp">Harry's</a>: An exceptional shave at a fraction of the price. Get a free trial set with free Post Shave Balm.</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Pushback on the MacBook Pro, Apple's display business, and why we override Apple's product names.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5812ca3bb8a79b34ae01531a</guid><pubDate>Fri, 28 Oct 2016 19:25:48 +0000</pubDate><title>193: The Escape Zone</title><itunes:title>The Escape Zone</itunes:title><itunes:episode>193</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:41:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp193.mp3" length="77622783" type="audio/mpeg"/><link>https://atp.fm/193</link><description><![CDATA[<ul>
+<li><a href="https://sixcolors.com/post/2016/10/a-few-quick-thoughts-about-thursdays-mac-event-in-cupertino/">October 27th Apple Event</a><ul>
+<li><a href="http://www.apple.com/tvos/">Apple TV</a></li>
+<li><a href="http://www.apple.com/accessibility/">Accessibility</a></li>
+<li><a href="http://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">Siracusa on halo cars and Mac Pros</a></li>
+<li><a href="https://512pixels.net/2016/10/many-macbooks/">Many MacBooks</a></li>
+<li><a href="https://twitter.com/neuemodern/status/791231970588106752">Mac product roadmap?</a></li>
+<li><a href="http://www.macworld.com/article/1153576/siracusa_osx.html">John's 2010 Macworld article about a hybrid iOS/macOS Mac</a></li>
+<li><a href="http://drops.caseyliss.com/kLrb">Touch Bar Shimmy</a></li>
+<li><a href="http://www.mikeonads.com/2007/03/01/punch-the-monkey/">Punch the Monkey</a></li>
+<li><a href="https://goo.gl/b6A1Zi">Snake</a></li>
+<li><a href="https://developer.apple.com/library/content/documentation/UserExperience/Conceptual/OSXHIGuidelines/AbouttheTouchBar.html">Touch Bar in the HIG</a></li>
+<li><a href="https://gfx.io/">gfxCardStatus</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="https://www.amazon.com/dp/B00006HMPJ/?tag=siracusa-20">John's home mouse</a></li>
+<li><a href="https://www.amazon.com/dp/B00004VX3T/?tag=siracusa-20">John's work mouse</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://macpaw.com/atp">CleanMyMac 3 by MacPaw</a>: Keep your Mac clean, maintained, and healthy, now with Xcode cleaning as well.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: An unmatched selection of audiobooks, original audio shows, news, comedy, and more. Get a free 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>The new MacBook Pros, Touch Bars, and sports analysis.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:58083180c534a5bc2df71823</guid><pubDate>Fri, 21 Oct 2016 01:30:39 +0000</pubDate><title>192: Hello Again Again</title><itunes:title>Hello Again Again</itunes:title><itunes:episode>192</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:41:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp192.mp3" length="74131445" type="audio/mpeg"/><link>https://atp.fm/192</link><description><![CDATA[<ul>
+<li>Follow-up on camera dust: <a href="http://tipsfromthetopfloor.com/2016/10/13/tfttf748-bust-dust/">Tips from the Top Floor #748: Bust the Dust</a> (<a href="https://overcast.fm/+BR7Ayqdo/12:27">Overcast link</a>)<ul>
+<li><a href="https://www.lensrentals.com/blog/2011/08/the-apocalypse-of-lens-dust/">How big does dust have to be?</a></li>
+<li><a href="https://www.lensrentals.com/blog/2008/10/front-element-scratches/">How big do scratches have to be?</a></li>
+<li><a href="http://www.lensrentals.com/blog/2015/06/i-dont-know-why-it-swallowed-a-fly-weather-sealed-lens-with-a-fly-inside/">Lenses aren't sealed</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2016/10/apple-event-confirmed-for-october-27/">October 27th Apple Event</a><ul>
+<li><a href="https://512pixels.net/2016/10/hello-again/">"Hello, again"</a></li>
+<li><a href="http://www.amazon.com/dp/B00PC9HFNY/?tag=liismo-20">Dell 24" 4K Monitor</a></li>
+<li><a href="http://www.amazon.com/dp/B01LPNKFK0/?tag=liismo-20">LG 24" 4K Monitor</a></li>
+<li><a href="http://gizmodo.com/apples-new-macbooks-will-come-with-e-ink-keyboards-rep-1787967297?rev=1476882440270">E-Ink Keyboard Rumor</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li>Marco's camera may affect his laptop choices</li>
+<li><a href="http://panic.com/prompt/">Prompt</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://automatic.com/">Automatic</a>: Your smart driving assistant. See the new Automatic Lite, their most affordable connected car adapter yet.</li>
+<li><a href="http://awaytravel.com/atp">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>ATP</strong>.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>FINALLY</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Expectations and speculation about next week's Apple event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57ff0081414fb543384d63f7</guid><pubDate>Thu, 13 Oct 2016 21:03:05 +0000</pubDate><title>191: The Failure Mode of a Train</title><itunes:title>The Failure Mode of a Train</itunes:title><itunes:episode>191</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:18:08</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp191.mp3" length="99579349" type="audio/mpeg"/><link>https://atp.fm/191</link><description><![CDATA[<ul>
+<li>Dealing with DNS trouble<ul>
+<li><a href="http://hoverstatus.com/pages/incident/54ad824c22de98fe5e000028/57fe97aa38015eaf19000494">Hover outage</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Denial-of-service_attack#Distributed_attack">DDoS</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://twitter.com/stroughtonsmith/status/783794719021203456">Steve Troughton-Smith poll on iCloud files</a></li>
+<li>Casey's headphones update<ul>
+<li><a href="http://www.amazon.com/dp/B002BH3I9U/?tag=liismo-20">Motorola S305</a></li>
+<li><a href="http://www.amazon.com/dp/B00KJLMBQQ/?tag=liismo-20">Plantronics Backbeat Fit</a></li>
+<li><a href="https://www.amazon.com/dp/B01DTFX8LK/?tag=liismo-20">Kinivo BTH260</a></li>
+<li><a href="https://www.amazon.com/dp/B00FO0IHMY/?tag=liismo-20">LG Tone Pro HBS-750</a></li>
+<li><a href="http://www.amazon.com/dp/B018XNGQOE/?tag=liismo-20">Aftershokz Trekz Titanium</a></li>
+<li><a href="http://www.amazon.com/dp/B013HSW4SM/?tag=liismo-20">Jaybird X2</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://atomicdelights.com/blog/why-your-next-iphone-wont-be-ceramic">Greg Koenig on the ceramic iPhone</a></li>
+<li>Apple and <a href="https://kapeli.com/dash">Dash</a> developer-account termination<ul>
+<li><a href="http://mjtsai.com/blog/2016/10/05/apple-removed-dash-from-the-mac-app-store/">Michael Tsai's summary, part 1</a> and <a href="http://mjtsai.com/blog/2016/10/10/apple-and-kapeli-respond/">part 2</a></li>
+<li><a href="https://blog.kapeli.com/dash-and-apple-my-side-of-the-story">Bogdan Popescu's post</a> and <a href="https://kapeli.com/apple_draft">draft post submitted to Apple</a></li>
+<li><a href="http://www.imore.com/solving-dash">iMore: Solving for Dash</a></li>
+<li><a href="http://www.imore.com/dash-developer-speaks-heres-his-full-story">iMore: Bogdan Popescu's full story</a></li>
+</ul>
+</li>
+<li><a href="http://applehelpwriter.com/2016/07/28/revealing-dropboxs-dirty-little-security-hack/">Dropbox shenanigans</a><ul>
+<li><a href="https://www.dropbox.com/help/9266">Dropbox help center</a></li>
+<li><a href="https://news.ycombinator.com/item?id=12464730">Alleged engineer's comments</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Gordian_Knot">Gordian Knot</a></li>
+<li><a href="http://hypercritical.co/fatbits/2006/02/19/paths-in-the-grass">Paths in the Grass</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FSEvents"><code>FSEvents</code></a></li>
+<li>Alternatives<ul>
+<li><a href="https://www.resilio.com/">Resilio</a></li>
+<li><a href="http://seafile.net/">Seafile</a></li>
+<li><a href="https://www.synology.com/en-us/dsm/6.0/cloud_file_syncing">Synology Cloud Station</a></li>
+<li><a href="https://www.box.com/">Box</a></li>
+<li><a href="https://drive.google.com/">Google Drive</a></li>
+<li><a href="https://www.apple.com/icloud/icloud-drive/">iCloud Drive</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco is a'waffling<ul>
+<li><a href="https://www.amazon.com/dp/B01KURGS9E/?tag=marcoorg-20">Canon 5D Mark IV</a></li>
+<li>Marco's lenses mentioned:<ul>
+<li><a href="https://www.amazon.com/dp/B00A2BVBTG/?tag=marcoorg-20">Canon 35mm f/2 IS</a></li>
+<li><a href="https://www.amazon.com/dp/B00894YP00/?tag=marcoorg-20">Canon 40mm f/2.8 STM "pancake"</a></li>
+<li><a href="https://www.amazon.com/dp/B000053HC5/?tag=marcoorg-20">Canon 135mm f/2 L</a></li>
+</ul>
+</li>
+<li>Modern giant, heavy, expensive, but awesome lenses (no experience with them):<ul>
+<li><a href="https://www.amazon.com/dp/B014EOML6S/?tag=marcoorg-20">Canon 35mm f/1.4 L II</a></li>
+<li><a href="https://www.amazon.com/dp/B0076BNK30/?tag=marcoorg-20">Canon 24-70mm f/2.8 L II</a></li>
+</ul>
+</li>
+<li><a href="https://www.amazon.com/dp/B00ZTIHIJY/?tag=marcoorg-20">Leica Q</a></li>
+<li><a href="https://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's camera setup</a></li>
+<li><a href="https://www.amazon.com/dp/B007GK50X4/?tag=siracusa-20">John's Sony a6300</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Dash developer dispute, Dropbox dissatisfaction, and DSLR delight.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57f5c1ed9f7456127670696b</guid><pubDate>Thu, 06 Oct 2016 22:19:31 +0000</pubDate><title>190: The Girl Who Never Came Over</title><itunes:title>The Girl Who Never Came Over</itunes:title><itunes:episode>190</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:48:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp190.mp3" length="78195418" type="audio/mpeg"/><link>https://atp.fm/190</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Casey and John's bet</li>
+<li><a href="http://prolost.com/blog/deptheffect">Compu-blur</a> and <a href="https://twitter.com/ismh/status/782650012765417473">Stephen Hackett's brother</a></li>
+<li><a href="https://www.quora.com/What-will-the-iPhone-8-be-made-of">Ceramic iPhone 8?</a>?<ul>
+<li><a href="http://imgur.com/a/NH9x3">Ceramic Apple Watch Edition booklet</a></li>
+<li><a href="https://www.youtube.com/watch?v=y33yz5CFoSg&amp;sns=tw">Redesigned iPhone 7 Video</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://twitter.com/siracusa/status/782614943518502913">Interchangeable-lens camera contamination</a></li>
+<li>Which Bluetooth headphones to buy?<ul>
+<li><a href="http://www.amazon.com/dp/B0040Z1EHY/?tag=liismo-20">Casey's long-lived headphones</a></li>
+<li><a href="http://www.amazon.com/dp/B00C7JIBN0/?tag=liismo-20">Casey's short-lived headphones</a></li>
+<li><a href="http://www.amazon.com/dp/B002WB0PUK/?tag=marcoorg-20">Marco's podcast headphones</a></li>
+<li><a href="http://www.apple.com/airpods/">AirPods</a></li>
+<li><a href="http://www.beatsbydre.com/earphones/browse-earphones/wireless-earphones/MLYE2.html">BeatsX</a></li>
+</ul>
+</li>
+<li><a href="https://madeby.google.com/phone/">Google Pixel phones</a><ul>
+<li><a href="https://get.google.com/motionstills/">Motion Stills</a></li>
+<li><a href="http://www.theverge.com/2016/10/5/13171764/ok-google-why-is-icloud-storage-so-expensive">Unlimited photo storage</a></li>
+<li><a href="https://madeby.google.com/vr/">Daydream View</a></li>
+</ul>
+</li>
+<li>Home automation hubs<ul>
+<li><a href="https://www.amazon.com/dp/B00X4WHP5E/?tag=marcoorg-20">Amazon Echo</a></li>
+<li><a href="https://madeby.google.com/home/">Google Home</a></li>
+<li><a href="https://www.bloomberg.com/news/articles/2016-09-23/apple-said-to-step-up-plans-for-echo-style-smart-home-device-itfnod11">Apple rumors</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Workplace computer-hardware woes<ul>
+<li><a href="http://www.amazon.com/dp/B00PC9HFNY/?tag=liismo-20">Dell 24" 4K</a></li>
+<li><a href="http://www.amazon.com/dp/B01LPNKFK0/?tag=liismo-20">LG 24" 4K</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Voice-assistant cylinders, Bluetooth headphones, camera contamination, and Casey losing a bet.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57ec86c95016e1636a22e133</guid><pubDate>Thu, 29 Sep 2016 20:37:21 +0000</pubDate><title>189: The Museum of Pristine Apple Hardware</title><itunes:title>The Museum of Pristine Apple Hardware</itunes:title><itunes:episode>189</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp189.mp3" length="81405547" type="audio/mpeg"/><link>https://atp.fm/189</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://www.macsales.com/">OWC</a> <a href="https://eshop.macsales.com/shop/memory/iMac/Retina-5K2015/DDR3L">iMac RAM</a> update</li>
+<li><a href="https://twitter.com/scttor/status/779410027434106880">Headphone jack remote issue: solved!</a></li>
+<li>Assistive Touch in East Asia</li>
+<li>iCloud backups on iOS 10 now include passwords?</li>
+<li><a href="https://developer.apple.com/hardwaredrivers/BluetoothDesignGuidelines.pdf">Bluetooth and volume control (PDF)</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/List_of_Bluetooth_profiles#Audio.2FVideo_Remote_Control_Profile_.28AVRCP.29">AVRCP</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Why are there three audio chips in the iPhone 7? (You won't believe what we found! The full story at 11.)</li>
+<li>McLaren, technology, <a href="https://en.wikipedia.org/wiki/Formula_One">F1</a>, and <a href="https://en.wikipedia.org/wiki/McLaren_F1">the F1</a><ul>
+<li>John is hypercritical, but is he a hypocrite?</li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/macos/sierra/">macOS Sierra</a><ul>
+<li><a href="https://blogs.dropbox.com/business/2016/04/announcing-project-infinite/">Dropbox Project Infinite</a></li>
+<li><a href="https://sixcolors.com/post/2016/09/sierra-review/">Jason Snell's review</a></li>
+<li><a href="http://jumpcut.sourceforge.net">Jumpcut</a></li>
+<li><a href="http://tapbots.com/pastebot/beta/">Pastebot</a></li>
+</ul>
+</li>
+<li><a href="https://techcrunch.com/2016/09/21/hands-on-with-the-iphone-7-plus-crazy-new-portrait-mode/">iPhone 7 Plus "Fauxkeh" Portrait Mode</a><ul>
+<li><a href="https://www.instagram.com/lexfri/">Lex Friedman's shots</a></li>
+<li><a href="http://www.imore.com/camera-tests-iphone-7-plus-portrait-mode-vs-canon-rebel-dslr">Comparison shots vs. dSLR</a></li>
+<li><a href="https://twitter.com/panzer/status/778661205460201473">Panzarino on the blur mechanics</a></li>
+<li><a href="https://www.relay.fm/upgrade/108">Upgrade #108</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Museums and pocket policies</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://www.igloosoftware.com/atp">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order with this link.</li>
+<li><a href="http://thetracker.com/atp">TrackR</a>: Find lost items in seconds. Get 30% off your entire order with code <strong>ATP</strong>.</li>
+</ul>]]></description><itunes:subtitle>Casey goes to the Apple Store, Marco touches buttons, and John stays home.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57e34d1d03596ee89c100ea5</guid><pubDate>Thu, 22 Sep 2016 21:14:01 +0000</pubDate><title>188: $850 Fidget Cube</title><itunes:title>$850 Fidget Cube</itunes:title><itunes:episode>188</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp188.mp3" length="79071989" type="audio/mpeg"/><link>https://atp.fm/188</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>"Far East" → "East Asia"</li>
+<li>The Casey/John Bet<ul>
+<li><a href="https://twitter.com/LukeBrewster/status/778673256551346176">Luke Brewster</a></li>
+<li><a href="https://twitter.com/NEO_AMiGA/status/778679226476081153">Henrik Cednert</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT202658">Assistive Touch</a> and East Asia</li>
+</ul>
+</li>
+<li><a href="https://twitter.com/scttor/status/777600646644133889">Scott O'Reilly discovers a Lightning → Headphone adapter quirk</a><ul>
+<li><a href="https://vimeo.com/183218567">Demonstration video</a></li>
+<li><a href="http://www.businessinsider.com/apple-lighning-earpods-volume-bug-to-be-fixed-in-update-2016-9">Fix is forthcoming</a></li>
+</ul>
+</li>
+<li><a href="http://www.macrumors.com/2016/09/20/lightning-earpods-teardown-confirms-dac/">There <strong>is</strong> a DAC in the headphone adapter</a></li>
+<li><a href="http://www.anandtech.com/show/10687/early-iphone-7-teardown-modems-and-more">Three amplifiers in the iPhones 7?</a></li>
+<li>Jet Black iPhone 7<ul>
+<li><a href="https://twitter.com/siracusa/status/249861740655935489">John on worn iPhones looking like the Millennium Falcon</a></li>
+<li><a href="https://designmind.frogdesign.com/2011/09/aged-perfection/">Worn original iPhone</a></li>
+<li><a href="https://www.subtraction.com/2007/07/17/designed-det/">Designed Deterioration</a></li>
+<li><a href="https://twitter.com/yo/status/777898383318978564">Fingerprints</a></li>
+<li><a href="https://twitter.com/film_girl/status/778637434871578624">Poor Christina Warren 😢</a></li>
+<li>John on designing electronics for wear and tear<ul>
+<li><a href="https://overcast.fm/+IplcQn1Y/37:05">Hypercritical #5</a> (starting at 37:05)</li>
+<li><a href="https://overcast.fm/+IplcHQQY/1:46:04">Hypercritical #74</a> (starting at 1:46:04)</li>
+<li><a href="https://overcast.fm/+IpmeUZjE/28:00">Hypercritical #86</a> (starting at 28:00)</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Transcoding and Bluetooth headphones<ul>
+<li><a href="https://twitter.com/marcedwards">Marc Edwards</a></li>
+</ul>
+</li>
+<li>Our new phones<ul>
+<li><a href="http://www.dovenote.com/pace">Pace, by Dovenote Software</a></li>
+<li><a href="http://westchester.news12.com/news/long-lines-await-chance-to-buy-apple-s-new-iphone-7-in-yonkers-1.12325258">Marco on the local news</a> (<a href="http://news12.cv.net/video1/2016-09/2101609160035872621_3114820.mp4">Direct video link</a>)</li>
+<li><a href="http://www.flophousepodcast.com/2009/05/the-flop-house-episode-37-seven-pounds/">Flophouse #37: Seven Pounds</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tritium_illumination">Radiation</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="http://www.apple.com/airpods/">AirPods</a> vs. <a href="https://en.wikipedia.org/wiki/In-ear_monitor">IEMs</a></li>
+<li><a href="http://www.cnbc.com/2016/09/21/apple-in-talks-with-luxury-carmaker-mclaren.html">Apple and McLaren</a><ul>
+<li><a href="http://www.popularmechanics.com/cars/a22961/apple-mclaren/">Rebuttal</a></li>
+<li>Not <a href="http://www.maclarenbaby.com/">Maclaren</a></li>
+<li><a href="https://www.netflix.com/search/apex?jbv=80109260&amp;jbp=0&amp;jbr=0">Apex</a></li>
+</ul>
+</li>
+<li><a href="http://mobile.nytimes.com/2016/09/10/technology/apple-is-said-to-be-rethinking-strategy-on-self-driving-cars.html">Apple "refocusing" the car project?</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $10/month. Use code <strong>AccidentalPodcast10</strong> for a $10 credit.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>Casey almost loses a bet, Marco tries to buy an iPhone, and John thinks he won't scratch Jet Black.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57da0acd6a49631b7953a7a5</guid><pubDate>Thu, 15 Sep 2016 20:28:39 +0000</pubDate><title>187: Putting Plastic on Your Couches</title><itunes:title>Putting Plastic on Your Couches</itunes:title><itunes:episode>187</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:02</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp187.mp3" length="86216746" type="audio/mpeg"/><link>https://atp.fm/187</link><description><![CDATA[<ul>
+<li>Home button habits<ul>
+<li>New iOS 10 home button behavior<ul>
+<li><code>Settings</code> → <code>General</code> → <code>Accessibility</code> → <code>Home Button</code></li>
+</ul>
+</li>
+<li><a href="http://www.businessinsider.com/chinese-use-assistivetouch-on-iphone-2015-5">Widespread home-button conservation</a></li>
+</ul>
+</li>
+<li>The <a href="http://www.apple.com/shop/product/MN002/iphone-7-smart-battery-case-black?fnode=42">iPhone 7 Smart Battery Case</a> is <a href="https://twitter.com/thenickguy/status/776077107663437824/photo/1">larger than the 6's</a></li>
+<li><a href="http://www.apple.com/shop/product/MMY72ZM/A/iphone-7-leather-case-tan">Apple iPhone 7 Leather Case</a>'s side buttons</li>
+<li>Are the Lightning EarPods digital?<ul>
+<li><a href="https://en.wikipedia.org/wiki/Digital-to-analog_converter">DAC</a></li>
+<li><a href="http://www.apple.com/shop/product/MMX62AM/A/lightning-to-35-mm-headphone-jack-adapter?fnode=97">Lightning → Headphone Jack Adapter</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/airpods/">AirPods</a><ul>
+<li>Controls</li>
+<li><a href="https://www.buzzfeed.com/johnpaczkowski/inside-iphone-7-why-apple-killed-the-headphone-jack">AirPods use Bluetooth</a></li>
+</ul>
+</li>
+<li>Bluetooth, codecs, and audio quality<ul>
+<li><a href="https://en.wikipedia.org/wiki/MP3">MP3</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Advanced_Audio_Coding">AAC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/FLAC">FLAC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/AptX">AptX</a></li>
+<li><a href="https://en.wikipedia.org/wiki/List_of_Bluetooth_profiles#Advanced_Audio_Distribution_Profile_.28A2DP.29">A2DP</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Lossless">ALAC</a></li>
+</ul>
+</li>
+<li>How would Steve Jobs pitch the AirPods?</li>
+<li>iPhones 7 Cameras<ul>
+<li><a href="https://techcrunch.com/2016/09/13/review-apple-tees-up-the-future-with-iphone-7/">Matthew Panzarino's review</a></li>
+<li><a href="https://developer.apple.com/reference/avfoundation/avcapturedevicetype/"><code>AVCaptureDeviceType</code></a> (see <a href="https://developer.apple.com/reference/avfoundation/avcapturedevicetype/2361496-builtinduocamera"><code>builtInDuoCamera</code></a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/F-number">f-number</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Exif">EXIF</a></li>
+<li><a href="https://twitter.com/pschiller/status/775036879133564928">Schiller on sensor size on Twitter</a></li>
+<li><a href="https://www.reddit.com/r/apple/comments/529rbs/phil_schiller_confirms_sensor_size_is_same_on_7/">Schiller on sensor size via email</a></li>
+<li><a href="https://twitter.com/BenRiceM/status/775656267696181248/photo/1">Ben McCarthy on manual controls</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Kinect">Xbox Kinect</a></li>
+<li>Noise reduction</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <ul>
+<li>What did we order?</li>
+<li>A special John Siracusa rant</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $10/month. Use code <strong>AccidentalPodcast10</strong> for a $10 credit.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass.</li>
+<li><a href="http://www.igloosoftware.com/atp">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+</ul>]]></description><itunes:subtitle>Anti-homers, AirPod tappers, Bluetooth codecs, and nauseous laser enthusiasts.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57d0eac4725e25577a94f22f</guid><pubDate>Thu, 08 Sep 2016 07:39:15 +0000</pubDate><title>186: Jony Ive Has a Lot of White Pants</title><itunes:title>Jony Ive Has a Lot of White Pants</itunes:title><itunes:episode>186</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>03:14:07</itunes:duration><enclosure url="https://atp.fm/audio/513abd71e4b0fe58c655c105%3A513abd71e4b0fe58c655c111%3A57d0eac4725e25577a94f22f" length="139886277" type="audio/mpeg"/><link>https://atp.fm/186</link><description><![CDATA[<ul>
+<li><a href="http://www.apple.com/apple-events/september-2016/">Apple's September 2016 Event</a></li>
+<li>Tim Cook &amp; <a href="https://en.wikipedia.org/wiki/James_Corden">James Corden</a> do <a href="https://en.wikipedia.org/wiki/The_Late_Late_Show_with_James_Corden#Recurring_segments">Carpool Karaoke</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Pharrell_Williams">Pharrell Williams</a></li>
+<li><a href="https://www.youtube.com/watch?v=H1C9BeyD_e0">WWDC 2015 intro</a></li>
+<li><a href="https://www.youtube.com/watch?v=6YDXBeGOtUk">Design video</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/iwork/">iWork Updates</a></li>
+<li><a href="http://supermariorun.com/">Mario Run</a> (<a href="http://apple.co/SUPERMARIORUN">App Store Link</a>)<ul>
+<li><a href="https://en.wikipedia.org/wiki/Shigeru_Miyamoto">Shigeru Miyamoto</a></li>
+<li><a href="http://toucharcade.com/2016/09/07/why-super-mario-run-might-or-might-not-have-iap/">Only one IAP</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/apple-watch-series-2/">Apple Watch Series 2</a><ul>
+<li><a href="http://www.apple.com/apple-watch-series-1/">Series 1</a></li>
+<li><a href="http://www.apple.com/apple-watch-edition/">Apple Watch Edition</a></li>
+<li><a href="http://www.apple.com/watch/interactive-gallery/">Interactive Gallery</a></li>
+<li>Ceramic watches</li>
+<li><a href="http://www.apple.com/shop/buy-watch/apple-watch/space-black-stainless-steel-space-black-link-bracelet?product=MNQ02LL/A&amp;step=detail">Space Black Stainless Steel with Link Bracelet</a></li>
+<li><a href="http://watchesbysjx.com/2016/02/introducing-the-slim-dhermes-now-in-slate-grey-or-midnight-blue.html">Slim d'Hermès</a></li>
+<li><a href="http://www.apple.com/apple-watch-nike/">Apple Watch Nike+</a></li>
+<li><a href="https://www.apple.com/apple-watch-hermes/">Apple Watch Hermès</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/iphone-7/">iPhone 7</a><ul>
+<li><a href="https://twitter.com/caseyliss/status/773602312845717504">Apple's Footnote</a></li>
+<li><a href="https://dbrand.com/">dbrand skins</a></li>
+<li><a href="http://www.theverge.com/circuitbreaker/2016/9/7/12841248/apple-cheap-iphone-screen-replacement-applecare">Apple makes replacing screens cheaper</a></li>
+<li><a href="https://www.periscope.tv/w/ap-1TDkzNDY2Mnwxdk94d1JlcmJRcUpCEhv6JZBgzLr3dOSHzJwXzD8VYxkxTxKyw7Ec9XfFj3U=">John Gruber's Periscope</a></li>
+<li><a href="http://www.everymac.com/systems/apple/macbook/specs/macbook_2.0_black.html">"Blackbook"</a></li>
+<li><a href="http://5by5.tv/hypercritical/86">Naked Robotic Core</a></li>
+<li><a href="https://light.co/camera">Light L16</a></li>
+<li><a href="https://www.lytro.com/imaging">Lytro Imaging</a></li>
+<li><a href="https://twitter.com/reneritchie/status/773642061077544960">Rene Ritchie on shooting in RAW</a></li>
+<li><a href="https://twitter.com/settern/status/773692651669295104">Serenity Caldwell on zooming</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Bokeh">Bokeh</a></li>
+<li><a href="https://www.instagram.com/p/6aqqzhBylS/?taken-by=caseyliss">Non-portrait bokeh</a></li>
+<li><a href="https://sixcolors.com/post/2016/09/what-to-look-for-at-wednesdays-apple-event/">Jason Snell on what to expect</a></li>
+<li><a href="https://www.buzzfeed.com/johnpaczkowski/inside-iphone-7-why-apple-killed-the-headphone-jack?utm_term=.uenX6olVP#.ykZBxQEvX">Buzzfeed on dropping the headphone jack</a></li>
+<li><a href="http://www.apple.com/shop/product/MMX62AM/A/lightning-to-35-mm-headphone-jack-adapter?fnode=97">Apple Lightning to headphone jack Adapter</a></li>
+<li><a href="http://www.amazon.com/dp/B008EOXXFI/?tag=liismo-20">Casey's Bluetooth headphones</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco downsizes while he upsizes</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>JETBLACK</strong> for 10% off your first purchase.</li>
+<li><a href="http://thetracker.com/atp">TrackR</a>: Find lost items in seconds. Get 30% off your entire order with code <strong>ATP</strong>.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="https://512pixels.net/2016/09/september-another-12-months/">Childhood Cancer Awareness Month</a>: Please <a href="http://heroes.stjude.org/stephenhackett">donate to St. Jude</a>. We have. <em>Any</em> amount helps.</li>
+</ul>]]></description><itunes:subtitle>Our coverage of the iPhone 7 and Apple Watch Series 2 launch event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57ca40f9bebafb5698fc3ba7</guid><pubDate>Sat, 03 Sep 2016 19:01:37 +0000</pubDate><title>185: The Delaware of Europe</title><itunes:title>The Delaware of Europe</itunes:title><itunes:episode>185</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:06:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp185.mp3" length="93120491" type="audio/mpeg"/><link>https://atp.fm/185</link><description><![CDATA[<ul>
+<li>Pre-show: <ul>
+<li>🌊 The beach 🏖<ul>
+<li><a href="http://www.amazon.com/dp/B00339C3EG/?tag=liismo-20">Casey's Instant Canopy</a></li>
+<li><a href="https://www.amazon.com/dp/B002CLQ1NA/?tag=marcoorg-20">Marco's beach umbrella</a></li>
+<li><a href="http://www.amazon.com/dp/0307887448/?tag=liismo-20">Ready Player One</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fire_Island">Fire Island</a></li>
+</ul>
+</li>
+<li>Laptop sizes and relative weight savings (<a href="https://twitter.com/marcoarment/status/769183607130906624">Marco's tweet</a>)</li>
+</ul>
+</li>
+<li>Casey's iMac RAM update</li>
+<li><a href="http://www.hellointernet.fm/">Hello Internet</a>'s <a href="http://www.bradyharanblog.com/vinyl/hellointernet">vinyl episode</a><ul>
+<li><a href="https://www.youtube.com/watch?v=2zfqw8nhUwA">Apple 1984 commercial</a></li>
+<li><a href="https://en.wikipedia.org/wiki/StuffIt_Expander">StuffIt Expander</a></li>
+<li><a href="https://en.wikipedia.org/wiki/OS/2#1994.E2.80.931996:_The_.22Warp.22_years">OS/2 Warp</a></li>
+<li>Windows vs. OS X</li>
+</ul>
+</li>
+<li>Feedback on Marco's Boot Camp woes<ul>
+<li><a href="http://www.playdead.com/games/inside/">Inside</a> is <a href="http://www.ign.com/articles/2016/08/01/inside-reportedly-coming-to-playstation-4-this-month">on the PS4 now</a></li>
+<li><a href="https://www.theincomparable.com/theincomparable/318/">John, Tiff, and others talk about Inside on The Incomparable</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/support/app-store-improvements/">App Store Improvements</a><ul>
+<li><a href="https://developer.apple.com/app-store/review/guidelines/">Review guidelines</a> update</li>
+<li><a href="http://www.appstorereviewguidelineshistory.com/">Review guidelines diffs</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2016/06/17/ep-158">Talk Show Live, WWDC 2016</a></li>
+</ul>
+</li>
+<li>John's childhood artwork<ul>
+<li><a href="https://www.instagram.com/p/BJbzYr3hFSx/">🐢</a></li>
+<li><a href="https://www.instagram.com/p/BJbz-ROBUP4/">🦄</a></li>
+<li><a href="https://www.instagram.com/p/BJb0yQ_h2qG/">👧</a></li>
+<li><a href="https://www.instagram.com/p/BJb1ETGh5-E/">⛰</a></li>
+<li><a href="https://www.instagram.com/p/BJb2HaWhEyv/">👨</a></li>
+<li><a href="https://www.instagram.com/p/BJb27naB4O_/">🐲</a></li>
+<li><a href="https://www.instagram.com/p/BJb4tV8hlJp/">⚔</a></li>
+<li><a href="http://hypercritical.co/fatbits/2009/05/06/hypercritical">Original Hypercritical post</a></li>
+</ul>
+</li>
+<li><a href="https://support.apple.com/en-us/HT201238">New iCloud 2TB storage option</a></li>
+<li><a href="http://europa.eu/rapid/press-release_IP-16-2923_en.htm">Apple's EU tax problems</a><ul>
+<li><a href="http://www.vox.com/2016/8/30/12709506/apple-ireland-taxes">Vox article</a></li>
+<li><a href="https://www.apple.com/ie/customer-letter/">Tim Cook's letter</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2016/08/apple-event-september-7/">September 7th Apple Event</a><ul>
+<li><a href="http://www.macrumors.com/2016/08/31/spec-sheet-iphone-7-plus-256gb-earpods/">iPhone 7 packing sheet</a></li>
+<li><a href="https://www.youtube.com/watch?v=aEK37MBTUPk">Google Photos Ad</a></li>
+<li><a href="http://www.anandtech.com/show/10610/intel-announces-7th-gen-kaby-lake-14nm-plus-six-notebook-skus-desktop-coming-in-january">Kaby Lake announced</a></li>
+<li><a href="http://www.bloomberg.com/news/articles/2016-08-29/apple-said-to-prepare-ipad-upgrades-and-refreshed-mac-lineup">MacBook Air Update?</a></li>
+<li><a href="http://grathio.com/2016/08/teardown-same-product-fifty-years-apart/">Razor teardowns, fifty years apart</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.contentful.com/">Contentful</a>: A content management developer platform with an API at its core.</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping.</li>
+</ul>]]></description><itunes:subtitle>Also available on 17 floppy disks.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57b67675be65946ef82353f6</guid><pubDate>Wed, 24 Aug 2016 19:04:39 +0000</pubDate><title>184: Procedural Marriage Mistakes</title><itunes:title>Procedural Marriage Mistakes</itunes:title><itunes:episode>184</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:59</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp184.mp3" length="78305261" type="audio/mpeg"/><link>https://atp.fm/184</link><description><![CDATA[<ul>
+<li><a href="https://blog.twitter.com/2016/new-ways-to-control-your-experience-on-twitter">Twitter quality filter for everyone</a></li>
+<li>John buys a camera<ul>
+<li><a href="https://www.amazon.com/dp/B007GK50X4/?tag=siracusa-20">Sony Alpha α6300</a></li>
+<li><a href="https://www.amazon.com/dp/B00EPWC30O/?tag=siracusa-20">Sony E 50mm f/1.8 OSS Lens</a></li>
+<li><a href="https://www.amazon.com/dp/B00B20OYUO/?tag=siracusa-20">Sony E 20mm F2.8 Prime Fixed Lens</a></li>
+<li><a href="https://www.amazon.com/dp/B00894YP00/?tag=marcoorg-20">Canon 40mm Pancake</a></li>
+<li><a href="https://www.amazon.com/dp/B00FSB79KU/?tag=marcoorg-20">Sony 35mm FE 2.8 (Almost-)Pancake</a></li>
+<li><a href="https://www.caseyliss.com/2015/9/10/siracusa-on-toasters">John's toaster reviews</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/tiffanyarment">Tiff</a> tries to play <a href="http://www.playdead.com/games/inside/">Inside</a> using <a href="https://www.apple.com/support/bootcamp/">Boot Camp</a></li>
+<li>Ridiculous habits of the youths of Britain</li>
+<li>iPhone 7 rumors<ul>
+<li><a href="https://sixcolors.com/post/2015/01/battery-life-apples-solving-for-x/">Battery life: Apple's solving for x</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Casey and John <a href="https://duo.google.com/">share a private moment</a><ul>
+<li><a href="http://drops.caseyliss.com/VU08">Incoming call with knock-knock disabled</a></li>
+<li><a href="http://drops.caseyliss.com/fECX">Call quality prompt</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>ALWAYSONVACATION</strong> for 10% off your first purchase.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>Marco's critical mistake was forgetting the day of preparation.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57b3d3a520099ef548469472</guid><pubDate>Wed, 17 Aug 2016 19:58:11 +0000</pubDate><title>183: I Filed a Radar</title><itunes:title>I Filed a Radar</itunes:title><itunes:episode>183</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:28:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp183.mp3" length="64124353" type="audio/mpeg"/><link>https://atp.fm/183</link><description><![CDATA[<ul>
+<li><a href="https://en.wikipedia.org/wiki/QNX">QNX</a> and generally crappy car computing hardware</li>
+<li>Audio sync, drift, and <a href="https://en.wikipedia.org/wiki/Quartz_clock">quartz crystals</a></li>
+<li><a href="https://marco.org/2016/08/15/vbr-mp3-plea">Marco files a Radar</a><ul>
+<li><a href="http://id3.org/id3v2.3.0#sec4.7">MLLT</a></li>
+<li><a href="https://github.com/audiocogs">Audiocogs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cross-origin_resource_sharing">CORS</a></li>
+<li><a href="http://www.libsyn.com/">Libsyn's</a> <a href="https://overcast.fm/+BBr50s9RE/1:16:20">podcast with global stats</a></li>
+<li><a href="http://drops.caseyliss.com/1ffRd">ATP's audience podcast-app stats</a> from a recent episode</li>
+</ul>
+</li>
+<li>John and Wi-Fi calling (<code>Settings</code> → <code>Phone</code> → <code>Wi-Fi Calling</code>)<ul>
+<li><a href="http://www.verizonwireless.com/support/wifi-calling-faqs/">Verizon Wi-Fi calling FAQ</a></li>
+</ul>
+</li>
+<li><a href="https://twitter.com/greyham/status/761461096200888321/photo/1">Google and Facebook also do charity matches on bug bounties</a></li>
+<li>Casey iMac Update</li>
+<li><a href="https://twitter.com/davezatz/status/765629650617982976/photo/1">TiVo "lifetime" service ends</a> for the <a href="https://en.wikipedia.org/wiki/TiVo_digital_video_recorders#Series1">Series 1</a></li>
+<li><a href="https://twitter.com/Spacekatgal/status/764910386135138304">Brianna Wu's verification experience</a></li>
+<li>What is an appropriate amount of <a href="http://www.apple.com/diversity/">diversity</a>?</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="http://blog.instagram.com/post/148348940287/160802-stories">Instagram Stories</a><ul>
+<li><a href="https://www.relay.fm/connected/103">Connected #103</a> (<a href="https://overcast.fm/+CHZ80Y14g/46:51">Overcast timestamp link</a>)</li>
+</ul>
+</li>
+<li>What makes a good user interface? </li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off the new Automatic Pro with this link.</li>
+<li><a href="http://thetracker.com/atp">TrackR</a>: Find lost items in seconds. Get 30% off your entire order with code <strong>ATP</strong>.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>More on car software, VBR MP3s, Wi-Fi calling, TiVo, and diversity.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57a40460579fb3a3a8581593</guid><pubDate>Wed, 10 Aug 2016 19:18:49 +0000</pubDate><title>182: I Had to Reboot My Car Today</title><itunes:title>I Had to Reboot My Car Today</itunes:title><itunes:episode>182</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp182.mp3" length="85523123" type="audio/mpeg"/><link>https://atp.fm/182</link><description><![CDATA[<ul>
+<li>John's camera hunt continues<ul>
+<li>The tradeoffs of zoom lenses</li>
+<li><a href="http://toolsandtoys.net/reviews/the-sony-vario-tessar-t-e-16-70mm-f4-za-oss-lens-review/">Sony Vario-Tessar T* E 16-70mm lens</a></li>
+<li><a href="https://www.amazon.com/dp/B01DLLJ8CU/?tag=marcoorg-20">Sony RX10 III superzoom</a> that John probably should get, but won't</li>
+<li><a href="https://www.amazon.com/dp/B01I3LNMAM/?tag=marcoorg-20">Fuji X-T2</a></li>
+<li><a href="https://www.amazon.com/dp/B00ZDWGFR2/?tag=marcoorg-20">Sony A7R II</a>, Marco's camera<ul>
+<li><a href="https://www.ifixit.com/Teardown/Sony+a7R+II+Teardown/45597">iFixit teardown</a></li>
+<li><a href="https://www.amazon.com/dp/B00PX8CHO6/?tag=marcoorg-20">Sony A7 II</a>, the cheaper, older one</li>
+<li><a href="https://www.dpreview.com/articles/9782001248/sony-a7r-ii-versus-a7-ii-eight-key-differences">Differences between A7 II and A7R II</a></li>
+</ul>
+</li>
+<li><a href="https://www.amazon.com/dp/B00HPQ09H6/?tag=liismo-20">Olympus OM-D E-M10</a>, <a href="https://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's camera</a><ul>
+<li><a href="https://www.amazon.com/dp/B0055N2L22/?tag=liismo-20">Panasonic Summilux 25mm f/1.4 Micro 4/3 lens</a>, Casey's 50mm-equivalent</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>The mediocrity of car infotainment systems<ul>
+<li><a href="http://www.qnx.com/news/pr_4458_1.html">QNX powers BMW iDrive</a></li>
+<li><a href="http://hypercritical.co/2013/01/07/ces-worse-products-through-software">Worse Products Through Software</a></li>
+</ul>
+</li>
+<li>The <a href="https://en.wikipedia.org/wiki/ARM_architecture">ARM</a> Mac feedback that won't die</li>
+<li><a href="http://variety.com/2016/digital/news/gwyneth-paltrow-apple-planet-of-the-apps-1201830454/">Planet of the Apps announces their advisers</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Gary_Vaynerchuk">Gary Vaynerchuk</a></li>
+<li><a href="http://winecast.net/2011/01/12/corkd-is-dead-does-anyone-care/">Cork'd</a></li>
+<li><a href="http://winecast.net/">Winecast</a></li>
+</ul>
+</li>
+<li><a href="http://www.recode.net/2016/8/4/12379572/apple-tv-guide">Apple TV Guide</a></li>
+<li><a href="http://daringfireball.net/linked/2016/08/04/apple-security-bounty-program">Apple launches bug bounties</a><ul>
+<li><a href="http://www.theverge.com/2016/8/4/12380036/apple-bug-bounty-program-vulnerability-security">The Verge's take</a></li>
+<li><a href="https://twitter.com/chrisrohlf/status/761343858789625856">Tweet with picture of bounties</a></li>
+<li><a href="https://securosis.com/blog/thoughts-on-apples-bug-bounty-program">Securosis's take</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/diversity/">Apple's new diversity numbers</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Why podcasts aren't VBR MP3s<ul>
+<li><a href="https://en.wikipedia.org/wiki/MP3#File_structure">MP3 file structure</a></li>
+<li><a href="http://www.multiweb.cz/twoinches/MP3inside.htm">More on frame headers, including the Xing VBR jump table</a></li>
+<li>Existing <a href="http://id3.org/id3v2.4.0-frames">standard ID3 tags</a> that could solve the problem, but appear not to be supported by anything:<ul>
+<li>ASPI: Not precise enough for long podcasts.</li>
+<li>MLLT: Provides any precision level. A good candidate, but unsupported everywhere.</li>
+</ul>
+</li>
+<li><a href="http://static.marco.org/Jskjlf0YhqA.mp3">A VBR version of this episode</a> with Xing and MLLT tags<ul>
+<li>Compared to <a href="http://traffic.libsyn.com/atpfm/atp182.mp3">the CBR version</a>, it's 25% smaller with better quality during the theme song</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>RIPTIVO</strong> for 10% off your first purchase.</li>
+<li><a href="http://harrys.com/atp">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="https://linode.com/atp/">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $10/month. Use code <strong>AccidentalPodcast10</strong> for a $10 credit.</li>
+</ul>]]></description><itunes:subtitle>Cameras, car infotainment systems, Apple TV Guide, bug bounties, and why podcast MP3s aren't VBR.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57a00bd54402439535f0b54f</guid><pubDate>Thu, 04 Aug 2016 02:45:18 +0000</pubDate><title>181: Eat Your Vegetables</title><itunes:title>Eat Your Vegetables</itunes:title><itunes:episode>181</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:38:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp181.mp3" length="71208777" type="audio/mpeg"/><link>https://atp.fm/181</link><description><![CDATA[<ul>
+<li>John rents a camera for his Long Island vacation<ul>
+<li><a href="http://www.lensrentals.com/">Lens Rentals</a></li>
+<li><a href="http://www.sony.com/electronics/interchangeable-lens-cameras/ilce-7rm2">Sony α7R II</a></li>
+<li>John's rentals<ul>
+<li><a href="http://www.sony.com/electronics/interchangeable-lens-cameras/ilce-6300-body-kit">Sony Alpha α6300</a> (<a href="http://www.lensrentals.com/rent/sony/e-mount/cameras/sony-alpha-a6300">at LensRentals</a>)</li>
+<li><a href="http://www.lensrentals.com/rent/video/lenses/sony/sony-e-16-50mm-f3.5-5.6-pz-oss">Sony E 16-50mm f/3.5-5.6 PZ OSS</a></li>
+<li><a href="http://www.lensrentals.com/rent/video/lenses/sony/sony-e-18-105mm-f4-g-pz-oss">Sony E 18-105mm f/4 G PZ OSS</a></li>
+<li><a href="http://www.lensrentals.com/rent/video/lenses/sony/sony-e-50mm-f1.8-oss">Sony E 50mm f/1.8 OSS</a></li>
+</ul>
+</li>
+<li><a href="http://www.sony.com/electronics/cyber-shot-compact-cameras/dsc-rx10">Sony RX10</a></li>
+<li><a href="https://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's setup</a></li>
+</ul>
+</li>
+<li>ATP: The Fully Verified Podcast™</li>
+<li>Temporarily-single dad life</li>
+<li>Casey pretends <a href="https://david-smith.org/">_'s</a> Tesla is his<ul>
+<li><a href="https://twitter.com/caseyliss/status/759177089341849600">Casey samples the frunk</a></li>
+</ul>
+</li>
+<li><a href="http://www.bloomberg.com/news/articles/2016-07-28/apple-taps-blackberry-talent-as-car-project-takes-software-turn">Apple hires Dan Dodge</a>, co-creator of <a href="http://www.qnx.com/content/qnx/en.html">QNX</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/QNX">QNX Operating System</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Real-time_operating_system">Real-time operating system</a></li>
+</ul>
+</li>
+<li><a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160725/025676.html">Swift 4</a></li>
+<li><a href="http://www.theverge.com/2016/4/29/11535490/rovi-tivo-acquisition-1-1-billion">Rovi buys TiVo</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Rovi#History_as_Macrovision">Macrovision</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rambus">Rambus</a></li>
+<li><a href="http://arstechnica.com/gadgets/2016/06/after-rovi-buys-tivo-company-might-stop-making-its-own-hardware/">Set Top Box plans</a></li>
+<li><a href="https://en.wikipedia.org/wiki/CableCARD">CableCARD</a></li>
+<li><a href="http://hypercritical.co/fatbits/2010/09/02/apples-trouble-with-tv">Apple's Trouble with TV</a></li>
+<li><a href="http://5by5.tv/hypercritical/1">Hypercritical #1: Dream Crusher</a></li>
+<li><a href="http://5by5.tv/hypercritical/58">Hypercritical #58: No More Numbers For You / The Four Tuners</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: yet more on TiVo</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping.</li>
+</ul>]]></description><itunes:subtitle>Cameras at the beach, QNX, TiVo, and why nobody wants a convertible.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5792ddf0b8a79baa23bfcc0a</guid><pubDate>Wed, 27 Jul 2016 15:06:05 +0000</pubDate><title>180: Don't Cry for John, Argentina</title><itunes:title>Don't Cry for John, Argentina</itunes:title><itunes:episode>180</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:46:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp180.mp3" length="77038236" type="audio/mpeg"/><link>https://atp.fm/180</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="http://www.snopes.com/pokemon-go-dog-walking-program/">Pokémon Free-to-Play Dogs</a><ul>
+<li><a href="http://thesweethome.com/">The Sweet Home</a></li>
+</ul>
+</li>
+<li>Looking at the bright side of Apple's ancient Mac lineup</li>
+</ul>
+</li>
+<li><a href="https://blog.twitter.com/2016/announcing-an-application-process-for-verified-accounts-0">Twitter Verification</a><ul>
+<li><a href="http://www.nytimes.com/2016/07/20/movies/leslie-jones-star-of-ghostbusters-becomes-a-target-of-online-trolls.html?_r=0">Attacks on Leslie Jones</a></li>
+<li><a href="https://twitter.com/viticci">Federico Viticci</a> of <a href="https://www.macstories.net">MacStories</a></li>
+<li>Twitter accounts:<ul>
+<li><a href="https://twitter.com/marcoarment">Marco</a></li>
+<li><a href="https://twitter.com/siracusa">John</a></li>
+<li><a href="https://twitter.com/caseyliss">Casey</a></li>
+<li><a href="https://twitter.com/atpfm">ATP</a></li>
+<li><a href="https://twitter.com/overcastfm/">Overcast</a></li>
+<li><a href="https://twitter.com/verified">Verified</a></li>
+</ul>
+</li>
+<li><a href="https://www.relay.fm/analogue/85">Analog(ue) #85: Truly Terrible Human Beings</a></li>
+</ul>
+</li>
+<li>Marco's podcast post-production app<ul>
+<li><a href="https://www.relay.fm/radar/36">Under the Radar #36: Should You Release Every App?</a></li>
+<li><a href="https://marco.org/2014/01/20/bugshotkit">Bugshot</a></li>
+<li><a href="https://marco.org/2016/05/02/quitter">Quitter</a></li>
+<li>Piracy-reduction techniques</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <ul>
+<li>More on passwords and piracy protection</li>
+<li>How Tiff can play <a href="http://www.playdead.com/games/inside/">Inside</a><ul>
+<li><a href="http://www.amazon.com/dp/B01AVF6WN2/?tag=marcoorg-20">Samsung T3</a></li>
+<li><a href="http://www.vmware.com/products/fusion.html">VMware Fusion</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>VERIFIED</strong> for 10% off your first purchase.</li>
+<li><a href="http://trunkclub.com/atp">Trunk Club</a>: Premium clothing, great advice, zero work.</li>
+<li><a href="http://harrys.com/atp">Harry's</a>: An exceptional shave at a fraction of the price. Get $5 off your first purchase with this link.</li>
+</ul>]]></description><itunes:subtitle>Twitter's Verified program, viability of podcast tools, and three Mac nerds figuring out how to play a Windows game.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57903c2be6f2e15aa9c44388</guid><pubDate>Thu, 21 Jul 2016 20:02:55 +0000</pubDate><title>179: Free-to-Play Dogs</title><itunes:title>Free-to-Play Dogs</itunes:title><itunes:episode>179</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:29</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp179.mp3" length="79636133" type="audio/mpeg"/><link>https://atp.fm/179</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="http://static.marco.org/L6KEtdk0fts.png">Casey's iMac Feedback</a><ul>
+<li><a href="https://pushover.net/">Pushover</a></li>
+</ul>
+</li>
+<li>Pokémon Go<ul>
+<li><a href="https://www.facebook.com/ScienceMuseumofVirginia/videos/vb.51749670897/10155013443805898/?type=2&amp;theater">Science Museum of Virginia's Pokémon announcement</a></li>
+<li><a href="https://maymont.org/press-room/media-release-pokemon/">Maymont Park's exclusive event</a></li>
+<li><a href="https://twitter.com/xGogsx/status/755876264242708480">Rent-a-dog</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://www.nytimes.com/2016/07/19/business/dealbook/softbank-buys-chip-designer-arm.html">SoftBank to buy ARM</a><ul>
+<li><a href="http://www.recode.net/2016/7/17/12210564/softbank-arm-holdings-deal">Recode's take</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Gorilla_Glass">Gorilla Glass</a></li>
+</ul>
+</li>
+<li><a href="http://buyersguide.macrumors.com/#Mac">Apple hardware stagnation</a><ul>
+<li><a href="https://www.youtube.com/watch?v=Fsg3mX1pCLY">Stephen Hackett's laptop reviews</a></li>
+</ul>
+</li>
+<li>How does Marco's Sidetrack work?<ul>
+<li><a href="https://en.wikipedia.org/wiki/Fast_Fourier_transform">Fast Fourier transform</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: What's appropriate to talk about on ATP?<ul>
+<li><a href="https://www.reference.com/world-view/definition-cultural-erasure-784c227d0c5cfea7">Erasure</a></li>
+<li><a href="https://www.youtube.com/watch?v=ji5_MqicxSo">Randy Pausch's Last Lecture</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://indochino.com/">Indochino</a>: Finely crafted, exceptionally priced menswear. Get any custom-made suit for just $399 with code <strong>ATP</strong>.</li>
+<li><a href="http://thetracker.com/atp">TrackR</a>: Find lost items in seconds. Get 30% off your entire order with code <strong>ATP</strong>.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+</ul>]]></description><itunes:subtitle>ARM Macs, the ancient Mac lineup, dog rental, and an algorithm for syncing audio tracks and correcting drift.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57870061725e258ab38d2f86</guid><pubDate>Thu, 14 Jul 2016 20:14:07 +0000</pubDate><title>178: Mama Needs That Pokémon</title><itunes:title>Mama Needs That Pokémon</itunes:title><itunes:episode>178</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp178.mp3" length="74776605" type="audio/mpeg"/><link>https://atp.fm/178</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>Hackintoshes work sometimes</li>
+<li><a href="https://twitter.com/dazeend/status/642815687736586241">Charles Perry's Mac Mini Story</a></li>
+<li><a href="http://ergo.contourdesign.com/product/rollermouse-pro2/">Contour Design RollerMouse Pro2</a></li>
+</ul>
+</li>
+<li>Casey's 5K iMac (Late 2015, 4GHz i7) Woes<ul>
+<li><code>WindowServer: GPU Driver appears to be hung (over 5 continous seconds of unreadiness)</code></li>
+<li><a href="https://twitter.com/robtravis/status/753399838075719680">Later RTFU tweet</a></li>
+</ul>
+</li>
+<li><a href="https://www.planetoftheapps.com/">Planet of the Apps</a><ul>
+<li><a href="https://www.relay.fm/clockwise/145">Clockwise #145: I've Always Wanted to Have a French Accent</a></li>
+<li><a href="http://www.nytimes.com/2016/03/25/business/media/apples-first-foray-into-original-tv-is-a-series-about-apps.html?_r=0">Original New York Times article from March</a></li>
+<li><a href="http://www.indiegamethemovie.com/">Indie Game: The Movie</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Phil_Fish">Phil Fish</a></li>
+</ul>
+</li>
+<li><a href="http://prospectproduction.com/works/">Prospect Productions' Works</a></li>
+</ul>
+</li>
+<li><a href="http://www.pokemongo.com/">Pokémon Go</a><ul>
+<li><a href="https://www.ingress.com/">Ingress</a></li>
+<li><a href="https://www.nianticlabs.com/">Niantic</a></li>
+<li><a href="http://www.148apps.com/reviews/ramp-champ/">Ramp Champ</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="https://marco.org/2016/07/06/tesla-autopilot">Tesla Autopilot</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>ITSNOTTHERAM</strong> for 10% off your first purchase.</li>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+</ul>]]></description><itunes:subtitle>Planet of the Apps, Pokémon Go, and why you're all going to email Casey.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:577dc4fdbe6594be46e92dd2</guid><pubDate>Thu, 07 Jul 2016 19:13:18 +0000</pubDate><title>177: Paying for Someone to Blame</title><itunes:title>Paying for Someone to Blame</itunes:title><itunes:episode>177</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:33:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp177.mp3" length="67440284" type="audio/mpeg"/><link>https://atp.fm/177</link><description><![CDATA[<ul>
+<li>Follow-up: <a href="http://www.shirt-pocket.com/blog/">Dave Nanian</a> of <a href="http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html">SuperDuper</a> fame on <a href="https://en.wikipedia.org/wiki/Consumer_Electronics_Control">HDMI CEC</a></li>
+<li>Ripping Blu-rays for Apple TV:<ul>
+<li><a href="http://www.makemkv.com/">MakeMKV</a></li>
+<li><a href="https://subler.org/">Subler</a></li>
+<li><a href="http://plex.tv/">Plex</a></li>
+<li><a href="https://firecore.com/infuse">Infuse</a></li>
+<li><a href="https://www.synology.com/en-us/dsm/6.0/mobile">DS Video</a></li>
+<li><a href="https://github.com/donmelton/video_transcoding">Don Melton's video-transcoding scripts</a></li>
+<li><a href="http://thetvdb.com/">The TV Database</a></li>
+<li><a href="https://www.themoviedb.org/">The Movie Database</a></li>
+<li>Follow-up on Marco's HDMI CEC woes</li>
+</ul>
+</li>
+<li>Follow-up: <a href="https://twitter.com/mb">Matt Bischoff</a> on <a href="https://airtable.com/shr6vWuUAl5rCaYlr/tbl0yLueuIdGMLRwW/viwYAhibgF7fqvxyN">ice cream ingredients</a><ul>
+<li><a href="https://twitter.com/Edysicecream/status/750755469090631680">Edy's vs. Dreyer's vs. Breyer's</a></li>
+</ul>
+</li>
+<li>iCloud Drive vs. Dropbox for file syncing<ul>
+<li><a href="http://www.literatureandlatte.com/blog/?p=713">Scrivener Sync</a></li>
+<li><a href="http://www.apple.com/macos/sierra-preview/">macOS Sierra</a> and the case of the missing files</li>
+<li><a href="https://blogs.dropbox.com/business/2016/04/announcing-project-infinite/">Dropbox Infinite</a></li>
+</ul>
+</li>
+<li><a href="https://medium.com/swlh/building-my-1-200-hackintosh-49a1a186241e#.mdh5n1r1e">Hackintoshes still exist, apparently</a><ul>
+<li><a href="https://twitter.com/felix_schwarz/status/748415982222381057">Marco's joke RT</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Old_World_ROM">Old World ROM</a></li>
+<li><a href="http://lowendmac.com/2016/outbound-laptop-and-notebook/">Isopoint Trackbar</a> (more <a href="http://www.applefritter.com/node/3359">here</a>)</li>
+</ul>
+</li>
+<li>The poor <a href="http://www.apple.com/mac-mini/">Mac Mini</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Motorola_Rokr">Motorola Rokr</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show Neutral: <a href="http://automobiles.honda.com/accord-sedan">Honda Accord SE</a> </li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://trunkclub.com/atp">Trunk Club</a>: Premium clothing, great advice, zero work.</li>
+<li><a href="http://wundercapital.com/atp">Wunder Capital</a>: Do well and do good.</li>
+<li><a href="http://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping.</li>
+</ul>]]></description><itunes:subtitle>Ripping Blu-rays for Apple TV, stable ice cream, Hackintoshes, and Apple's disdain for the Mac Mini.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:577486d629687f899d3e7ffc</guid><pubDate>Thu, 30 Jun 2016 21:26:43 +0000</pubDate><title>176: Yellow Sock Time</title><itunes:title>Yellow Sock Time</itunes:title><itunes:episode>176</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:23:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp176.mp3" length="60091855" type="audio/mpeg"/><link>https://atp.fm/176</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://plus.google.com/+JunioCHamano/posts/1Bpaj3e3Rru">Linus Torvalds on HFS+</a><ul>
+<li><a href="http://www.cio.com/article/2868393/linus-torvalds-apples-hfs-is-probably-the-worst-file-system-ever.html">See also</a></li>
+</ul>
+</li>
+<li><a href="http://diglloydtools.com/integritychecker.html">IntegrityChecker</a></li>
+<li><a href="https://www.npmjs.com/package/chkbit"><code>chkbit</code></a></li>
+<li><a href="https://en.wikipedia.org/wiki/Parchive#Parity_Volume_Set_Specification_2.0">PAR2</a> and <a href="https://en.wikipedia.org/wiki/Parchive">Parchive</a><ul>
+<li><a href="https://pthree.org/2014/04/01/protect-against-bit-rot-with-parchive/">Protecting against bit rot</a></li>
+</ul>
+</li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_Toolbox">Mac Toolbox</a></li>
+</ul>
+</li>
+<li>More on <a href="https://en.wikipedia.org/wiki/Apple_File_System">APFS</a><ul>
+<li>Space sharing</li>
+<li><a href="https://goo.gl/P0H2Ad">Time Machine</a> and file/directory clones<ul>
+<li><a href="https://en.wikipedia.org/wiki/FSEvents">FSEvents</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Hard_link">Hard links</a></li>
+</ul>
+</li>
+<li>Atomic clones<ul>
+<li><a href="https://en.wikipedia.org/wiki/TeachText">TeachText</a> </li>
+</ul>
+</li>
+<li>Snapshots<ul>
+<li><a href="http://www.soma-zone.com/BackupLoupe/">BackupLoupe</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Surprise <a href="https://en.wikipedia.org/wiki/Consumer_Electronics_Control">HDMI CEC</a> follow-up<ul>
+<li><a href="http://www.logitech.com/en-us/harmony-remotes">Logitech Harmony</a></li>
+<li><a href="https://xkcd.com/927/">xkcd on standards</a></li>
+</ul>
+</li>
+<li>"Screen time" for kids<ul>
+<li><a href="https://en.wikipedia.org/wiki/Transport_Tycoon">Transport Tycoon</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Daniel_Tiger%27s_Neighborhood">Daniel Tiger's Neighborhood</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mister_Rogers%27_Neighborhood">Mr. Rogers' Neighborhood</a></li>
+<li><a href="https://childrenandmediaman.com/2016/06/21/research-shows-preschoolers-who-watch-daniel-tigers-neighborhood-develop-social-and-emotional-skills/">Parent involvement with TV for preschoolers</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <ul>
+<li><a href="https://en.wikipedia.org/wiki/Girl_Scout_Cookies">Girl Scout Cookies</a></li>
+<li><a href="http://www.talentigelato.com/">Talenti Gelato</a></li>
+<li><a href="http://www.benjerry.com/">Ben &amp; Jerry's</a></li>
+<li><a href="https://www.haagendazs.us/">Häagen-Dazs</a></li>
+<li><a href="http://www.breyers.com/">Breyer's</a></li>
+<li><a href="http://www.dreyers.com/SlowChurned/">Dreyer's</a></li>
+<li><a href="http://www.bluebell.com/">Blue Bell</a></li>
+<li><a href="https://jenis.com/">Jeni's</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://amazonsongsofsummer.com/ATP">Amazon Music: Songs of Summer</a>: This Amazon Original playlist features exclusive originals and covers to get you set for the summer.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+</ul>]]></description><itunes:subtitle>Screen time for kids, more on APFS, and 400 tiny trucks working together to deliver the latest Top Gear.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:576f4ca0cd0f68ce8dd0759b</guid><pubDate>Mon, 27 Jun 2016 00:30:19 +0000</pubDate><title>175: Dance Palace</title><itunes:title>Dance Palace</itunes:title><itunes:episode>175</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:45</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp175.mp3" length="80590221" type="audio/mpeg"/><link>https://atp.fm/175</link><description><![CDATA[<ul>
+<li>Marco trying to parallelize the <a href="http://lame.sourceforge.net/">LAME MP3 encoder</a></li>
+<li>macOS Sierra and John's comically old Mac Pro<ul>
+<li><code>/System/Library/CoreServices/PlatformSupport.plist</code></li>
+</ul>
+</li>
+<li><a href="http://daringfireball.net/thetalkshow/2016/06/17/ep-158">The Talk Show Live</a><ul>
+<li><a href="https://www.icloud.com/sharedalbum/#B04GY8gBYGxDqJw">Marco's Pictures</a></li>
+<li>Deleting system apps on iOS 10</li>
+<li>Search ads using names of other apps</li>
+</ul>
+</li>
+<li>Apple Photos and <code>controller</code> search<ul>
+<li><a href="https://twitter.com/burnflare/status/743134107211726848/photo/1">Example success</a></li>
+<li><a href="https://medium.com/@iosight/behind-apples-advanced-computer-vision-for-photos-app-41f3f617d31c">List of strings for Photos search</a></li>
+</ul>
+</li>
+<li><a href="http://www.imore.com/apple-discontinues-thunderbolt-display">Thunderbolt Display has been discontinued</a></li>
+<li>Apple File System<ul>
+<li><a href="https://developer.apple.com/videos/play/wwdc2016/701/">WWDC Video</a></li>
+<li><a href="https://btrfs.wiki.kernel.org/index.php/Main_Page">Btrfs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Andrew_File_System">Andrew File System</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Unicode">Unicode</a><ul>
+<li><a href="http://www.joelonsoftware.com/articles/Unicode.html">Joel Spolsky on Unicode</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ASCII">ASCII</a></li>
+<li><a href="https://en.wikipedia.org/wiki/UTF-16">UTF-16</a></li>
+<li><a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a></li>
+<li><a href="http://graphemica.com/%C3%A9">Latin small letter "e" with acute</a></li>
+<li><a href="http://unicode.org/reports/tr15/#Norm_Forms">Unicode Normalization Forms</a></li>
+<li><a href="http://dubeiko.com/development/FileSystems/HFSPLUS/tn1150.html">Apple Tech Note 1150</a></li>
+<li><a href="http://dubeiko.com/development/FileSystems/HFSPLUS/tn1150.html#UnicodeSubtleties">HFS+ Unicode Subtleties</a></li>
+<li><a href="http://www.cio.com/article/2868393/linus-torvalds-apples-hfs-is-probably-the-worst-file-system-ever.html">Linus Torvalds on HFS+</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Shift_JIS">Shift JIS</a></li>
+</ul>
+</li>
+<li>Data integrity</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Email and parenting </li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>APFS</strong> for 10% off your first purchase.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>More than you ever wanted to know about filenames.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57603d854d088eecd06a209a</guid><pubDate>Tue, 14 Jun 2016 17:36:27 +0000</pubDate><title>174: A Ding in the Room</title><itunes:title>A Ding in the Room</itunes:title><itunes:episode>174</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp174.mp3" length="74092039" type="audio/mpeg"/><link>https://atp.fm/174</link><description><![CDATA[<ul>
+<li>Recorded live <a href="https://twitter.com/caseyliss/status/742500132919218176">from Marco's hotel room</a> at WWDC</li>
+<li>Apple <a href="https://developer.apple.com/wwdc">WWDC</a> reactions<ul>
+<li><a href="http://www.apple.com/apple-events/june-2016/">Keynote video</a></li>
+<li><a href="http://www.apple.com/watchos-preview/">watchOS Preview</a></li>
+<li><a href="http://www.apple.com/tvos-preview/">tvOS Preview</a><ul>
+<li><a href="https://daringfireball.net/thetalkshow/2016/02/12/ep-146">The Talk Show #146</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/macos/sierra-preview/">macOS Preview</a><ul>
+<li><a href="https://twitter.com/siracusa/status/742411384013492225">John's tweet about storage optimization</a></li>
+<li><a href="https://developer.apple.com/library/prerelease/content/documentation/FileManagement/Conceptual/APFS_Guide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40016999-CH1-DontLinkElementID_27">🛎 New filesystem! 🛎</a></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2016/102/">Platforms State of the Union session video</a> (ding around at 1:00:00)</li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2016/701/">Introducing Apple File System session video</a></li>
+<li><a href="https://software.intel.com/en-us/articles/intel-advanced-encryption-standard-aes-instructions-set/">Intel AES</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/ios/ios10-preview/">iOS Preview</a><ul>
+<li><a href="https://twitter.com/rjonesy/status/742455689482620934">Home button change in behavior</a></li>
+<li><a href="https://twitter.com/caseyliss/status/742473373746384896">SiriKit app category support</a></li>
+<li><a href="https://twitter.com/zorn/status/742505680972713985">Mail error message</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Our WWDC 2016 special.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5758e62659827ef6e49a9c85</guid><pubDate>Fri, 10 Jun 2016 16:19:34 +0000</pubDate><title>173: A Series of Heartbreaking Rejections</title><itunes:title>A Series of Heartbreaking Rejections</itunes:title><itunes:episode>173</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp173.mp3" length="95938537" type="audio/mpeg"/><link>https://atp.fm/173</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="http://www.imore.com/no-apple-display-integrated-gpu-wwdc">No 5K Monitor at WWDC</a></li>
+<li>iPhone "7" &amp; SE: Third Time's a Charm</li>
+<li><a href="https://itunespartner.apple.com/en/apps/faq/In-App%20Purchases_Auto-Renewable%20Subscriptions">macOS in official documentation?</a><ul>
+<li><a href="https://twitter.com/txaiwieser/status/740687158349070336">Photo evidence</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>App Store changes announced this week<ul>
+<li>Apple's official pages:<ul>
+<li><a href="https://developer.apple.com/app-store/subscriptions/whats-new/">Subscription changes</a></li>
+<li><a href="https://developer.apple.com/app-store/search-ads/">Search ads</a><ul>
+<li><a href="https://daringfireball.net/misc/2016/06/app-store-ad-example.jpeg">Example image</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Press interviews with Phil Schiller:<ul>
+<li><a href="http://daringfireball.net/2016/06/the_new_app_store">Daring Fireball</a></li>
+<li><a href="http://www.theverge.com/2016/6/8/11880730/apple-app-store-subscription-update-phil-schiller-interview">The Verge</a></li>
+<li><a href="http://www.loopinsight.com/2016/06/08/phil-schiller-apple-making-major-changes-to-the-app-store/">The Loop</a></li>
+<li><a href="http://www.telegraph.co.uk/technology/2016/06/08/apple-to-launch-major-overhaul-of-app-store-with-paid-search-ads/">The Telegraph</a></li>
+</ul>
+</li>
+<li><a href="https://www.relay.fm/radar/31">Under the Radar #31: Today's App Store Announcements</a></li>
+<li><a href="http://inessential.com/2016/06/08/seeking_clarification">Brent Simmons' request for clarification</a></li>
+<li><a href="https://twitter.com/aforethought/status/740637211280977925">People can't see ads</a></li>
+<li><a href="https://www.caseyliss.com/2015/3/19/duckduckgo">Casey's take on DuckDuckGo</a></li>
+<li><a href="https://goo.gl/HkNIE">Covariance &amp; contravariance</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc">WWDC</a> Predictions<ul>
+<li><a href="https://www.relay.fm/upgrade/92">Upgrade #92: WWDC 2016 Draft</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Marco changes an opinion<ul>
+<li><a href="http://worldofgoo.com/">World of Goo</a></li>
+<li><a href="http://tomorrowcorporation.com/humanresourcemachine">Human Resource Machine</a> </li>
+<li><a href="http://www.amazon.com/dp/B019FWY4S2?tag=refm0d6-20">Leuchtturm1917 Pen Loop</a> from <a href="http://mykewasright.com/post/142625337481/apple-pencil-hacks">Myke's Pencil Hacks</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://ring.com/atp">Ring</a>: Put your mind at ease and protect your home with the world’s most advanced video doorbell.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>K56FLEX</strong> for 10% off your first purchase.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>App Store subscriptions and search ads, WWDC wishes, and a change of opinion.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:574fa09cc2ea513538c12e8f</guid><pubDate>Thu, 02 Jun 2016 18:38:54 +0000</pubDate><title>172: iPhone X</title><itunes:title>iPhone X</itunes:title><itunes:episode>172</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:40:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp172.mp3" length="72443496" type="audio/mpeg"/><link>https://atp.fm/172</link><description><![CDATA[<ul>
+<li><strong><a href="http://atp.fm/shirt/">Last call for ATP Shirts</a>! Sale ends on Friday ATP-time!</strong></li>
+<li>John's attic<ul>
+<li><a href="https://en.wikipedia.org/wiki/Modem#Using_digital_lines_and_PCM_.28V.90.2F92.29">K56Flex vs. X2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Hayes_command_set">Hayes command set</a></li>
+<li><a href="http://savethesounds.info/">Modem sounds</a></li>
+</ul>
+</li>
+<li><a href="http://www.cultofmac.com/430982/spy-photos-all-but-confirm-2016-macbook-pros-oled-touchpad/">More on the rumored new MBPs</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/USB#PD">USB Power Delivery</a></li>
+</ul>
+</li>
+<li><a href="http://daringfireball.net/linked/2016/05/31/thunderbolt">External Retina Display</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Thunderbolt_Display">Thunderbolt Display</a></li>
+</ul>
+</li>
+<li><a href="https://www.theinformation.com/apple-opening-siri-developing-echo-rival">Apple opening Siri</a></li>
+<li><a href="http://mashable.com/2016/05/31/iphone-three-year-refresh/">iPhone 7 "tick"?</a></li>
+<li><a href="http://www.ft.com/cms/s/0/a3bf618a-22ec-11e6-9d4d-c11776a5124d.html">Apple considered buying Time Warner</a><ul>
+<li><a href="http://www.sfgate.com/bayarea/article/Who-was-that-crazed-Warriors-fan-photographed-7954793.php">Eddy Cue at the Warriors game</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: New <a href="http://bbc.co.uk/topgear">Top Gear</a><ul>
+<li><a href="http://www.bbc.co.uk/programmes/profiles/1l8P42dKx3G6mjH02Cq9Y34/chris-evans">Chris Evans</a></li>
+<li><a href="http://www.bbc.co.uk/programmes/profiles/1qD1BtgVMNpm7nnvzv7Kflr/sabine-schmitz">Sabine Schmitz</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Simon_Pegg">Simon Pegg</a></li>
+<li><a href="http://www.amazon.co.uk/thegrandtour">Grand Tour</a></li>
+<li><a href="http://www.bbc.co.uk/programmes/p03w1chk">Extra Gear</a></li>
+<li><a href="http://www.bbc.co.uk/programmes/profiles/1XLT1srQWN79Tbt7v9zJWVr/chris-harris">Chris Harris</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fifth_Gear">Fifth Gear</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://eero.com/atp">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>ATP</strong> for free overnight shipping.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+</ul>]]></description><itunes:subtitle>MacBook speculation, another 6-series iPhone, the new Top Gear, and K56Flex vs. X2.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:57466d81044262d3a7725b59</guid><pubDate>Thu, 26 May 2016 19:38:43 +0000</pubDate><title>171: WWDC Is Not Santa Claus</title><itunes:title>WWDC Is Not Santa Claus</itunes:title><itunes:episode>171</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp171.mp3" length="90009151" type="audio/mpeg"/><link>https://atp.fm/171</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="http://atp.fm/shirt/">ATP Shirts</a>!<ul>
+<li><a href="https://en.wikipedia.org/wiki/BMW_M">BMW M</a></li>
+<li><a href="http://static.marco.org/mgpluuuk1kv.png">Marco's illustration</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="http://appreviewtimes.com/">App Store review times</a><ul>
+<li><a href="http://daringfireball.net/thetalkshow/2016/05/21/ep-154">The Talk Show #154 - Facebook on Your Face</a></li>
+</ul>
+</li>
+<li>Force quitting apps on Android &amp; iOS</li>
+</ul>
+</li>
+<li><a href="http://9to5mac.com/2016/05/23/apple-prepping-thinner-macbook-pros-with-oled-screen-above-keyboard-touch-id-for-q4/">Rumored new MacBook Pro</a><ul>
+<li><a href="http://buyersguide.macrumors.com/">MacRumors Buying Guide</a></li>
+<li><a href="http://www.artlebedev.com/everything/optimus/maximus/">Optimus Keyboard</a></li>
+<li><a href="https://www.relay.fm/clockwise/138">Clockwise #138 – You Know What You're Signing Up For</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Windows_SideShow">Windows SideShow</a></li>
+<li><a href="https://www.relay.fm/cortex/29">Cortex #29 - Dvorak</a></li>
+<li><a href="https://www.apple.com/magic-accessories/">Magic Keyboard</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Model_M_keyboard">IBM Model M</a></li>
+<li><a href="https://en.wikipedia.org/wiki/PowerBook_G4">PowerBook G4</a></li>
+<li><a href="https://marco.org/2013/08/30/sculpt-ergonomic-keyboard-review">Microsoft Sculpt Ergonomic Keyboard</a></li>
+<li><a href="http://www.apple.com/shop/product/MB110LL/B/apple-keyboard-with-numeric-keypad-english-usa">Apple Extended Aluminum Keyboard</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Extended_Keyboard">Apple Extended II</a></li>
+</ul>
+</li>
+<li><a href="https://www.theinformation.com/apple-opening-siri-developing-echo-rival">Apple Opening Siri &amp; Developing Echo Rival</a><ul>
+<li><a href="https://marco.org/2016/05/21/avoiding-blackberrys-fate">Marco's post</a></li>
+<li><a href="https://marco.org/2015/01/04/apple-lost-functional-high-ground">Functional High Ground</a></li>
+<li><a href="https://www.youtube.com/watch?v=2H1sht6IDmQ">Phish Meatstick video</a></li>
+<li><a href="http://pxlnv.com/linklog/meet-vocaliq/">Pixel Envy - Meet VocalIQ</a></li>
+<li><a href="https://twitter.com/chockenberry/status/728269579911208960">Craig Hockenberry on logins</a></li>
+</ul>
+</li>
+<li>Getting the best from both Apple and Google</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Casey's identity crisis<ul>
+<li><a href="https://photos.google.com/">Google Photos</a></li>
+<li><a href="https://www.relay.fm/connected/92">Connected #92 - My Relationship with the Status Bar</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+<li><a href="http://freshbooks.com/atp">FreshBooks</a>: Online invoicing made easy.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>EATFRESH</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>The rumored new MacBook Pro, Apple and services, and a hybrid Apple-Google world.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:573d2fdf356fb0a898b8e799</guid><pubDate>Fri, 20 May 2016 16:17:09 +0000</pubDate><title>170: Casey Beats John, 29–29</title><itunes:title>Casey Beats John, 29–29</itunes:title><itunes:episode>170</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp170.mp3" length="81414232" type="audio/mpeg"/><link>https://atp.fm/170</link><description><![CDATA[<ul>
+<li><strong><a href="http://atp.fm/shirt">Buy ATP 2016 T-shirts by June 3!</a></strong></li>
+<li>Follow-up:<ul>
+<li>Foodgate 2016<ul>
+<li><a href="https://en.wikipedia.org/wiki/1968_Yale_vs._Harvard_football_game">Yale/Harvard</a></li>
+</ul>
+</li>
+<li><a href="http://arstechnica.com/information-technology/2016/05/bing-bans-tech-support-adsbecause-theyre-mostly-scams/">Bing bans "tech support" ads</a></li>
+<li>Debunking an Apple/podcasting conspiracy theory</li>
+</ul>
+</li>
+<li>App Store approval times<ul>
+<li><a href="https://www.relay.fm/radar/27">Under the Radar #27</a></li>
+<li><a href="https://twitter.com/cabel/status/733075417158967297">Cabel's tweet</a></li>
+<li><a href="https://www.youtube.com/watch?v=R_rF4kcqLkI&amp;t=2m51s">Drinking bird</a></li>
+</ul>
+</li>
+<li><a href="https://events.google.com/io2016/">Google I/O</a><ul>
+<li><a href="https://www.youtube.com/watch?v=862r3XS2YB0">Keynote</a></li>
+<li><a href="https://home.google.com/">Google Home</a><ul>
+<li><a href="https://www.youtube.com/watch?v=dFzhjnjXc2o">Weebles</a></li>
+</ul>
+</li>
+<li><a href="https://googleblog.blogspot.com/2016/05/allo-duo-apps-messaging-video.html">Google Allo</a><ul>
+<li><a href="https://ello.co/">Ello</a></li>
+<li><a href="https://youtu.be/862r3XS2YB0?t=2706">Font size interaction demo</a></li>
+</ul>
+</li>
+<li>Google Duo &amp; Knock Knock</li>
+<li>Android N<ul>
+<li><a href="https://developer.android.com/ndk/guides/graphics/index.html">Vulkan</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/OpenGL_ES">OpenGL ES</a></li>
+<li><a href="https://developer.apple.com/metal/">Apple Metal</a></li>
+<li><a href="https://goo.gl/FojoWa">AMD Mantle</a></li>
+</ul>
+</li>
+<li>JIT compilation</li>
+<li>Multitasking</li>
+<li><a href="https://developer.android.com/topic/instant-apps/index.html">Instant Apps</a><ul>
+<li><a href="https://en.wikipedia.org/wiki/OpenDoc">OpenDoc</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="http://android-developers.blogspot.com/2016/05/android-wear-20-developer-preview.html">Android Wear 2.0</a><ul>
+<li><a href="https://goo.gl/caCVhb">Graffiti</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: Compulsive app quitters</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://pingdom.com/atp">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>ATP</strong> for 20% off.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://ring.com/atp">Ring</a>: Put your mind at ease and protect your home with the world’s most advanced video doorbell.</li>
+</ul>]]></description><itunes:subtitle>Three Apple users try to explain the Google I/O announcements.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5733fad127d4bdf3d56e378c</guid><pubDate>Fri, 13 May 2016 01:12:07 +0000</pubDate><title>169: My Fingers Are Still Moving</title><itunes:title>My Fingers Are Still Moving</itunes:title><itunes:episode>169</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:19:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp169.mp3" length="100820362" type="audio/mpeg"/><link>https://atp.fm/169</link><description><![CDATA[<ul>
+<li>Casey's iPhone battery woes<ul>
+<li>John's drug days in <a href="https://www.relay.fm/rd/25">Reconcilable Differences #25: Zarro Droogs</a></li>
+</ul>
+</li>
+<li><a href="http://www.theverge.com/2016/5/5/11597508/tesla-model-s-70-battery-upgrade-pay-unlock-battery">Tesla's In-Car Purchase</a><ul>
+<li><a href="http://www.cobbtuning.com/products/bmw-n55-accessport-v3-ap3-bmw-002">BMW N55 AccessPort</a> </li>
+<li><a href="http://www.bmwusa.com/Standard/Content/Accessories/BMWPerformance/BMWPerformancePowerKit.aspx">BMW Performance Power Kit</a></li>
+</ul>
+</li>
+<li>Follow-up: <a href="https://en.wikipedia.org/wiki/Mere-exposure_effect">Mere-exposure effect</a></li>
+<li><a href="http://www.nytimes.com/2016/05/08/business/media/podcasts-surge-apple.html?_r=1">New York Times article on Apple meeting with podcasters</a><ul>
+<li><a href="https://marco.org/2016/05/07/apple-role-in-podcasting">Marco's response</a></li>
+<li><a href="https://www.macstories.net/stories/a-podcasting-divergence/">Federico's response</a></li>
+<li><a href="https://www.relay.fm/upgrade/88">Upgrade #88: Happy Apple Watch Users</a><ul>
+<li><a href="https://overcast.fm/+DeCngCgj8/43:07">Overcast link to relevant segment</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2016/05/viv-the-spiritual-successor-to-siri-gets-its-first-public-demo-on-monday/">Viv</a> &amp; <a href="http://www.soundhound.com/hound">Hound</a><ul>
+<li><a href="http://www.loopinsight.com/2016/05/10/the-difference-between-siri-and-viv/">The difference between Siri and Viv</a></li>
+<li><a href="https://www.youtube.com/watch?v=HGYFEI6uLy0">Knowledge Navigator</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Advanced_Technology_Group">Apple ATG</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="http://blog.instagram.com/post/144198429587/160511-a-new-look">New Instagram Icon</a></li>
+<li>A tour of bad food</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+<li><a href="http://freshbooks.com/atp">FreshBooks</a>: Online invoicing made easy.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>In-car purchases, podcast politics, and voice assistants ordering terrible pizzas.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:572abd1a2fe1318ba48e7376</guid><pubDate>Fri, 06 May 2016 15:00:27 +0000</pubDate><title>168: Coffee Stops Working</title><itunes:title>Coffee Stops Working</itunes:title><itunes:episode>168</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:32</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp168.mp3" length="87630487" type="audio/mpeg"/><link>https://atp.fm/168</link><description><![CDATA[<ul>
+<li>Pre-show:<ul>
+<li>Our lack of T-shirts</li>
+<li><a href="http://www.unh.edu/research/blog/2016/04/rcc-students-present-ceps-undergraduate-research-conference">Casey's "Doppelgänger"</a></li>
+<li><a href="http://www.eagletribune.com/sports/under-the-lights-now-methuen-coach-is-a-tv-star/article_f5195f31-3ae2-5e3a-ba9d-61b812d7af3b.html">Casey's "Doppelgänger's" Twin Brother</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://twitter.com/andrewjwalz/status/724768223506227200/photo/1">No more WWDC failed-charge issues</a></li>
+<li><a href="http://jalopnik.com/volvo-engineer-calls-out-tesla-for-dangerous-wannabe-au-1773519459">Volvo trashes Tesla</a><ul>
+<li><a href="http://www.sae.org/misc/pdfs/automated_driving.pdf">SAE Automated Driving Levels</a></li>
+</ul>
+</li>
+<li>Ejecting volumes in Windows</li>
+</ul>
+</li>
+<li><a href="https://marco.org/2016/05/02/overcast-quicksync">Overcast quicksync</a><ul>
+<li>Unit testing is a Good Thing™</li>
+<li><a href="https://developer.apple.com/library/ios/documentation/CloudKitJS/Reference/CloudKitJavaScriptReference/index.html">CloudKit JS</a></li>
+<li>CloudKit pros and cons</li>
+</ul>
+</li>
+<li><a href="https://marco.org/apps#quitter">Quitter</a><ul>
+<li><a href="https://marco.org/2015/10/30/automatic-social-discipline">Automatic Social Discipline</a></li>
+<li><a href="https://www.rescuetime.com/">RescueTime</a></li>
+</ul>
+</li>
+<li><a href="https://sixcolors.com/post/2016/04/apple-q2-2016-results-going-down/">Apple is doomed</a><ul>
+<li><a href="https://stratechery.com/2016/apples-organizational-crossroads/">Apple's Organizational Crossroads</a></li>
+<li><a href="http://www.macworld.com/article/3034987/streaming-services/how-a-streaming-video-service-could-solve-apples-biggest-problem.html">Jason Snell on Apple financing original content</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li>John's mom got hacked</li>
+<li>Windows XP ad bumper sounds</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>ATP</strong> for $50 toward your mattress.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: With over 250,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>EGGEVERYTHING</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Server days from hell, Apple as a services company, Marco's new Mac app, and multiplying Casey Lisses.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:571ae0ecd210b83f93f7a8c7</guid><pubDate>Mon, 25 Apr 2016 22:43:29 +0000</pubDate><title>167: They’ve Opened the Door to Streakers</title><itunes:title>They’ve Opened the Door to Streakers</itunes:title><itunes:episode>167</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp167.mp3" length="77997777" type="audio/mpeg"/><link>https://atp.fm/167</link><description><![CDATA[<ul>
+<li>John was on vacation in California<ul>
+<li><a href="http://www.alcatrazcruises.com/">Alcatraz</a></li>
+<li><a href="https://en.wikipedia.org/wiki/San_Francisco_cable_car_system">Cable cars</a></li>
+<li><a href="https://goo.gl/hCavxZ">Lombard Street</a></li>
+</ul>
+</li>
+<li><a href="http://developer.apple.com/wwdc">WWDC 2016 tickets and considerations</a><ul>
+<li><a href="https://www.relay.fm/radar/24">Under the Radar #24</a></li>
+<li><a href="https://developer.apple.com/wwdc/policy/">Transfer Policy</a></li>
+<li><a href="http://openingnight.events">Layers Conference</a></li>
+<li><a href="https://www.caseyliss.com/2016/4/20/much-ado-about-wwdc">Expenses</a></li>
+</ul>
+</li>
+<li>Follow-up on EV charging stations<ul>
+<li><a href="http://www.chargepoint.com/">ChargePoint.com</a></li>
+</ul>
+</li>
+<li><a href="http://www.businesswire.com/news/home/20160419005558/en/Apple-Updates-MacBook-Latest-Processors-Longer-Battery">MacBook One update</a><ul>
+<li><a href="https://twitter.com/MKBHD/status/722440529112391681">MKBHD pokes fun at himself</a><ul>
+<li><a href="https://www.youtube.com/watch?v=ZrZISyPucMg&amp;t=3m14s">Original video</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>More on ad bumper sounds</li>
+<li>WWDC 2016 changes<ul>
+<li><a href="http://www.billgrahamcivicauditorium.com/">Bill Graham Civic Auditorium</a><ul>
+<li><a href="https://twitter.com/chockenberry/status/722215312855203840">Craig Hockenberry's tweet</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/wwdc/schedule/">WWDC Bash</a></li>
+<li><a href="http://www.johnnyonthespot.com/products-services/portable-restrooms/">Johnny on the Spot</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Bill_Graham_%28promoter%29">Bill Graham</a> vs. <a href="https://en.wikipedia.org/wiki/Billy_Graham">Billy Graham</a></li>
+<li><a href="https://developer.apple.com/wwdc/live/">Live streaming</a></li>
+</ul>
+</li>
+<li>John buys new hardware<ul>
+<li><a href="http://www.apple.com/shop/product/MM1Y2AM/A/silicone-case-for-9-7-inch-ipad-pro-charcoal-gray">iPad Silicone Case</a></li>
+<li><a href="http://www.apple.com/shop/product/MM292AM/A/smart-cover-for-9-7-inch-ipad-pro-charcoal-gray">Smart Cover</a> </li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show:<ul>
+<li><a href="http://hypercritical.co/2016/04/22/canonical-bagel-flavors">John blogged!</a><ul>
+<li><a href="https://www.relay.fm/topfour/13">Top Four</a></li>
+</ul>
+</li>
+<li>Others' perception of Tesla drivers<ul>
+<li><a href="http://www.bmw.com/com/en/newvehicles/i/i3/2015/showroom/index.html">i3</a></li>
+<li><a href="https://www.teslamotors.com/modelx">Tesla Model X</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://ring.com/atp">Ring</a>: Put your mind at ease and protect your home with the world's most advanced video doorbell.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>WWDC 2016 tickets and changes, the MacBook Two (?), and John's vacation in California.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:570f0b7a62cd9476aad3a365</guid><pubDate>Wed, 20 Apr 2016 02:49:10 +0000</pubDate><title>166: Fitness Turd</title><itunes:title>Fitness Turd</itunes:title><itunes:episode>166</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp166.mp3" length="85225431" type="audio/mpeg"/><link>https://atp.fm/166</link><description><![CDATA[<ul>
+<li><a href="http://jalopnik.com/tesla-model-s-refresh-this-is-it-1770482029">Tesla facelift</a><ul>
+<li><a href="http://neutral.fm/episodes/3-a-bra-phase">Neutral #3: A Bra Phase</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li><a href="https://www.teslamotors.com/supercharger">Superchargers</a> vs. gas stations</li>
+<li><a href="https://en.wikipedia.org/wiki/SAE_International">SAE</a>'s <a href="http://templatelab.com/automated-driving/">automated driving levels</a></li>
+<li>Amazon Echo, Dash Button, and Siri outside the U.S.<ul>
+<li><a href="http://www.apple.com/ios/feature-availability/">Siri feature availability</a></li>
+</ul>
+</li>
+<li>Networking gear<ul>
+<li><a href="http://arstechnica.com/gadgets/2016/04/ubiquitis-8-port-poe-switch-is-a-solid-complement-for-a-home-unifi-setup/">Ubiquiti's 8-port PoE switch</a></li>
+<li><a href="http://www.amazon.com/dp/B002NAYFSI?tag=marcoorg-20">Marco's big HP 1810G-24 switch</a></li>
+<li><a href="https://www.ubnt.com/unifi-video/unifi-video-camera/">Ubiquiti IP camera</a></li>
+<li><a href="http://www.amazon.com/dp/B017T2QB22?tag=marcoorg-20">Ubiquiti UniFi Cloud Key</a> instead of installing Java</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>More on <a href="https://smilesoftware.com/textexpander/entry/textexpander-adjustments">TextExpander changes</a></li>
+<li>Bleeps and Bloops<ul>
+<li><a href="http://www.hellointernet.fm/">Hello Internet</a></li>
+<li><a href="https://www.youtube.com/watch?v=A7sHUMhsAIQ">Ending theme plus more bleeps and bloops</a></li>
+<li><a href="http://www.coreint.org/">Core Intuition</a></li>
+<li><a href="http://neutral.fm/">Neutral</a></li>
+<li><a href="https://www.relay.fm/rd">Reconcilable Differences</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Classical_conditioning">Pavlov's dog</a></li>
+<li><a href="https://myspace.com/baconray">Bacon Ray</a></li>
+<li><a href="http://www.thetruthpodcast.com/story/2016/4/13/songonauts">Jonathan Mann's Songonauts</a></li>
+</ul>
+</li>
+<li>Apple's 40th and the <a href="https://en.wikipedia.org/wiki/IMac">iMac</a><ul>
+<li><a href="http://www.emporium.vt.edu/">Math Emporium</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Power_Mac_G4_Cube">G4 Cube</a></li>
+<li><a href="http://www.rose-hulman.edu/">Rose-Hulman</a></li>
+</ul>
+</li>
+<li><a href="https://www.caseyliss.com/2016/4/11/poor-apple-watch">Poor Apple Watch</a><ul>
+<li><a href="https://www.youtube.com/watch?v=sHaVqQfMkxY">Louis CK video</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="https://medium.com/swlh/macos-it-s-time-to-take-the-next-step-ee7871ccd3c7#.f3egvnr3n">macOS proposal</a><ul>
+<li><a href="http://blog.steventroughtonsmith.com/post/140141855080/wwdc-wish-list">Steve Troughton-Smith's WWDC wishlist post</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://meh.com/">Meh.com</a>: A new deal every day at midnight Eastern.</li>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://freshbooks.com/atp">FreshBooks</a>: Online invoicing made easy.</li>
+</ul>]]></description><itunes:subtitle>Bleeps and boops, remembering the original iMac, and whether it's trendy to hate the Apple Watch.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:570c6b2727d4bdfa0bed452b</guid><pubDate>Tue, 12 Apr 2016 20:37:22 +0000</pubDate><title>165: Time Was…</title><itunes:title>Time Was…</itunes:title><itunes:episode>165</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp165.mp3" length="88637459" type="audio/mpeg"/><link>https://atp.fm/165</link><description><![CDATA[<ul>
+<li>Follow-up: <a href="http://www.latimes.com/business/autos/la-fi-hy-tesla-model-3-20140716-story.html">Tesla model naming</a></li>
+<li>Today's Tesla Autopilot, tomorrow's self-driving cars?<ul>
+<li><a href="https://david-smith.org/blog/2016/04/04/a-nerds-review-of-the-tesla-model-s/">_David Smith's Tesla Review</a></li>
+<li><a href="http://www.theverge.com/2016/4/7/11383392/self-driving-truck-platooning-europe">Self-driving truck convoy completes journey across Europe</a></li>
+<li><a href="https://www.teslamotors.com/supercharger">Tesla Superchargers</a></li>
+</ul>
+</li>
+<li>Marco's surveillance camera<ul>
+<li><a href="https://www.ubnt.com/">Ubiquiti</a><ul>
+<li><a href="http://www.amazon.com/dp/B00CPRVF5K?tag=marcoorg-20">ERLite-3 router</a></li>
+<li><a href="http://www.amazon.com/dp/B015PRCBBI?tag=marcoorg-20">UniFi 802.11ac long-range access point</a></li>
+</ul>
+</li>
+<li><a href="http://www.amazon.com/dp/B003N1ZTC2?tag=marcoorg-20">HP switch</a></li>
+<li><a href="http://www.amazon.com/dp/B00Z7B11XM?tag=marcoorg-20">Trivision IP camera</a></li>
+<li><a href="http://www.amazon.com/dp/B00S6DBGIS/?tag=marcoorg-20">Netgear Powerline network bridge</a></li>
+<li><a href="http://www.amazon.com/dp/B00CWVYG50?tag=marcoorg-20">Power-over-Ethernet mini injector</a></li>
+<li><a href="https://www.synology.com/en-us/surveillance/">Synology Surveillance Station</a></li>
+</ul>
+</li>
+<li>Recalling our early Apple memories as <a href="http://www.macworld.com/article/3051103/ios/apple-at-40-remembering-when-steve-jobs-went-electric.html">Apple turns 40</a><ul>
+<li><a href="https://goo.gl/t1hgxp">Oregon Trail</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Integer_BASIC">BASIC</a></li>
+<li><a href="https://goo.gl/U3I42R">Inside Out</a></li>
+<li><a href="https://en.wikipedia.org/wiki/OS/2">OS/2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_IIfx">Macintosh IIfx</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IPod_Nano#1st_generation">iPod Nano</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rio_PMP300">Diamond Rio</a></li>
+<li><a href="https://en.wikipedia.org/wiki/PowerBook_G4">PowerBook G4</a></li>
+<li><a href="http://cygwin.com/">Cygwin</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Half-Life_2">Half Life 2</a></li>
+<li><a href="http://www.ubuntu.com/">Ubuntu</a></li>
+<li><a href="https://goo.gl/fRUp0i">Syndicate</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Dark_Castle">Dark Castle</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: TextEdit Woes</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://www.blueapron.com/atp">Blue Apron</a>: A better way to cook. Get your first two meals for free with this link.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>ALEXAPLAYPHISH</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Early Apple memories, self-driving cars, and duck surveillance.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5705d3bc60b5e9d91efb6cc0</guid><pubDate>Fri, 08 Apr 2016 01:56:06 +0000</pubDate><title>164: Waiting for the Bla-Bloop</title><itunes:title>Waiting for the Bla-Bloop</itunes:title><itunes:episode>164</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp164.mp3" length="86506090" type="audio/mpeg"/><link>https://atp.fm/164</link><description><![CDATA[<ul>
+<li>Flash drives for car music<ul>
+<li><a href="http://www.amazon.com/dp/B017DH3O5A/?tag=marcoorg-20">Samsung Flash Drive Fit</a></li>
+<li><a href="https://twitter.com/marcoarment/status/717727558050181120">Marco's modification</a></li>
+</ul>
+</li>
+<li>Follow-up:<ul>
+<li>Apple and renewable energy</li>
+<li><a href="https://developer.apple.com/safari/technology-preview/">Purple Safari</a><ul>
+<li><a href="https://twitter.com/burnflare/status/716444396208566274">1Password stable override</a></li>
+<li><a href="https://twitter.com/jakerullman/status/715972485129367552">1Password beta</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="https://smilesoftware.com/press/entry/smile-launches-textexpander-com-with-apps-for-mac-iphone-and-windows-beta">TextExpander 6</a>'s controversial move to subscription pricing<ul>
+<li><a href="http://mjtsai.com/blog/2016/04/06/textexpander-6-and-textexpander-com/">MJ Tsai's summary</a></li>
+<li><a href="https://blog.agilebits.com/2015/11/03/introducing-1password-for-teams/">1Password for Teams</a></li>
+<li><a href="https://blog.agilebits.com/2016/02/16/introducing-1password-for-families/">1Password for Families</a></li>
+</ul>
+</li>
+<li>Marco's adventures in home automation<ul>
+<li><a href="http://www.amazon.com/dp/B00X4WHP5E/?tag=marcoorg-20">Amazon Echo</a></li>
+<li><a href="http://www.amazon.com/b?ie=UTF8&amp;node=10667898011">Amazon Dash Button</a><ul>
+<li><a href="https://www.npmjs.com/package/node-dash-button"><code>node-dash-button</code></a></li>
+<li><a href="http://www.amazon.com/dp/B00EAD65UW/?tag=liismo-20">Chamberlain MyQ</a></li>
+<li><a href="https://www.raspberrypi.org/">Raspberry Pi</a></li>
+</ul>
+</li>
+<li><a href="http://www.belkin.com/us/Products/home-automation/c/wemo-home-automation/">Belkin WeMo</a></li>
+<li><a href="http://www.lifx.com">Lifx</a></li>
+<li><a href="https://www.apple.com/ios/homekit/">HomeKit</a><ul>
+<li><a href="https://www.relay.fm/connected/85">Connected #85: Pokédex of iMacs</a></li>
+</ul>
+</li>
+<li><a href="http://www.soundhound.com/hound">Hound</a></li>
+<li><a href="https://mesos.apache.org/">Apache Mesos</a></li>
+<li><a href="http://www.amazon.com/dp/B00VXS8E8S/?tag=marcoorg-20">Amazon Tap</a></li>
+<li><a href="https://www.amazon.com/b/?node=14047587011">Amazon Echo Dot</a></li>
+<li><a href="http://www.amazon.com/dp/B00EWCUK1Q/?tag=marcoorg-20">Sonos Play 1</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show Neutral: <a href="https://www.teslamotors.com/model3">Tesla Model 3</a><ul>
+<li><a href="https://www.youtube.com/watch?v=Q4VGQPk2Dl8">Presentation</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tesla_Roadster">Tesla Roadster</a></li>
+<li><a href="https://www.teslamotors.com/models">Tesla Model S</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Gigafactory_1">Gigafactory</a></li>
+<li><a href="http://jalopnik.com/tesla-model-3-this-is-it-1768284734">Jalopnik on the Model 3</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Volkswagen_Phaeton">Volkswagen Phaeton</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://betterment.com/atp">Betterment</a>: Investing made better.</li>
+<li><a href="http://ring.com/atp">Ring</a>: Put your mind at ease and protect your home with the world's most advanced video doorbell.</li>
+<li><a href="http://freshbooks.com/atp">FreshBooks</a>: Online invoicing made easy.</li>
+</ul>]]></description><itunes:subtitle>Home automation with Amazon, TextExpander's pricing controversy, and the state of USB thumbdrives in 2016.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56fc9900c2ea51bc05bafb49</guid><pubDate>Fri, 01 Apr 2016 01:43:21 +0000</pubDate><title>163: Wet Right Thumb</title><itunes:title>Wet Right Thumb</itunes:title><itunes:episode>163</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:11:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp163.mp3" length="95098424" type="audio/mpeg"/><link>https://atp.fm/163</link><description><![CDATA[<ul>
+<li>Pre-show: Theories on seasonal allergies</li>
+<li>Follow-up: Walmart is slightly less evil than we thought, at least in renewable energy<ul>
+<li><a href="http://corporate.walmart.com/global-responsibility/sustainability/">Sustainability</a></li>
+<li><a href="http://cdn.corporate.walmart.com/eb/80/4c32210b44ccbae634ddedd18a27/walmarts-approach-to-renewable-energy.pdf">Walmart's Approach to Renewable Energy (PDF)</a></li>
+</ul>
+</li>
+<li>Will we ever see USB ports on the <a href="http://www.apple.com/ipad-pro/">iPad Pro</a>?<ul>
+<li><a href="http://www.apple.com/shop/product/MK0W2AM/A/lightning-to-usb-3-camera-adapter">Lightning to USB 3 Camera Adapter</a></li>
+</ul>
+</li>
+<li><a href="http://arstechnica.com/information-technology/2016/03/ubuntus-bash-and-linux-command-line-coming-to-windows-10/">Ubuntu on Windows</a></li>
+<li><a href="https://www.playstation.com/en-us/games/destiny-ps3/">Destiny</a> and a dimming/hiding HUD</li>
+<li><a href="http://www.haneycodes.net/npm-left-pad-have-we-forgotten-how-to-program/">NPM's recent disaster</a><ul>
+<li><a href="https://www.npmjs.com/">NPM</a></li>
+<li><a href="https://www.nuget.org/">NuGet</a></li>
+<li><a href="https://cocoapods.org/">CocoaPods</a></li>
+<li><a href="http://www.cpan.org/">CPAN</a></li>
+<li><a href="https://www.caseyliss.com/2016/3/27/node-is-weird">Camel's dependencies</a></li>
+<li><a href="http://coffeescript.org/">CoffeeScript</a></li>
+<li><a href="http://www.typescriptlang.org/">Typescript</a></li>
+</ul>
+</li>
+<li><a href="https://developer.apple.com/safari/technology-preview/">Safari Technology Preview</a><ul>
+<li><a href="https://webkit.org/blog/6017/introducing-safari-technology-preview/">Announcement blog post</a></li>
+</ul>
+</li>
+<li><a href="http://www.anandtech.com/show/10183/intels-tick-tock-seemingly-dead-becomes-process-architecture-optimization">Intel ends Tick/Tock</a>, introduces <strike data-preserve-html-node="true">Tick/Tock/Thunk</strike> Process/Architecture/Optimization<ul>
+<li><a href="http://www.eetimes.com/author.asp?doc_id=1321536">End of Moore's Law</a></li>
+</ul>
+</li>
+<li><a href="http://arstechnica.com/gaming/2016/03/oculus-founder-rift-will-come-to-mac-if-apple-ever-release-a-good-computer/">Oculus Rift won't work until Apple "releases a good computer"</a><ul>
+<li><a href="http://www.polygon.com/2016/3/8/11178332/mac-apple-oculus-rift">Mac is fine for VR, but not for the Rift</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post show <a href="http://neutral.fm/">Neutral</a>: Marco <a href="https://www.instagram.com/p/BDj3BEZQ5Mb/">got a Tesla</a><ul>
+<li><a href="https://www.instagram.com/p/BDgmtXzizV5K_hBC8fP9D2Fq8Lj-k_lR9oeq8E0/">Pickup picture from Tiff</a></li>
+<li><a href="https://www.instagram.com/p/BDgxeViize-suakMO_HHzagZphxDlB77PA14GE0/">Another picture from Tiff</a></li>
+<li><a href="http://www.porsche.com/usa/models/panamera/">Porsche Panamera</a></li>
+<li><a href="http://www.porsche.com/usa/models/911/">Porsche 911</a></li>
+<li><a href="https://www.relay.fm/topfour/12">Top Four with John &amp; Tina Siracusa</a></li>
+<li><a href="http://neutral.fm/episodes/12-vomit-ruins-everything">Neutral #12: Vomit Ruins Everything</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: With over 180,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>USB ports on future iPads, Marco's love of wires, and John's opinion of the JavaScript community.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56f3593f2eeb81c4963b0751</guid><pubDate>Fri, 25 Mar 2016 00:31:34 +0000</pubDate><title>162: iPhone Sorry Erin</title><itunes:title>iPhone Sorry Erin</itunes:title><itunes:episode>162</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:37:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp162.mp3" length="69962591" type="audio/mpeg"/><link>https://atp.fm/162</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li>How many iPad and Mac users also carry iPhones?</li>
+<li>Why not use <a href="https://developer.apple.com/icloud/">CloudKit</a> or <a href="https://www.backblaze.com/b2/cloud-storage.html">BackBlaze B2</a> for <a href="https://marco.org/2016/03/14/overcast25">Overcast file uploads</a>?</li>
+<li><a href="http://www.nytimes.com/2015/04/16/style/keeping-your-car-safe-from-electronic-thieves.html?_r=0">Car break-ins via keyless entry amplifiers</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/apple-events/march-2016/">Apple's "Loop You In" Event</a><ul>
+<li>Sad times for the Mac<ul>
+<li><a href="https://goo.gl/qojanX">Intel Skylake</a></li>
+<li><a href="http://arstechnica.com/gaming/2016/03/oculus-founder-rift-will-come-to-mac-if-apple-ever-release-a-good-computer/">Oculus founder's comments</a></li>
+</ul>
+</li>
+<li><a href="http://www.512pixels.net/blog/2016/3/40-years-in-40-s">40 Years in 40 Seconds Recap</a></li>
+<li><a href="http://www.nytimes.com/2016/03/22/technology/apple-fbi-hearing-unlock-iphone.html">FBI stops hassling Apple (for now)</a></li>
+<li><a href="http://www.apple.com/environment/">Apple and the Environment</a><ul>
+<li><a href="http://www.apple.com/pr/bios/lisa-jackson.html">Lisa Jackson</a></li>
+<li><a href="https://www.apple.com/diversity/">Diversity reports</a></li>
+<li><a href="http://www.apple.com/pr/bios/angela-ahrendts.html">Angela Ahrendts</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/pr/library/2016/03/21Apple-Advances-Health-Apps-with-CareKit.html">ResearchKit &amp; CareKit</a><ul>
+<li><a href="https://www.relay.fm/connected/83">Connected #83: It Looked Like a Liam</a></li>
+</ul>
+</li>
+<li>Apple Watch bands<ul>
+<li><a href="https://geo.itunes.apple.com/us/app/carrot-weather-talking-forecast/id961390574?mt=8&amp;at=1000l3yf">Carrot Weather</a></li>
+<li><a href="https://geo.itunes.apple.com/us/app/fantastical-2-for-iphone-calendar/id718043190?mt=8&amp;at=1000l3yf">Fantastical</a></li>
+<li><a href="http://www.apple.com/watch/gallery/">New gallery</a></li>
+</ul>
+</li>
+<li>Apple TV<ul>
+<li><a href="http://plex.tv/">Plex</a></li>
+<li><a href="https://firecore.com/infuse">Infuse</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/iphone-se/">iPhone SE</a><ul>
+<li><a href="http://www.apple.com/iphone/compare/">iPhone Comparison</a></li>
+</ul>
+</li>
+<li><a href="http://www.apple.com/ipad-pro/">iPad Pro 9.7"</a><ul>
+<li><a href="https://twitter.com/panzer/status/712331691579219968/photo/1">2GB RAM 😭</a></li>
+<li><a href="https://twitter.com/marcoarment/status/711982745245847553">Camera Adapter</a><ul>
+<li><a href="https://sixcolors.com/post/2016/03/apples-lightning-to-usb-3-adapter-brings-ipad-podcasting-one-step-closer/">Jason Snell on using microphones</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a> </li>
+<li>Post-show:<ul>
+<li><a href="http://techcrunch.com/2016/03/23/explainer-alert-heres-what-the-ipad-pros-embedded-apple-sim-means-for-you/">Embedded Apple SIM</a><ul>
+<li><a href="https://www.caseyliss.com/2015/12/26/apple-sim">Casey on the Apple SIM</a></li>
+</ul>
+</li>
+<li><a href="http://www.dailydot.com/technology/phil-schiller-sad/">Schiller's dig on old hardware</a></li>
+</ul>
+</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://www.igloosoftware.com/atp">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Our timely coverage of this week's Apple's event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56ea22bde321401c43e60544</guid><pubDate>Fri, 18 Mar 2016 02:58:06 +0000</pubDate><title>161: Dark Mode Is Your Hat</title><itunes:title>Dark Mode Is Your Hat</itunes:title><itunes:episode>161</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp161.mp3" length="85287826" type="audio/mpeg"/><link>https://atp.fm/161</link><description><![CDATA[<ul>
+<li>Why don't we have cellular MacBooks?<ul>
+<li><a href="https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSURLSession_class/index.html">NSURLSession</a> <a href="https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSURLSessionConfiguration_class/index.html#//apple_ref/occ/instp/NSURLSessionConfiguration/allowsCellularAccess">allowsCellularAccess</a></li>
+<li><a href="https://www.tripmode.ch/">TripMode</a></li>
+<li><a href="http://www.macrumors.com/2011/08/14/photos-of-a-prototype-macbook-pro-with-integrated-3g-cellular-data/">Unreleased cellular MacBook Pro prototype</a></li>
+</ul>
+</li>
+<li>Could Photos.app's "UXKit" become AppKit's successor on the Mac?<ul>
+<li><a href="https://sixcolors.com/post/2015/02/new-apple-photos-app-contains-uxkit-framework/">Jason Snell</a></li>
+<li><a href="http://inessential.com/2015/02/05/uxkit_skepticism">Brent Simmons</a><ul>
+<li><a href="http://chameleonproject.org/">Chameleon</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Marco might be a Mac developer shortly<ul>
+<li><a href="https://www.rescuetime.com/">Rescue Time</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chaos_Monkey">Chaos Monkey</a></li>
+<li><a href="http://www.taskpaper.com/">TaskPaper</a></li>
+</ul>
+</li>
+<li><a href="https://marco.org/2016/03/14/overcast25">Overcast 2.5 released</a><ul>
+<li><a href="https://aws.amazon.com/s3/">Amazon S3</a></li>
+<li><a href="http://www.folklore.org/StoryView.py?story=Calculator_Construction_Set.txt">Calculator Construction Set</a></li>
+</ul>
+</li>
+<li><a href="http://www.macworld.com/article/3042670/apple-phone/apple-confirms-special-event-to-loop-in-the-press-march-21.html">Apple Event on March 21</a><ul>
+<li><a href="https://goo.gl/qojanX">Intel Skylake</a></li>
+<li><a href="http://www.everymac.com/systems/apple/macbook/specs/macbook_2.0_black.html">Black plastic MacBook</a></li>
+<li><a href="http://natostrapco.com/">NATO-style watch straps</a> (real <a href="https://en.wikipedia.org/wiki/NATO">NATO</a>)</li>
+<li><a href="http://gevrilgroup.com/watchrepair/deployment-clasp-watch-buckle/">Deployant clasps</a></li>
+</ul>
+</li>
+<li>Post-show: John suffers a loss</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://devmate.com/">DevMate</a>: Create better Mac apps more easily with DevMate's Mac-app development and distribution platform.</li>
+</ul>]]></description><itunes:subtitle>Predictions for the Apple event, why we don't have cellular MacBooks, and why John hates NATO watch straps.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56e0edaa60b5e96aec1febe3</guid><pubDate>Thu, 10 Mar 2016 19:32:44 +0000</pubDate><title>160: Be Careful Out There</title><itunes:title>Be Careful Out There</itunes:title><itunes:episode>160</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:26:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp160.mp3" length="62176879" type="audio/mpeg"/><link>https://atp.fm/160</link><description><![CDATA[<ul>
+<li>Follow-up:<ul>
+<li><a href="https://blogs.microsoft.com/blog/2016/03/07/announcing-sql-server-on-linux/">SQL Server on Linux</a></li>
+<li>TV Mounts<ul>
+<li><a href="https://www.dynamicmounting.com/">Dynamic Mounting</a></li>
+<li><a href="https://www.mantelmount.com/">Mantel Mount</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li>Marco's surprising product review</li>
+<li>Marketing the next 9.7-inch iPad</li>
+<li><a href="https://www.transmissionbt.com/">Transmission</a>'s <a href="http://www.macworld.com/article/3040987/security/apple-shuts-down-first-ever-ransomware-attack-against-mac-users.html">ransomware infection</a><ul>
+<li><a href="https://support.apple.com/en-us/HT202491">Gatekeeper</a></li>
+</ul>
+</li>
+<li>The future of Mac OS X<ul>
+<li><a href="http://blog.steventroughtonsmith.com/post/140141855080/wwdc-wish-list">Steve Troughton-Smith's WWDC Wish List</a></li>
+<li><a href="https://www.omnigroup.com/">Omni Group</a></li>
+<li><a href="http://macromates.com/">Textmate</a></li>
+</ul>
+</li>
+<li>Ending theme by <a href="http://jonathanmann.net">Jonathan Mann</a></li>
+<li>Post-show: John doesn't go to Las Vegas.</li>
+</ul>
+<p>Sponsored by:</p>
+<ul>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>CRAIGSHOUSE</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Mac ransomware, the future of Mac OS X, and a surprising product review.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56d7b4b607eaa050095c1dd1</guid><pubDate>Thu, 03 Mar 2016 05:08:18 +0000</pubDate><title>159: A Typo On Your Brake Pads</title><itunes:title>A Typo On Your Brake Pads</itunes:title><itunes:episode>159</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:28:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp159.mp3" length="63599954" type="audio/mpeg"/><link>https://atp.fm/159</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="http://www.autoblog.com/2016/03/02/mansory-4xx-siracusa-geneva-2016/">The Ferrari Siracusa</a> (really)
+<ul><li><a href="http://ruf-automobile.de/en/">Ruf</a></li>
+<li><a href="http://www.dinancars.com/">Dinan</a></li>
+<li><a href="https://goo.gl/I1FwGg">BMW 1M</a></li>
+<li><a href="http://www.cobbtuning.com/products/bmw-n55-accessport-v3-ap3-bmw-002">Cobb</a></li></ul></li>
+<li>Follow-up: <a href="http://www.mono-project.com/">Mono</a> vs. <a href="http://xamarin.com/">Xamarin</a></li>
+<li><a href="https://support.apple.com/en-us/HT205956">Apple's self-blacklisted ethernet driver</a>
+<ul><li><a href="http://www.512pixels.net/blog/2016/3/typos-in-disk-utility">Disk Utility typos</a></li>
+<li><a href="http://mjtsai.com/blog/2016/03/02/typos-in-disk-utility/">Disk Utility and SuperDuper</a></li></ul></li>
+<li>John can't resist a history lesson about filesystems (🛎)
+<ul><li><a href="https://en.wikipedia.org/wiki/Macintosh_File_System">MFS</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Hierarchical_File_System">HFS</a></li>
+<li><a href="https://en.wikipedia.org/wiki/HFS_Plus">HFS+</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Btrfs">btrfs</a></li></ul></li>
+<li>John's quest for disc-less BluRay movies
+<ul><li><a href="http://plex.tv/">Plex</a>
+<ul><li><a href="https://www.caseyliss.com/2016/1/13/plex-primer">Casey's reasons to use Plex</a></li>
+<li><a href="https://www.caseyliss.com/2015/4/21/plex">Casey's Plex tips</a></li></ul></li>
+<li><a href="http://www.makemkv.com/">MakeMKV</a></li>
+<li><a href="https://github.com/donmelton/video_transcoding">Don Melton's scripts</a></li>
+<li><a href="https://www.raspberrypi.org/">Raspberry Pi</a></li>
+<li><a href="https://shield.nvidia.com/">nVidia Shield</a></li>
+<li><a href="https://drive.google.com/open?id=0B_brH33QU6Q8Ql9mRFRaZWxLV1E">24 fps test video</a> - Be sure to download the original file. (Look for the arrow icon at the top of the page.)</li>
+<li><a href="http://hypercritical.co/2013/12/22/fill-your-tv">John's Fill Your TV article</a></li></ul></li>
+<li>Theme song by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: John's tips for TV bliss</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://audible.com/atp">Audible.com</a>: With over 180,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://www.igloosoftware.com/atp">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="http://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+</ul>]]></description><itunes:subtitle>The Ferrari Siracusa, the history of HFS+, and TVs. Yup, John was here.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56ce7dafcf80a16299c5c0ef</guid><pubDate>Thu, 25 Feb 2016 17:02:10 +0000</pubDate><title>158: You Can't Outlaw Math</title><itunes:title>You Can't Outlaw Math</itunes:title><itunes:episode>158</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:41:19</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp158.mp3" length="73071616" type="audio/mpeg"/><link>https://atp.fm/158</link><description><![CDATA[<ul>
+<li>Pre-show: Driving John's cold over to Craig's house
+<ul><li><a href="http://daringfireball.net/thetalkshow/2016/02/12/ep-146">The Talk Show interview with Craig Federighi and Eddy Cue</a></li></ul></li>
+<li>Follow-up:
+<ul><li><a href="https://medium.com/figma-design/introducing-vector-networks-3b877d2b864f">Figma</a> is <a href="https://twitter.com/diklein/status/699987341725736960">in the browser</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Comic_Sans">Comic Sans was created for Microsoft Bob</a></li></ul></li>
+<li><a href="http://arstechnica.com/information-technology/2016/02/microsoft-at-last-buys-net-for-ios-android-vendor-xamarin/">Microsoft Buys Xamarin</a>
+<ul><li><a href="http://arstechnica.com/information-technology/2015/04/microsoft-brings-android-ios-apps-to-windows-10/">Project Islandwood</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ximian">Ximian</a></li></ul></li>
+<li>Apple and the FBI
+<ul><li><a href="http://www.apple.com/customer-letter/">Statement from Apple</a>
+<ul><li><a href="http://www.apple.com/customer-letter/answers/">Follow-up FAQ</a></li></ul></li>
+<li><a href="http://www.wsj.com/articles/justice-department-seeks-to-force-apple-to-extract-data-from-about-12-other-iphones-1456202213">Justice Department wants more phones</a></li>
+<li><a href="http://abcnews.go.com/Technology/exclusive-apple-ceo-tim-cook-iphone-cracking-software/story?id=37173343">Apple Interview on ABC News</a></li>
+<li><a href="http://www.zdziarski.com/blog/?p=5638">Technical analysis by Jonathan Zdziarski</a>
+<ul><li><a href="http://www.zdziarski.com/blog/?p=5645">More from Jonathan</a></li></ul></li>
+<li><a href="http://www.imdb.com/title/tt0387808/?ref_=fn_al_tt_1">Idiocracy</a></li>
+<li><a href="https://goo.gl/KIRTn4">The Dead Zone</a></li>
+<li>Reactions/Useful Links
+<ul><li><a href="http://kieranhealy.org/blog/archives/2016/02/18/walled-garden/">Kieran Healy</a></li>
+<li><a href="https://medium.com/@jamesallworth/the-u-s-has-gone-f-ing-mad-52e525f76447#.yw83edrch">James Allworth</a></li>
+<li><a href="https://stratechery.com/2016/apple-the-fbi-and-security/">Ben Thompson</a></li>
+<li><a href="http://blog.trailofbits.com/2016/02/17/apple-can-comply-with-the-fbi-court-order/">Dan Guido</a></li>
+<li><a href="https://www.aclu.org/news/aclu-comment-fbi-effort-force-apple-unlock-iphone">American Civil Liberties Union</a></li>
+<li><a href="http://www.loopinsight.com/2016/02/18/congressman-ted-lieus-official-response-to-fbi-vs-apple/">Senator Ted Lieu (covered on The Loop)</a></li></ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Digital_Millennium_Copyright_Act">DMCA</a></li></ul></li>
+<li><a href="http://jonathanmann.net/">Ending theme by Jonathan Mann</a></li>
+<li>Post-show: <a href="http://www.theverge.com/2016/2/23/11101594/apple-pencil-features-coming-back-ios-93">#mykewasvictorious</a>
+<ul><li><a href="https://www.relay.fm/cortex/22">Cortex #22</a> &amp; <a href="https://www.relay.fm/cortex/23">#23</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Apple and the FBI, Microsoft and Xamarin, and the origin of Comic Sans.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56c28d043c44d8211eab5583</guid><pubDate>Wed, 17 Feb 2016 01:29:50 +0000</pubDate><title>157: As Many People in the Sandbox as Possible</title><itunes:title>As Many People in the Sandbox as Possible</itunes:title><itunes:episode>157</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp157.mp3" length="63421302" type="audio/mpeg"/><link>https://atp.fm/157</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>iPad signatures
+<ul><li><a href="https://goo.gl/vmCS0J">My Briefcase</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microsoft_Bob">Microsoft Bob</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Maniac_Mansion">Maniac Mansion</a></li></ul></li>
+<li><a href="https://twitter.com/caseyliss/status/699265457770127360">Bluetooth-headphone video latency</a>
+<ul><li><a href="http://www.amazon.com/dp/B008EOXXFI/?tag=liismo-20">Casey's headphones</a></li>
+<li><a href="https://twitter.com/siracusa/status/699251969442107398">John's tweet</a></li>
+<li><a href="https://twitter.com/Litherum/status/699295723804712960">Possible explanation from Myles M.</a></li></ul></li></ul></li>
+<li>Potential Apple Car ECU
+<ul><li><a href="http://www.windriver.com/">Wind River</a>
+<ul><li><a href="http://www.windriver.com/inspace/">Wind River in space</a></li></ul></li></ul></li>
+<li><a href="https://www.backblaze.com/blog/adobe-creative-cloud-update-bug/">Adobe bug deletes Backblaze folder</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Adobe_Creative_Cloud">Creative Cloud</a></li></ul></li>
+<li><a href="https://developer.apple.com/app-sandboxing/">Sandboxing on the Mac</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2016/02/12/ep-146">Eddy Cue and Craig Federighi on The Talk Show</a>
+<ul><li><a href="http://daringfireball.net/thetalkshow/2015/12/14/ep-139">Craig Federighi's prior appearance</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2015/06/09/ep-123">Phil Schiller's appearance</a></li>
+<li><a href="http://www.theverge.com/2016/2/3/10900612/walt-mossberg-apple-iphone-ios-mac-osx-app-problems">Mossberg article on Apple's app quality</a></li></ul></li>
+<li><a href="https://medium.com/figma-design/introducing-vector-networks-3b877d2b864f#.1919e153e">Figma's Vector Networks</a></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>BRIDGESTOBURN</strong> for 10% off your first purchase.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Federighi and Cue on The Talk Show, Adobe deleting the .functionalhighground, and Microsoft Bob.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56bc07181bbee010e68a0029</guid><pubDate>Fri, 12 Feb 2016 00:04:50 +0000</pubDate><title>156: A Mac on Fire</title><itunes:title>A Mac on Fire</itunes:title><itunes:episode>156</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:45:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp156.mp3" length="75928029" type="audio/mpeg"/><link>https://atp.fm/156</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Previous-episode feedback and constructive criticism</li>
+<li><a href="http://quoteinvestigator.com/2011/05/13/einstein-simple/#more-2363">Einstein's quote</a></li>
+<li><a href="http://www.apple.com/osx/photos/">Photos.app</a> crop/aspect behavior theories
+<ul><li>Keyboard shortcuts</li></ul></li></ul></li>
+<li><a href="http://blog.partlysean.com/post/138873611114/bridging-the-35mm-gap">Bluetoot (©MerlinCo 2011) headphone dongle concept</a>
+<ul><li><a href="http://www.amazon.com/dp/B004I44F3C/?tag=liismo-20">TDK Boombox</a></li>
+<li><a href="http://www.amazon.com/dp/B00AMXW8BO/?tag=liismo-20">AGPtek Bluetooth to headphone converter</a>
+<ul><li><a href="http://www.amazon.com/dp/B009A136T2?tag=marcoorg-20">Modern equivalent</a></li></ul></li>
+<li><a href="http://www.amazon.com/dp/B007JG54DG/?tag=marcoorg-20">Sennheiser MM 400-X</a>, Marco's pick for portable Bluetooth podcast listening</li>
+<li><a href="http://www.amazon.com/dp/B008EOXXFI/?tag=liismo-20">Arctic P311</a>, Casey's pick for inexpensive Bluetooth headphones</li></ul></li>
+<li><a href="https://www.caseyliss.com/2016/2/8/alloc-init">Casey's new job</a>
+<ul><li><a href="http://daringfireball.net/2005/10/the_life">The Life</a>, by John Gruber</li>
+<li><a href="https://github.com/apple/swift-evolution/blob/master/proposals/0018-flexible-memberwise-initialization.md">Memberwise Initialization in Swift</a></li></ul></li>
+<li>Casey briefly tries using an iPad full-time
+<ul><li><a href="https://smilesoftware.com/pdfpen-ios">PDFPen</a></li>
+<li><a href="https://www.relay.fm/analogue/73">Myke on the iPad Pro</a></li></ul></li>
+<li><a href="http://www.firewatchgame.com/">Firewatch</a>
+<ul><li><a href="http://www.camposanto.com/">Campo Santo</a></li>
+<li><a href="http://panic.com/">Panic</a></li></ul></li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post-show: <a href="http://store.steampowered.com/">Steam</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://www.igloosoftware.com/atp">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>]]></description><itunes:subtitle>Casey got a new job, then couldn't figure out how to use his iPad.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56b2d045b6aa60d9656e9f60</guid><pubDate>Fri, 05 Feb 2016 00:21:56 +0000</pubDate><title>155: Edit, Crop, Aspect, Original</title><itunes:title>Edit, Crop, Aspect, Original</itunes:title><itunes:episode>155</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:23</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp155.mp3" length="77444953" type="audio/mpeg"/><link>https://atp.fm/155</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Serial numbers on serviced Mac logic boards</li>
+<li><a href="http://arstechnica.com/apple/2016/01/report-apple-working-on-long-distance-wireless-charging-for-future-iphones/">Long-distance wireless charging</a>
+<ul><li><a href="http://www.artemis.com/">Artemis</a></li></ul></li>
+<li><a href="https://developer.apple.com/education/shared-ipad/">Shared iPad developer guidelines</a></li></ul></li>
+<li><a href="http://www.theverge.com/2016/2/3/10900612/walt-mossberg-apple-iphone-ios-mac-osx-app-problems">Walt Mossberg discovers the functional high ground</a>
+<ul><li><a href="http://www.loopinsight.com/2016/02/03/about-walt-mossberg-and-apples-app-problem/">Jim Dalrymple weighs in</a></li>
+<li><a href="http://daringfireball.net/2016/02/apples_app_problem">John Gruber weighs in</a></li></ul></li>
+<li>Apple app design
+<ul><li><a href="https://marco.org/2015/01/04/apple-lost-functional-high-ground">Marco's piece from last year</a></li></ul></li>
+<li><a href="http://www.apple.com/osx/photos/">Photos.app UI design</a>
+<ul><li><a href="http://blog.codinghorror.com/content/images/uploads/2006/02/6a0120a85dcdae970b0120a86d6311970b-pi.png">Microsoft Word toolbars</a></li></ul></li>
+<li><a href="http://www.apple.com/tv/">Apple TV UI design</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Apple_USB_Mouse">Hockey-puck mouse</a></li>
+<li><a href="http://www.imore.com/fixing-apple-tv-siri-remote">Rene Ritchie on fixing the remote</a></li>
+<li><a href="http://www.boardgamegeek.com/boardgame/3737/operation">Operation</a></li></ul></li>
+<li>Why are we so critical of Apple?</li>
+<li>Ending theme by <a href="http://jonathanmann.net/">Jonathan Mann</a></li>
+<li>Post show: The state of Apple hardware</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://audible.com/atp">Audible.com</a>: With over 180,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>Trying to find the functional high ground in a long, horizontally scrolling list.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56a992315dc6dee5da10d83b</guid><pubDate>Fri, 29 Jan 2016 02:11:52 +0000</pubDate><title>154: A Rich Toddler’s Toy</title><itunes:title>A Rich Toddler’s Toy</itunes:title><itunes:episode>154</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:33:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp154.mp3" length="67636887" type="audio/mpeg"/><link>https://atp.fm/154</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="https://audiob.us/">Audiobus</a> <a href="http://atastypixel.com/blog/thirteen-months-of-audiobus/">used MIDI SysEx</a>, not loopback networking
+<ul><li><a href="https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS7.html#//apple_ref/doc/uid/TP40013162-SW1">Inter-App Audio on iOS</a> offers Audio Unit extensibility</li></ul></li>
+<li>Could Apple make a universal Lightning-headphone replacement cable?</li>
+<li>John's Destiny Heads-Up Display
+<ul><li><a href="https://en.wikipedia.org/wiki/High-dynamic-range_imaging">HDR</a></li>
+<li><a href="http://shop.panasonic.com/support-only/TC-P55VT60.html">Panasonic P55VT60</a></li></ul></li>
+<li>Pirate Eye Patches
+<ul><li><a href="https://overcast.fm/+cBP9sTw/32:01">Quirks &amp; Quarks Podcast</a></li>
+<li><a href="https://briankoberlein.com/2015/04/08/blinded-by-the-light/">Red lights &amp; astronomy</a></li></ul></li>
+<li><a href="https://twitter.com/narcossism/status/690981876450750464">VESA mount iMac serial numbers</a></li></ul></li>
+<li><a href="https://sixcolors.com/post/2016/01/apple-q1-2016-results-live/">Apple Earnings</a>
+<ul><li><a href="http://kieranhealy.org/blog/archives/2016/01/27/apple-sales-trends-to-january-2016/">More graphs from Kieran Healy</a></li>
+<li><a href="https://en.wikipedia.org/wiki/File:Ipod_sales_per_quarter.svg">iPod graph</a></li>
+<li>Trucks vs. Cars
+<ul><li><a href="https://en.wikipedia.org/wiki/Chevrolet_El_Camino">El Camino</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Subaru_Baja">Subaru Baja</a></li>
+<li><a href="http://assets.nydailynews.com/polopoly_fs/1.2256282%21/img/httpImage/image.jpg_gen/derivatives/article_635/subaru-brat-ad-1.jpg">Subaru Brat</a></li></ul></li>
+<li><a href="http://kieranhealy.org/files/misc/apple-sales-trends-siracusa.png">All-product-lines performance graph</a> (Posted after the show by <a href="http://kieranhealy.org/">Kieran Healy</a>)</li></ul></li>
+<li>Will the next iPhone be waterproof?
+<ul><li><a href="http://furbo.org/2015/07/14/a-watch-water-and-workouts/">Craig Hockenberry on waterproofing in the Apple Watch</a></li></ul></li>
+<li>Post-show: Inductive iPhone charging</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP10</strong> for 10% off your first order.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Why are iPad sales declining?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56a058e522482e8e62f84839</guid><pubDate>Fri, 22 Jan 2016 02:51:00 +0000</pubDate><title>153: Larger, Less Portable Pastures</title><itunes:title>Larger, Less Portable Pastures</itunes:title><itunes:episode>153</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:39:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp153.mp3" length="71921079" type="audio/mpeg"/><link>https://atp.fm/153</link><description><![CDATA[<ul>
+<li>Pre-Show: Winter weather
+<ul><li><a href="http://hinterlandgames.com/">The Long Dark</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Memory_barrier">Memory barrier</a></li>
+<li><a href="http://mythbustersresults.com/episode71">Pirate eye patches</a></li></ul></li>
+<li>Follow-up:
+<ul><li><a href="https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Extensions.html">Protocol extensions</a></li>
+<li><a href="http://masilotti.com/testing-nsurlsession-input/">Testing NSURLSession with Swift</a></li>
+<li>Studies on blue light and sleep quality
+<ul><li><a href="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2831986/">National Center for Biotechnology Information</a> (via <a href="https://twitter.com/technorav/status/687811541652107264">@technorav</a>)</li>
+<li><a href="http://www.health.harvard.edu/staying-healthy/blue-light-has-a-dark-side">Harvard</a></li>
+<li><a href="http://static.marco.org/M6e9gQlSnr2.png"><em>The</em> shade of blue</a></li></ul></li></ul></li>
+<li>Casey's iMac
+<ul><li><a href="https://support.apple.com/en-us/HT201626">Where is the iMac Serial Number?</a></li>
+<li><a href="https://twitter.com/caseyliss/status/689998900032356354">Casey's desk</a>
+<ul><li><a href="http://www.dragthing.com/">DragThing</a></li>
+<li><a href="http://archive.arstechnica.com/reviews/01q2/macos-x-final/macos-x-8.html#dock">John on the Dock</a> (<a href="http://arstechnica.com/apple/2011/05/mac-os-x-revisited/3/">redux</a>)</li></ul></li></ul></li>
+<li><a href="https://developer.apple.com/news/?id=01152016a&amp;1452895272">iAd App Network Discontinued</a>
+<ul><li><a href="http://mjtsai.com/blog/2016/01/16/apple-eliminating-its-app-and-radio-ads/">Overview from Michael Tsai</a></li>
+<li><a href="https://relay.fm/radar">Under the Radar</a></li></ul></li>
+<li><a href="http://www.apple.com/pr/library/2016/01/20New-Music-Apps-from-Apple-Transform-iOS-Devices-into-Handheld-Studios-for-Songwriters-Beatmakers.html">New Apple music apps</a>
+<ul><li><a href="http://techcrunch.com/2016/01/20/apples-new-garageband-for-ios-is-an-electronic-musicians-dream/">Garage Band update</a></li>
+<li><a href="http://www.apple.com/music-memos/">Music Memos</a>
+<ul><li><a href="http://www.imore.com/i-wrote-and-published-song-30-minutes-apples-music-memos">Serenity Caldwell's review</a></li></ul></li>
+<li><a href="https://www.relay.fm/connected/74">Connected #74</a></li></ul></li>
+<li>iOS limitations vs. powerful Mac hacks
+<ul><li><a href="http://rogueamoeba.com/loopback/">Loopback</a></li>
+<li><a href="http://rogueamoeba.com/audiohijack/">Audio Hijack</a></li>
+<li><a href="http://relay.fm/canvas">Canvas</a>
+<ul><li><a href="http://www.speirs.org/blog/2016/1/8/say-hello-to-canvas">Fraser Spiers on how it's recorded &amp; edited</a></li></ul></li>
+<li><a href="http://www.ecamm.com/mac/callrecorder/">Call Recorder for Skype</a></li>
+<li><a href="https://www.izotope.com/en/products/audio-repair/rx/">Jason's noise plugin, iZotope RX</a></li>
+<li><a href="https://audiob.us/">Audiobus</a></li>
+<li><a href="https://marco.org/2016/01/04/md101ll-a">Marco on the expandable MD101LL/A</a></li></ul></li>
+<li>Post-show:
+<ul><li>Marco jailbrakes two phones
+<ul><li><a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDevice_Class/index.html#//apple_ref/occ/instp/UIDevice/batteryLevel"><code>batteryLevel</code></a></li>
+<li><a href="http://static.marco.org/EonS5xPiZh5.jpg">Modern Cydia screenshot</a></li>
+<li><a href="http://cydia.saurik.com/package/sbsettings/">SBSettings</a></li></ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Saltine_cracker">Saltines</a> vs. <a href="https://en.wikipedia.org/wiki/Wheat_Thins">Wheat Thins</a></li>
+<li><a href="http://devpost.com/software/trumpscript">TrumpScript</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code “ATP” for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>atp10</strong> for 10% off your first order.</li>
+</ul>]]></description><itunes:subtitle>The decline of iAd, iOS limitations vs. powerful Mac hacks, and saltines.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56971fba40667adbe8f6532a</guid><pubDate>Thu, 14 Jan 2016 20:40:58 +0000</pubDate><title>152: Daddy Didn't Want the Good Graphics Card</title><itunes:title>Daddy Didn't Want the Good Graphics Card</itunes:title><itunes:episode>152</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:07</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp152.mp3" length="82290405" type="audio/mpeg"/><link>https://atp.fm/152</link><description><![CDATA[<ul>
+<li>Casey bought an iMac... and you won't believe what happened next.</li>
+<li><a href="https://plex.tv/">Plex</a> vs. <a href="http://firecore.com/infuse">Infuse</a>
+<ul><li><a href="https://relay.fm/mpu/299">Mac Power Users on Plex</a></li>
+<li><a href="https://www.caseyliss.com/2015/4/21/plex">Casey's blog post</a></li></ul></li>
+<li>Follow-up:
+<ul><li><a href="https://swift.org/">Swift</a> and default <code>final</code>
+<ul><li><a href="https://en.wikipedia.org/wiki/Mock_object">Mocks</a></li>
+<li><a href="https://msdn.microsoft.com/en-us/library/9fkccyh4.aspx">C#'s treatment</a> (via <a href="https://twitter.com/neilcronin/status/685354766134718466">@neilcronin</a>)</li>
+<li><a href="https://mobile.twitter.com/jesse_squires/status/664588682997964800">Objective-C's equivalent hack</a></li></ul></li>
+<li><a href="https://www.rust-lang.org/">Rust</a> vs. <a href="https://swift.org/">Swift</a> vs. <a href="https://golang.org/">Go</a></li>
+<li><a href="http://www.macworld.com/article/2895694/will-your-new-macbook-crash-to-the-ground-without-magsafe-yes.html">MagSafe vs. USB-C</a></li>
+<li><a href="https://www.upthere.com/">UpThere</a>
+<ul><li><a href="https://twitter.com/littlesnitch/status/685413888553254913">Little Snitch's tweet</a></li>
+<li><a href="https://twitter.com/crashlytics/status/685455519625117700">Crashlytics adds a theory</a></li>
+<li><a href="https://twitter.com/upthere/status/685527359215120384">UpThere's Confirmation</a></li></ul></li></ul></li>
+<li><a href="https://developer.apple.com/tech-talks/">Apple TV Tech Talk</a></li>
+<li><a href="http://www.apple.com/ios/preview/">iOS 9.3</a>
+<ul><li><a href="http://www.macrumors.com/2016/01/12/ios-9-3-wifi-assist-data-usage/">WiFi Assist Update</a></li>
+<li><strike data-preserve-html-node="true"><a href="https://justgetflux.com/">f.lux</a></strike> Night Shift
+<ul><li><a href="http://www.pnas.org/content/early/2014/12/18/1418490112.full.pdf">PNAS study (PDF)</a></li></ul></li>
+<li><a href="http://www.apple.com/education/preview/">iPads in the classroom</a>
+<ul><li><a href="https://www.relay.fm/connected/73">Connected with Fraser Speirs</a></li></ul></li></ul></li>
+<li>Post-show: <a href="https://twitter.com/cdespinosa/status/627290421438210048">Wheel of iMacs</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP15</strong> for 15% off your first order.</li>
+<li><a href="http://www.blueapron.com/atp">Blue Apron</a>: A better way to cook. Get your first two meals for free with this link.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>EGGSALAD</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Casey bought an iMac. You won't believe what happened next!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:568de0c24bf1183096d1a40b</guid><pubDate>Fri, 08 Jan 2016 04:45:27 +0000</pubDate><title>151: The Opposite of Final</title><itunes:title>The Opposite of Final</itunes:title><itunes:episode>151</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:42:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp151.mp3" length="74043230" type="audio/mpeg"/><link>https://atp.fm/151</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>UpThere
+<ul><li><a href="https://aws.amazon.com/">AWS</a></li>
+<li><a href="https://www.obdev.at/products/littlesnitch/index.html">Little Snitch</a></li>
+<li><a href="https://twitter.com/upthere/status/684480128634597376">Upthere's response</a></li>
+<li><a href="https://aws.amazon.com/ec2/">EC2</a></li></ul></li>
+<li><a href="http://www.forbes.com/sites/gordonkelly/2016/01/06/iphone-7-loses-headphone-jack/">iPhone 7 Headphone Jack</a></li></ul></li>
+<li>New USB-C peripherals for the MacBook One
+<ul><li><a href="http://www.theverge.com/2016/1/4/10702516/griffin-breaksafe-magnetic-usb-c-adapter-magsafe-apple-macbook">Griffin "MagSafe"</a></li>
+<li><a href="http://www.hypershop.com/products/usb-c-5-in-1-hub-with-pass-though-usb-c-charging">Hyper USB-C Hub</a></li></ul></li>
+<li><a href="http://cesweb.org/">CES</a>
+<ul><li><a href="https://www.e3expo.com/">E3</a></li></ul></li>
+<li><a href="https://swift.org/community/#code-of-conduct">Swift Code of Conduct</a>
+<ul><li><a href="http://www.tux.org/lkml/">linux-kernel mailing list</a></li>
+<li><a href="http://blog.randi.io/2015/12/31/the-developer-formerly-known-as-freebsdgirl/">Randi Harper (FreeBSDGirl)'s post</a></li></ul></li>
+<li><a href="http://mjtsai.com/blog/2015/12/21/swift-proposal-for-default-final/">Swift proposal for default <code>final</code></a>
+<ul><li><a href="http://nshipster.com/method-swizzling/">Method swizzling</a></li>
+<li><a href="https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20151221/003897.html">Jordan Rose</a></li></ul></li>
+<li>What does Swift mean for <a href="https://golang.org/">Go</a> and <a href="https://www.rust-lang.org/">Rust</a>?</li>
+<li>Post-show grab bag:
+<ul><li>RIP <a href="https://en.wikipedia.org/wiki/WebObjects">WebObjects</a>?</li>
+<li><a href="http://techcrunch.com/2016/01/06/a-few-quick-laps-in-chevys-new-30k-all-electric-vehicle-the-bolt/?ncid=rss">Chevy Bolt</a></li>
+<li><a href="http://mashable.com/2016/01/05/ces-2016-faraday-future-ffzero1">Faraday FFZero1</a></li>
+<li><a href="https://www.hodinkee.com/articles/the-h-moser-and-cie-swiss-alp-watch-a-not-so-subtle-jab-at-the-apple-watch/">Mechanical "Apple Watch"</a></li>
+<li><a href="http://9to5mac.com/2016/01/06/apple-watch-leak-space-black-milanese-loop-new-band/">Space Black Milanese</a></li>
+<li><a href="http://www.tagheuerconnected.com/">Tag Heuer Connected</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Flip_Video">Flip camera</a></li>
+<li><a href="http://www.fitbit.com/us/blaze">FitBit Blaze</a></li>
+<li><a href="https://www.withings.com/us/en/store/details/activite-steel">Withings Activité Steel</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Internet_of_Things">Internet of Things</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/atp">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://audible.com/atp">Audible.com</a>: With over 180,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.
+<ul><li><a href="http://www.audible.com/pd/Sci-Fi-Fantasy/Armada-Audiobook/B00VN0Q8XY/">Armada</a></li>
+<li><a href="http://www.audible.com/pd/Sci-Fi-Fantasy/Ready-Player-One-Audiobook/B005FRGT44/">Ready Player One</a></li>
+<li><a href="https://www.theincomparable.com/theincomparable/66/">Ready Player One on the Incomparable</a></li></ul></li>
+</ul>]]></description><itunes:subtitle>We spend CES 2016 talking about USB-C hubs, Swift, and semi-smart watches.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5683584069492e9cac5b944f</guid><pubDate>Thu, 31 Dec 2015 02:40:03 +0000</pubDate><title>150: A Mac Pro in Every Pot</title><itunes:title>A Mac Pro in Every Pot</itunes:title><itunes:episode>150</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp150.mp3" length="82898345" type="audio/mpeg"/><link>https://atp.fm/150</link><description><![CDATA[<ul>
+<li>Follow-up: Foliage in Apple stores</li>
+<li>Casey gets a new Apple TV
+<ul><li><a href="http://www.plex.tv">Plex</a></li>
+<li><a href="http://originaltrilogy.com/topic/Harmys-STAR-WARS-Despecialized-Edition-HD-V25-MKV-IS-OUT-NOW/id/12713">Harmy's Despecialized Editions</a></li></ul></li>
+<li>Casey gets a new <a href="http://www.apple.com/ipad-mini-4/">RetinaPad Mini</a>
+<ul><li><a href="https://www.caseyliss.com/2015/12/26/apple-sim">Apple SIM</a></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/679675303988432898">Steven Troughton-Smith making windows on iOS</a></li>
+<li><a href="http://www.wacom.com/en-us/products/pen-displays">Cintiq</a></li></ul></li>
+<li>What plausible/realistic things are we hoping for in 2016?
+<ul><li>Marco — Apple TV: get better
+<ul><li><a href="http://www.theverge.com/2015/12/28/10676272/2015-apples-year-in-beta">Nilay Patel's piece at The Verge</a></li>
+<li><a href="http://shop.oreilly.com/product/9780596527341.do">O'Reilly Polar Bear Book</a></li>
+<li><a href="http://kickingbear.com/">Guy English</a></li></ul></li>
+<li>Casey — App Store: get better</li>
+<li>John — <a href="http://www.apple.com/mac-pro/">Mac Pro</a>: get newer
+<ul><li>...and a new 5K <a href="http://www.apple.com/displays/">Cinema Display</a></li></ul></li>
+<li>Marco — Finish the Retina transition</li>
+<li>Casey — Swift on the server
+<ul><li><a href="https://github.com/izqui/Taylor">Taylor</a></li>
+<li><a href="https://github.com/PerfectlySoft/Perfect">Perfect</a></li></ul></li>
+<li>John — New filesystem (🔔)</li>
+<li>Marco — Apple Watch: get better
+<ul><li><a href="https://www.caseyliss.com/2015/12/17/apple-watch-revisited">Casey's recent re-review</a></li>
+<li><a href="https://www.relay.fm/upgrade/69">The Upgradies</a></li></ul></li>
+<li>Casey — Unification of the package management
+<ul><li><a href="https://swift.org/package-manager/">Swift package manager</a></li>
+<li><a href="https://cocoapods.org/">CocoaPods</a></li>
+<li><a href="https://github.com/Carthage/Carthage">Carthage</a></li></ul></li>
+<li>John — Apple Pencil for non-Pro iPads</li>
+<li>Marco — <a href="http://www.apple.com/ipad-pro/">iPad Pro</a>: get better
+<ul><li>...and an <a href="https://www.instagram.com/">Instagram</a> app for iPad</li>
+<li>Bonus: iPhone 7 wishes
+<ul><li>More <a href="https://en.wikipedia.org/wiki/Ampere-hour">milliamp hours</a> in the battery</li>
+<li>More secure feeling in the hand </li></ul></li></ul></li>
+<li>Casey — iPhone battery: get better</li>
+<li>John — <a href="https://en.wikipedia.org/wiki/OLED">OLED</a> screens in iPhones
+<ul><li>Bonus: non-curved OLED TVs with best-in-class picture quality</li>
+<li>Bonus: TV stations: stop with the logo bugs</li></ul></li>
+<li>Marco — Apple: show more focus</li>
+<li>John — squash more bugs</li></ul></li>
+<li>Post-show:
+<ul><li>Fantasy Macs</li>
+<li><a href="http://arstechnica.com/gadgets/2003/10/pbg4/">John G4 review</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="http://www.blueapron.com/atp">Blue Apron</a>: A better way to cook. Get your first two meals for free with this link.</li>
+</ul>]]></description><itunes:subtitle>Our wish list for 2016. (With very specific parameters.)</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:567a1ef71115e097de2e99bc</guid><pubDate>Thu, 24 Dec 2015 01:43:31 +0000</pubDate><title>149: Everyone's on Vacation</title><itunes:title>Everyone's on Vacation</itunes:title><itunes:episode>149</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:35</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp149.mp3" length="81904552" type="audio/mpeg"/><link>https://atp.fm/149</link><description><![CDATA[<ul>
+<li>Casey's reconciled differences</li>
+<li>Three truths and a lie</li>
+<li>Marco experiments with his website
+<ul><li><a href="https://github.com/marcoarment/secondcrack">Second Crack</a></li>
+<li><a href="http://www.centos.org/">CentOS</a></li>
+<li><a href="http://www.relay.fm/radar">Under the Radar</a></li></ul></li>
+<li>Chrome vs. Safari on the desktop</li>
+<li><a href="http://www.apple.com/pr/library/2015/12/17Apple-Names-Jeff-Williams-Chief-Operating-Officer.html">Phil Schiller takes over the App Store</a>
+<ul><li><a href="https://stratechery.com/2015/apples-executive-reshuffle-adeles-concert-tickets/">Ben Thompson's take</a> (Stratechery members only)</li>
+<li><a href="https://mesos.apache.org/">Apache Mesos</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Leslie_Moonves">Les Moonves</a></li></ul></li>
+<li><a href="http://www.cbsnews.com/news/60-minutes-apple-tim-cook-charlie-rose/">CBS/60 Minutes feature on Apple</a>
+<ul><li><a href="https://twitter.com/caseyliss/status/678746205179019264">Riccio's quote</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2015/06/09/ep-123">John Gruber and Phil Schiller on The Talk Show</a></li></ul></li>
+<li><a href="https://upthere.com/">Upthere</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Bertrand_Serlet">Bertrand Serlet</a></li>
+<li><a href="https://github.com/panicsteve/cloud-to-butt">Cloud to Butt</a></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://neutral.fm/">Neutral</a>: Marco has ordered a Tesla</li>
+<li>The great bagel dispute</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://linode.com/atp">Linode</a>: Get one of the fastest, most efficient SSD cloud servers for only $10/month. Get a $10 credit with code <strong>ACCIDENTALPODCAST10</strong>.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP15</strong> for 15% off your first order.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Phil Schiller would never order a webfont with egg salad.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:567234da1115e0e817460c39</guid><pubDate>Fri, 18 Dec 2015 02:31:14 +0000</pubDate><title>148: Your Feelings Are Real</title><itunes:title>Your Feelings Are Real</itunes:title><itunes:episode>148</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp148.mp3" length="82414888" type="audio/mpeg"/><link>https://atp.fm/148</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="http://calleam.com/WTPF/?p=1205">Green shifting</a> (<a href="http://www.edmundschweppe.com/2013/12/the-green-shifting-anti-pattern/">see also</a>)</li>
+<li>Continuous release schedules
+<ul><li><a href="http://blog.codinghorror.com/the-infinite-version/">Jeff Atwood's Infinite Version</a></li></ul></li>
+<li>iPhone 7 battery theories</li></ul></li>
+<li>4-inch iPhone 6S predictions</li>
+<li>Marco's <a href="http://www.amazon.com/dp/B017JMV2L2?tag=marcoorg-20">SOLEMEMO battery case</a>
+<ul><li>Marco's <a href="http://www.amazon.com/dp/B00VNBRVRK?tag=marcoorg-20">slim battery brick</a></li></ul></li>
+<li>Negativity about Apple</li>
+<li><a href="http://toucharcade.com/2015/12/07/apple-tv-app-store-games-making-100-dollars-a-day/">Apple TV App Store challenges</a>
+<ul><li><a href="http://www.theverge.com/2015/12/10/9885950/ctrl-walt-delete-a-cycle-of-despair">Ctrl-Walt-Delete: A Cycle of Despair</a></li>
+<li><a href="http://www.bmwusa.com/bmw/m/x6m">BMW X6M</a></li></ul></li>
+<li>Swift Open Sourcing
+<ul><li><a href="http://daringfireball.net/thetalkshow/2015/12/07/ep-139">The Talk Show #139</a></li>
+<li><a href="https://twitter.com/clattner_llvm/status/673048357602902017">Chris Lattner's tongue-in-cheek tweet</a>
+<ul><li><a href="https://twitter.com/_matthewpalmer/status/673088953356947456">First non-Lattner commit</a></li>
+<li><a href="https://twitter.com/clattner_llvm/status/673162286127714304">Lattner's reply</a></li></ul></li>
+<li><a href="http://www.apache.org/licenses/LICENSE-2.0#patent">Apache 2 License patent grant</a></li>
+<li><a href="https://github.com/apple/swift-package-manager">Package manager</a>
+<ul><li><a href="https://github.com/apple/swift-package-manager/blob/master/CODE_OWNERS.txt#L11">Code owners</a></li>
+<li><a href="http://brew.sh/">Homebrew</a>
+<ul><li><a href="https://twitter.com/mxcl/status/608682016205344768">Max Howell's snarky tweet</a></li></ul></li></ul></li>
+<li><a href="https://github.com/apple/swift-evolution">swift-evolution</a>
+<ul><li><a href="http://ericasadun.com/">Erica Sadun's blog</a></li>
+<li><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">Mailing list</a></li>
+<li><a href="https://github.com/apple/swift/search?utf8=%E2%9C%93&amp;q=%22twitter.com%2F%22&amp;type=Code">Links to tweets in Swift source</a> (via <a href="https://twitter.com/dannygreg/status/672469188946997248">Danny Greg</a>) </li></ul></li></ul></li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>:
+<ul><li>Casey drives a <a href="https://www.teslamotors.com/models">Tesla Model S</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code “ATP” for 10% off your first purchase.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get 20% off with this link.</li>
+</ul>]]></description><itunes:subtitle>Managing and understanding negativity about Apple and technology today.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5668fa2c7086d7721f207994</guid><pubDate>Fri, 11 Dec 2015 19:41:06 +0000</pubDate><title>147: Here I Am, I'm a Battery</title><itunes:title>Here I Am, I'm a Battery</itunes:title><itunes:episode>147</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:30</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp147.mp3" length="75364977" type="audio/mpeg"/><link>https://atp.fm/147</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>The <a href="http://www.apple.com/shop/product/ML8J2AM/A/iphone-lightning-dock-silver">iPhone Lightning Dock</a> exists</li>
+<li>Benefits of Lightning headphones </li>
+<li><a href="http://www.usb.org/developers/docs/">USB Type C supports analog audio</a></li>
+<li><a href="http://www.apple.com/shop/product/MJYT2AM/A/lightning-to-sd-card-camera-reader">Lightning to SD Card Camera Reader</a></li>
+<li><a href="https://sixcolors.com/post/2015/12/hands-on-with-the-tvos-91-update/">Remote.app for iOS now works with the new Apple TV</a></li>
+<li>Swift/Foundation bridging</li></ul></li>
+<li><a href="http://www.apple.com/shop/product/MGQM2LL/A/iphone-6s-smart-battery-case-white">Apple iPhone 6S battery case</a>
+<ul><li><a href="http://www.thetorquereport.com/2012_porsche_panamera_turbo_s_2.jpg">Porsche Panamera</a></li>
+<li><a href="http://www.wsj.com/articles/apple-smart-battery-case-review-iphone-battery-life-nearly-doubled-1449581402">Joanna Stern's Review</a>
+<ul><li><a href="http://www.amazon.com/dp/B00QG4YYWY/?tag=marcoorg-20">Anker Ultra Slim</a></li></ul></li>
+<li><a href="https://www.youtube.com/watch?v=XAEPqUtra6E">Apple "No" video</a></li>
+<li><a href="http://www.amazon.com/dp/B00VNBRVRK?tag=marcoorg-20">Marco's preferred battery brick</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IMac_G4">"Flower" iMac G4</a></li>
+<li><a href="http://www.amazon.com/dp/B017JMV2L2?tag=marcoorg-20">Chin-less battery case</a></li>
+<li><a href="http://www.amazon.com/dp/B00PG8TIYA/?tag=liismo-20">Casey's Lenmar battery case</a></li></ul></li>
+<li>Apple updated all of their OSes
+<ul><li>State of our Watch usage</li>
+<li>What the future may bring for Watch apps</li></ul></li>
+<li>Post-show:
+<ul><li>Three nerds talk about fashion... again. We're sorry.</li>
+<li><a href="http://www.amazon.com/dp/B004VR9HP2/?tag=liismo-20">Timex Weekender</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code “ATP” for 10% off your first order.</li>
+<li><a href="https://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Did you hear that Apple released a battery case?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56611308e4b0601b74980725</guid><pubDate>Sat, 05 Dec 2015 02:38:36 +0000</pubDate><title>146: Control + Money + Smallness</title><itunes:title>Control + Money + Smallness</itunes:title><itunes:episode>146</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp146.mp3" length="79882496" type="audio/mpeg"/><link>https://atp.fm/146</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="https://twitter.com/netzmann/status/669434834511650816">iMacs and IR ports</a></li>
+<li><code>mDNSResponder</code> gets fixed by a phone call to Tim Cook
+<ul><li><a href="https://www.youtube.com/watch?v=44UkG7Ev1ao&amp;feature=youtu.be&amp;t=1h20m45s">German video</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Vint_Cerf">Vint Cerf</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DARPA">DARPA</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Internet_protocol_suite">TCP/IP</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Internet_Engineering_Task_Force">IETF</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Stuart_Cheshire">Stuart Cheshire</a></li></ul></li></ul></li></ul></li>
+<li><a href="http://www.macrumors.com/2015/11/27/iphone-7-no-3-5mm-headphone-jack-lightning/">iPhone 7 rumored to drop the headphone jack</a>
+<ul><li><a href="http://www.amazon.com/Philips-M2L-27-Headphones-Lightning/dp/B00V4X6QGY?tag=siracusa-20">Existing Lightning-equipped headphones</a></li>
+<li><a href="http://appleinsider.com/articles/15/09/22/apple-prepares-for-thinner-smartphones-with-slim-headphone-plug-patent">Slimmed-down headphone jack</a></li>
+<li><a href="http://www.apple.com/shop/product/MD826AM/A/lightning-digital-av-adapter">Lightning Digital AV Adapter</a></li>
+<li><a href="http://www.amazon.com/dp/B008EOXXFI/?tag=liismo-20">Casey's Bluetooth headphones</a></li>
+<li><a href="http://www.amazon.com/dp/B007JG54DG/?tag=marcoorg-20">Marco's Bluetooth headphones</a></li></ul></li>
+<li><a href="http://www.swift.org">Swift goes open-source</a>
+<ul><li><a href="http://arstechnica.com/staff/2005/09/1372/">Copland 2010</a></li>
+<li><a href="https://en.wikipedia.org/wiki/LLVM">LLVM</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Clang">Clang</a></li>
+<li><a href="https://github.com/apple">Apple on Github</a></li>
+<li><a href="http://opensource.apple.com/">Traditional Apple open source</a></li>
+<li><a href="https://github.com/apple/swift/graphs/contributors">Swift commit graph</a>
+<ul><li><a href="https://github.com/apple/swift/commit/18844bc65229786b96b89a9fc7739c0fc897905e">First Swift commit</a></li></ul></li>
+<li><a href="https://www.relay.fm/material/23">Material #23 with Matías Duarte</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2015/06/09/ep-123">The Talk Show Live at WWDC 2015 with Phil Schiller</a></li>
+<li><a href="https://github.com/apple/swift-evolution">Swift 3.0 plans</a></li>
+<li><a href="https://github.com/apple/swift-corelibs-foundation#api-naming-and-foundation">Removing <code>NS</code> prefix</a></li>
+<li><a href="https://www.relay.fm/radar/2">Under the Radar #2 - Time for Swift</a></li>
+<li><a href="http://arstechnica.com/apple/2015/12/craig-federighi-talks-open-source-swift-and-whats-coming-in-version-3-0/">Ars Technica talks with Craig Federighi</a></li>
+<li><a href="http://thenextweb.com/apple/2015/12/03/qa-apples-craig-federighi-talks-open-source-swift-objective-c-and-the-next-20-years-of-development/">The Next Web talks with Craig Federighi</a></li>
+<li><a href="https://bugs.swift.org/">Swift Issue Tracker</a></li>
+<li><a href="https://github.com/apple/swift/pull/17">GPL trolls</a></li></ul></li>
+<li>Post-show:
+<ul><li>John had a cloudy day.</li>
+<li>Special extended edition of the Siracusa Toaster song by <a href="http://jonathanmann.net/">Jonathan Mann</a>, who also wrote our ending theme song. Hire him to make a song for you, a friend, or a loved one this holiday season!</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B00C8C5I9G/?tag=siracusa-20">Toaster #1</a></li>
+<li><a href="http://www.amazon.com/dp/B00EAI325I/?tag=siracusa-20">Toaster #2</a></li>
+<li><a href="http://thesweethome.com/reviews/the-best-toaster-oven/">The Sweet Home's toaster oven review</a></li>
+<li><a href="https://www.caseyliss.com/2015/9/10/siracusa-on-toasters">Toaster review compendium</a></li></ul></li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+</ul>]]></description><itunes:subtitle>Open-source Swift, iPhone headphone jacks, and the final toaster review.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5653c490e4b019da21bb70b3</guid><pubDate>Tue, 24 Nov 2015 22:31:04 +0000</pubDate><title>145: Lasers and Pew-Pew and Space Aliens</title><itunes:title>Lasers and Pew-Pew and Space Aliens</itunes:title><itunes:episode>145</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp145.mp3" length="63284746" type="audio/mpeg"/><link>https://atp.fm/145</link><description><![CDATA[<ul>
+<li>Pre-show / Follow-out‡:
+<ul><li><a href="http://davidgalletly.com/siracusa">John Siracusa Paper Doll</a>
+<ul><li><a href="http://davidgalletly.com/reconcilable-differences/">John riding on Merlin's back</a></li>
+<li><a href="http://davidgalletly.com/hypercritical-john-siracusa">John on top of Hypercritical Mountain</a></li>
+<li><a href="http://www.marco.org/d/pqLPEo806Ca.png">Marco's version of John... plus a bowtie</a></li></ul></li>
+<li><a href="http://www.relay.fm/topfour/8">Top Four on Take-Out Food</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Roanoke_Colony">Roanoke Colony</a></li>
+<li>Extracurriculars:
+<ul><li><a href="http://relay.fm/recdiffs">Reconcilable Differences</a></li>
+<li><a href="http://relay.fm/topfour">Top Four</a></li>
+<li><a href="https://www.theincomparable.com/robot/">Robot or Not</a></li>
+<li><a href="https://www.theincomparable.com/theincomparable/">The Incomparable</a>
+<ul><li><a href="https://www.theincomparable.com/theincomparable/269">Casey's guest spot</a></li></ul></li>
+<li><a href="http://relay.fm/analog">Analog(ue)</a></li></ul></li></ul></li>
+<li>Follow-up:
+<ul><li>iPad Pro and wide-gamut displays</li>
+<li>iMac insomnia</li></ul></li>
+<li>What 2015 tech are we thankful for?
+<ul><li>John gets hypercritical about <a href="https://goo.gl/CQp4O9">Thanksgiving</a></li>
+<li><code>mDNSResponder</code> (<em>not</em> <code>discoveryd</code>)
+<ul><li><a href="http://www.marco.org/2015/01/04/apple-lost-functional-high-ground">Functional High Ground</a></li>
+<li><a href="http://www.marco.org/2015/07/12/climbing-back-up">Marco's follow-up post</a></li>
+<li><a href="http://furbo.org/2015/05/05/discoveryd-clusterfuck/">Craig Hockenberry on <code>discoveryd</code></a> (strong language)</li></ul></li>
+<li><a href="http://www.apple.com/iphone-6s/cameras/">Live Photos</a> &amp; 4K Video
+<ul><li><a href="http://www.amazon.com/dp/B001G5ZTLS/?tag=marcoorg-20">Canon 5D Mark II</a></li>
+<li><a href="http://www.amazon.com/dp/B00ZDWGFR2/?tag=marcoorg-20">Sony A7R II</a>
+<ul><li>If you get that, <a href="http://www.amazon.com/dp/B00FSB799Q/?tag=marcoorg-20">you want this lens</a>, and probably <a href="http://www.amazon.com/dp/B00FSB79KU/?tag=marcoorg-20">this one</a> too.</li></ul></li></ul></li>
+<li><a href="https://www.apple.com/osx/photos/">Apple Photos</a>
+<ul><li><a href="https://www.google.com/photos/about/">Google Photos</a></li>
+<li><a href="https://picturelife.com/?love=liss">Picturelife</a></li>
+<li><a href="https://www.adobe.com/products/photoshop-lightroom.html">Lightroom</a></li></ul></li>
+<li>Podcasting
+<ul><li><a href="http://relay.fm/radar">Under the Radar</a></li>
+<li><a href="http://www.overcast.fm/">Overcast</a></li></ul></li>
+<li><a href="http://www.amazon.com/dp/B00HPQ09H6/?tag=liismo-20">Olympus O-MD E-M10</a>
+<ul><li><a href="http://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's review</a></li></ul></li>
+<li><a href="http://www.amazon.com/dp/B00LF10KTE/?tag=siracusa-20">Big SSDs</a></li>
+<li><a href="https://slack.com">Slack</a></li>
+<li><a href="http://www.apple.com/shop/product/MD826AM/A/lightning-digital-av-adapter">Lightning Digital AV Adapter</a></li>
+<li><a href="https://www.destinythegame.com">Destiny</a>
+<ul><li><a href="http://www.quake3arena.com">Quake III Arena</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Unreal_Tournament_2004">Unreal Tournament 2004</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Counter-Strike">Counter-Strike</a></li></ul></li>
+<li><a href="http://www.apple.com/watch/">Apple Watch</a></li></ul></li>
+<li>Post-show bonus items:
+<ul><li><a href="http://www.apple.com/shop/product/MK0C2/apple-pencil-for-ipad-pro">Apple Pencil</a></li>
+<li><a href="http://www.teslamotors.com/">Tesla</a></li></ul></li>
+</ul>
+
+<p>‡: Still not Siracusa-approved</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.bushel.com/atp">Bushel</a>: Simple Apple device management and protection for your workplace. Designed to make the complex tasks simple so you can focus on your business.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here, go anywhere. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>2015 tech we’re most thankful for.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:564e81b5e4b05d63dee6027b</guid><pubDate>Sat, 21 Nov 2015 03:06:48 +0000</pubDate><title>144: Digital Schmear</title><itunes:title>Digital Schmear</itunes:title><itunes:episode>144</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:40:24</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp144.mp3" length="72419354" type="audio/mpeg"/><link>https://atp.fm/144</link><description><![CDATA[<ul>
+<li>Follow-up: Apple TV vs. game consoles</li>
+<li>Mac App Store certificate problems
+<ul><li><a href="http://www.imore.com/apple-issues-apology-developers-over-recent-mac-app-store-certificate-issues">Apple's Apology</a></li>
+<li><a href="http://sparkle-project.org">Sparkle</a></li>
+<li><a href="http://mjtsai.com/blog/2015/11/12/no-one-minding-the-store/">Michael Tsai: No One Minding The Store</a></li>
+<li><a href="http://www.spacegremlinapp.com">Space Gremlin</a></li>
+<li><a href="https://daisydiskapp.com">Daisy Disk</a></li>
+<li><a href="http://twitterrific.com/ios">Twitterrific</a></li></ul></li>
+<li>iPad Pro, featuring special guest <a href="https://twitter.com/tiffanyarment/">Tiffany Arment</a>
+<ul><li><a href="http://www.apple.com/shop/product/MK0L2ZM/A/ipad-pro-smart-cover-charcoal-gray">Smart Cover</a></li>
+<li><a href="http://www.apple.com/shop/product/MK0C2/apple-pencil-for-ipad-pro">Pencil</a></li>
+<li><a href="http://5by5.tv/b2w/247">Back to Work #247</a></li>
+<li><a href="https://twitter.com/tiffanyarment/status/667080933019807744">Tiff's Signature</a></li>
+<li><a href="https://www.adobe.com/products/sketch.html">Adobe Sketch</a></li>
+<li><a href="http://procreate.si">Procreate</a></li>
+<li><a href="http://www.tayasui.com/tayasui/SketchesApp.html">Tayasui Sketches</a></li>
+<li><a href="http://www.macworld.com/article/3004869/ipad/displaymate-report-ipad-pros-top-tier-professional-display-edged-out-by-surface-pro-4-in-color-accu.html">DisplayMate on iPad display quality</a></li></ul></li>
+<li><a href="http://brockerhoff.net/blog/2015/11/18/boom-the-return/">USB3 speeds in the Lightning connector</a></li>
+<li>Post-show:
+<ul><li>Mrs. Siracusa's new iMac 5K</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here, go anywhere. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Tiffany Arment joins us to talk iPad Pro and Apple Pencil after we lament the Mac App Store's latest woes.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5643f275e4b0a6089937d0cf</guid><pubDate>Fri, 13 Nov 2015 20:07:42 +0000</pubDate><title>143: Capital F, Capital C</title><itunes:title>Capital F, Capital C</itunes:title><itunes:episode>143</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp143.mp3" length="82249220" type="audio/mpeg"/><link>https://atp.fm/143</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Menu button snap-back on the Apple TV remote</li>
+<li>John's children react to the remote</li></ul></li>
+<li>Marco and Apple TV gaming
+<ul><li><a href="http://badlandgame.com">Badland</a>
+<ul><li><a href="http://playdead.com/limbo/">Limbo</a></li>
+<li><a href="http://2dboy.com/games.php">World of Goo</a></li></ul></li>
+<li><a href="https://github.com/jasarien/Provenance">Provenance</a>
+<ul><li><a href="https://justgetflux.com/">f.lux</a></li></ul></li></ul></li>
+<li>iPad Pro
+<ul><li><a href="https://twitter.com/SteveStreza/status/664503296787243009/video/1">Steve Streza's latency video</a></li>
+<li><a href="https://twitter.com/panzer/status/664507489128349696/video/1">Matt Panzarino's no-latency video</a></li>
+<li><a href="https://www.youtube.com/watch?v=vOvQCPLkPt4">Microsoft touch latency demo video</a></li>
+<li><a href="https://developer.apple.com/videos/play/wwdc2015-233/">WWDC session</a></li>
+<li><a href="https://twitter.com/Ihnatko/status/664521564306714626">Andy Ihnatko's dream</a></li></ul></li>
+<li>Multitasking UI paradigms
+<ul><li><a href="https://en.wikipedia.org/wiki/OpenDoc">OpenDoc</a></li></ul></li>
+<li>Post-show: Neutral
+<ul><li><a href="https://twitter.com/caseyliss/status/664129229936816129">Casey's fender damage</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+<li><a href="https://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+</ul>]]></description><itunes:subtitle>iPad Pro impressions, multitasking paradigms, and Marco actually played a game.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:563ab90ae4b04e51fdabde05</guid><pubDate>Thu, 05 Nov 2015 22:56:39 +0000</pubDate><title>142: Hateful Game of Frogger</title><itunes:title>Hateful Game of Frogger</itunes:title><itunes:episode>142</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp142.mp3" length="86507144" type="audio/mpeg"/><link>https://atp.fm/142</link><description><![CDATA[<ul>
+<li>Follow-out*:
+<ul><li>Marco and _David Smith's new show, <a href="http://www.relay.fm/radar">Under the Radar</a></li></ul></li>
+<li>Follow-up:
+<ul><li>Facebook's ineptitude</li>
+<li><a href="http://apple.stackexchange.com/questions/164443/does-os-x-yosemite-support-spotlight-on-network-drives">Spotlight indexing for NAS drives</a></li>
+<li>Why do Google Play Music and Stitcher re-host podcasts?
+<ul><li><a href="https://en.wikipedia.org/wiki/Cost_per_mille">CPM</a></li></ul></li></ul></li>
+<li><a href="http://www.apple.com/tv">Apple TV</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/S/PDIF">S/PDIF</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2015/10/31/ep-134">The Talk Show #134</a></li>
+<li><a href="http://www.relay.fm/upgrade/61">Upgrade #61</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Konami_Code">Konami Code</a></li>
+<li><a href="http://5by5.tv/hypercritical/99">John's Wii U Setup Woes</a></li>
+<li>Gaming
+<ul><li><a href="http://www.crossyroad.com">Crossy Road</a></li>
+<li><a href="http://altosadventure.com">Alto's Adventure</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Zaxxon">Zaxxon</a></li>
+<li><a href="https://steelseries.com/gaming-controllers/nimbus">Steelseries Nimbus</a></li>
+<li><a href="http://www.polygon.com/2015/11/4/9669206/best-apple-tv-games-2015">Polygon on Apple TV games</a></li>
+<li><a href="http://www.fdg-entertainment.com/en/iphone-games/oceanhorn.html">Oceanhorn</a></li>
+<li><a href="https://github.com/jasarien/Provenance">Provenance</a></li></ul></li>
+<li><a href="https://blog.plex.tv/2015/11/02/plex-on-the-new-apple-tv/">Plex</a></li></ul></li>
+<li>Post show:
+<ul><li>Follow-up on TV audio and sound bars</li>
+<li>Casey reads the manual for Marco's car</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B00LS7VOCC/?tag=siracusa-20">This week's toaster</a></li>
+<li><a href="http://www.caseyliss.com/2015/9/10/siracusa-on-toasters">Other reviews</a></li></ul></li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>
+
+<p>* This use of the term "follow-out" has not been approved by John Siracusa and does not constitute an endorsement of the phrase.</p>]]></description><itunes:subtitle>Experiences with the Apple TV so far, the best toaster yet, and an after-show Neutral.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56316f38e4b0288472fb3fc3</guid><pubDate>Thu, 29 Oct 2015 19:57:24 +0000</pubDate><title>141: Chain-Link-Fenced Garden</title><itunes:title>Chain-Link-Fenced Garden</itunes:title><itunes:episode>141</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:39:05</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp141.mp3" length="71473247" type="audio/mpeg"/><link>https://atp.fm/141</link><description><![CDATA[<ul>
+<li>Apple TV and home theater
+<ul><li><a href="http://www.apple.com/shop/buy-tv/apple-tv">Apple's guide to choosing a capacity</a></li>
+<li><a href="http://www.amazon.com/dp/B00ISQ8VB8/?tag=liismo-20">Optical splitter from HDMI</a></li>
+<li>Marco doesn't know what a "sound bar" is</li></ul></li>
+<li>Follow-up:
+<ul><li>5400 RPM <a href="http://www.tomshardware.com/charts/2014-mobile-hdd-charts/benchmarks,136.html">benchmarks</a>, <a href="http://www.tomshardware.com/charts/2014-mobile-hdd-charts/-32-Overall-Performance,3015.html">charts</a></li>
+<li><a href="http://barefeats.com/imac5k13.html">Mac GPUs, heat, and noise</a>
+<ul><li><a href="https://www.youtube.com/watch?v=PErtLOvMcM0">2015 5K iMac overheats?</a></li></ul></li>
+<li><a href="https://dl.dropboxusercontent.com/u/1695107/AppleTV_SoundDynamicRange.jpeg">Dynamic range compression in the new AppleTV?</a></li>
+<li>Monitor height and VESA-mounting</li>
+<li><a href="https://www.facebook.com/arig/posts/10105815276466163">Facebook statement on app battery usage</a></li>
+<li>John's <em>Star Wars</em> tickets</li></ul></li>
+<li><a href="https://sixcolors.com/post/2015/10/reminder-apple-financial-results-coverage/">Apple's earnings call</a>
+<ul><li><a href="https://twitter.com/BenedictEvans/status/659112180332150784/photo/1">Benedict Evans' chart: iPad vs. laptops</a></li></ul></li>
+<li>Large-storage needs at home: NAS, Drobo, or external hard drives?
+<ul><li><a href="http://www.relay.fm/upgrade/60">Upgrade #60</a></li>
+<li><a href="http://www.amazon.com/dp/B00CRB53CU/?tag=marcoorg-20">DS1813+</a></li>
+<li><a href="http://www.amazon.com/dp/B00P3RPMEO/?tag=liismo-20">DS1815+</a></li>
+<li><a href="https://www.attotech.com/products/product.php?scat=17&amp;sku=INIT-MAC0-001">ATTO iSCSI Initiator</a></li>
+<li><a href="http://eshop.macsales.com/item/OWC/TB4MJB0GB/">OWC ThunderBay 4 mini</a></li>
+<li><a href="http://arstechnica.com/apple/2014/10/os-x-10-10/13/">MailDrop</a>
+<ul><li><a href="https://support.apple.com/en-us/HT203093">Limits</a></li></ul></li>
+<li><a href="http://arstechnica.com/staff/2005/11/1737/">John on RAID in 2005</a></li></ul></li>
+<li><a href="http://officialandroid.blogspot.com/2015/10/podcasters-welcome-to-google-play-music.html">Google Play Music adds podcasts</a>
+<ul><li><a href="http://www.imdb.com/title/tt0077003/">Diff'rent Strokes</a></li>
+<li><a href="http://blog.libsyn.com/2015/10/27/the-feed-special-google-play-music-adds-podcasts/">Libsyn interviews Google Play Music manager about podcast feature</a></li></ul></li>
+<li>Post-show: Apple TV reviews
+<ul><li><a href="http://mashable.com/2015/10/28/apple-tv-review-2015/#Amzji.SVuGq.">Past guest Christina Warren at Mashable</a></li>
+<li><a href="http://recode.net/2015/10/28/mossberg-the-apple-tv-gets-smart/">Walt Mossberg</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP15</strong> for 15% off your first order.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here, go anywhere. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>NAS vs. externals, Google cares about podcasts now, and John teaches Marco what a "sound bar" is.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5625984ee4b0fd27aa8650b7</guid><pubDate>Thu, 22 Oct 2015 01:56:09 +0000</pubDate><title>140: Harpooned a Turtle</title><itunes:title>Harpooned a Turtle</itunes:title><itunes:episode>140</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp140.mp3" length="74403160" type="audio/mpeg"/><link>https://atp.fm/140</link><description><![CDATA[<ul>
+<li>John tries to buy Star Wars tickets</li>
+<li>Follow-up:
+<ul><li><a href="http://www.chipworks.com/sites/default/files/Apple_iPhone_6s_A1688_Smartphone_Chipworks_Teardown_Report_BPT-1509-801_with_Commentary.pdf">Chipworks on the A9s (PDF)</a></li>
+<li><a href="http://www.consumerreports.org/smartphones/battery-tests-find-no-chipgate-problems-in-the-iPhone-6s">Consumer Reports on battery life</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fusion_Drive">Fusion Drives</a></li>
+<li><a href="http://www.apple.com/shop/product/MJ2R2/magic-trackpad-2">Magic Trackpad to augment rather than replace</a></li></ul></li>
+<li>Is the Magic Trackpad 2 too expensive?
+<ul><li><a href="http://www.xbox.com/en-US/xbox-one/accessories/controllers/elite-wireless-controller">Xbox One Elite</a></li></ul></li>
+<li><a href="http://www.apple.com/imac">iMac</a> revisited
+<ul><li><a href="http://www.apple.com/imac/then-and-now/">Then and Now</a></li>
+<li><a href="https://twitter.com/jsnell/status/653947772849156096">Accessories without Bluetooth</a></li></ul></li>
+<li>Apple's balance of priorities: use vs. looks vs. profit
+<ul><li><a href="http://www.elevationlab.com/products/elevation-stand">Elevation Stand</a></li>
+<li><a href="http://www.amazon.com/dp/1591847060/?tag=siracusa-20">Leander Kahney's Ive book</a></li>
+<li><a href="https://images.duckduckgo.com/iu/?u=http%3A%2F%2Fmac512.com%2FTwentieth_Anniversary_Macintosh_Accessories_files%2FTAMFatandMiniCovers.jpg&amp;f=1">20th Anniversary Mac</a></li></ul></li>
+<li><a href="https://www.macstories.net/linked/the-background-data-and-battery-usage-of-facebooks-ios-app/">Facebook battery usage</a></li>
+<li>Post-show: <a href="http://perl6.org/">Perl 6</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP15</strong> for 15% off your first order.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here, go anywhere. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Expensive trackpads, Facebook's battery drain, and whether Apple properly balances usefulness, looks, and profit.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:561efa14e4b0381935da31db</guid><pubDate>Thu, 15 Oct 2015 20:37:50 +0000</pubDate><title>139: I've Seen This Train Before</title><itunes:title>I've Seen This Train Before</itunes:title><itunes:episode>139</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:58</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp139.mp3" length="92264097" type="audio/mpeg"/><link>https://atp.fm/139</link><description><![CDATA[<ul>
+<li>Pre-show: Where is the updated 15" MacBook Pro?</li>
+<li>Follow-up:
+<ul><li><a href="http://techcrunch.com/2015/10/08/apple-says-battery-performance-of-new-iphones-a9-chips-vary-only-2-3/">TSMC vs. Samsung A9 battery life</a></li></ul></li>
+<li><a href="http://www.marco.org/2015/10/09/overcast2">Overcast 2</a>
+<ul><li>File formats are fun</li>
+<li>Bugs</li>
+<li><a href="https://github.com/facebook/KVOController">Facebook KVOController</a></li>
+<li><a href="https://github.com/marcoarment/FCModel/tree/unique2">FCModel</a></li>
+<li>What's next
+<ul><li>Authenticated feeds?</li></ul></li>
+<li><a href="http://www.marco.org/2015/10/13/pragmatic-pricing">Business model</a>
+<ul><li><a href="http://vesperapp.co">Vesper</a></li>
+<li><a href="https://www.youtube.com/watch?v=D2RoYvcqhgM">Marco's XOXO talk</a></li></ul></li></ul></li>
+<li><a href="https://medium.com/@marcoarment/pragmatic-app-pricing-a79fc07218f3">Marco sees a medium</a></li>
+<li>Post-show: New iMacs
+<ul><li>Increased gamut <a href="https://twitter.com/AbomAnemone/status/653945609003536384">1</a> &amp; <a href="https://twitter.com/AbomAnemone/status/653946399311052800">2</a></li>
+<li><a href="http://9to5mac.com/2015/10/13/retina-imac-fusion-drive-flash-lol-are-you-serious/">Fusion drive down to 24 GB of flash</a></li>
+<li>New <a href="http://sixcolors.com/post/2015/10/apple-magic-keyboard-review/">keyboard</a>, <a href="http://sixcolors.com/post/2015/10/apple-magic-trackpad-2-review/">trackpad</a>, and mouse</li>
+<li><a href="http://www.loopinsight.com/2015/10/13/apple-brings-retina-4k-display-to-21-5-inch-imac-retina-5k-display-to-every-27-inch-imac/">Key travel comparison</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="https://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+</ul>]]></description><itunes:subtitle>Overcast 2 challenges and lessons learned, avoiding the Facebookization of podcasts, and trying Medium.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5615bfebe4b00ef14b1aece1</guid><pubDate>Thu, 08 Oct 2015 21:20:02 +0000</pubDate><title>138: Only Microsoft</title><itunes:title>Only Microsoft</itunes:title><itunes:episode>138</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:38:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp138.mp3" length="71194435" type="audio/mpeg"/><link>https://atp.fm/138</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="https://en.wikipedia.org/wiki/Boxee_Box">Boxee Box</a> and oddly-shaped TV dinguses</li>
+<li><a href="https://twitter.com/tivodesign/status/649256890367541248">TiVo Bolt feature upgrades for Roamios</a></li>
+<li><a href="https://twitter.com/JeremyClarkson/status/651809264483336192">Top Gear redux begins (Clarkson's tweet)</a></li></ul></li>
+<li>A tale of two <a href="https://en.wikipedia.org/wiki/Apple_A9">A9</a>s
+<ul><li><a href="http://news.softpedia.com/news/iphone-6s-and-6s-plus-with-itsmc-a9-processors-have-almost-two-extra-hours-of-battery-life-493940.shtml">Extra battery life?</a> (<a href="http://www.engadget.com/2015/10/06/does-your-iphone-have-a-good-or-bad-a9-cpu/">more at Engadget</a>)
+<ul><li>Geekbench results: <a href="https://twitter.com/jfpoole/status/651849329414684673">1</a> <a href="https://twitter.com/jfpoole/status/651853213147262976">2</a></li>
+<li><a href="http://liruminfo.lirumlabs.com">Test App</a></li></ul></li>
+<li><em>Released after we recorded</em>, <a href="http://arstechnica.com/apple/2015/10/apple-data-shows-tsmc-and-samsung-iphone-6s-models-have-similar-battery-life/">Apple's statement</a></li></ul></li>
+<li><a href="https://twitter.com/mrudokas/status/651847565701419008">The <em>phenomenal</em> ATP artwork by Mindaugas Rudokas</a>
+<ul><li>Get his app, <a href="http://codulis.com/apps/disco-timer/">Disco Timer</a></li>
+<li><a href="http://www.marco.org/d/Business-as-Usual-at-ATP.png">Full-resolution version</a></li></ul></li>
+<li><a href="http://www.microsoft.com/surface/en-us/devices/surface-book">Microsoft Surface Book</a>
+<ul><li><a href="http://www.macworld.com/article/2011311/the-five-weirdest-macs-of-all-time.html">Odd iMac colors</a>
+<ul><li><a href="http://www.512pixels.net/blog/2012/12/imac">More from Stephen Hackett</a></li></ul></li></ul></li>
+<li><a href="http://recode.net/2015/10/02/why-jack-dorsey-is-ready-to-save-twitter/">Jack Dorsey is back at Twitter</a></li>
+<li><a href="http://tapbots.com/tweetbot/">Tweetbot 4</a></li>
+<li>Post-show:
+<ul><li><a href="https://www.youtube.com/watch?v=9cA1doO_9h8">P85D vs. 458</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP15</strong> for 15% off your first order.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <figure class="
+ sqs-block-image-figure
+ intrinsic
+ "
+ >
+
+
+
+
+
+ <a class="
+ sqs-block-image-link
+
+
+
+ " href="http://www.marco.org/d/Business-as-Usual-at-ATP.png"
+
+ >
+
+
+ <img class="thumb-image" data-image="https://images.squarespace-cdn.com/content/v1/513abd71e4b0fe58c655c105/1444338314879-EV41YZHM5NZ10C62X706/ke17ZwdGBToddI8pDm48kOE4Xrx9SnSP4l9HEnF6CHZ7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z4YTzHvnKhyp6Da-NYroOW3ZGjoBKy3azqku80C789l0r_HOJKv40X5nnGa3zcgedEUYWUlkPORA0Nmc0OAQVM7_mJ6DXAFhUqV9ofwmf5zZQ/image-asset.png" data-image-dimensions="2880x2160" data-image-focal-point="0.5,0.5" alt="" data-load="false" data-image-id="5616da8ae4b0cb84fd616c2d" data-type="image" src="https://images.squarespace-cdn.com/content/v1/513abd71e4b0fe58c655c105/1444338314879-EV41YZHM5NZ10C62X706/ke17ZwdGBToddI8pDm48kOE4Xrx9SnSP4l9HEnF6CHZ7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z4YTzHvnKhyp6Da-NYroOW3ZGjoBKy3azqku80C789l0r_HOJKv40X5nnGa3zcgedEUYWUlkPORA0Nmc0OAQVM7_mJ6DXAFhUqV9ofwmf5zZQ/image-asset.png?format=1000w" />
+
+
+ </a>
+
+
+
+
+ </figure>]]></description><itunes:subtitle>Microsoft Surface Book, iPhone 6S CPU differences, and the challenge of being Twitter's CEO.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:560c8848e4b0c2b90049369b</guid><pubDate>Thu, 01 Oct 2015 20:02:30 +0000</pubDate><title>137: Feature Photos</title><itunes:title>Feature Photos</itunes:title><itunes:episode>137</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp137.mp3" length="83123714" type="audio/mpeg"/><link>https://atp.fm/137</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="https://en.wikipedia.org/wiki/Endowment_effect">Endowment effect</a></li>
+<li>VFX and Wacom tablets
+<ul><li><a href="https://twitter.com/drwave/status/648592633615421441">Dr. Wave, iPad Pros, and Pixar</a></li></ul></li>
+<li>Ad-blocker penetration</li>
+<li><a href="http://www.sonimtech.com/index.php/en/products/devices/device/SonimXP7_3">Ruggedized phones</a></li></ul></li>
+<li>Apple Music trial ends for day-one adopters
+<ul><li>Who renewed?</li>
+<li>What's to like?</li>
+<li>What's not to like?</li>
+<li><a href="https://discussions.apple.com/thread/7106076">Getting rid of "loves"</a></li></ul></li>
+<li>iPhone 6s
+<ul><li><a href="http://www.apple.com/iphone-6s/3d-touch/">3D Touch</a>
+<ul><li><a href="http://freinbichler.me/apps/3dtouch/">Web 3D Touch support</a> (via <a href="https://twitter.com/bzamayo/status/649342188560756736">@bzamayo</a>)</li></ul></li>
+<li>Taptic Engine</li>
+<li><a href="http://www.apple.com/iphone-6s/cameras/">Live Photos</a></li>
+<li>Siri and the M9
+<ul><li><a href="http://bitsplitting.org/2015/09/28/if-it-aint-fixed-break-it/">Daniel Jalkut on haptic feedback</a></li>
+<li><a href="http://bitsplitting.org/2015/09/28/siris-headphone-tax/">Daniel Jalkut on Siri's headphone tax</a></li></ul></li>
+<li>Inventory
+<ul><li><a href="http://www.chipworks.com/about-chipworks/overview/blog/a9-is-tsmc-16nm-finfet-and-samsung-fabbed">A9 manufactured by TSMC and Samsung</a></li></ul></li></ul></li>
+<li><a href="http://www.apple.com/osx">El Capitan</a>
+<ul><li><a href="http://hypercritical.co/2015/04/15/os-x-reviewed">R.I.P., John's reviews</a></li></ul></li>
+<li>Post-show
+<ul><li><a href="https://www.tivo.com/shop/bolt">TiVo BOLT</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B004VF0G3G/?tag=siracusa-20">This week's "convenience oven"</a></li>
+<li><a href="http://www.caseyliss.com/2015/9/10/siracusa-on-toasters">Siracusa Toaster Chronicles</a></li>
+<li><a href="http://cardsagainsthumanity.com/toasters/">Siracusa Toaster Megamix</a></li>
+<li><a href="http://www.theincomparable.com/robot/">Robot or Not</a></li></ul></li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Ad-blocking estimates, Apple Music three months in, iPhone 6S first impressions, and John doesn't review El Capitan.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:56035122e4b00e89f63c86d7</guid><pubDate>Fri, 25 Sep 2015 03:35:49 +0000</pubDate><title>136: War and Peace</title><itunes:title>War and Peace</itunes:title><itunes:episode>136</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:12</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp136.mp3" length="82345366" type="audio/mpeg"/><link>https://atp.fm/136</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Requirements that Find My iPhone and passcodes are disabled for iPhone repairs</li>
+<li><a href="http://www.apple.com/iphone-6s/cameras/">iPhone 6s Live Photos</a>
+<ul><li><a href="http://daringfireball.net/2015/09/the_iphones_6s">Gruber's review</a></li></ul></li></ul></li>
+<li>watchOS/2 and colored activity rings</li>
+<li><a href="http://peace.land/">Peace</a>
+<ul><li><a href="http://www.marco.org/2015/09/18/just-doesnt-feel-good">Removal</a></li>
+<li>Keeping the Peace</li>
+<li><a href="https://developer.apple.com/videos/wwdc/2015/?id=511">WWDC: Content Blockers</a></li>
+<li><a href="http://www.parakeet.co/">Parakeet</a></li>
+<li><a href="http://www.loopinsight.com/2015/09/16/a-list-of-content-blockers-for-ios-9/">The Loop's list of content blockers</a></li>
+<li><a href="https://www.linkedin.com/pulse/peace-app-experiment-scott-meyer">Ghostery's announcement</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Loss_aversion">Loss aversion</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here, go anywhere. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Lessons learned from Marco's Peace ad-blocker saga.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55fa135ee4b01183bacff46a</guid><pubDate>Fri, 18 Sep 2015 01:44:25 +0000</pubDate><title>135: Uncomfortable in My Pants</title><itunes:title>Uncomfortable in My Pants</itunes:title><itunes:episode>135</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:06:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp135.mp3" length="91351146" type="audio/mpeg"/><link>https://atp.fm/135</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li><a href="http://www.relay.fm/topfour">Top Four</a></li></ul></li>
+<li>Follow-up:
+<ul><li>CEC Unicorns</li>
+<li>_David Smith's <a href="https://david-smith.org/blog/2015/09/10/16gb-is-a-bad-user-experience/">16 GB iPhone Research</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Damocles">Damocles</a></li></ul></li>
+<li>iPhone 6/6S battery numbers
+<ul><li><a href="http://5by5.tv/hypercritical/86">Naked robotic core</a></li>
+<li><a href="http://www.lenmar.com/cell-phone/apple/iphone-series/iphone-6">Casey's Lenmar battery case</a></li>
+<li><a href="http://www.mophie.com/shop/juice-pack-reserve-iphone-6">Mophie Juice Pack Reserve</a>
+<ul><li><a href="http://www.amazon.com/dp/B00QG4YYWY/?tag=marcoorg-20">Anker's very similar battery case</a></li></ul></li></ul></li>
+<li>Casey's crescent moon and Genius Bar policies</li>
+<li>Purchases</li>
+<li><a href="http://www.apple.com/tv/">Apple TV</a>
+<ul><li><a href="https://developer.apple.com/tvos/">Development</a> hardware lottery
+<ul><li><a href="https://en.wikipedia.org/wiki/Apple_Pro_Mouse">Apology mouse</a></li></ul></li>
+<li><a href="http://www.itworld.com/article/2982961/hardware/exclusive-plex-is-coming-to-apple-tv.html">Plex for Apple TV</a></li>
+<li><a href="https://forums.developer.apple.com/thread/17461">Clicks vs. taps</a></li>
+<li><a href="https://forums.developer.apple.com/thread/16971">24p</a></li>
+<li>TV Calibration
+<ul><li><a href="https://geo.itunes.apple.com/us/app/thx-tune-up/id592624594?mt=8&amp;at=1000l3yf">THX Tune Up app</a></li></ul></li>
+<li><a href="http://mfigames.com/category/games/">MFI Games</a></li>
+<li>Can Apple TV require a controller?
+<ul><li><a href="https://developer.apple.com/library/prerelease/tvos/documentation/General/Conceptual/AppleTV_PG/WorkingwithGameControllers.html#//apple_ref/doc/uid/TP40015241-CH18-SW1">Apple documentation</a></li>
+<li><a href="https://twitter.com/afwaller/status/641809427016904705">Screenshot of prior Apple documentation</a></li></ul></li>
+<li><a href="https://medium.com/bpxl-craft/apple-tv-a-world-without-webkit-5c428a64a6dd">WebKit on the Apple TV</a>
+<ul><li><a href="http://www.manton.org/2015/09/every-device-needs-the-web.html">Manton Reece's response</a></li></ul></li></ul></li>
+<li>Pessimism
+<ul><li><a href="http://www.marco.org/2015/07/12/climbing-back-up">Marco's celebratory post</a></li></ul></li>
+<li>iPad Pro
+<ul><li>John on the iPad Pro
+<ul><li><a href="http://5by5.tv/hypercritical/58">Hypercritical #58</a> (<a href="https://overcast.fm/+IpmIw6Vo/31:15">Overcast link</a>)</li></ul></li>
+<li>Touch latency
+<ul><li><a href="https://www.youtube.com/watch?v=vOvQCPLkPt4">Microsoft Research</a>
+<ul><li><a href="http://hypercritical.co/2013/02/08/dont-stop-thinking-about-tomorrow">John's post featuring this video</a></li></ul></li>
+<li><a href="http://www.lindadong.com/blog//apple-pencil-vs-wacom-cintiq">Apple Pencil vs. Wacom Cintiq</a></li></ul></li>
+<li><a href="http://arstechnica.com/staff/2009/05/hypercritical/">The source of John's Hypercritical quote</a></li>
+<li><a href="https://www.designernews.co/comments/173706">Sketch and making money on the App Store</a>
+<ul><li><a href="https://stratechery.com/2015/from-products-to-platforms/">Ben Thompson's take</a></li></ul></li></ul></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://peace.land/">Peace</a>
+<ul><li><a href="http://www.marco.org/2015/09/16/peace-content-blocker">Marco's post on Peace</a></li>
+<li><a href="http://www.marco.org/2015/08/11/ad-blocking-ethics">Marco's post on ad blocking</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here, go anywhere. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+</ul>]]></description><itunes:subtitle>iPhone batteries, WebKit on Apple TV, over-criticism of Apple, iPad Pro apps, and follow-up from last week.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55f0d5f5e4b00c412cdf72fd</guid><pubDate>Thu, 10 Sep 2015 06:59:32 +0000</pubDate><title>134: Who Did It Firster?</title><itunes:title>Who Did It Firster?</itunes:title><itunes:episode>134</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>03:02:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp134.mp3" length="131717371" type="audio/mpeg"/><link>https://atp.fm/134</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li>Casey, <a href="http://plex.tv/">Plex</a>, <a href="http://www.amazon.com/dp/B00CRB53CU/?tag=liismo-20">his Synology</a>, and transcoding
+<ul><li><a href="https://github.com/donmelton/video_transcoding">Don Melton's scripts</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Digital_Living_Network_Alliance">DLNA</a></li>
+<li><a href="http://www.amazon.com/dp/B00FWUQNDQ/?tag=liismo-20">DS214Play</a></li></ul></li>
+<li>TouchID and "S" iPhones</li>
+<li>iPhone <a href="http://www.dailydot.com/technology/iphone-6-crescent-moon-problem-september/">crescent moon</a></li>
+<li><a href="https://forums.developer.apple.com/thread/4615">Safari pinned tabs markup</a>
+<ul><li><a href="https://lists.w3.org/Archives/Public/public-whatwg-archive/2015Jun/0011.html">W3 mailing list</a></li></ul></li></ul></li>
+<li><a href="http://www.apple.com/apple-events/september-2015/">Apple September Event</a>
+<ul><li><a href="http://www.apple.com/watch/">Apple Watch</a>
+<ul><li>[New watch metals and bands]</li>
+<li>watchOS 2, custom complications, apps, and Overcast</li>
+<li>Is the Apple Watch doomed?</li></ul></li>
+<li>iPad Pro
+<ul><li><a href="http://www.fiftythree.com/paper">Paper</a></li>
+<li><a href="http://www.fiftythree.com/pencil">Paper Pencil</a></li>
+<li><a href="http://www.microsoft.com/surface/en-us/support/hardware-and-drivers/type-cover?os=windows-10">Surface Keyboard Cover</a></li>
+<li><a href="http://www.wacom.com/en-us/products/pen-displays">Wacom Cintiq</a></li></ul></li>
+<li><a href="http://www.apple.com/tv/">Apple TV</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/HDMI#CEC">CEC</a></li>
+<li><a href="http://www.apple.com/tv/specs/">TV Specs</a></li>
+<li><a href="https://developer.apple.com/tvos/human-interface-guidelines/remote-and-interaction/">HIG</a></li>
+<li><a href="https://steelseries.com/gaming-controllers/nimbus">Steelseries Nimbus</a></li>
+<li><a href="https://developer.apple.com/library/prerelease/tvos/documentation/General/Conceptual/AppleTV_PG/WorkingwithGameControllers.html">Requiring game controllers</a></li>
+<li><a href="http://www.mikebithellgames.com/thomaswasalone/">Thomas Was Alone</a></li>
+<li><a href="http://5by5.tv/movies/1">The <em>Goodfellas</em> podcast</a></li>
+<li><a href="https://developer.apple.com/tvos/human-interface-guidelines/icons-and-images/">Parallax images in the HIG</a> &amp; <a href="https://developer.apple.com/library/prerelease/tvos/documentation/General/Conceptual/AppleTV_PG/CreatingParallaxArtwork.html">creation</a></li></ul></li>
+<li><a href="http://www.apple.com/iphone-6s/">iPhones 6S</a>
+<ul><li><a href="http://www.apple.com/iphone-6s/3d-touch/">3D Touch</a></li>
+<li><a href="http://www.apple.com/shop/iphone/iphone-upgrade-program">Upgrade Program</a></li>
+<li><a href="http://www.apple.com/iphone-6s/specs/">Sapphire lens cover</a></li>
+<li><a href="http://www.apple.com/iphone-6s/cameras/">Zooming 4K</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B00GATJFBA/?tag=siracusa-20">This week's toaster</a></li></ul></li>
+<li><a href="https://caspersleep.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off.</li>
+</ul>
+
+<p>Also consider:</p>
+
+<ul>
+<li><a href="http://fundraising.stjude.org/site/TR?px=2803749&amp;fr_id=40881&amp;pg=personal">Donating to St. Jude Children's Hospital</a> and support friend-of-the-show <a href="http://www.512pixels.net/blog/2015/8/september-is-national-childhood-cancer-awareness-month">Stephen Hackett's family</a> and children in need.</li>
+</ul>]]></description><itunes:subtitle>Apple event analysis: iPad Pro, new Apple TV, and the iPhone 6S.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55dd1a0ce4b0b9d28707a279</guid><pubDate>Wed, 02 Sep 2015 22:15:07 +0000</pubDate><title>133: You Have to Walk the Dog</title><itunes:title>You Have to Walk the Dog</itunes:title><itunes:episode>133</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:46:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp133.mp3" length="76845701" type="audio/mpeg"/><link>https://atp.fm/133</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Why not use push notifications for the <a href="https://www.apple.com/support/iphone6plus-isightcamera/">iPhone 6 Plus iSight replacement program</a></li></ul></li>
+<li>Apple, attitude, "cool", and change
+<ul><li><a href="https://goo.gl/4bCYbL"><em>Songs of Innocence</em></a></li>
+<li><a href="https://en.wikipedia.org/wiki/IPod_Hi-Fi">iPod Hi-Fi</a></li></ul></li>
+<li>Force Touch and Taptic Engine in the iPhone 6S
+<ul><li><a href="http://www.relay.fm/upgrade/51">Upgrade #51</a></li></ul></li>
+<li><a href="http://www.nytimes.com/2015/08/16/technology/inside-amazon-wrestling-big-ideas-in-a-bruising-workplace.html">New York Times on Amazon's stressful culture</a>
+<ul><li><a href="http://www.geekwire.com/2015/full-memo-jeff-bezos-responds-to-cutting-nyt-expose-says-tolerance-for-lack-of-empathy-needs-to-be-zero/">Jeff Bezos' rebuttal</a></li>
+<li><a href="https://xkcd.com/323/">Ballmer Peak</a></li>
+<li><a href="http://hypercritical.co/2014/04/27/creativity-inc"><em>Creativity, Inc.</em></a></li>
+<li><a href="https://medium.com/life-learning/work-hard-live-well-ead679cb506d">Dustin Moskovitz on 40-hour work weeks</a></li>
+<li>Work-life balance and workaholism</li>
+<li>What's necessary for a successful startup?</li></ul></li>
+<li>Post-show:
+<ul><li>John's well-honed capacity for doing nothing</li>
+<li>Addiction to coffee and large monitors</li>
+<li>Follow-up on Casey's computer options</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>UNEVENTFULWEEK</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Amazon and tech workaholism, Apple's recent changes in judgment, Force Touch, and the iPod Hi-Fi.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55da7430e4b0d420c0e37d57</guid><pubDate>Wed, 26 Aug 2015 20:53:53 +0000</pubDate><title>132: Digital Hearth</title><itunes:title>Digital Hearth</itunes:title><itunes:episode>132</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:14:37</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp132.mp3" length="97054566" type="audio/mpeg"/><link>https://atp.fm/132</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li><a href="http://www.caseyliss.com/2015/8/23/tom-bihn-cadet">Casey's Tom Bihn Cadet review</a></li></ul></li>
+<li>Follow-up:
+<ul><li>John's 802.11ac device (via <a href="https://twitter.com/_adamluther">@_adamluther</a>)</li>
+<li>John's Wi-Fi Routers
+<ul><li><a href="https://www.ifixit.com/Teardown/AirPort+Extreme+A1521+Teardown/15044">AirPort Extreme Teardown</a></li>
+<li><a href="http://www.amazon.com/gp/product/B009NQMESS?tag=marcoorg-20">Noctua fan</a></li></ul></li></ul></li>
+<li>What computer should Casey buy?</li>
+<li>Mouse design
+<ul><li><a href="http://www.apple.com/shop/product/MB112LL/B/apple-mouse">Apple Mouse</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Pro_Mouse">Apology Mouse</a></li>
+<li><a href="http://www.guidebookgallery.org/videos/applepromouse">Apple Pro Mouse</a></li>
+<li><a href="http://www.amazon.com/dp/B000HCT12O/?tag=marcoorg-20">Logitech MX Revolution</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Hearts_in_Atlantis#Low_Men_in_Yellow_Coats">Low Men in Yellow Coats</a></li>
+<li><a href="http://www.512pixels.net/blog/2012/11/mouse">Apple Mouse History</a></li>
+<li><a href="http://www.amazon.com/dp/B00006HMPJ/?tag=siracusa-20">John's home mouse</a></li>
+<li><a href="http://www.amazon.com/dp/B00004VX3T/?tag=siracusa-20">John's work mouse</a></li>
+<li><a href="http://mmfixed.com">Magic Mouse, "Fixed"</a></li>
+<li><a href="http://thewirecutter.com/reviews/best-wireless-mouse/">Wirecutter review with grip pictures</a></li></ul></li>
+<li>Overcast upgrades at <a href="https://www.linode.com/?r=0e105fac1868f5f735279daa027833f8f77b6e91">Linode</a></li>
+<li>John's adventures with <a href="https://developer.apple.com/library/prerelease/mac/releasenotes/General/WhatsNewInSafari/Articles/Safari_9.html#//apple_ref/doc/uid/TP40014305-CH9-SW20">Safari pinned tab icons</a>
+<ul><li><a href="https://developer.apple.com/library/safari/releasenotes/General/WhatsNewInSafari/Articles/Safari_9.html#//apple_ref/doc/uid/TP40014305-CH9-SW20">Alternate markup</a></li>
+<li><a href="http://www.adobe.com/products/illustrator.html">Illustrator</a></li>
+<li><a href="http://flyingmeat.com/acorn/">Acorn</a></li>
+<li><a href="https://affinity.serif.com/en-us/">Affinity Designer</a></li></ul></li>
+<li>Challenges of an iPad "Pro"
+<ul><li><a href="http://www.wacom.com/en-us/products/pen-displays/cintiq-27-qhd-touch">Cintiq</a></li>
+<li><a href="http://9to5mac.com/2015/05/21/future-of-ipad-dual-app-viewing-mode-then-j99-ipad-pro-multi-user-support/">Mark Gurman on iPad Pro</a></li>
+<li><a href="http://ignorethecode.net/blog/2015/08/14/ipad_consumption_device/">iPad: A Consumption Device, After All?</a> by Lukas Mathis</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here, go anywhere. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>iPad "Pro" challenges, which Mac to buy for home, mouse design, and what John's doing this summer.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55d52948e4b0d31220456801</guid><pubDate>Fri, 21 Aug 2015 20:02:25 +0000</pubDate><title>131: Finding Your Way Back In</title><itunes:title>Finding Your Way Back In</itunes:title><itunes:episode>131</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:41:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp131.mp3" length="73302367" type="audio/mpeg"/><link>https://atp.fm/131</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li>Microphones and Electronics
+<ul><li><a href="http://schiit.com/products/wyrd">Schiit Wyrd</a></li>
+<li><a href="http://www.shure.com/americas/products/microphones/sm/sm7b-vocal-microphone">Shure SM7B</a></li>
+<li><a href="http://www.shure.com/americas/products/microphones/beta/beta-58a-vocal-microphone">Shure Beta 58A</a></li>
+<li><a href="http://www.shure.com/americas/products/microphones/beta/beta-87a-vocal-microphone">Shure Beta 87A</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Neodymium_magnet">Neodymium magnet</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Microphone#Cardioid">Cardioid microphone</a></li></ul></li></ul></li>
+<li>Follow-up:
+<ul><li><a href="http://arstechnica.com/information-technology/2015/08/the-many-tricks-intel-skylake-uses-to-go-faster-and-use-less-power/">How Intel Skylake is faster</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ECC_memory">ECC RAM</a>
+<ul><li><a href="http://users.ece.cmu.edu/~yoonguk/papers/kang-memoryforum14.pdf">Failures (PDF)</a></li>
+<li><a href="http://lambda-diode.com/opinion/ecc-memory">Bit error likelihood</a></li>
+<li><a href="http://www.cs.toronto.edu/~bianca/papers/sigmetrics09.pdf">DRAM errors in the wild (PDF)</a></li></ul></li>
+<li>Encrypted backups and password management strategies
+<ul><li><a href="http://www.wired.com/2012/08/apple-amazon-mat-honan-hacking/all/">Mat Honan's hacking story</a></li></ul></li>
+<li><a href="http://www.relay.fm/upgrade/50">Jason Snell on Alphabet on Upgrade</a> (<a href="https://overcast.fm/+DeCnpQVHE/32:10">Overcast link</a>)
+<ul><li>Overcast playlist modification from the web</li></ul></li></ul></li>
+<li>iPhone rumor time!
+<ul><li><a href="https://twitter.com/film_girl/status/633704061976596480">Pink iPhones?</a>
+<ul><li><a href="http://www.cnet.com/pictures/motorola-razr-v3-history/4/">Pink Razr</a></li></ul></li>
+<li><a href="https://www.youtube.com/watch?v=ChUsy8gWwvo">New materials?</a>
+<ul><li><a href="http://www.dailydot.com/technology/iphone-6-crescent-moon-problem-september/">iPhone 6 crescent-moon flaw</a></li>
+<li><a href="http://www.moillusions.com/fedex-logo-optical-illusion/">FedEx logo arrow</a></li></ul></li>
+<li>Force Touch?</li></ul></li>
+<li>Post-show:
+<ul><li>John, the FiOS Fairy, and wireless routers
+<ul><li><a href="https://www.apple.com/airport-extreme/">AirPort Extreme</a></li>
+<li><a href="http://www.marco.org/2011/01/15/how-to-use-your-own-router-with-fios">How to use your router with FiOS</a></li>
+<li><a href="http://www.actiontec.com/products/prod_archive.php?pid=189">Actiontec Router</a></li>
+<li><a href="http://www.amazon.com/dp/B008C1JC4O/?tag=liismo-20">MoCA Bridge</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>HAPPYBIRTHDAYRELAY</strong> for 10% off your first purchase.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+</ul>]]></description><itunes:subtitle>Skylake power savings, John's superior ECC RAM, iPhone rumors, and Marco's obscene power switch.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55cbf178e4b03e8de406bbd3</guid><pubDate>Fri, 14 Aug 2015 16:42:21 +0000</pubDate><title>130: Technical Countermeasures</title><itunes:title>Technical Countermeasures</itunes:title><itunes:episode>130</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:36:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp130.mp3" length="69448631" type="audio/mpeg"/><link>https://atp.fm/130</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="http://research.microsoft.com/en-us/um/people/bibuxton/buxtoncollection/a/pdf/TrackPoint%20Interact%2090.pdf">IBM's TrackPoint study</a></li>
+<li>More on [self-proclaimed] Tap-to-Click Wizards</li>
+<li>Apple SIM
+<ul><li><a href="http://www.apple.com/ipad/apple-sim/">Apple's documentation</a></li>
+<li>Lady Whimsy's summary <a href="https://twitter.com/ladywhimsy/status/629709001547124736">1</a> <a href="https://twitter.com/ladywhimsy/status/629709099433787393">2</a> <a href="https://twitter.com/ladywhimsy/status/629709439134625792">3</a> <a href="https://twitter.com/ladywhimsy/status/629710089079775232">4</a></li></ul></li>
+<li>Carrier Performance
+<ul><li>Feedback from Chris <a href="https://twitter.com/chrisjniles/status/629831052492562432">1</a> <a href="https://twitter.com/chrisjniles/status/629831263738658816">2</a></li></ul></li>
+<li>Carrier plans
+<ul><li><a href="https://twitter.com/derekbeachy/status/629475945393491969">Derek's theory</a></li>
+<li><a href="https://twitter.com/Ben_Glickman/status/630076371163680768">Ben's theory</a></li>
+<li><a href="https://twitter.com/jeffreymfoster/status/630477088001146880">Jeffrey's theory</a></li>
+<li>Links from Aaron E
+<ul><li><a href="https://www.fcc.gov/encyclopedia/early-termination-fees">FCC on early termination fees</a></li>
+<li><a href="http://www.cnet.com/news/mobile-carriers-google-defend-cancellation-fees/">Mobile carriers stand by cancellation fees</a></li>
+<li><a href="http://www.consumeraffairs.com/news04/2010/01/verizon_etf_hike05.html">More on the FCC</a></li></ul></li></ul></li></ul></li>
+<li><a href="http://arstechnica.com/gadgets/2015/08/intel-plans-first-ever-mobile-xeon-cpus-but-dont-get-too-excited/">Notebook Xeons</a></li>
+<li><a href="http://googleblog.blogspot.com/2015/08/google-alphabet.html">G is for Google</a></li>
+<li><a href="http://www.marco.org/2015/08/11/ad-blocking-ethics">Ad-Blocking Ethics</a> <br>
+<ul><li><a href="http://nolanlawson.com/2015/06/30/safari-is-the-new-ie/">Safari is the new IE</a></li>
+<li><a href="http://daringfireball.net/2015/07/safari_content_blocker_imore">Gruber on iMore</a></li>
+<li><a href="http://www.imore.com/content-blockers-bad-ads-and-what-were-doing-about-it">Rene Ritchie on content blockers</a></li>
+<li><a href="http://ghostery.com/">Ghostery</a></li>
+<li><a href="https://disconnect.me/">Disconnect</a></li>
+<li><a href="https://adblockplus.org/">Ad Block Plus</a></li>
+<li><a href="http://lynx.isc.org/">Lynx</a></li></ul></li>
+<li><a href="https://twitter.com/siracusa/status/631666605546729472">John's preemptive follow-up</a> on his Star Wars reference.</li>
+<li>Post-show:
+<ul><li>How's not-reviewing going for John this summer?</li>
+<li>Marco's new <a href="http://www.amazon.com/dp/B00ZDWGFR2/?tag=marcoorg-20">Sony A7R II</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Autofocus#Phase_detection">Phase-detect autofocus</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Autofocus#Contrast_detection">Contrast-detect autofocus</a></li>
+<li><a href="https://www.apple.com/iphone-6/cameras/#isight-gallery-1">Focus Pixels</a></li>
+<li>The key factors to a high keeper rate:
+<ul><li>Phase-detect autofocus with continuous subject tracking</li>
+<li>In-body image stabilization</li>
+<li>Programmable auto-ISO with high shutter speeds</li>
+<li>A sensor with low noise at very high ISOs</li></ul></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>ATP15</strong> for 15% off your first order.</li>
+<li><a href="https://casper.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+</ul>]]></description><itunes:subtitle>Notebook Xeons, ad blockers, and various letters of the Alphabet.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55c2b488e4b05e733d67a918</guid><pubDate>Thu, 06 Aug 2015 23:53:09 +0000</pubDate><title>129: Tap-to-Click Wizard</title><itunes:title>Tap-to-Click Wizard</itunes:title><itunes:episode>129</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:17:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp129.mp3" length="99291333" type="audio/mpeg"/><link>https://atp.fm/129</link><description><![CDATA[<ul>
+<li><a href="http://www.anandtech.com/show/9483/intel-skylake-review-6700k-6600k-ddr4-ddr3-ipc-6th-generation">Skylake desktop CPUs launch</a></li>
+<li>Casey joins 2012
+<ul><li>"<a href="http://www.wired.com/2009/11/steve-jobs-to-developer-name-change-not-that-big-of-a-deal/">Change your apps name. Not that big of a deal.</a>"</li>
+<li><a href="https://en.wikipedia.org/wiki/Pointing_stick">TrackPoint</a></li>
+<li><a href="http://research.microsoft.com/en-us/um/people/bibuxton/buxtoncollection/detail.aspx?id=120">TrackPoint Mouse</a></li>
+<li><a href="https://www.leapmotion.com">Leap Motion</a></li></ul></li>
+<li>2015 iPhone predictions
+<ul><li><a href="http://5by5.tv/hypercritical/86">Naked robotic core</a></li>
+<li><a href="http://www.merlinmann.com/roderick/ep-161-its-ramifications.html">It's Ramifications!</a></li></ul></li>
+<li>Carrier subsidies and pricing games
+<ul><li><a href="http://www.att.com/shop/wireless/next.html">AT&amp;T Next</a></li></ul></li>
+<li>Post-show:
+<ul><li><a href="https://www.apple.com/support/ipad/repair/screen-damage/">Repairing iPads</a></li>
+<li>Hot water heaters</li>
+<li>Marco's new camera
+<ul><li><a href="http://www.amazon.com/dp/B00ZDWGFR2/?tag=marcoorg-20">Sony A7R II</a></li>
+<li><a href="http://www.amazon.com/dp/B00FSB79KU/?tag=marcoorg-20">Sony FE 35mm f/2.8</a></li>
+<li><a href="http://www.amazon.com/dp/B00FSB799Q/?tag=marcoorg-20">Sony FE 55mm f/1.8</a></li>
+<li><a href="http://www.amazon.com/dp/B00U29GNEG/?tag=marcoorg-20">Sony FE 90mm f/2.8 macro</a></li>
+<li><a href="http://www.amazon.com/dp/B001G5ZTLS/?tag=marcoorg-20">Canon 5D Mark II</a></li>
+<li><a href="http://www.amazon.com/dp/B0060MVJ1Q/?tag=marcoorg-20">Nikon D750</a></li>
+<li><a href="http://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's camera setup</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B00B20XTY6/?tag=siracusa-20">This week's toaster</a></li></ul></li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>INFINITETIMESCALE</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Upside-down mice, plastic iPhones, cracked screens, and Casey's buttonless welcome to 2012.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55b1903ae4b065b19a75e3e5</guid><pubDate>Wed, 29 Jul 2015 13:52:35 +0000</pubDate><title>128: Blue Ring Stud</title><itunes:title>Blue Ring Stud</itunes:title><itunes:episode>128</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:44</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp128.mp3" length="87769298" type="audio/mpeg"/><link>https://atp.fm/128</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li>Invisible formatting</li>
+<li>Chapter markers and Germany</li></ul></li>
+<li>Follow-up:
+<ul><li>Satya Nadella <a href="http://www.zdnet.com/article/ceo-nadella-talks-microsofts-mobile-ambitions-windows-10-strategy-hololens-and-more/">on Microsoft's iMac</a></li>
+<li><a href="http://techreport.com/news/28674/samsung-says-data-eating-trim-bug-is-a-linux-kernel-problem">Samsung SSDs and TRIM</a>
+<ul><li><a href="http://m.macnn.com/fullarticles/15/07/12/so.far.no.problems.have.been.noted.in.testing.the.popular.ssd.line.129472/">MacNN SSD testing</a></li></ul></li>
+<li>Marco's cellular-option dilemma</li></ul></li>
+<li>Reddit
+<ul><li><a href="http://www.redditblog.com/2013/08/reddit-myth-busters_6.html#independent-reddit-inc">Reddit is no longer owned by Condé Nast</a></li>
+<li>John slacked off for 46 days</li>
+<li>What makes Twitter marginally less crummy?</li>
+<li><a href="https://www.reddit.com/r/announcements/comments/3djjxw/lets_talk_content_ama/ct5uk86?context=1">Q&amp;A about policies</a></li></ul></li>
+<li>El Capitan's Rootless Mode
+<ul><li><a href="https://developer.apple.com/videos/wwdc/2015/?id=706">WWDC Session 706 – Security and Your Apps</a></li>
+<li><a href="http://www.rogueamoeba.com/audiohijack/">Audio Hijack</a></li>
+<li><a href="http://arstechnica.com/staff/2006/02/2918/">Paths in the Grass</a></li></ul></li>
+<li>Mac App Store... still stinks.
+<ul><li><a href="http://panic.com/coda/">Coda</a></li>
+<li><a href="http://furbo.org/2015/07/22/half-assed/">Craig Hockenberry on the Mac App Store</a></li></ul></li>
+<li>Post-show:
+<ul><li>All three hosts learn something new about life as adults.</li>
+<li><a href="https://vimeo.com/133698728">Neven Mrgan's CocoaConf talk</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://neededition.com/">Need</a>, a curated retailer and publication for men; and <a href="https://foremostedition.com/">Foremost</a>, small-batch, American-made clothing for men and women. Use code <strong>PREFOLLOWUP</strong> for 25% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code <strong>ATP</strong> for 10% off your first order.</li>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like. Try Igloo for free.</li>
+</ul>]]></description><itunes:subtitle>Rootless in El Capitan, the sad state of the Mac App Store, and more on Reddit.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55ada368e4b05604afa048a4</guid><pubDate>Wed, 22 Jul 2015 22:35:21 +0000</pubDate><title>127: Not a Cactus in Sight</title><itunes:title>Not a Cactus in Sight</itunes:title><itunes:episode>127</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp127.mp3" length="81030460" type="audio/mpeg"/><link>https://atp.fm/127</link><description><![CDATA[<ul>
+<li>Pre-follow-up:
+<ul><li>Streaming over cellular and UI dilemmas in Overcast 2.0</li></ul></li>
+<li>Follow-up:
+<ul><li>Original Half Life is available on the Mac (via <a href="https://twitter.com/kristianvalind/status/621910983120941056">@Kristian</a>)</li>
+<li>On-demand resources API and <code>NSProgress</code> (via <a href="https://twitter.com/Hunter/status/622080953272266752">@Hunter</a>)</li>
+<li>Marco tries to deny he likes playing games
+<ul><li><a href="http://desertgolfing.captain-games.com/">Desert Golfing</a></li>
+<li><a href="http://altosadventure.com/">Alto's Adventure</a></li>
+<li><a href="http://www.introversion.co.uk/prisonarchitect/">Prison Architect</a></li>
+<li><a href="http://www.gog.com/game/theme_hospital">Theme Hospital</a></li>
+<li><a href="http://www.openttd.org/en/">OpenTTD</a>, the rewritten and expanded <a href="https://en.wikipedia.org/wiki/Transport_Tycoon">Transport Tycoon</a></li></ul></li></ul></li>
+<li><a href="http://arstechnica.com/gadgets/2015/07/intel-confirms-tick-tock-shattering-kaby-lake-processor-as-moores-law-falters/">Intel's tick-tock seems to be over</a></li>
+<li><a href="http://recode.net/2015/07/10/pao-out-as-reddit-ceo-co-founder-huffman-takes-over/">Reddit kerfuffle</a>
+<ul><li><a href="https://www.youtube.com/watch?v=tlI022aUWQQ">CGP Grey's video: <em>What is Reddit?</em></a></li>
+<li><a href="http://www.hellointernet.fm/podcast/43">Hello Internet #43</a></li>
+<li><a href="http://www.relay.fm/rocket/26">Rocket #26</a> and <a href="http://www.relay.fm/rocket/27">#27</a></li>
+<li>Laurie Voss's <a href="https://twitter.com/seldo/status/620389392549482497">two</a> <a href="https://twitter.com/seldo/status/620389829344235520">tweets</a> (sorry for the wrong gender pronoun)</li></ul></li>
+<li>Post-show:
+<ul><li>More on Reddit
+<ul><li><a href="http://forums.somethingawful.com/">Something Awful Forums</a></li>
+<li><a href="http://www.bizjournals.com/columbus/news/2014/09/11/cup-o-joe-in-bexley-closing-to-make-way-for-condos.html">Marco's old coffee shop closed</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>PASSINGLANE</strong> for 10% off your first order.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>]]></description><itunes:subtitle>There's no hole count on Twitter.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55a802cfe4b07e2e8e936090</guid><pubDate>Thu, 16 Jul 2015 23:52:53 +0000</pubDate><title>126: The Web Kind of Happens to You</title><itunes:title>The Web Kind of Happens to You</itunes:title><itunes:episode>126</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:31:57</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp126.mp3" length="66327776" type="audio/mpeg"/><link>https://atp.fm/126</link><description><![CDATA[<ul>
+<li>Pre-show: John being particular about his particular renovations</li>
+<li>Follow-up:
+<ul><li>Web apps versus native apps in the enterprise/government</li>
+<li>Browser choice on iOS
+<ul><li><a href="http://mjtsai.com/blog/2015/07/15/font-parsing-vulnerabilities/">Font safety</a></li></ul></li>
+<li>TRIM versus over-provisioning</li>
+<li><a href="http://store.steampowered.com/app/70/">Half Life is available for the Mac</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Counter-Strike">Counterstrike</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Team_Fortress_2">Team Fortress 2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Markov_chain#Markov_text_generators">Markov generator</a></li></ul></li></ul></li>
+<li>New <a href="http://www.apple.com/ipod-touch/">iPod Touch</a>
+<ul><li><a href="https://twitter.com/stroughtonsmith/status/621374066818203648">Steve Troughton-Smith notes it's <code>iPod7,1</code></a></li>
+<li><a href="http://techcrunch.com/2015/07/15/apple-shows-ipod-touch-some-love-with-a8-processors-camera-upgrades-and-new-colors/">Matthew Panzarino's speed tests</a></li>
+<li><a href="https://developer.apple.com/metal/">Metal</a></li>
+<li><a href="https://developer.apple.com/library/prerelease/ios/documentation/IDEs/Conceptual/AppDistributionGuide/AppThinning/AppThinning.html#//apple_ref/doc/uid/TP40012582-CH35">App thinning &amp; slicing</a></li></ul></li>
+<li><a href="http://www.apple.com/ipod-nano/">iPod Nano</a>
+<ul><li><a href="http://daringfireball.net/linked/2015/07/15/new-nano">Gruber's take</a></li></ul></li>
+<li><a href="http://www.apple.com/ipod-shuffle/">iPod Shuffle</a></li>
+<li>Post-show:
+<ul><li><a href="https://github.com/marcoarment/fcmodel">FCModel</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Optimistic_concurrency_control">Optimistic locking</a></li>
+<li><a href="https://www.sqlite.org/pragma.html">SQLite PRAGMAs</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use code “ATP” for 10% off your first order.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like. Try Igloo for free.</li>
+</ul>]]></description><itunes:subtitle>New iPods are actually released, sort of, and Marco compares web apps to Visual Basic.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:559ea84ce4b0637f4f7d6fb5</guid><pubDate>Fri, 10 Jul 2015 17:40:05 +0000</pubDate><title>125: A Better Future for Everybody</title><itunes:title>A Better Future for Everybody</itunes:title><itunes:episode>125</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:58:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp125.mp3" length="85288685" type="audio/mpeg"/><link>https://atp.fm/125</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Do SSDs understand the data that they write?</li>
+<li>Honda Fit cameras
+<ul><li><a href="http://www.bmw.com/com/en/newvehicles/x/x5/2010/showroom/comfort/camera_systems.html">BMW Top View camera</a></li></ul></li>
+<li>Classical music on Apple Music</li>
+<li>Origins of "on an infinite timescale", thanks to official show historian <a href="http://www.david-smith.org">_David Smith</a>
+<ul><li><a href="https://overcast.fm/+CdRcwCsQ/43:24">Discussion from last episode</a></li>
+<li><a href="https://overcast.fm/+CdTNIYl0/1:14:33">First usage from #83</a></li>
+<li><a href="https://overcast.fm/+CdRiCt_Q/1:16:53">Concept's introduction</a></li>
+<li><a href="http://arstechnica.com/staff/2005/09/1372/">Copland 2010</a></li></ul></li>
+<li>American radio sucks</li></ul></li>
+<li><a href="http://nolanlawson.com/2015/06/30/safari-is-the-new-ie/">Safari is the new IE</a>
+<ul><li><a href="http://nolanlawson.com/2015/07/05/safari-is-the-new-ie-2-revenge-of-the-linkbait/">Nolan's Follow-Up</a></li>
+<li><a href="http://www.w3.org/">W3C</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Canvas_element"><code>canvas</code></a></li>
+<li><a href="http://hypercritical.co/2013/04/12/code-hard-or-go-home">Code Hard or Go Home</a></li>
+<li><a href="http://css4-selectors.com/browser-selector-test/">CSS4 Selector Test</a>
+<ul><li><a href="https://twitter.com/ryosukeniwa/status/617067505127821312">Current results</a></li></ul></li>
+<li><a href="https://jsfiddle.net/3u68tau4/1/embedded/result/">CSS Spinner Test</a>
+<ul><li><a href="https://twitter.com/aroben/status/618102666791649280">Current results</a></li></ul></li></ul></li>
+<li>Microsoft <a href="https://news.microsoft.com/2015/07/08/microsoft-announces-restructuring-of-phone-hardware-business/">eviscerates their phone business</a>
+<ul><li>The frustrating comedy of business speak</li>
+<li>A brief history of John's feelings about Microsoft</li></ul></li>
+<li>Post-show: the ridiculous comedy of <a href="https://en.wikipedia.org/wiki/Windows_8">Windows 8</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/WebOS">WebOS</a></li>
+<li><a href="http://www.buildwindows.com">Microsoft Build</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>TRIMFORCE</strong> for 10% off your first order.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP</strong> for 15% off.</li>
+</ul>]]></description><itunes:subtitle>On an infinite timescale, is Safari obligated to implement all web standards?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:559676e9e4b040c14b0b0819</guid><pubDate>Fri, 03 Jul 2015 16:18:47 +0000</pubDate><title>124: The Tyranny of Radio</title><itunes:title>The Tyranny of Radio</itunes:title><itunes:episode>124</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:38:30</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp124.mp3" length="71042562" type="audio/mpeg"/><link>https://atp.fm/124</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Bitcode and portability
+<ul><li><a href="http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-October/043719.html">Dan Gohman's mailing list post</a></li>
+<li><a href="https://developer.chrome.com/native-client/nacl-and-pnacl">Google PNaCL</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chris_Lattner">Chris Lattner</a> weighs in: <a href="https://twitter.com/clattner_llvm/status/613906586050826241">1</a> &amp; <a href="https://twitter.com/clattner_llvm/status/613906970890801152">2</a></li></ul></li>
+<li>10.10.4 and <a href="https://goo.gl/NPh9wr">TRIM</a> support
+<ul><li><a href="https://blog.algolia.com/when-solid-state-drives-are-not-that-solid/">Overview</a></li>
+<li><a href="http://arstechnica.com/apple/2015/06/apple-dumps-discoveryd-and-fixes-photos-and-mail-bugs-in-os-x-10-10-4/?comments=1">Ars comment thread</a> </li></ul></li></ul></li>
+<li>Cheap vs. Good vs. Commercial pricing and build qualities</li>
+<li>Apple's use of Samsung SSDs
+<ul><li>The comedy of updating hard drive firmware</li></ul></li>
+<li><a href="http://www.apple.com/music">Apple Music</a>
+<ul><li><a href="http://www.apple.com/music/radio/">Beats 1</a></li>
+<li><a href="http://www.imore.com/apple-music-vs-itunes-match-whats-difference">Serenity Caldwell on Apple Music vs. iTunes Match</a></li>
+<li><a href="https://twitter.com/tapbot_paul/status/615972124537131008">Paul Haddad on how to turn off auto-renewal</a></li>
+<li><a href="http://rvamag.com/articles/full/24692/the-grand-return-mutemath-on-the-sprawling-road-to-their-new-record">MUTEMATH article Casey found</a></li>
+<li><a href="http://www.madmaxmovie.com">Fury Road</a></li></ul></li>
+<li>Post-show:
+<ul><li>The <a href="https://www.youtube.com/watch?v=IJ9DJF1_FrE">Apple TV ad that mentions CONFIG.SYS</a></li>
+<li><a href="http://nolanlawson.com/2015/06/30/safari-is-the-new-ie/">Safari is the new IE</a> will be covered next week</li>
+<li>Florida is hot</li>
+<li><a href="http://www.tsa.gov/tsa-precheck">TSA Pre-Check</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Global_Entry">Global Entry</a></li>
+<li><a href="http://daily.lexfriedman.com">Your Daily Lex</a></li>
+<li><a href="http://turningthiscararound.com">Turning This Car Around</a></li>
+<li>Traveling with infants on airplanes</li>
+<li><a href="http://www.imdb.com/title/tt0091369/?ref_=nv_sr_2">Labyrinth</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B00AZSZYTO/?tag=siracusa-20">This week's toaster</a></li></ul></li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="https://caspersleep.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+</ul>]]></description><itunes:subtitle>Apple Music, Beats 1, and why you may not want to force TRIM on your SSD.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55889cebe4b024895fef1683</guid><pubDate>Wed, 24 Jun 2015 14:05:27 +0000</pubDate><title>123: Imperfect Signaling Mechanism</title><itunes:title>Imperfect Signaling Mechanism</itunes:title><itunes:episode>123</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:26:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp123.mp3" length="62671416" type="audio/mpeg"/><link>https://atp.fm/123</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Bitcode is specific to its originally targeted CPU architecture
+<ul><li>Bruce Hoult <a href="https://twitter.com/BruceHoult/status/611932139500777472">tweet 1</a>, <a href="https://twitter.com/BruceHoult/status/611932434104471552">tweet 2</a></li>
+<li><a href="https://en.wikipedia.org/wiki/C_data_types">C data types</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Endianness">Endianness</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Data_structure_alignment">Data structure alignment</a></li>
+<li><a href="https://twitter.com/stroughtonsmith">Steve Troughton-Smith</a></li>
+<li><a href="http://www.chipworks.com/about-chipworks/overview/blog/inside-the-apple-watch-technical-teardown-blog#Update1">S1 analysis by Chipworks</a></li></ul></li>
+<li>The (un)likelihood of ARM Macs
+<ul><li><a href="https://en.wikipedia.org/wiki/Apple%27s_transition_to_Intel_processors">Apple's transition from PowerPC to Intel CPUs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Skylake_%28microarchitecture%29">Intel Skylake</a></li></ul></li>
+<li>Swift 2 and compiler self-hosting
+<ul><li><a href="http://mono-framework.com/CSharp_Compiler">Mono's compiler history</a></li></ul></li>
+<li><a href="http://recode.net/2015/06/19/oculus-rift-inventor-palmer-luckey-virtual-reality-will-make-distance-irrelevant-qa/">Oculus as "the Palm Pilot of VR"</a></li></ul></li>
+<li>John, his watch, and his nose
+<ul><li><a href="https://twitter.com/imyke/status/593343067681349633">Myke was right again</a></li>
+<li><a href="http://www.marco.org/2015/04/06/life-with-the-iphone-6-plus">Myke was originally right about the iPhone 6 Plus</a></li></ul></li>
+<li>Safari Content Blocking API in iOS 9 and El Capitan
+<ul><li><a href="https://www.webkit.org/blog/3476/content-blockers-first-look/">WebKit Content Blockers</a>
+<ul><li><a href="https://developer.apple.com/videos/wwdc/2015/?id=511">Session video with John and Marco</a></li></ul></li>
+<li><a href="https://developer.apple.com/videos/wwdc/2015/?id=504">Safari View Controller</a> to kill minibrowsers</li>
+<li><a href="https://glimmerblocker.org/">GlimmerBlocker</a></li>
+<li><a href="https://support.google.com/youtube/answer/2531367?hl=en">YouTube ad settings</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Banner_blindness">Ad-banner blindness</a></li>
+<li>The ethics of running ad-blockers</li>
+<li><a href="http://techcrunch.com/2013/07/06/google-and-others-reportedly-pay-adblock-plus-to-show-you-ads-anyway/">AdBlock Plus accepts money</a> from some ad companies whitelisted as <a href="https://adblockplus.org/en/acceptable-ads">Acceptable Ads</a></li>
+<li><a href="https://extensions.apple.com/details/?id=org.siracusafamily.reloadbutton-6STWMHAZC2">John's Reload Button extension for Safari</a></li></ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Trim_(computing">TRIM</a>) on non-Apple SSDs
+<ul><li><a href="http://9to5mac.com/2015/06/12/os-x-ssd-trim-support-el-capitan/">New <code>trimforce</code> command in El Capitan</a></li></ul></li>
+<li>After-show:
+<ul><li>Casey, John, and Marco attempt to modify their houses.</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>LOSTBACKPACK</strong> for 10% off your first purchase.</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>]]></description><itunes:subtitle>Bitcode follow-up, ad-blocking in iOS 9 and El Capitan, and how not to insulate your house.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55840a52e4b038f27c8e4023</guid><pubDate>Fri, 19 Jun 2015 15:43:45 +0000</pubDate><title>122: My Results Were Inconclusive</title><itunes:title>My Results Were Inconclusive</itunes:title><itunes:episode>122</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:42:02</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp122.mp3" length="73591636" type="audio/mpeg"/><link>https://atp.fm/122</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>John <strike data-preserve-html-node="true">loses</strike> leaves his wallet
+<ul><li><a href="https://overcast.fm/+CdQ9OmZ0/2:02:45">John on losing his wallet</a> on <a href="http://atp.fm/121">ATP #121</a></li>
+<li><a href="https://en.wikipedia.org/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy">Hitchhiker's Guide to the Galaxy</a></li>
+<li>Casey's discontinued <a href="https://www.kickstarter.com/projects/1609717477/yubi-wallet-a-new-way-to-wallet">Yubi Wallet</a></li>
+<li>Marco's <a href="http://www.koyono.com/slimmy-minimal-front-pocket-wallet/">Slimmy Wallet</a></li></ul></li>
+<li>Notes.app <a href="https://developer.apple.com/videos/wwdc/2015/?id=710">runs on CloudKit</a></li>
+<li>The <a href="http://www.apple.com/macbook/">MacBook One</a> and <a href="http://www.apple.com/osx/photos/">Photos</a></li>
+<li><a href="http://www.apple.com/ios/ios9-preview/">iOS 9 and QuickType</a>
+<ul><li><a href="http://www.caseyliss.com/2015/6/12/wwdc-reactions">Casey on iOS 9 Picture-In-Picture</a></li></ul></li></ul></li>
+<li>Bitcode
+<ul><li><a href="https://developer.apple.com/videos/wwdc/2015/?id=102">Platforms State of the Union</a></li>
+<li><a href="https://medium.com/@InertialLemon/apple-s-bitcode-telegraphs-future-cpu-plans-a7b90d326228">Change in session description</a> (at the bottom)</li>
+<li><a href="http://arstechnica.com/apple/2014/10/os-x-10-10/21/#swift">John's Swift article</a></li>
+<li><a href="https://twitter.com/siracusa/status/608029277963972608">John's tweet about ARM Macs</a></li>
+<li><a href="http://llvm.org/docs/BitCodeFormat.html">LLVM Bitcode file format</a>
+<ul><li><a href="http://llvm.org/docs/BitCodeFormat.html#encoding-of-llvm-ir">LLVM IR encoding</a></li>
+<li><a href="http://llvm.org/docs/LangRef.html#abstract">LLVM assembly language</a></li></ul></li>
+<li><a href="http://www.marco.org/2012/07/04/app-store-corrupt-binaries">Marco on app signing crashes in 2012</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/Accelerate/Reference/vDSPRef/index.html">vDSP</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/Introduction/Introduction.html">Autolayout</a></li>
+<li><a href="http://oleb.net/blog/2014/08/replacing-launch-images-with-storyboards/">Launch image storyboards</a></li></ul></li>
+<li>Developing for future, especially new screen sizes
+<ul><li><a href="https://developer.apple.com/videos/wwdc/2015/?id=209">ClockKit Complications session</a></li></ul></li>
+<li><a href="https://developer.apple.com/swift/blog/?id=29">Swift 2</a> and Swift for Linux
+<ul><li><a href="https://nodejs.org">Node.js</a></li>
+<li><a href="http://www.amazon.com/dp/B00A2HD40E/?tag=siracusa-20">Pandemic</a></li>
+<li><a href="http://www.512pixels.net/blog/2014/01/apple-boilerplate">PR release footers</a></li>
+<li><a href="https://www.python.org">Python</a></li>
+<li><a href="http://www.java.com">Java</a></li>
+<li><a href="https://golang.org">Go</a></li>
+<li><a href="http://www.rust-lang.org">Rust</a></li>
+<li><a href="http://webonastick.com/php.html">PHP</a></li>
+<li><a href="http://developer.getpebble.com/sdk/">Pebble SDK</a></li>
+<li><a href="https://en.wikipedia.org/wiki/WebObjects">WebObjects</a></li></ul></li>
+<li><a href="https://developer.apple.com/videos/wwdc/2015/?id=408">Protocol-Oriented Programming at WWDC</a>
+<ul><li><a href="http://www.amazon.com/dp/0201633612/?tag=siracusa-20">Gang of Four Design Patterns</a></li>
+<li><a href="http://www.es6js.com">Javascript ES6</a></li>
+<li><a href="https://msdn.microsoft.com/en-us/library/bb383977.aspx">C# extension methods</a></li>
+<li><a href="https://www.ruby-lang.org">Ruby</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Mixin">Mixin</a></li></ul></li></ul></li>
+<li>The future of Swift, and when to dive in
+<ul><li><a href="http://5by5.tv/buildanalyze">Build &amp; Analyze</a></li>
+<li><a href="http://www.caseyliss.com/">Casey's Website</a></li></ul></li>
+<li>Post-Show:
+<ul><li>Language wonks</li>
+<li>When do you adopt a new language?</li>
+<li>Signs that point to Swift
+<ul><li><a href="https://en.wikipedia.org/wiki/Automatic_Reference_Counting">ARC</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Build it beautiful. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Bitcode, Swift 2, and slim wallets.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55771239e4b08f7978117891</guid><pubDate>Tue, 09 Jun 2015 16:26:45 +0000</pubDate><title>121: Admitted No Wrongdoing</title><itunes:title>Admitted No Wrongdoing</itunes:title><itunes:episode>121</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp121.mp3" length="90537164" type="audio/mpeg"/><link>https://atp.fm/121</link><description><![CDATA[<p>Our WWDC 2015 special, <a href="https://twitter.com/caseyliss/status/608062197793734658">live</a> in <a href="https://twitter.com/marcoarment/status/608068054816161792">person</a> from a hotel room in San Francisco:</p>
+
+<ul>
+<li>The keynote presentation</li>
+<li>Mac OS X 10.11 El Capitan
+<ul><li>Natural-language search</li>
+<li>Window management</li></ul></li>
+<li>iOS 9</li>
+<li>iPad enhancements:
+<ul><li>Keyboard navigation gestures</li>
+<li>Side-by-side apps</li>
+<li>Will these revive iPad sales growth?</li></ul></li>
+<li>New Notes app
+<ul><li><a href="http://www.foldingtext.com/">Folding Text</a> is the app Marco couldn't remember the name of</li></ul></li>
+<li>Apple <strike data-preserve-html-node="true">Instant Articles</strike> News app
+<ul><li><a href="https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/News_Publishing_Guide/FAQ.html">Publisher FAQ</a></li></ul></li>
+<li>Swift going open-source</li>
+<li>watchOS 2.0
+<ul><li>Third-party complications</li>
+<li>Initial thoughts on the native API</li></ul></li>
+<li>Post-show:
+<ul><li>Apple Music announcement</li>
+<li>John's <a href="https://twitter.com/caseyliss/status/608093217389604864">Costanza wallet</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B00CXVX8DK?tag=siracusa-20">This week's toaster</a></li></ul></li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+</ul>]]></description><itunes:subtitle>Our WWDC 2015 special from San Francisco.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55719363e4b01ef431bee30d</guid><pubDate>Fri, 05 Jun 2015 18:10:48 +0000</pubDate><title>120: One Magical Wire</title><itunes:title>One Magical Wire</itunes:title><itunes:episode>120</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp120.mp3" length="91727764" type="audio/mpeg"/><link>https://atp.fm/120</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li><a href="https://www.youtube.com/watch?v=dFzhjnjXc2o">Weebles Wobble</a></li>
+<li><a href="https://twitter.com/caseyliss/status/606268866231193601">Casey's temporary setup to mess with John</a></li></ul></li>
+<li>John starts two new podcasts:
+<ul><li><a href="http://relay.fm/rd/">Reconcilable Differences</a> with <a href="http://www.merlinmann.com/">Merlin Mann</a></li>
+<li><a href="https://www.theincomparable.com/robot/">Robot or Not</a> with <a href="http://www.sixcolors.com/">Jason Snell</a></li></ul></li>
+<li>Follow-up:
+<ul><li>Apple Watch distance &amp; step count accuracy
+<ul><li><a href="https://support.apple.com/en-us/HT204516">Apple Support Document</a></li></ul></li>
+<li>Jony Ive's promotion
+<ul><li><a href="https://en.wikipedia.org/wiki/Collateralized_debt_obligation">Collateralized debt obligation</a></li>
+<li><a href="http://daringfireball.net/2015/05/jony_ive_promotion_chief_design_officer">John Gruber at Daring Fireball</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chris_Bangle#Design_philosophy">Chris Bangle</a></li></ul></li>
+<li>Jeff Williams is <a href="http://www.apple.com/pr/bios/jeff-williams.html">Senior Vice President, Operations</a></li></ul></li>
+<li><a href="http://www.google.com/photos/about/">Google Photos</a>
+<ul><li><a href="http://relay.fm/connected">Connected</a></li>
+<li><a href="https://twitter.com/rustyshelf/status/604415109104971776">Russell Ivanovic's interesting search results</a></li>
+<li><a href="http://www.amazon.com/dp/B001G5ZTLS/?tag=marcoorg-20">Canon 5D Mark II</a></li>
+<li><a href="http://www.samsung.com/us/explore/galaxy-s-6-features-and-specs/#camera">Samsung Galaxy S6 camera</a></li>
+<li><a href="http://www.apple.com/iphone-6/cameras/#isight-gallery-5">iPhone 6 Camera</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Image_stabilization">Optical image stabilization</a>
+<ul><li><a href="http://www.dpreview.com/reviews/olympus-om-d-e-m5-ii/4">Olympus OM-D E-M5 II's 40-megapixel multi-shot mode</a></li></ul></li>
+<li><a href="https://picturelife.com/home?love=liss">Picturelife</a></li></ul></li>
+<li>Photos.app performance and using it with a keyboard</li>
+<li><a href="http://arstechnica.co.uk/gadgets/2015/06/thunderbolt-3-embraces-usb-type-c-connector-doubles-bandwidth-to-40gbps/">Thunderbolt 3</a> and USB-C
+<ul><li><a href="http://www.intel.com/content/dam/www/public/us/en/documents/product-briefs/thunderbolt-overview-brief.pdf">Intel product overview</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SCSI">SCSI</a></li></ul></li>
+<li><a href="http://developer.apple.com/wwdc">WWDC</a> predictions
+<ul><li><a href="http://www.nytimes.com/2015/06/05/technology/apple-to-unveil-tool-kit-for-watch-app-developers.html">New York Times claims no Apple TV</a></li>
+<li><a href="http://www.amazon.com/dp/B00GDQ0RMG/?tag=liismo-20">Amazon Fire TV Stick</a></li>
+<li><a href="http://plex.tv/">Plex</a></li>
+<li><a href="https://www.myuv.com">Ultraviolet</a></li>
+<li><a href="https://github.com/donmelton/video_transcoding">Don Melton's scripts</a></li>
+<li><a href="http://www.imdb.com/title/tt0105435/?ref_=fn_al_tt_1">Sneakers</a></li>
+<li><a href="http://www.imdb.com/title/tt0086567/?ref_=fn_al_tt_1">WarGames</a></li>
+<li><a href="http://www.nytimes.com/2015/06/05/technology/apple-to-unveil-tool-kit-for-watch-app-developers.html?_r=0">WatchKit SDK semi-announced</a></li>
+<li><a href="http://arstechnica.com/apple/2005/04/macosx-10-4/5/">John on <code>launchd</code></a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/Introduction/Introduction.html">Auto Layout</a></li>
+<li><a href="https://developer.apple.com/library/ios/recipes/xcode_help-IB_adaptive_sizes/chapters/AboutAdaptiveSizeDesign.html">Size Classes</a></li>
+<li>Today's <a href="https://developer.apple.com/library/prerelease/ios/documentation/WatchKit/Reference/WKInterfaceController_class/index.html#//apple_ref/occ/instm/WKInterfaceController/addMenuItemWithItemIcon:title:action:">Force Touch API</a></li>
+<li><a href="http://pedometerplusplus.com">Pedometer++</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_M7">Apple M7</a></li>
+<li><a href="http://www.studioneat.com/products/cosmonaut">Cosmonaut</a></li></ul></li>
+<li>Post-show:
+<ul><li>John has thoughts about <a href="http://www.kraftrecipes.com/velveeta.aspx">Velveeta</a> versus <a href="http://www.kraftmacandcheese.com">Kraft</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Olestra">Olestra</a></li></ul></li>
+<li>The relative advantages and disadvantages of fruit (<a href="https://en.wikipedia.org/wiki/Bosc_pear">Bosc pears</a> are the best pears)</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://www.studioneat.com/atp">Studio Neat</a>: Simple products that solve problems. Great gifts for graduations and Father's Day! Use coupon <strong>ATP</strong> for 10% off.
+<ul><li><a href="http://www.marco.org/2012/07/30/iced-coffee-with-aeropress">Marco's AeroPress Iced Coffee Recipe</a></li>
+<li><a href="http://www.caseyliss.com/2014/7/25/neat-ice-kit">Casey's review of the Neat Ice Kit</a></li>
+<li><a href="http://www.studioneat.com/blogs/main/16157564-how-we-made-the-simple-syrup-kit-video">Simple Syrup Kit behind the scenes</a></li></ul></li>
+</ul>]]></description><itunes:subtitle>Google Photos, Thunderbolt 3 over USB-C, WWDC predictions, and pears.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55685d8fe4b07fdc8c075b28</guid><pubDate>Fri, 29 May 2015 19:20:52 +0000</pubDate><title>119: Promoretired</title><itunes:title>Promoretired</itunes:title><itunes:episode>119</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:39:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp119.mp3" length="71915619" type="audio/mpeg"/><link>https://atp.fm/119</link><description><![CDATA[<p>This week we're joined by friend of the show <a href="https://twitter.com/film_girl">Christina Warren (@film_girl)</a>. Christina <a href="http://mashable.com/people/christina/">writes for Mashable</a> and hosts <a href="http://relay.fm/rocket/">Rocket</a> and <a href="http://esn.fm/overtired">Overtired</a>.</p>
+
+<p>As a part of this podcast exchange program, John joined <a href="http://relay.fm/rocket">Rocket</a> for <a href="http://relay.fm/rocket/20">this week's episode</a>.</p>
+
+<ul>
+<li>Pre-show:
+<ul><li><a href="http://www.amazon.com/dp/B00CPP8Z1O/?tag=liismo-20">Casey's new mug</a> thanks to <a href="https://twitter.com/_davidsmith">@_DavidSmith</a></li></ul></li>
+<li>Follow-Up:
+<ul><li><a href="http://www.caseyliss.com/showbot">Showbot</a> woes
+<ul><li><a href="http://www.caseyliss.com/2015/5/7/heroku-neuters-free-tier">Heroku's pricing changes</a></li></ul></li>
+<li>Erin's MacBook Air
+<ul><li><a href="http://store.apple.com/us/product/S4575LL/A/applecare-for-iphone">AppleCare+</a></li></ul></li>
+<li><a href="http://www.amazon.com/dp/B00CRB53CU/?tag=christinacom-20">Synology DS1813+</a></li>
+<li>Apple Watch accuracy whilst running</li></ul></li>
+<li>Acquiring media
+<ul><li><a href="https://sonarr.tv">Sonarr</a></li>
+<li><a href="http://plex.tv/">Plex</a></li>
+<li><a href="http://popcorntime.io">Popcorntime</a></li>
+<li><a href="http://www.eonline.com/shows/kardashians">Keeping up with the Kardashians</a></li>
+<li><a href="https://order.hbonow.com">HBO Now</a> versus <a href="http://www.hbogo.com">HBO Go</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/The_Larry_Sanders_Show">Larry Sanders Show</a></li>
+<li><a href="http://www.hbo.com/oz/">Oz</a></li>
+<li><a href="http://www.hbo.com/the-wire">The Wire</a></li>
+<li><a href="http://www.hbo.com/sex-and-the-city">Sex and the City</a></li>
+<li><a href="http://www.hbo.com/the-sopranos">The Sopranos</a></li>
+<li><a href="http://www.hbo.com/big-love">Big Love</a></li>
+<li><a href="http://www.hbo.com/game-of-thrones">Game of Thrones</a></li>
+<li><a href="http://www.hbo.com/girls">Girls</a></li>
+<li><a href="http://www.hbo.com/veep">Veep</a></li></ul></li></ul></li>
+<li><a href="https://getpebble.com/pebble_time">Pebble Time</a> versus the Apple Watch
+<ul><li><a href="http://mashable.com/2015/05/27/pebble-time-review/">Christina's Pebble Time review</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch/stainless-steel-case-black-classic-buckle/">Christina's Watch</a></li>
+<li><a href="http://store.apple.com/us/product/MJY82/38mm-black-modern-buckle-medium">Modern Buckle</a></li></ul></li>
+<li><a href="http://techcrunch.com/2015/05/27/apples-jeff-williams-says-native-watch-sdk-will-give-direct-access-to-sensors/">Apple Watch native SDK</a>
+<ul><li><a href="http://www.marco.org/2015/05/28/watch-sdk-questions">Marco's post on SDK questions</a></li>
+<li><a href="http://www.caseyliss.com/2015/4/27/complicated">Casey's post on complications</a></li>
+<li><a href="http://weatherlineapp.com/">Weather Line</a></li>
+<li>Glances
+<ul><li>Casey:
+<ul><li>Settings</li>
+<li>Battery</li>
+<li><a href="http://www.tripit.com/">TripIt</a></li>
+<li><a href="http://www.darkskyapp.com/">Dark Sky</a></li>
+<li><a href="http://developer.apple.com/wwdc/">WWDC</a></li></ul></li>
+<li>Christina:
+<ul><li><a href="https://citymapper.com">CityMapper</a></li>
+<li>Battery</li>
+<li>Heart Rate</li>
+<li><a href="http://overcast.fm/">Overcast</a></li>
+<li><a href="http://www.tripit.com/">TripIt</a></li>
+<li><a href="http://www.authy.com/">Authy</a></li></ul></li>
+<li>Marco:
+<ul><li>Settings</li>
+<li>Now Playing</li>
+<li><a href="http://overcast.fm/">Overcast</a></li>
+<li>Activity</li></ul></li></ul></li></ul></li>
+<li><a href="http://www.telegraph.co.uk/technology/apple/11628710/When-Stephen-Fry-met-Jony-Ive-the-self-confessed-fanboi-meets-Apples-newly-promoted-chief-design-officer.html">Jony Ive's promotion</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Stephen_Fry">Stephen Fry</a></li>
+<li><a href="http://www.newyorker.com/magazine/2015/02/23/shape-things-come">New Yorker profile of Jony Ive</a></li>
+<li><a href="https://twitter.com/reneritchie/status/603247019851911168">Rene Ritchie's tweet</a></li>
+<li><a href="http://thenextweb.com/apple/2015/05/26/how-alan-dye-went-from-iphone-box-designer-to-apples-head-of-ui/">The Next Web on Alan Dye</a></li>
+<li><a href="http://9to5mac.com/2015/05/25/jony-ives-leaving-apple/">9to5 Mac's take</a></li>
+<li><a href="https://stratechery.com/2015/jony-ive-promoted-the-implications-of-not-managing-what-about-apple/">Ben Thompson's take</a></li></ul></li>
+<li><a href="http://www.ew.com/article/2015/05/26/taylor-swift-forbes-powerful-women-beyonce-oprah-winfrey">Taylor Swift</a>
+<ul><li><a href="https://twitter.com/swiftonsecurity">InfoSec Taylor Swift</a></li></ul></li>
+<li><a href="http://en.wikipedia.org/wiki/Fight_Club_2">Fight Club 2</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Chuck_Palahniuk">Chuck Palahniuk</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Invisible_Monsters">Invisible Monsters</a></li>
+<li><a href="https://en.wikipedia.org/wiki/B._J._Novak">B.J. Novak</a></li>
+<li><a href="http://www.darkhorse.com">Dark Horse</a></li></ul></li>
+<li>Post-show culinary discussion:
+<ul><li>Chili
+<ul><li><a href="https://en.wikipedia.org/wiki/Cincinnati_chili">Cincinnati chili</a> (e.g. <a href="https://en.wikipedia.org/wiki/Skyline_Chili">Skyline</a>)</li>
+<li><a href="http://www.amys.com/products/product-detail/beans-and-chili/000530">Amy's canned chili</a></li></ul></li>
+<li><a href="http://www.oscarmayer.com/bacon#turkey-bacon">Turkey bacon</a></li>
+<li>Ranch dressing</li>
+<li>Mac and cheese
+<ul><li><a href="http://www.kraftrecipes.com/velveeta/products/velveeta-shells-cheese.aspx">Velveeta</a>
+<ul><li><a href="http://www.relay.fm/analogue/29">On Analog(ue)</a></li></ul></li>
+<li><a href="http://www.kraftmacandcheese.com">Kraft</a>
+<ul><li><a href="https://www.youtube.com/watch?v=LHacDYj8KZM">Barenaked Ladies</a></li></ul></li>
+<li><a href="http://www.annies.com/products/mac-cheese">Annie's</a></li></ul></li>
+<li>Nostalgia:
+<ul><li>Marco: <a href="http://www.steaknshake.com">Steak 'n Shake</a> <a href="http://www.steaknshake.com/menu/lunch-dinner/classic-melts/frisco-melt-n-fries">Frisco Melt</a></li>
+<li>Christina:
+<ul><li><a href="http://www.redlobster.com">Red Lobster</a></li>
+<li><a href="http://www.sonicdrivein.com/">Sonic Drive-In</a></li>
+<li><a href="http://www.chick-fil-a.com">Chick Fil A</a></li>
+<li><a href="http://www.arbys.com/">Arby's</a></li>
+<li><a href="http://www.dairyqueen.com/">Dairy Queen</a></li></ul></li>
+<li>Casey
+<ul><li><a href="http://johnsbrickovenpizza.com">John's of Bleecker Street</a></li></ul></li></ul></li>
+<li><a href="https://postmates.com">Postmates</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="https://www.backblaze.com/atp.html">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off your first order. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+</ul>]]></description><itunes:subtitle>Christina Warren joins us to discuss Pebble Time, the Apple Watch native SDK, and Jony Ive’s promotion.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:555e2b01e4b0e15bc3f322c4</guid><pubDate>Fri, 22 May 2015 02:50:58 +0000</pubDate><title>118: A Fistful of Apple Watches</title><itunes:title>A Fistful of Apple Watches</itunes:title><itunes:episode>118</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:55:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp118.mp3" length="83425560" type="audio/mpeg"/><link>https://atp.fm/118</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Running with Apple Watch – <a href="https://twitter.com/cpickslay/status/599254520728682497">what if you hurt yourself?</a></li>
+<li>Major Indian retailer <a href="http://www.flipkart.com/">Flipkart</a> <a href="http://articles.economictimes.indiatimes.com/2015-04-20/news/61339408_1_flipkart-myntra-retail-and-head">is going app-only</a> (via <a href="https://twitter.com/voldyman/status/599069936015642624">@voldyman</a>)
+<ul><li>When do apps make sense? When does the web?</li>
+<li><a href="http://www.cultofmac.com/128883/hands-on-apples-new-easypay-makes-shopping-way-too-easy/">Apple Store EasyPay</a></li></ul></li>
+<li><a href="http://www.cosmodrome.org/">Cosmodrome</a> by <a href="https://twitter.com/spacekatgal">Brianna Wu</a></li></ul></li>
+<li>RSS vs. blog Twitter accounts
+<ul><li><a href="https://twitter.com/hypercritical">Hypercritical</a></li>
+<li><a href="https://twitter.com/marco_org">Marco.org</a></li>
+<li><a href="https://twitter.com/caseylisscom">Liss is More</a></li></ul></li>
+<li><a href="http://www.macstories.net/news/apple-releases-watch-os-1-0-1/">WatchOS 1.0.1</a></li>
+<li><a href="http://developer.apple.com/wwdc">WWDC</a>
+<ul><li><a href="http://appcamp4girls.com">App Camp for Girls</a> <a href="https://www.eventbrite.com/e/app-camp-for-girls-fundraising-happy-hour-hosted-by-wwdcgirls-tickets-17007280233">Happy Hour</a> –&nbsp;meet us there!</li>
+<li><a href="http://releasenotes.tv/105-our-annual-wwdc-tips/">Release Notes #105</a></li>
+<li><a href="http://www.bringyourlayers.com/">Layers</a></li>
+<li><a href="http://altconf.com/">altConf</a></li>
+<li>Hotels
+<ul><li><a href="http://www.parc55hotel.com/">Parc55</a></li>
+<li><a href="http://www.thepickwickhotel.com/">Pickwick</a></li>
+<li><a href="http://www.themosser.com/">Mosser</a></li></ul></li></ul></li>
+<li><a href="http://www.512pixels.net/blog/2015/5/apple-updates-15-inch-macbook-pro-and-imac-5k">New Retina MacBook Pro</a>
+<ul><li><a href="http://barefeats.com/hard199.html">Barefeats benchmark</a></li>
+<li><a href="http://www.apple.com/macbook-pro/specs-retina/">Battery life specs</a></li>
+<li><a href="https://twitter.com/klausa_qwpx/status/600662580043116544">Details</a></li></ul></li>
+<li><a href="http://www.marco.org/2015/05/19/mistake-one">Mistake One</a> with the <a href="http://www.apple.com/macbook">new MacBook</a>
+<ul><li><a href="http://www.joecieplinski.com/blog/2015/05/20/laptop-preferences/">Joe Cieplinski's response</a></li>
+<li><a href="http://www.marco.org/2015/02/26/matis-ergo-pro-review">Marco's Matis Ergo Pro Review</a></li>
+<li><a href="http://www.marco.org/2013/08/30/sculpt-ergonomic-keyboard-review">Marco's Sculpt Ergonomic Keyboard Review</a></li></ul></li>
+<li>Post-show: Casey gets angry at himself. Very angry. Really angry. <a href="http://atp.fm/episodes/45-give-up-on-the-retina-dream">Mac Pro episode</a> kind of angry.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.bushel.com/atp">Bushel</a>: Simple Apple device management and protection for your workplace. Designed to make the complex tasks simple so you can focus on your business.</li>
+<li><a href="http://www.getharvest.com/">Harvest</a>: Simple, beautiful online time-tracking software. Use code <strong>ATP</strong> for 50% off your first month.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off your first order. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+</ul>]]></description><itunes:subtitle>Shopping in apps vs. websites, WWDC hotels, and MacBooks. Lots of MacBooks.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5554d865e4b0fabb614acf06</guid><pubDate>Thu, 14 May 2015 20:34:20 +0000</pubDate><title>117: You Don't Have the Antibodies</title><itunes:title>You Don't Have the Antibodies</itunes:title><itunes:episode>117</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp117.mp3" length="86011421" type="audio/mpeg"/><link>https://atp.fm/117</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Inclusivity
+<ul><li>Twitter Accounts
+<ul><li><a href="https://twitter.com/everydaysexism">Everyday Sexism</a></li>
+<li><a href="https://twitter.com/spacekatgal">Brianna Wu</a></li>
+<li><a href="https://twitter.com/leighalexander">Leigh Alexander</a></li>
+<li><a href="https://twitter.com/femfreq">Feminist Frequency</a></li>
+<li><a href="https://twitter.com/film_girl">Christina Warren</a></li></ul></li>
+<li>Podcasts
+<ul><li><a href="http://relay.fm/rocket">Rocket</a></li>
+<li><a href="http://www.imore.com/vector">Vector</a></li>
+<li><a href="http://www.imore.com/category/podcast">iMore Podcast</a></li>
+<li><a href="http://relay.fm/clockwise">Clockwise</a></li></ul></li></ul></li>
+<li><a href="https://docs.google.com/spreadsheets/d/1MfYoJkiwSqCXg8cm5-Ac4oOLPRtCkgUxU0jdj3tmMPc/">Plex and Network Attached Storage</a></li>
+<li><a href="https://support.apple.com/en-gb/HT202321">iPhoto and Time Machine</a></li></ul></li>
+<li>Watches replacing phones</li>
+<li>Mac App Store
+<ul><li><a href="http://blog.soff.es/redacted-for-mac-launch/">Sam Soffes' blog post</a>
+<ul><li><a href="https://developer.apple.com/app-sandboxing/">App sandboxing</a></li></ul></li></ul></li>
+<li>Tyranny of the handbag
+<ul><li><a href="https://twitter.com/hverlind/status/592249808972288000">Apple Watch accuracy during exercise without iPhone</a></li>
+<li><a href="https://buy.garmin.com/en-US/US/wearables/running/c10002-atFILTER_USERPROFILE_RUNNING_01-p1.html">Garmin GPS Watches</a></li>
+<li><a href="http://pedometerplusplus.com">Pedometer++</a></li>
+<li><a href="http://gmap-pedometer.com/">Google Maps Pedometer</a></li></ul></li>
+<li>Casey gets an Apple Watch</li>
+<li><a href="http://media.fb.com/2015/05/12/instantarticles/">Facebook Instant Articles</a>
+<ul><li><a href="https://stratechery.com/2015/verizon-aol-facebook-instant-articles-and-the-future-of-digital-advertising/">Ben Thompson</a></li>
+<li><a href="https://twitter.com/mattjroper/status/598491031215198208">Speed comparison video</a></li>
+<li><a href="http://www.marco.org/2015/02/16/google-and-blogs-shit">Marco on declining web relevance</a></li></ul></li>
+<li><a href="http://www.wsj.com/articles/verizon-to-buy-aol-for-4-4-billion-1431428458">Verizon buying AOL</a></li>
+<li>Post-show:
+<ul><li><a href="http://overcast.fm/">Overcast</a> streaming engine
+<ul><li><a href="https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVPlayer_Class/index.html"><code>AVPlayer</code></a></li>
+<li><a href="http://www.doradasoftware.com/rssradio/">RSS Radio</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off your first purchase.</li>
+<li><a href="http://www.cardsagainsthumanity.com/">Cards Against Humanity</a>
+<ul><li><a href="http://www.amazon.com/dp/B004JMZGM2/?tag=siracusa-20">This week's toaster</a></li>
+<li><a href="http://www.amazon.com/dp/B00357YS3A?tag=siracusa-20">John's main toaster</a></li>
+<li><a href="http://www.amazon.com/dp/B00FN3MV88/?tag=siracusa-20">Black &amp; Decker "Three-Knob"</a></li>
+<li><a href="https://www.youtube.com/user/KnobFeel">Knob Feel on YouTube</a></li></ul></li>
+</ul>]]></description><itunes:subtitle>Women-listeners followup, Mac App Store woes, watches and handbags, and Facebook Instant Articles.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:554caec5e4b0dd80a87be6b3</guid><pubDate>Fri, 08 May 2015 16:40:48 +0000</pubDate><title>116: Women Aren't a Minority</title><itunes:title>Women Aren't a Minority</itunes:title><itunes:episode>116</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp116.mp3" length="87376502" type="audio/mpeg"/><link>https://atp.fm/116</link><description><![CDATA[<ul>
+<li>Pre-show: Marco defends his backyard duck from raccoons</li>
+<li>Follow-up:
+<ul><li>HFS+ and Network Attached Storage
+<ul><li>The Synology we use is the DS1813+, but the <a href="http://www.amazon.com/dp/B00P3RPMEO/?tag=liismo-20">DS1815+</a> is the modern version</li>
+<li><a href="http://www.amazon.com/dp/B00FWUQNDQ/?tag=liismo-20">DS214play</a></li></ul></li>
+<li>Photos.app
+<ul><li>Saving and transferring edits between photo apps</li>
+<li>Flickr gives 1 TB free (via <a href="https://twitter.com/VJGoh/status/594231661828669442">@VJGoh</a>)</li>
+<li>Disabling iCloud Photo Library <a href="https://twitter.com/stooovie/status/595182128729587712">1</a> &amp; <a href="https://twitter.com/stooovie/status/595182537741307904">2</a></li></ul></li>
+<li><a href="http://www.soma-zone.com/LaunchControl/">LaunchControl</a> for managing <a href="https://en.wikipedia.org/wiki/Launchd"><code>launchd</code></a> jobs</li>
+<li>Microsoft, iOS, Swift (via <a href="https://twitter.com/esusatyo/status/594674440086032385">@esusatyo</a>)
+<ul><li><a href="http://www.windowscentral.com/microsoft-also-working-towards-swift-compiler-ios-developers-come-windows-10">Swift is being worked on</a></li>
+<li><a href="http://channel9.msdn.com/Events/Build/2015/3-610">Presentation video</a></li></ul></li>
+<li><a href="https://twitter.com/evanhindra/status/596123786677723136">Marco versus the raccoons, illustrated</a></li></ul></li>
+<li>How do we encourage more women to listen to ATP?
+<ul><li><a href="https://twitter.com/siracusa/status/591695829611782145">John's tweet</a></li>
+<li><a href="http://www.relay.fm/rocket">Rocket</a></li>
+<li><a href="http://appcamp4girls.com/">App Camp for Girls</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Gamergate_controversy">GamerGate</a></li>
+<li><a href="http://www.jwz.org/blog/">JWZ</a>
+<ul><li>Example <a href="http://www.jwz.org/blog/2015/04/photo-booth/">1</a> &amp; <a href="http://www.jwz.org/blog/2015/05/git-and-backups/">2</a></li></ul></li></ul></li>
+<li><a href="http://www.marco.org/2015/05/08/overcast-apple-watch-redesign">Overcast changes for Apple Watch</a>
+<ul><li>Are watches destined to replace smartphones?</li></ul></li>
+<li>What were the first iPhone apps we downloaded?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://createglide.com/ATP">Glide</a>: Beautifully simple, professional app creation. Preorder now on Kickstarter.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>GLASSHALFEMPTY</strong> for 10% off.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off your first order. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+</ul>]]></description><itunes:subtitle>What can we do to get more women and girls to listen to the show?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:554288bde4b0e823da21a8a8</guid><pubDate>Fri, 01 May 2015 18:53:36 +0000</pubDate><title>115: Empathy for the Machine</title><itunes:title>Empathy for the Machine</itunes:title><itunes:episode>115</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp115.mp3" length="78870245" type="audio/mpeg"/><link>https://atp.fm/115</link><description><![CDATA[<ul>
+<li><a href="http://atp.fm/shirt">ATP Shirt</a>: <strong>Last chance, buy now! Available until Wednesday, 6 May.</strong></li>
+<li>Pre-show:
+<ul><li><a href="https://itunes.apple.com/us/app/nekoatsume/id923917775?mt=8">Neko Atsume</a> (<a href="http://kotaku.com/the-japanese-cat-game-we-can-t-stop-playing-1701250319">"the cat game"</a>)</li></ul></li>
+<li>Follow-up:
+<ul><li>Bad Seagate hard drives</li>
+<li><a href="http://computer.howstuffworks.com/hard-disk.htm">How Hard Disks Work</a> (<a href="http://computer.howstuffworks.com/hard-disk6.htm">page 7</a>)</li>
+<li>The MacBook Air survives... for now!
+<ul><li><a href="https://en.wikipedia.org/wiki/Launchd">launchd</a></li>
+<li><a href="http://launched.zerowidth.com/">launchd plist generator</a></li>
+<li><a href="https://www.peterborgapps.com/lingon/">Lingon</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Cron">cron</a></li></ul></li>
+<li>Photos
+<ul><li>Background processes
+<ul><li><a href="http://bjango.com/mac/istatmenus/">iStat Menus</a></li></ul></li>
+<li>Hard links
+<ul><li><a href="http://arstechnica.com/apple/2007/10/28/mac-os-x-10-5/14/#symlinks-and-hard-links">John on symbolic and hard links in his Leopard review</a></li></ul></li>
+<li>Shared album photo limit (via <a href="https://twitter.com/TheMasterGoblin/status/592176421490954240">Lance Hildebrand</a>)</li>
+<li>Performance
+<ul><li><a href="https://twitter.com/muchospanish/status/591770443394195456">Mucho Spanish</a></li>
+<li><a href="https://twitter.com/willhains/status/592182315683418113">Will Hains</a></li></ul></li>
+<li>Deleted photos</li>
+<li>Restoring from backups
+<ul><li><a href="https://support.apple.com/en-us/HT204570">Deletion instructions</a></li></ul></li></ul></li></ul></li>
+<li>Apple Watch, one week in
+<ul><li><a href="https://twitter.com/soldni/status/592721017145004034">Luca's wrist</a></li>
+<li><a href="http://store.apple.com/us/watch/bands">Apple Watch bands</a></li>
+<li><a href="http://www.wsj.com/articles/apple-watch-faulty-taptic-engine-slows-roll-out-1430339460">WSJ on Taptic Engine manufacturing issue</a></li>
+<li><a href="https://twitter.com/settern/status/592362575771217923">Serenity Caldwell's tweet</a></li>
+<li>Complications
+<ul><li><a href="http://sixcolors.com/post/2015/04/apple-watch-weekend-my-initial-reactions/">Jason Snell's take</a></li>
+<li><a href="http://www.caseyliss.com/2015/4/27/complicated">Casey's take</a></li></ul></li>
+<li>Repairability
+<ul><li><a href="https://www.ifixit.com/Teardown/Apple+Watch+Teardown/40655">iFixIt's teardown</a></li>
+<li><a href="https://www.ifixit.com/Teardown/Retina+Macbook+2015+Teardown/39841">MacBook teardown</a></li></ul></li></ul></li>
+<li><a href="http://www.buildwindows.com">Microsoft Build</a>
+<ul><li><a href="http://code.visualstudio.com/">Visual Studio Code</a>
+<ul><li><a href="https://atom.io">Atom</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Intelligent_code_completion#IntelliSense">IntelliSense</a></li>
+<li><a href="http://eclipse.org">Eclipse</a></li>
+<li><a href="https://code.visualstudio.com/Docs/nodejs">Visual Studio Code Node support</a></li>
+<li><a href="http://www.mono-project.com">Mono</a></li>
+<li><a href="http://brew.sh">Homebrew</a></li>
+<li><a href="https://twitter.com/chrisdias/status/593480813729185792">Chris Dias</a></li>
+<li><a href="http://www.caseyliss.com/2015/3/2/node-inspector">Casey on <code>node-inspector</code></a></li>
+<li><a href="https://code.visualstudio.com/Docs/editingevolved">PHP syntax highlighting</a></li>
+<li><a href="https://twitter.com/gruber/status/593509392789610498">Gruber on Markdown support</a></li>
+<li><a href="https://github.com/atom/electron">Electron</a></li></ul></li>
+<li><a href="http://arstechnica.com/information-technology/2015/04/29/microsoft-brings-android-ios-apps-to-windows-10/">Project Astoria &amp; Project Islandwood</a>
+<ul><li><a href="http://goo.gl/eGwXdf">WINE</a></li>
+<li><a href="http://goo.gl/0zzLpo">Dalvik</a></li>
+<li><a href="http://www.gnu.org/software/gnustep/">GNUStep</a></li>
+<li><a href="http://www.microsoft.com/microsoft-band/en-us">Microsoft Band</a></li>
+<li><a href="http://channel9.msdn.com/Events/Build/2015/3-610">Session video</a> (posted after this episode was recorded)</li></ul></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://www.relay.fm/connected/37">Connected</a> follow-out</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="https://caspersleep.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="https://www.backblaze.com/atp.html">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Photos follow-up, Apple Watch impressions, and this week's Microsoft Build announcements.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:553951f2e4b02fb01259599f</guid><pubDate>Fri, 24 Apr 2015 19:01:54 +0000</pubDate><title>114: So Far, So OK</title><itunes:title>So Far, So OK</itunes:title><itunes:episode>114</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp114.mp3" length="84148742" type="audio/mpeg"/><link>https://atp.fm/114</link><description><![CDATA[<ul>
+<li><a href="http://atp.fm/shirt">ATP T-Shirts</a> available until Wednesday, 6 May!</li>
+<li>Follow-up:
+<ul><li>Natural disasters, Thailand, and hard drives
+<ul><li><a href="https://www.synology.com/">Synology</a> hard drive redundancy strategies</li>
+<li><a href="http://forum.synology.com/wiki/index.php/What_is_Synology_Hybrid_RAID%3F">Synology Hybrid Raid</a></li>
+<li><a href="http://www.amazon.com/dp/B00CRB53CU/?tag=liismo-20">Synology DS1814+</a> (our Synology)</li></ul></li>
+<li>New MacBook battery life under load
+<ul><li><a href="http://www.anandtech.com/show/9136/the-2015-macbook-review/11">AnandTech</a></li>
+<li><a href="http://www.marco.org/2015/04/17/battery-outliers">Marco on "battery outliers"</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Thermal_design_power">TDP</a></li>
+<li><a href="http://www.spigen.com/brands/apple/apple-watch/apple-watch-case-tough-armor-42mm.html">Ridiculous Apple Watch case</a></li></ul></li>
+<li><a href="http://www.engadget.com/2015/04/21/journey-soundtrack-on-vinyl/?ncid=rss_truncated">Journey soundtrack is now on vinyl</a> and as predicted Marco is upset about it.</li>
+<li><a href="http://developer.apple.com/wwdc">WWDC</a> Tickets
+<ul><li><a href="https://twitter.com/swilliams/status/589251596891983872">@swilliams' awful experience</a></li></ul></li></ul></li>
+<li><a href="http://www.apple.com/osx/photos/">New Photos app for Mac</a>
+<ul><li>Casey's workflow
+<ul><li><a href="https://picturelife.com/home?love=liss">Picturelife</a></li>
+<li><a href="http://tumblr.caseyliss.com/post/63274386763">Filing script</a></li>
+<li><a href="http://www.leancrew.com/all-this/2012/01/setting-my-coordinate/">Geotagging script</a></li></ul></li>
+<li>Storage Pricing
+<ul><li><a href="https://support.apple.com/en-us/HT201238">iCloud</a></li>
+<li><a href="https://www.dropbox.com/plans">Dropbox</a></li>
+<li><a href="https://www.amazon.com/clouddrive/home">Amazon Cloud Drive</a></li>
+<li><a href="https://onedrive.live.com/about/en-us/plans">Microsoft OneDrive</a></li>
+<li><a href="https://picturelife.com/pricing">Picturelife</a></li></ul></li>
+<li><a href="http://5by5.tv/hypercritical/9">Hypercritical #9: No iLife is an Island</a></li></ul></li>
+<li>Post-show:
+<ul><li>Casey makes a terrible mistake</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="https://www.proctorsilex.com/toaster-ovens-toaster-oven-broiler-white-31116r.html">This week's toaster</a></li>
+<li><a href="http://www.pepperidgefarm.com/ProductDetail.aspx?catID=745">Pepperidge Farm Cinnamon Swirl Bread</a> and <a href="https://en.wikipedia.org/wiki/Melba_toast">Melba Toast</a></li></ul></li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off. Engineers: <a href="http://nycommit.com/">Apply today to experience NYC</a>.</li>
+<li><a href="http://jackthreads.com/tech">JackThreads</a>: Elevated style, every day. Use code <strong>ATP</strong> for 15% off.</li>
+</ul>]]></description><itunes:subtitle>NAS backups, battery life, WWDC ticketing, the new Photos app, and Casey's terrible mistake.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:552f0c98e4b0be5d8efaf3d3</guid><pubDate>Thu, 16 Apr 2015 20:59:12 +0000</pubDate><title>113: Get Your Ears Ready to Hear Me Complain</title><itunes:title>Get Your Ears Ready to Hear Me Complain</itunes:title><itunes:episode>113</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:46:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp113.mp3" length="77051511" type="audio/mpeg"/><link>https://atp.fm/113</link><description><![CDATA[<ul>
+<li><a href="https://supporters.eff.org/donate">Donate to the EFF</a> as a thanks for <a href="https://www.eff.org/press/releases/eff-busts-podcasting-patent-invalidating-key-claims-patent-office">invalidating key claims of the "podcasting patent"</a></li>
+<li>Follow-up:
+<ul><li>There is no air gap in at least "most models" of the Apple Watch (via <a href="https://twitter.com/JeremyHeberlein/status/586348240578068480">Jeremy Heberlein</a>)</li>
+<li>What watches did we order?
+<ul><li><a href="https://itunes.apple.com/us/app/apple-store/id375380948?mt%3D8">Apple Store App</a> (iTunes Link)</li>
+<li><a href="http://www.marco.org/2015/04/10/new-apple-stuff-impressions">Marco's Blog Post</a></li>
+<li><a href="http://www.caseyliss.com/2015/4/12/random-apple-watch-thoughts">Casey's Blog Post</a></li>
+<li><a href="http://www.joelhousman.com/blog/2015/4/10/trying-on-the-apple-watch">Joel Housman's Blog Post</a></li>
+<li><a href="https://twitter.com/drdrang/status/586735659303305217">Dr. Drang challenges Marco</a></li></ul></li></ul></li>
+<li><a href="http://atp.fm/shirt">ATP is selling T-shirts again!</a>
+<ul><li>Be sure to order before Wednesday, 6 May!</li>
+<li>Visit voiceover artist and clothier <a href="https://twitter.com/mattalexand">Matt Alexander</a>'s awesome company, <a href="http://www.neededition.com/">Need</a>.</li></ul></li>
+<li><a href="http://developer.apple.com/wwdc">WWDC</a>
+<ul><li><a href="http://altconf.com">AltConf</a></li>
+<li><a href="https://developer.apple.com/wwdc/tickets/">New ticketing rules</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Chargeback">Chargeback</a> (please don't do this)</li></ul></li></ul></li>
+<li><a href="http://hypercritical.co/2015/04/15/os-x-reviewed">John ends his series of OS X reviews</a>
+<ul><li><a href="http://arstechnica.com/apple/2006/03/osx-fiveyears/">Retrospective: 5 years of OS X</a></li>
+<li><a href="http://arstechnica.com/apple/2011/05/mac-os-x-revisited/">Retrospective: 10 years of OS X reviews</a></li>
+<li><a href="http://knowyourmeme.com/memes/my-body-is-ready">"My Body is Ready"</a></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://www.apple.com/osx/photos/">Photos</a></li>
+<li>Casey tries to avoid doing <a href="https://en.wikipedia.org/wiki/Basic_access_authentication">HTTP Basic Auth</a> on his site</li>
+<li>John has thoughts about <a href="https://web.archive.org/web/20150314234257/http://www.caseyliss.com/">Casey's header</a></li>
+<li>John tries to buy a lamp</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated. (<a href="https://www.backblaze.com/blog/3tb-hard-drive-failure/">Drive-failure blog post</a>)</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off. Engineers: <a href="http://nycommit.com/">Apply today to experience NYC</a>.</li>
+</ul>]]></description><itunes:subtitle>Watch minutia, ATP Shirt, WWDC tickets, and John ends his series of OS X reviews.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5525dbdee4b0964bcc73a240</guid><pubDate>Thu, 09 Apr 2015 22:23:22 +0000</pubDate><title>112: The Problem Is You</title><itunes:title>The Problem Is You</itunes:title><itunes:episode>112</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:59:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp112.mp3" length="86365893" type="audio/mpeg"/><link>https://atp.fm/112</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>There are some nice people on Twitter</li>
+<li>MacBook Pros and external displays
+<ul><li><a href="http://www.apple.com/macbook-pro/specs-retina/">Specs page</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Grandma%27s_Boy_%282006_film%29">Grandma's Boy</a>'s <a href="http://i.ytimg.com/vi/k6_00NUaxkQ/maxresdefault.jpg">seat/display setup</a></li></ul></li>
+<li>Scrubbing streaming video</li>
+<li><a href="http://www.caranddriver.com/reviews/2015-koenigsegg-one1-first-drive-review">Koenigsegg "One to One"</a></li>
+<li>PowerPC Macs with x86 hardware compatibility, PC users, and <a href="https://en.wikipedia.org/wiki/Power_Macintosh_6100#/media/File:Power_Mac_6100_60.jpg">the power button</a></li>
+<li>Meta-discussion about the show format
+<ul><li><a href="http://www.in-n-out.com/menu/not-so-secret-menu.aspx">In-N-Out Secret Menu</a></li>
+<li><a href="http://www.relay.fm/upgrade/30">Upgrade #30</a></li></ul></li></ul></li>
+<li>Scroll hijacking and modern web design
+<ul><li><a href="http://www.theverge.com/a/apple-watch-review">The Verge Apple Watch Review</a></li>
+<li><a href="http://www.apple.com/imac-with-retina/">iMac with Retina 5K display splash page</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Myst">Myst</a></li></ul></li>
+<li>Apple Watch reviews
+<ul><li><a href="http://www.theverge.com/a/apple-watch-review">Nilay Patel at The Verge</a></li>
+<li><a href="http://www.wsj.com/articles/apple-watch-review-what-the-apple-watch-does-bestmake-you-look-good-1428494694">Joanna Stern at The Wall Street Journal</a></li>
+<li><a href="http://www.bloomberg.com/news/features/2015-04-08/apple-watch-review-you-ll-want-one-but-you-don-t-need-one">Joshua Topolsky at Bloomberg</a></li>
+<li><a href="http://daringfireball.net/2015/04/the_apple_watch">John Gruber at Daring Fireball</a></li>
+<li><a href="https://techpinions.com/my-first-week-with-the-apple-watch/39543">Ben Bajarin at Techpinions</a></li>
+<li>Other links
+<ul><li><a href="https://en.wikipedia.org/wiki/Display_PostScript">Display PostScript</a></li>
+<li><a href="http://www.apple.com/watch/guided-tours/">Apple Watch Guided Tours</a></li></ul></li></ul></li>
+<li>Purchase intentions
+<ul><li>Casey "definitely won't" be getting the <a href="http://www.apple.com/watch/apple-watch/space-black-stainless-steel-case-space-black-link-bracelet/">42mm Space Black Link Bracelet</a> <em>(Suuuure. —Ed.)</em></li>
+<li>Marco is preordering the <a href="http://www.apple.com/watch/apple-watch/stainless-steel-case-black-leather-loop/">42mm Stainless with Black Leather Loop</a></li>
+<li>John won't be getting the <a href="http://www.apple.com/watch/apple-watch-sport/space-gray-aluminum-case-black-sport-band/">42mm Space Gray Sport</a>, but everyone else in the geek world probably will</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>GETTHELINKBRACELETCASEY</strong> for 10% off.</li>
+<li><a href="http://www.audiblepodcast.com/atp">Audible</a>: Over 150,000 downloadable audiobooks. Get a free audiobook with a 30-day trial. (Homework: <em>Becoming Steve Jobs</em> by Brent Schlender and Rick Tetzeli)</li>
+</ul>]]></description><itunes:subtitle>Apple Watch reviews and picks, and get your modern web design off of our lawn.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:551ed2f4e4b06a5b2a88f6ab</guid><pubDate>Sat, 04 Apr 2015 03:12:33 +0000</pubDate><title>111: That Big Ring Underground Somewhere in Europe</title><itunes:title>That Big Ring Underground Somewhere in Europe</itunes:title><itunes:episode>111</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:06:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp111.mp3" length="91310341" type="audio/mpeg"/><link>https://atp.fm/111</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="http://www.foodsafety.gov/keep/charts/mintemp.html">Pork food safety</a></li>
+<li>F-16 and F/A-18 control sticks</li>
+<li>External displays and the current MacBook Pro</li>
+<li>"This never would have happened if Steve was alive"
+<ul><li>Comparing past actions versus intentions</li>
+<li><a href="http://www.macworld.com/article/2871919/never-say-never-again.html">The Macalope's take</a></li></ul></li>
+<li><a href="http://2015.ull.ie/">Marco is sleepy and Casey is envious</a>
+<ul><li><a href="http://www.samueljohnson.com/tiredlon.html">Siracusa's reference</a></li></ul></li>
+<li>Fabrication of <a href="https://en.wikipedia.org/wiki/Dynamic_random-access_memory">DRAM</a> versus <a href="https://en.wikipedia.org/wiki/Static_random-access_memory">SRAM</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/X-ray_lithography">X-ray lithography</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Moore%27s_law">Moore's Law</a></li>
+<li><a href="http://www.anandtech.com/show/2722/3">AnandTech on 32mm and SRAM</a></li>
+<li><a href="http://content.edgar-online.com/edgar_conv_img/2008/06/05/0001156973-08-000602_U55770U55770Z0065.GIF">Process size chart</a> (via <a href="https://twitter.com/GordonMcGregor/status/582258862561988608">@GordonMcGregor</a>)</li></ul></li></ul></li>
+<li>ARM Macs and <a href="https://www.semiwiki.com/forum/content/4422-apple-leaks-chip-sources.html">roadmap rumors</a>
+<ul><li><a href="https://en.wikipedia.org/w/index.php?title=Surface_RT">Surface RT</a></li>
+<li><a href="http://www.buildwindows.com">Microsoft Build</a></li>
+<li><a href="http://www.macrumors.com/2015/04/01/retina-macbook-benchmark-performance/">MacBook Geekbench benchmark</a></li>
+<li><a href="https://twitter.com/simonwhitty/status/471442851058827264">Simon Whitty's tweet</a></li></ul></li>
+<li><a href="http://www.apple.com/appletv/">Apple TV</a>
+<ul><li><a href="http://store.apple.com/us/product/MJ1L2AM/A/usb-c-vga-multiport-adapter?fnode=51">MacBook VGA Dongle</a></li>
+<li><a href="http://koenigsegg.com/one1/">Koenigsegg One:1</a></li>
+<li><a href="https://www.roku.com/">Roku</a></li>
+<li><a href="http://www.amazon.com/Fire-TV-streaming-media-player/dp/B00CX5P8FC?tag=marcoorg-20">Amazon Fire TV</a></li>
+<li><a href="http://www.amazon.com/dp/B00GDQ0RMG/?tag=liismo-20">Amazon Fire TV Stick</a></li>
+<li><a href="http://www.google.com/chrome/devices/chromecast/">Chromecast</a></li>
+<li><a href="https://plex.tv/">Plex</a>
+<ul><li><a href="https://blog.plex.tv/2013/06/04/introducing-plexconnect-an-appletv-client-which-thinks-different/">PlexConnect</a></li>
+<li><a href="https://support.plex.tv/hc/en-us/categories/200028098-Media-Preparation">Naming conventions</a></li></ul></li>
+<li><a href="http://www.makemkv.com">MakeMKV</a></li>
+<li><a href="https://twitter.com/donmelton">Don Melton</a>'s <a href="https://github.com/donmelton/video-transcoding-scripts">video transcoding scripts</a></li>
+<li><a href="http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-you-can-do-to-fix-it/"><code>discoveryd</code></a></li></ul></li>
+<li><a href="https://www.apple.com/appletv/hbo-now/">HBO Now and Apple</a>
+<ul><li><a href="https://order.hbonow.com/faq/index.html">FAQ</a></li>
+<li><a href="https://en.wikipedia.org/wiki/NFL_Sunday_Ticket">NFL Sunday Ticket</a></li></ul></li>
+<li>Post-show Accidental <a href="http://www.relay.fm/analog">Analog(ue)</a>:
+<ul><li><a href="http://www.twitter.com/">Twitter</a></li>
+<li><a href="https://www.rescuetime.com">Rescue Time</a></li>
+<li>Private versus public communities</li>
+<li><a href="http://www.caseyliss.com/2015/4/1/apple-pay-messaging">Casey's Apple Pay blog post</a></li>
+<li><a href="http://www.slate.com/articles/life/culturebox/2014/12/the_year_of_outrage_2014_everything_you_were_angry_about_on_social_media.html">The Year of Outrage</a></li>
+<li><a href="https://www.youtube.com/watch?v=b1XGPvbWn0A">Catcalls in NYC video</a></li>
+<li>Communication vector overdose
+<ul><li><a href="https://slack.com">Slack</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://control.kochava.com/v1/cpi/click?campaign_id=koreuters----ios54b805ad417a439ecdb75244d0&amp;network_id=2304&amp;device_id=device_id&amp;site_id=1">Reuters TV</a>: Your personalized video news app, with journalists around the world bringing you live feeds and on-demand news tailored to your interests.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Apple TV vs. Fire TV and Roku, ARM Mac rumors, and weighing Twitter's usefulness against its abuse.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:55157524e4b0b69608fae906</guid><pubDate>Fri, 27 Mar 2015 22:36:41 +0000</pubDate><title>110: And on That Bombshell…</title><itunes:title>And on That Bombshell…</itunes:title><itunes:episode>110</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp110.mp3" length="87858103" type="audio/mpeg"/><link>https://atp.fm/110</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="https://www.youtube.com/watch?v=Yu11moOICpU">Pronunciation of Marques Brownlee</a></li>
+<li>Has <a href="http://goo.gl/sphWa">Intel Skylake</a> been <a href="http://www.itworld.com/article/2886366/intel-reportedly-delays-release-of-skylake-cpus.html">delayed</a>?</li>
+<li>Reasons for MacBook limitations
+<ul><li>16 GB RAM</li>
+<li>1 USB port</li></ul></li>
+<li>RAM and silicon process sizes</li></ul></li>
+<li>Apple apps <a href="http://alex4d.com/notes/item/bumpy-pixels-future-haptic-apple-force-touch-trackpad">updated to use Force Touch trackpad</a>
+<ul><li>New MacBook <a href="https://discussions.apple.com/message/27803693#27803693">missing 3-finger drag</a>?</li></ul></li>
+<li>Tim Cook's model-lineup philosophy</li>
+<li><a href="http://www.forbes.com/sites/patrickmoorhead/2014/09/11/intels-skylake-promises-cable-less-pcs-in-2015/">Intel SkyLake and the wireless PC</a>
+<ul><li><a href="http://en.wikipedia.org/wiki/WiDi">WiDi</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Wireless_Gigabit_Alliance">WiGig</a></li></ul></li>
+<li><a href="http://www.nintendo.co.jp/corporate/release/en/2015/150317/index.html">Nintendo and DeNA Partnership</a>
+<ul><li><a href="http://kotaku.com/you-might-not-like-the-company-making-nintendos-mobile-1691952503">Kotaku</a></li>
+<li><a href="http://pocketmonster.kotaku.com/pokemon-with-microtransactions-is-just-as-bad-as-it-sou-1686652289/+patriciahernandez">Pokémon could be bad</a></li></ul></li>
+<li>Post-show about the presumed demise of Top Gear:
+<ul><li><a href="http://transmission.blogs.topgear.com/2015/03/25/bbc-releases-statement-on-clarkson/">BBC statement on Jeremy Clarkson</a></li>
+<li><a href="http://www.caseyliss.com/2015/3/25/rip-top-gear">Casey's blog post</a></li>
+<li><a href="https://www.theincomparable.com/theincomparable/166/">The Incomparable on authors who are bad humans</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://atp.fm/episodes/105">Prior toaster episode</a></li>
+<li><a href="http://www.amazon.com/dp/B0039BJ3JG/?tag=siracusa-20">This week's toaster</a></li></ul></li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.
+<ul><li>Song by <a href="http://jonathanmann.net">Jonathan Mann</a></li></ul></li>
+</ul>]]></description><itunes:subtitle>Nintendo and DeNA, laptop docks and wireless charging, Tim Cook's model-lineup philosophy, and the abrupt end of Top Gear.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:550cd1dae4b055f7985605f7</guid><pubDate>Sat, 21 Mar 2015 20:20:05 +0000</pubDate><title>109: Bigger in the Pocket</title><itunes:title>Bigger in the Pocket</itunes:title><itunes:episode>109</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp109.mp3" length="75135287" type="audio/mpeg"/><link>https://atp.fm/109</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Tipster's compatriot
+<ul><li><a href="http://en.wikipedia.org/wiki/Nintendo_World_Championships">Nintendo World Championships</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Stadium_Events">Stadium Events</a> - The rare Nintendo cartridge that starts with an "s."</li></ul></li>
+<li><a href="https://twitter.com/TBIRallySport/status/576461356146159616">McLaren F1 resale</a></li>
+<li><a href="https://twitter.com/glynor/status/576399534533799937">Bluetooth headphones</a>
+<ul><li><a href="http://www.amazon.com/dp/B008EOXXFI/?tag=liismo-20">Casey's headphones</a></li>
+<li><a href="http://www.amazon.com/dp/B002WB0PUK/?tag=marcoorg-20">Marco's Bluetooth headphones</a> (discontinued)</li>
+<li><a href="http://en.wikipedia.org/wiki/AptX">AptX codec</a></li>
+<li><a href="https://en.wikipedia.org/wiki/VoiceOver">VoiceOver</a> (via <a href="https://twitter.com/lioncourt">@lioncourt</a>)</li></ul></li>
+<li><a href="http://www.mcelhearn.com/thoughts-on-the-apple-watch-edition/">Watch Edition pricing</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch-edition/">Gold video</a></li>
+<li>MacBook
+<ul><li><a href="http://barefeats.com/hard199.html">Faster flash</a></li>
+<li>John <a href="https://twitter.com/siracusa/status/576229613313138688">knows about</a> the existing spacebars</li>
+<li><a href="https://twitter.com/damnweather/status/576804007223521280/photo/1">Mockup by @damnweather</a></li>
+<li>Ports
+<ul><li><a href="https://www.youtube.com/watch?v=ZrZISyPucMg&amp;t=3m14s">MKBHD prediction</a></li>
+<li><a href="https://www.youtube.com/watch?v=oF21m-6yV0U&amp;feature=youtu.be&amp;t=6m38s">Jony Ive on design</a></li></ul></li></ul></li>
+<li>Naysayer notions
+<ul><li><a href="http://www.theverge.com/2015/3/12/8198739/mac-vs-pc-new-macbook-pc-maker-fight">Thin PCs</a></li>
+<li><a href="http://www.forbes.com/sites/tonybradley/2015/03/10/apple-macbook-makes-a-compelling-pitch-for-asus-zenbook-ux305/">Asus Zenbook UX305</a>
+<ul><li><a href="http://www.asus.com/us/Notebooks_Ultrabooks/ASUS_ZENBOOK_UX305FA/">Official specs</a></li></ul></li>
+<li><a href="https://twitter.com/lenovo/status/575383282256318464/photo/1">Lenovo ad</a>
+<ul><li><a href="http://shop.lenovo.com/us/en/laptops/lenovo/yoga-laptop-series/yoga-3-pro-laptop/?cid=us:sem%7Cse%7Cgoogle%7C112110235395%7C%7CIIP_NE_IdeaPad+Yoga+3+Pro%7C180138704&amp;ef_id=UL9angAAETsXUiSJ:20150313165658:s#tab-tech_specs">Lenovo Yoga 3 Pro</a></li></ul></li>
+<li><a href="http://news.softpedia.com/news/Microsoft-Unveils-Windows-8-1-PC-the-Size-of-a-Dongle-Has-HDMI-USB-and-microSD-Ports-476086.shtml">Tiny PC</a></li>
+<li><a href="http://altosadventure.com/">Alto's Adventure</a></li>
+<li><a href="http://www.macworld.com/article/2895694/will-your-new-macbook-crash-to-the-ground-without-magsafe-yes.html">Trip-Ability</a>
+<ul><li><a href="http://leancrew.com/all-this/2015/03/slippin-and-a-slidin/">Dr. Drang</a></li>
+<li><a href="https://twitter.com/wagenet/status/576141446002049024">But what about iOS devices?</a>
+<ul><li><a href="https://twitter.com/settern/status/576149546193051648">Serenity's reply</a></li></ul></li>
+<li><a href="http://sixcolors.com/post/2015/01/battery-life-apples-solving-for-x/">Jason Snell on solving for battery</a></li></ul></li>
+<li><a href="http://arstechnica.com/gadgets/2015/03/review-chromebook-pixel-2-is-still-lovely-hardware-with-limited-appeal/">Chromebook Pixel 2 charging</a></li>
+<li><a href="http://www.apple.com/macbook/specs/">Display mirroring</a></li></ul></li></ul></li>
+<li>Post-show:
+<ul><li>Did you hear that larger iPhones were released last fall?</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off, and tag your <a href="http://cl.ly/image/1p400i300h2F">app-icon Fractures</a> with <strong>#fracturedapp</strong> on Twitter or Instagram.</li>
+</ul>]]></description><itunes:subtitle>MacBook follow-up, Tim Cook and the Edition, battery anxiety, and learning to appreciate the iPhone 6 Plus.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:550182e7e4b0bd4478003478</guid><pubDate>Thu, 12 Mar 2015 20:43:13 +0000</pubDate><title>108: Zero is Better Than One</title><itunes:title>Zero is Better Than One</itunes:title><itunes:episode>108</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:18:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp108.mp3" length="100073647" type="audio/mpeg"/><link>https://atp.fm/108</link><description><![CDATA[<ul>
+<li>Pre-Show: <a href="https://en.wikipedia.org/wiki/Last_Exile">Last Exile</a></li>
+<li>Follow-Up:
+<ul><li><a href="http://www.polygon.com/2015/3/3/8142247/crossy-road-earnings-10-million-gdc-2015">More on Crossy Road</a>
+<ul><li>Previously on ATP <a href="http://atp.fm/episodes/94">94</a>, <a href="http://atp.fm/episodes/95">95</a>, <a href="http://atp.fm/episodes/96">96</a></li>
+<li><a href="http://www.smh.com.au/digital-life/games/how-andy-and-matt-are-making-a-motza-by-wasting-your-time-with-crossy-road-20141217-1276j5.touch.html">Previous interview with Crossy Road creators</a> </li></ul></li>
+<li>Anonymous tips from <a href="http://atp.fm/episodes/107">last episode</a>
+<ul><li><a href="https://twitter.com/caseyliss/status/574988608995786752">Casey's tweet recap</a></li>
+<li><a href="http://store.apple.com/us/product/MJ1K2AM/A/usb-c-digital-av-multiport-adapter">USB-C Digital AV Multiport Adapter</a></li>
+<li><a href="http://store.apple.com/us/product/MJ1L2AM/A/usb-c-vga-multiport-adapter?fnode=51">USB-C VGA Mulitport Adapter</a></li></ul></li></ul></li>
+<li><a href="http://www.apple.com/live/2015-mar-event/">Monday's Apple Event</a>
+<ul><li><a href="http://www.apple.com/macbook/">New MacBook</a></li>
+<li><a href="http://arstechnica.com/apple/2015/03/hands-on-with-the-retina-macbook-one-port-wonder/">Performance is on par with a 2012 MacBook Air</a></li>
+<li><a href="https://handbrake.fr">Handbrake</a></li>
+<li><a href="http://goo.gl/w5f3Ov">Broadwell</a></li>
+<li><a href="https://twitter.com/robjaythomas/status/575835704938262529">Robert Thomas' tweet</a></li>
+<li><a href="http://store.apple.com/us/product/MJ1M2AM/A/usb-c-to-usb-adapter?fnode=51">USB-C to USB Adapter</a></li>
+<li><a href="http://sixcolors.com/post/2015/03/quick-reactions-to-the-spring-forward-apple-event/">Jason Snell on the keyboard</a></li>
+<li><a href="http://i.imgur.com/Dv9aPPR.gif">Keyboard comparison GIF</a></li>
+<li><a href="http://images.apple.com/v/macbook/a/overview/images/internals_layer_start_large.jpg">Internals</a></li>
+<li><a href="http://www.theverge.com/2015/1/6/7501385/dell-xps-13-2015-edition-announced-at-ces-2015">13-inch nearly-borderless Dell laptop</a></li>
+<li>Will Apple kill the headphone jack?</li>
+<li>Expandable iPads
+<ul><li><a href="http://store.apple.com/us/product/MD822ZM/A/lightning-to-sd-card-camera-reader?fnode=3a">Lightning to SD Card Camera Reader</a></li>
+<li><a href="http://store.apple.com/us/product/MD822ZM/A/lightning-to-sd-card-camera-reader?fnode=3a">Lightning Digital AV Adapter</a></li>
+<li><a href="http://store.apple.com/us/product/MD825ZM/A/lightning-to-vga-adapter?fnode=3a">Lightning to VGA Adapter</a></li>
+<li><a href="http://www.imore.com/duet-display-turns-your-ipad-second-monitor">Duet Display</a></li></ul></li>
+<li><a href="http://hypercritical.co/2013/02/08/dont-stop-thinking-about-tomorrow">John's post about thin and light Apple hardware</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_USB_Mouse">Apple "hockey puck" mouse</a></li></ul></li>
+<li>Post-show:
+<ul><li>Impacts of new MacBook technology on other Mac laptops
+<ul><li><a href="https://en.wikipedia.org/wiki/IBM_ThinkPad_Butterfly_keyboard">Butterfly keyboard</a></li></ul></li>
+<li><a href="http://www.apple.com/watch">Apple Watch</a>
+<ul><li><a href="http://daringfireball.net/2015/03/apple_watch_prelude">Gruber's original predictions</a> and his <a href="http://daringfireball.net/linked/2015/03/08/spitball-apple-watch-steel">last-second updates</a></li>
+<li><a href="https://twitter.com/marcoarment/status/575055298399891456">Marco's theory about the Edition</a></li>
+<li><a href="http://bgr.com/2015/02/27/the-boy-genius-report-podcast-episode-1/">BGR on pricing from perspective of a watch person</a></li>
+<li><a href="http://www.amazon.com/dp/B0083XFT5M/?tag=liismo-20">Casey's daily watch</a></li>
+<li><a href="http://www.amazon.com/dp/B00843L6ZI/?tag=liismo-20">Casey's special-occasion watch</a></li>
+<li><a href="http://www.panerai.com">Panerai</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch-edition/18-karat-yellow-gold-case-bright-red-modern-buckle/">Red/Gold Edition</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch/stainless-steel-case-link-bracelet/">John's Watch preference</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch/space-black-stainless-steel-case-space-black-link-bracelet/">Casey's aspirational Watch preference</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch/stainless-steel-case-black-modern-buckle/">Marco's original Watch preference</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch/stainless-steel-case-black-leather-loop/">Marco's new Watch preference</a></li>
+<li><a href="http://www.caseyliss.com/2015/3/11/apple-watch-paper-try-on">Paper Apple Watches</a></li>
+<li><a href="http://www.apple.com/watch/apple-watch-sport/space-gray-aluminum-case-black-sport-band/">Casey's more-likely-to-buy Watch preference</a>... except he isn't buying one. Really. Maybe.</li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>ONEPORT</strong> for 10% off.</li>
+<li><a href="https://caspersleep.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+</ul>]]></description><itunes:subtitle>In-depth coverage of the new MacBook and some other thing Apple showed at the Spring Forward event.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54f88dcce4b0e50fb04528d4</guid><pubDate>Thu, 05 Mar 2015 20:24:38 +0000</pubDate><title>107: We Get the Most Boring Tips</title><itunes:title>We Get the Most Boring Tips</itunes:title><itunes:episode>107</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:32:20</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp107.mp3" length="66601398" type="audio/mpeg"/><link>https://atp.fm/107</link><description><![CDATA[<ul>
+<li>Pre-show: How Marco and John approach owning nice things
+<ul><li><a href="http://relay.fm/analog">Analog(ue)</a></li>
+<li><a href="http://www.theverge.com/2015/3/4/8149997/ferrari-488-gtb-geneva-motor-show-2015">Ferrari 488 GTB</a></li>
+<li><a href="https://cdn1.vox-cdn.com/thumbor/5ZcshLTRZSTKleIZXBevTRMXTGU=/1020x0/cdn0.vox-cdn.com/uploads/chorus_asset/file/3470534/vs03-04_1230cxs.0.png">488 Seat controls</a></li></ul></li>
+<li>Follow-up:
+<ul><li>Tesla margins (as brought up by <a href="https://twitter.com/Fairaday/status/570792492079165440">William Fairaday</a>)</li>
+<li>Being enthusiastic about your "team"
+<ul><li><a href="http://www.teslamotors.com/blog/tesla-vs-top-gear">Tesla vs. Top Gear</a></li>
+<li><a href="http://publiceditor.blogs.nytimes.com/2013/02/18/problems-with-precision-and-judgment-but-not-integrity-in-tesla-test/">Tesla vs. The New York Times</a></li></ul></li>
+<li><a href="http://londonist.com/2014/09/a-ride-on-heathrows-self-driving-pods.php">Heathrow's self-driving pods</a> (via <a href="https://twitter.com/mluisbrown">Michael Luís Brown</a>)
+<ul><li><a href="http://transportation.wvu.edu/prt">West Virginia University's PRT</a> –&nbsp;more <a href="http://en.wikipedia.org/wiki/Morgantown_Personal_Rapid_Transit">on Wikipedia</a></li></ul></li>
+<li><a href="http://www.slideshare.net/Calion/dkgroup-environment-remake-cha-v14">One ship pollutes as much as 50M cars</a> (also via Michael Luís Brown)
+<ul><li><a href="http://www.ted.com/talks/rose_george_inside_the_secret_shipping_industry">TED Talk</a> –&nbsp;start at 8:00 (via <a href="https://twitter.com/PacificNickT">Nick Thain</a>)</li>
+<li><a href="http://www.theguardian.com/environment/2009/apr/09/shipping-pollution">The Guardian on ships' pollution</a></li></ul></li>
+<li><a href="http://insideevs.com/wp-content/uploads/2013/03/tesla-info.jpg">Tesla's supply chain</a> (via <a href="https://twitter.com/samabuelsamid">Sam Abuelsamid</a>)</li>
+<li><a href="http://en.wikipedia.org/wiki/CAN_bus">CAN bus</a>
+<ul><li>America's <a href="http://en.wikipedia.org/wiki/Motor_Vehicle_Owners%27_Right_to_Repair_Act">Right to Repair Act</a></li>
+<li><a href="http://www.amazon.com/dp/B00BFRW6FO/?tag=marcoorg-20">BMW ENET cable</a></li>
+<li><a href="http://www.ivini-tech.de/en/adapter/ios-bmw/original-ivini-tech-iphone-ipad-wifi-adapter-for-bmw/a-1003/">Sample OBD2 to Wi-Fi bridge</a></li>
+<li><a href="https://itunes.apple.com/us/app/ivini-apps-bmwhat/id467343427?mt=8">Expensive BMW app Casey mentioned</a> (iTunes link)</li>
+<li><a href="http://www.telegraph.co.uk/technology/apple/watch/11439847/Apple-Watch-will-replace-your-car-keys-says-Tim-Cook.html">Tim Cook on Apple Watch replacing car keys</a></li>
+<li><a href="https://itunes.apple.com/gb/app/my-bmw-remote/id387675830?mt=8">BMW Remote app</a> (iTunes link)</li></ul></li></ul></li>
+<li><a href="http://sixcolors.com/post/2015/02/spring-forward-apple-event-coming-march-9/">Apple's "Spring Forward" Event</a>
+<ul><li><a href="http://9to5mac.com/2015/01/06/macbook-air-12-inch-redesign/">12" Retina MacBook Air</a></li>
+<li><a href="http://www.relay.fm/upgrade/25">Jason Snell on receiving tips</a></li>
+<li><a href="http://www.apple.com/watch/technology/">Apple Watch technology page</a>, including Force Touch</li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://www.marco.org/2015/03/04/boring-apple-watch-edition-pricing">Apple Watch Pricing</a>
+<ul><li><a href="http://atp.fm/episodes/82">ATP #82</a></li>
+<li><a href="http://atp.fm/episodes/83">ATP #83</a></li>
+<li><a href="http://atp.fm/episodes/84">ATP #84</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Veblen_good">Veblen Goods</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off, and tag your <a href="http://cl.ly/image/1p400i300h2F">app-icon Fractures</a> with <strong>#fracturedapp</strong> on Twitter or Instagram.</li>
+</ul>]]></description><itunes:subtitle>Car follow-up, Spring Forward event expectations, and an anonymous tip perfectly suited for our show.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54f0b62ce4b08b56d9347f7b</guid><pubDate>Fri, 27 Feb 2015 22:38:18 +0000</pubDate><title>106: That’s Slightly Right</title><itunes:title>That’s Slightly Right</itunes:title><itunes:episode>106</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:50:51</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp106.mp3" length="79940387" type="audio/mpeg"/><link>https://atp.fm/106</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="http://www.consumerreports.org/cro/magazine/2015/03/best-places-to-get-your-car-repaired/index.htm">Tesla and "customer sat"</a>
+<ul><li><a href="https://twitter.com/elonmusk/status/570327747018379264">Tweet from Elon Musk</a></li></ul></li>
+<li>Apple's Minivan
+<ul><li><a href="http://apple-history.com/imac">Apple Columbus</a></li>
+<li><a href="http://www.networkworld.com/article/2224264/wireless/first-photos-of-apple-s-earliest-iphone-prototype.html">iPhone prototypes</a></li>
+<li><a href="http://f30.bimmerpost.com/forums/showthread.php?t=1046509">BMW X7 testing</a></li>
+<li><a href="http://www.bmwusa.com/Standard/Content/Vehicles/2015/i3/BMWi3/default.aspx">BMW i3</a></li></ul></li>
+<li><a href="http://www.nytimes.com/reuters/2015/02/18/business/18reuters-apple-autos-lawsuit.html?ref=business&amp;_r=2">Apple/Tesla poaching</a>
+<ul><li><a href="http://9to5mac.com/2015/02/19/apple-electric-car-team/">9to5Mac staff details</a></li>
+<li><a href="http://9to5mac.com/2015/02/13/apple-hires-head-of-mercedes-benz-rd-other-auto-experts-for-new-secret-research-lab/">9to5Mac on hiring of <em>Mercedes Benz</em> head of R&amp;D</a></li></ul></li>
+<li>What is Apple building?
+<ul><li><a href="http://sixcolors.com/post/2015/02/the-apple-car-destination-unknown/">Jason Snell at Six Colors</a></li>
+<li><a href="http://fortune.com/2015/02/20/the-best-evidence-yet-that-apple-is-working-on-an-electric-car/">Fortune</a></li></ul></li>
+<li>Sugar water explained
+<ul><li><a href="http://www.pbs.org/nerds/">Triumph of the Nerds</a></li>
+<li><a href="https://www.youtube.com/watch?v=S_JYy_0XUe8">John Sculley recounts getting hired</a></li>
+<li><a href="https://www.youtube.com/watch?v=mOgOP_aqqtg">Steve Jobs on Microsoft</a></li></ul></li>
+<li>Auto parts suppliers
+<ul><li><a href="http://www.zf.com/corporate/en_de/homepage/homepage.html">ZF</a></li>
+<li><a href="https://www.boschautoparts.com/">Bosch</a></li>
+<li><a href="http://www.harman.com/EN-US/Pages/Home.aspx">Harman</a></li>
+<li><a href="http://www.marco.org/2012/09/18/rmbp-image-retention-test">Retina MacBook Pro image-retention test</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tesla_Roadster#Development">Tesla Roadster &amp; Lotus</a></li>
+<li><a href="http://www.magnasteyr.com/capabilities/vehicle-engineering-contract-manufacturing">Magna Steyr</a> (<a href="http://en.wikipedia.org/wiki/Magna_Steyr">Wikipedia</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Mazda_MX-6">Mazda MX-6</a> &amp; <a href="https://en.wikipedia.org/wiki/Ford_Probe">Ford Probe</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Toyota_86">Scion FR-S</a> &amp; <a href="https://en.wikipedia.org/wiki/Toyota_86#Subaru_BRZ">Subaru BRZ</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Mitsubishi_GTO">Mitsubishi 3000GT &amp; Dodge Stealth</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Knight_Rider_2000">Knight Rider 2000</a>
+<ul><li><a href="http://www.jayohrberg.com/Knight_Rider_2000.html">Knight 4000</a></li></ul></li>
+<li><a href="https://www.youtube.com/watch?v=v8dWW9KxqlQ">Super Pursuit Mode KITT</a>
+<ul><li><a href="http://en.wikipedia.org/wiki/Greeble">Greeble</a></li></ul></li></ul></li>
+<li>Maybe it's not a car after all? Or perhaps they're self-driving?
+<ul><li><a href="http://www.teslamotors.com/supercharger">Tesla Superchargers</a></li>
+<li><a href="http://www.cirrusaircraft.com/innovation/?item=parachute">Whole-plane parachute</a></li>
+<li><a href="http://blogcritics.org/people-love-their-cars/">People love their cars</a>
+<ul><li><a href="http://www.merlinmann.com/roderick/">Roderick on the Line</a></li></ul></li></ul></li>
+<li>China and <a href="https://twitter.com/asymco/status/569911451718189056">manufacturing capacity</a></li></ul></li>
+<li><a href="https://www.kickstarter.com/projects/597507018/pebble-time-awesome-smartwatch-no-compromises?ref=nav_search">Pebble Time</a>
+<ul><li><a href="http://www.relay.fm/connected/28">Connected</a></li></ul></li>
+<li>Post-show:
+<ul><li>Marco <a href="https://twitter.com/marcoarment/status/569176463217262592">did his homework</a>
+<ul><li><a href="http://www.teslamotors.com/models">Tesla Model S</a></li>
+<li><a href="http://jalopnik.com/tesla-model-s-p85d-the-jalopnik-review-1683834973">Tesla Model S P85D Review</a></li>
+<li><a href="http://www.teslamotors.com/sites/default/files/images/model-s/gallery/interior/hero-01-LHD.jpg?201502052330">Interior picture</a></li>
+<li><a href="https://www.youtube.com/watch?v=1qFV5i8tBhs">Insane mode launches video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Rock_%27n%27_Roller_Coaster_Starring_Aerosmith">Rock 'n' Rollercoaster</a></li>
+<li><a href="http://my.teslamotors.com/goelectric#range">Range calculator</a></li>
+<li><a href="http://www.teslamotors.com/charging/#/calculator">Charge time calculator</a></li>
+<li><a href="http://www.teslamotors.com/supercharger">Superchargers map</a></li>
+<li><a href="http://www.plugshare.com/">PlugShare</a></li>
+<li><a href="http://www.bmwusa.com/Standard/Content/Explore/Experience/PDS/default.aspx?from=/Standard/Content/Explore/Experience/PDS.aspx&amp;return=/Standard/Content/Explore/Experience/PDS.aspx">BMW Performance Driving School</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cocoaconf.com/">CocoaConf</a>: A touring training conference for iPhone, iPad, and Mac developers. Save 20% on upcoming events in Chicago, Washington D.C., Portland, Austin, and Yosemite National Park by purchasing with code <strong>ATP</strong> by March 20.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+<li><a href="http://www.getharvest.com/">Harvest</a>: Simple, beautiful online time-tracking software. Use code <strong>ATP</strong> for 50% off your first month.</li>
+</ul>]]></description><itunes:subtitle>Alternative Apple-car theories, Pebble Time, and Marco drives a Tesla.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54e7437ee4b035a09d96d901</guid><pubDate>Fri, 20 Feb 2015 20:06:52 +0000</pubDate><title>105: Do You Want to Sell Sugar Phones for the Rest of Your Life?</title><itunes:title>Do You Want to Sell Sugar Phones for the Rest of Your Life?</itunes:title><itunes:episode>105</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:46:25</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp105.mp3" length="76748089" type="audio/mpeg"/><link>https://atp.fm/105</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Where does Apple use iCloud Core Data Sync?
+<ul><li><a href="https://itunes.apple.com/us/app/itunes-movie-trailers/id471966214?mt=8">Trailers App?</a></li>
+<li>Keyboard Shortcuts?</li></ul></li>
+<li><a href="http://facebook.github.io/react/">React</a> in the <a href="http://www.objc.io/issue-20/andy-matuschak.html">objc.io interview with Andy Matuschak</a></li></ul></li>
+<li>Apple making a car?
+<ul><li><a href="http://neutral.fm/">Neutral</a></li>
+<li><a href="https://www.apple.com/ios/carplay/">CarPlay</a></li>
+<li><a href="http://9to5mac.com/2015/02/13/apple-hires-head-of-mercedes-benz-rd-other-auto-experts-for-new-secret-research-lab/">9to5 Mac on hiring Mercedes-Benz R&amp;D</a></li>
+<li><a href="http://www.wsj.com/articles/apples-titan-car-project-to-challenge-tesla-1423868072">Wall Street Journal</a></li>
+<li><a href="http://www.teslamotors.com">Tesla</a></li>
+<li><a href="https://en.wikipedia.org/wiki/General_Motors_EV1">GM EV1</a></li>
+<li><a href="http://www.nissanusa.com/electric-cars/leaf/">Nissan Leaf</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DeLorean_time_machine#Mr._Fusion">Mr. Fusion</a></li>
+<li><a href="https://en.wikipedia.org/wiki/DeLorean_time_machine#Flux_capacitor">Flux Capacitor</a></li>
+<li><a href="http://neutral.fm/episodes/4-if-you-see-a-cursor-they-blew-it">Neutral on car UIs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IDrive">BMW iDrive</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Saab_Automobile">Saab</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Saturn_Corporation">Saturn</a></li>
+<li><a href="http://www.mitsubishicars.com">Mitsubishi</a></li>
+<li><a href="https://en.wikipedia.org/wiki/VAG-COM">Volkswagen Service Bus</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Volkswagen_Golf_Mk5#Mk5_R32">Volkswagen R32</a></li>
+<li><a href="https://en.wikipedia.org/wiki/MyFord_Touch">MyFord Touch</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ford_Sync">Ford Sync</a></li></ul></li>
+<li>Post-show:
+<ul><li>What shape would an Apple car take?
+<ul><li><a href="http://www.teslamotors.com/modelx">Tesla Model X</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Ford_Crown_Victoria">Ford Crown Victoria</a></li>
+<li><a href="http://www.smartusa.com">Smart car</a></li>
+<li><a href="http://www.newyorker.com/magazine/2015/02/23/shape-things-come">Jony Ive Profile</a></li>
+<li><a href="http://www.amazon.com/dp/B00C5R71U8/?tag=siracusa-20">Leander Kahney's book about Jony Ive</a></li></ul></li>
+<li>Arguments about what cars are pretty
+<ul><li><a href="https://en.wikipedia.org/wiki/Toyota_Supra">Toyota Supra</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Lexus_SC#First_generation_.28Z30.29">Lexus SC</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Lexus_GS">Lexus GS</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BMW_M3#F80_M3">BMW M3 (F80)</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Acura_MDX">Acura MDX</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Acura_RL">Acura RL</a></li>
+<li><a href="http://www.edmunds.com/nissan/maxima/2016/">2016 Nissan Maxima</a>
+<ul><li><a href="https://www.youtube.com/watch?v=Bd1qCi5nSKw">Sappy (and thoroughly confused) Nissan Super Bowl commercial</a></li></ul></li>
+<li><a href="http://s1.cdn.autoevolution.com/images/news/gallery/2014-chevrolet-corvette-c7-stingray-debuts-in-detroit-photo-gallery_22.jpg">C7 Corvette</a></li>
+<li><a href="http://static.cargurus.com/images/site/2013/10/18/01/33/2014_honda_accord-pic-1051876504419945073.jpeg">2014 Accord</a></li>
+<li><a href="http://cdn.paultan.org/image/2014/04/2015_Toyota_Camry_008.jpg">2015 Camry</a></li>
+<li><a href="https://en.wikipedia.org/wiki/BMW_M5#E39_M5_.281998.E2.80.932003.29">BMW M5 (E39)</a></li>
+<li><a href="https://instagram.com/p/uW4snVhyjc/">Casey's car</a></li>
+<li><a href="http://www.cars.com/toyota/avalon/">Toyota Avalon</a></li>
+<li><a href="http://mazdausa.com/MusaWeb/displayPage.action?pageParameter=modelsMain&amp;vehicleCode=M6G">Mazda 6</a>
+<ul><li><a href="http://www.tapetus.pl/obrazki/n/174846_mazda-6-concept.jpg">Picture</a></li></ul></li>
+<li><a href="https://www.youtube.com/watch?v=jTNKiTrX0Vk">BMW i8 video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tesla_Roadster">Tesla Roadster</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off, and check out <a href="http://www.dreamingwithjeff.com/">Jeff Bridges' Sleeping Tapes</a>.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off your first purchase.</li>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://atp.fm/episodes/103">Prior toaster episode</a></li>
+<li><a href="http://www.amazon.com/dp/B008C9UFDI?tag=siracusa-20">This week's toaster</a></li></ul></li>
+</ul>]]></description><itunes:subtitle>A car show we accidentally created while trying to do a tech podcast.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54dcf0d4e4b0e7a731210453</guid><pubDate>Thu, 12 Feb 2015 21:19:36 +0000</pubDate><title>104: Minutiæ</title><itunes:title>Minutiæ</itunes:title><itunes:episode>104</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:42:10</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp104.mp3" length="73680862" type="audio/mpeg"/><link>https://atp.fm/104</link><description><![CDATA[<ul>
+<li>Follow-up
+<ul><li>Email to the show's <a href="http://atp.fm/feedback/">feedback form</a></li>
+<li>What's a toaster oven?
+<ul><li>The canonical "<a href="http://www.breville.com.au/the-original-74tm.html">Breville</a>"</li>
+<li><a href="https://en.wikipedia.org/wiki/JSON">J'SON</a></li></ul></li></ul></li>
+<li><a href="https://www.apple.com/osx/photos-preview/">Photos.app does exist!</a>
+<ul><li><a href="http://sixcolors.com/post/2015/02/the-hard-link-between-photos-and-iphoto/">Jason Snell's Preview</a></li>
+<li><a href="http://sixcolors.com/post/2015/02/photos-for-mac-quick-answers-to-simplified-questions/">Jason Snell's Q&amp;A, including info on hard links</a></li>
+<li><a href="http://www.theverge.com/2015/2/5/7982517/apple-photos-mac-iphoto-replacement-explainer-faq">The Verge's FAQ</a></li>
+<li><a href="http://chambersdaily.com/learning-to-love-photo-management/">Learning to Love Photo Management</a></li>
+<li><a href="http://tumblr.caseyliss.com/post/63274386763">Casey's script</a></li>
+<li><a href="http://www.leancrew.com/all-this/2013/10/photo-management-via-the-finder/">Dr. Drang's script</a></li>
+<li><a href="https://www.apple.com/aperture/">Aperture</a></li>
+<li><a href="https://www.adobe.com/products/photoshop-lightroom.html">Lightroom</a></li>
+<li><a href="https://www.adobe.com/creativesuite/bridge.html">Bridge</a></li></ul></li>
+<li>UXKit
+<ul><li><a href="https://twitter.com/donmowry/status/564889372093210625">Also in Xcode?</a></li>
+<li><a href="http://twitter.com/gte/status/563972001480851456">Guy English</a></li></ul></li>
+<li>New UI Frameworks &amp; Paradigms
+<ul><li><a href="http://asyncdisplaykit.org">Async Display Kit</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Symmetric_multiprocessor_system">SMP</a></li></ul></li>
+<li><a href="http://facebook.github.io/react/">React</a> Native
+<ul><li><a href="https://joshaber.github.io/2015/01/30/why-react-native-matters/">Josh Abernathy's Reaction</a></li>
+<li><a href="https://www.youtube.com/watch?v=7rDsRXj9-cU">Deep dive video</a></li>
+<li><a href="http://revealapp.com/">Reveal, the Sherlocked exploded-views app</a></li>
+<li><a href="https://twitter.com/_JamesWard/status/565545160332046336">John's joke retweet</a></li>
+<li><a href="http://engineering.flipboard.com/2015/02/mobile-web/">Flipboard's crazy canvas</a></li>
+<li><a href="http://arstechnica.com/staff/2005/09/1372/">Copland 2010</a></li>
+<li><a href="https://twitter.com/andy_matuschak/status/560511204867575808">Andy Matuschak's thoughts</a></li>
+<li><a href="http://emberjs.com">Ember</a></li>
+<li><a href="https://angularjs.org">Angular</a></li></ul></li></ul></li>
+<li>Post show:
+<ul><li>Marco GOes on another adventure
+<ul><li><a href="https://www.hivelocity.net/">Hivelocity</a></li>
+<li><a href="https://github.com/atmos/camo">GitHub Camo SSL proxy</a></li>
+<li><a href="https://gist.github.com/hgfischer/7965620">Go vs. Nginx benchmark</a></li></ul></li>
+<li>Titles
+<ul><li><a href="http://lame.sourceforge.net">LAME</a></li>
+<li><a href="http://www.chaoticsoftware.com/ProductPages/MP3Rage.html">MP3Rage</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>SLOTTOASTERPEOPLE</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Please email us about Photos.app, UXKit, and React.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54d2ce5ae4b0ea0c54eb39c9</guid><pubDate>Fri, 06 Feb 2015 16:49:38 +0000</pubDate><title>103: An Atheist or a Howard Stern Fan</title><itunes:title>An Atheist or a Howard Stern Fan</itunes:title><itunes:episode>103</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:16:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp103.mp3" length="98504422" type="audio/mpeg"/><link>https://atp.fm/103</link><description><![CDATA[<ul>
+<li>Using Safari's Inspector into the iOS Simulator</li>
+<li>Follow-up:
+<ul><li>Handwriting recognition
+<ul><li><a href="https://twitter.com/dansherson/status/558527943987957760">@dansherson</a></li>
+<li><a href="http://vimeo.com/118708870">Will Hains' Video</a>
+<ul><li><a href="http://www.imdb.com/title/tt0113497/?ref_=fn_al_tt_1">Jumanji</a></li></ul></li>
+<li><a href="http://en.wikipedia.org/wiki/Inkwell_%28Macintosh%29">Inkwell</a></li>
+<li><a href="http://arstechnica.com/apple/2002/09/macosx-10-2/6/">John's OS X 10.2 Review</a></li></ul></li>
+<li>Marco hates everyone and their email</li></ul></li>
+<li><a href="http://arstechnica.com/business/2015/02/dont-call-them-utility-rules-the-fccs-net-neutrality-regime-explained/">FCC and Net Neutrality</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Common_carrier#Telecommunications">Title II</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tom_Wheeler">Tom Wheeler</a></li></ul></li>
+<li><a href="http://www.loopinsight.com/2015/02/04/apple-testing-mysterious-cars-with-roof-mounted-cameras/">Apple sensor cars</a></li>
+<li>Running Overcast
+<ul><li><a href="https://www.linode.com/?r=0e105fac1868f5f735279daa027833f8f77b6e91">Linode</a></li>
+<li><a href="http://www.rackspace.com/">Rackspace</a></li>
+<li><a href="https://www.digitalocean.com/?refcode=ff79a909861e">Digital Ocean</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Kryptos">Kryptos</a></li>
+<li><a href="https://github.com/jcupitt/libvips">Vips</a></li>
+<li><a href="http://imagemagick.org">ImageMagick</a></li>
+<li><a href="http://libgd.github.io">libgd</a></li></ul></li>
+<li><a href="http://macsparky.com/blog/2015/1/quitting-family-sharing">Family Sharing woes</a>
+<ul><li><a href="http://arstechnica.com/apple/2014/10/os-x-10-10/15/#family-sharing">Family Sharing in John's Yosemite review</a></li></ul></li>
+<li>Post-show:
+<ul><li>More Destiny woes
+<ul><li>John's Destiny TV</li>
+<li>UI issues</li></ul></li>
+<li>John teases Marco
+<ul><li><a href="https://twitter.com/bagrow/status/563132593437040640">John's retweet</a></li></ul></li>
+<li>Toaster judging criteria</li>
+<li><a href="http://neutral.fm/">Neutral</a>:
+<ul><li>Casey drove an M4
+<ul><li><a href="https://vimeo.com/77462095">Casey not driving an M5 well</a></li></ul></li>
+<li><em>The referenced Car and Driver article is on page 24 of the March 2015 issue</em></li>
+<li><a href="https://twitter.com/elonmusk/status/560898568748531712">Elon Musk's tweet</a></li>
+<li><a href="https://www.youtube.com/watch?v=LpaLgF1uLB8">P85D launch reactions</a> (NSFW)</li>
+<li>Cayman GT4
+<ul><li><a href="http://www.blogcdn.com/slideshows/images/slides/857/727/S857727/slug/l/2014-porsche-cayman-s-review-2-1.jpg">Rear spoiler</a></li>
+<li><a href="http://jalopnik.com/how-much-better-is-the-new-porsche-cayman-than-the-old-1566718109">New versus old</a></li></ul></li>
+<li>Maintaining old supercars
+<ul><li><em>Car and Driver Ferrari 355 ownership article appears on page 112 of the March 2015 issue</em></li></ul></li>
+<li><a href="http://jalopnik.com/2016-ferrari-488-gtb-this-is-it-1683354918">Ferrari 488</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.
+<ul><li><a href="http://www.amazon.com/dp/B00FN3MV88/?tag=siracusa-20">This week's toaster</a> and <a href="http://www.amazon.com/dp/B00357YS3A?tag=siracusa-2">John's usual toaster</a></li>
+<li><a href="http://5by5.tv/hypercritical/18">Hypercritical on toasters</a> and <a href="https://twitter.com/hotdogsladies/status/78943516725743616">acquiring John's</a></li></ul></li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP15</strong> for 15% off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Handwriting recognition, net neutrality, hosting Overcast, and a special post-show Neutral.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54c99ad7e4b0718fb53945c5</guid><pubDate>Fri, 30 Jan 2015 16:08:43 +0000</pubDate><title>102: Marco Is Not a Platform</title><itunes:title>Marco Is Not a Platform</itunes:title><itunes:episode>102</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:36:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp102.mp3" length="69704150" type="audio/mpeg"/><link>https://atp.fm/102</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Handwriting recognition with non-Roman languages (via <a href="https://twitter.com/dansherson/status/558527943987957760">@dansherson</a>)</li>
+<li>Marco's possibly-hypocritical (but not hypercritical) thoughts on Apple developer relations
+<ul><li><a href="http://daringfireball.net/thetalkshow/2015/01/12/ep-107">The Talk Show #107: Now It's All Floppy</a></li>
+<li><a href="http://www.marco.org/2015/01/15/overcast-sales-numbers">Overcast earnings</a></li>
+<li><a href="http://www.hellointernet.fm/podcast/6">Hello Internet #6: Delete, Flag, Delete, Reply</a></li>
+<li><a href="http://www.relay.fm/analogue/16">Analog(ue) #16: I Don't Trust Systems</a></li>
+<li><a href="http://5by5.tv/b2w">Back to Work</a></li></ul></li>
+<li>How do you learn a new language?
+<ul><li><a href="http://www.caseyliss.com/2014/6/9/how-do-i-start-programming">Casey's blog post</a></li>
+<li><a href="https://tour.golang.org/">Tour of Go</a></li>
+<li><a href="http://www.stackoverflow.com/">Stack Overflow</a></li>
+<li><a href="http://nshipster.com/">NSHipster</a></li></ul></li>
+<li><a href="http://sixcolors.com/post/2015/01/apple-announces-q1-2015-results-today/">Apple's earnings</a>
+<ul><li><a href="http://www.imdb.com/title/tt0088850/">Brewster's Millions</a></li>
+<li><a href="http://www.imore.com/60-melton-ganatra-episode-iii-shipping-software">Debug #60: Shipping Software</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2015/01/24/ep-108">The Talk Show #108: 'Malapros'</a></li>
+<li><a href="http://www.objc.io/issue-20/andy-matuschak.html">Andy Matuschak interview</a></li></ul></li></ul></li>
+<li><a href="http://appadvice.com/appnn/2015/01/whatever-happened-to-apples-photos-app-for-mac">What's going on with Photos.app?</a></li>
+<li>Fake sponsor break for two awesome conferences on the British Isles:
+<ul><li><a href="http://nsconference.com/">NSConference</a></li>
+<li><a href="http://ull.ie/">Úll</a></li>
+<li><a href="https://www.youtube.com/watch?v=rNu8XDBSn10">CGP Grey explains the United Kingdom</a></li>
+<li><a href="https://www.youtube.com/watch?v=9q7VjLVU8Ec">How to pronounce UK place names</a></li></ul></li>
+<li>Familiarity and Progress (via <a href="https://twitter.com/garybernhardt/status/560578289018757120">Gary Bernhardt</a>)
+<ul><li><a href="http://stratechery.com/2015/bad-assumptions/">Bad Assumptions</a></li>
+<li><a href="https://twitter.com/sean_a_rose/status/560296459690860544">Horace Dediu (Asymco) quote</a></li>
+<li><a href="http://www.macalope.com/">Macalope</a></li>
+<li><a href="http://www.virtualworldlets.net/Shop/ProductsDisplay/VRInterface.php?ID=147">Sega VR</a></li></ul></li>
+<li>Post-show:
+<ul><li>Microsoft today
+<ul><li><a href="http://www.microsoft.com/microsoft-hololens/en-us?ocid=ASPEN_SEM_bing_&amp;cid=ASPEN_SEM_bing_">HoloLens</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Kinect">Kinect</a></li>
+<li><a href="http://www.autodesk.com/products/maya/overview">Maya</a></li>
+<li><a href="http://www.relay.fm/rocket/2">Rocket</a></li>
+<li><a href="https://www.oculus.com">Oculus</a></li></ul></li>
+<li>John's sad TV news
+<ul><li><a href="http://www.amazon.com/dp/B00BC4SJEC/?tag=siracusa-20">John's TV</a></li>
+<li><a href="http://www.destinythegame.com">Destiny</a></li>
+<li><a href="http://assets.vg247.com/current//2014/06/Destiny_5.jpg">HUD</a></li>
+<li><a href="https://www.bungie.net/en/Forum/Topics/0/6/0/%23hud">HUD Issues</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Full_House">Full House</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off, and check out <a href="http://www.dreamingwithjeff.com/">Jeff Bridges' Sleeping Tapes</a>.</li>
+</ul>]]></description><itunes:subtitle>Whether it's worth answering email, learning new languages, using Apple's money to solve problems, and the British Isles.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54c0776ee4b0dc9e2a5c8825</guid><pubDate>Fri, 23 Jan 2015 00:08:57 +0000</pubDate><title>101: Big Plastic Finger</title><itunes:title>Big Plastic Finger</itunes:title><itunes:episode>101</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:39:19</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp101.mp3" length="71630068" type="audio/mpeg"/><link>https://atp.fm/101</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>12" MacBook Air
+<ul><li>Efficient use of <a href="http://en.wikipedia.org/wiki/PCI_Express">PCI Express lanes</a> may be the reason for only one USB 3.1 port.</li>
+<li>RIP Thunderbolt?
+<ul><li><a href="http://dictionary.reference.com/browse/sessile?s=t">Sessile</a></li>
+<li><a href="http://www.apple.com/displays/">Thunderbolt Display</a></li>
+<li><a href="https://en.wikipedia.org/wiki/PowerBook_Duo#Duo_Dock">Duo Dock</a></li>
+<li><a href="http://www.amazon.com/dp/B00NAWCU7G/?tag=marcoorg-20">Belkin Thunderbolt Dock</a></li></ul></li>
+<li>How do you power it?
+<ul><li><a href="http://witricity.com/">WiTricity</a>
+<ul><li><a href="https://www.youtube.com/watch?v=b2LgVJfmeck">Demo video</a></li></ul></li>
+<li><a href="http://www.artemis.com/pcell">Artemis/pCell</a>
+<ul><li><a href="http://atp.fm/episodes/61">ATP #61</a></li>
+<li><a href="http://atp.fm/episodes/62">ATP #62</a></li></ul></li>
+<li><a href="http://www.imdb.com/title/tt0096874/?ref_=fn_al_tt_3">Back to the Future 2</a></li></ul></li></ul></li>
+<li>Reliability Probability
+<ul><li><a href="http://www.leancrew.com/all-this/2015/01/probability-of-failure-high/">Dr. Drang</a></li>
+<li><a href="http://kieranhealy.org/blog/archives/2015/01/15/failure-in-complex-systems/">Kieran Healy</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Network_effect">Network Effect</a></li></ul></li></ul></li>
+<li><a href="http://daringfireball.net/linked/2015/01/20/kuo-stylus">iPad Pro with an optional stylus?</a>
+<ul><li><a href="https://www.fiftythree.com/paper">Paper</a> <a href="https://www.fiftythree.com/pencil">Pencil</a></li>
+<li><a href="http://www.studioneat.com/products/cosmonaut">Cosmonaut</a></li></ul></li>
+<li><a href="http://cesweb.org">CES</a>
+<ul><li><a href="http://thewirecutter.com/2015/01/things-we-like-for-2015-a-realists-guide-to-ces/">Wirecutter highlights</a></li>
+<li><a href="http://www.theverge.com/2015/1/5/7493099/uhd-alliance-announced-samsung-disney-netflix-others-standardize-uhd-ces-2015">UHD Alliance</a></li>
+<li><a href="http://hypercritical.co/2013/01/07/ces-worse-products-through-software">CES: Worse Products Through Software</a></li></ul></li>
+<li><a href="http://www.rogueamoeba.com/audiohijack/">Audio Hijack 3</a>
+<ul><li><a href="http://www.rogueamoeba.com/audiohijack/images/screenshots/AH3-sshot-1@2x.png">Screenshot</a></li>
+<li><a href="http://workflow.is/">Workflow</a></li></ul></li>
+<li>Post-show:
+<ul><li>How much is Marco saving by using Go?</li>
+<li>WatchKit's limitations and what to expect from the first year of Apple Watch apps</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.getharvest.com/">Harvest</a>: Simple, beautiful online time-tracking software. Use code <strong>ATP</strong> for 50% off your first month.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Who wants a stylus? You have to get ‘em, and put ‘em away, and you lose ‘em… yuck. Nobody wants a stylus.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54b72666e4b0b6572f74c9c7</guid><pubDate>Fri, 16 Jan 2015 01:41:44 +0000</pubDate><title>100: MacBook Shuffle</title><itunes:title>MacBook Shuffle</itunes:title><itunes:episode>100</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp100.mp3" length="74750807" type="audio/mpeg"/><link>https://atp.fm/100</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li>🎉 Episode 100 🎉
+<ul><li><a href="http://5by5.tv/hypercritical">Hypercritical</a></li>
+<li><a href="http://5by5.tv/buildanalyze/">Build and Analyze</a></li>
+<li><a href="http://www.merlinmann.com/roderick/ep-134-a-minimum-of-eels.html">Roderick on the Line: A Minimum of Eels</a></li></ul></li>
+<li>Showbot woes (again)
+<ul><li><a href="http://www.caseyliss.com/2015/1/15/camel-changes">Camel updates</a></li>
+<li><a href="https://github.com/chjj/marked">marked</a></li>
+<li><a href="https://github.com/markdown-it/markdown-it">markdown-it</a></li>
+<li><a href="https://twitter.com/chrisfinazzo/status/555544483069435904">Showbot issue screencap</a></li></ul></li></ul></li>
+<li>Follow-up:
+<ul><li>Anecdotal evidence of USB usage</li>
+<li>Context of the 12" Air discussion
+<ul><li><a href="https://www.youtube.com/watch?v=vN4U5FqrOdQ">Keynote</a></li></ul></li>
+<li>Thinness
+<ul><li><a href="https://twitter.com/jasonpbecker/status/555455117777195008">Jason Becker reminds us of Hypercritical</a></li>
+<li><a href="http://hypercritical.co/2013/02/08/dont-stop-thinking-about-tomorrow">John's post on thinness</a></li>
+<li><a href="http://5by5.tv/hypercritical/91">Hypercritical #91</a></li>
+<li><a href="http://sixcolors.com/post/2015/01/battery-life-apples-solving-for-x/">Solving for x</a></li></ul></li>
+<li>Powering a 12" Air
+<ul><li><a href="https://twitter.com/tgaul/status/555170456211554304">Troy Gaul's first theory</a></li>
+<li><a href="https://twitter.com/tgaul/status/555170671366795264">Troy Gaul's second theory</a></li></ul></li>
+<li>Does the 12" Air compete with <a href="https://en.wikipedia.org/wiki/ChromeBook">Chromebook</a>s?
+<ul><li><a href="http://shrineofapple.com/blog/2011/07/30/powermacintoshg3aio/">Molar</a></li>
+<li><a href="http://www.nbcnews.com/id/8973616/ns/technology_and_science-tech_and_gadgets/t/laptop-sale-sets-violent-stampede/#.VLcrUYrF9Hg">Stampede for iBooks</a></li></ul></li>
+<li>Are Thunderbolt and Lightning dead? (via <a href="https://twitter.com/wooger/status/553714652908388354">Oliver Agar</a>)</li></ul></li>
+<li>What can Apple do to fix reliability issues?
+<ul><li><a href="http://www.objc.io/issue-20/andy-matuschak.html">Interview with Andy Matuschak</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2015/01/12/ep-107">Marco on The Talk Show</a></li></ul></li>
+<li>Post-Show <a href="http://neutral.fm/">Neutral</a>
+<ul><li><a href="http://www.caranddriver.com/news/2016-acura-nsx-photos-and-info-news">New NSX</a>
+<ul><li><a href="https://www.youtube.com/watch?v=KyLYYLc_wUA">Intro video</a></li></ul></li>
+<li><a href="http://www.caranddriver.com/news/2017-ford-gt-official-photos-and-info-news">New Ford GT</a></li>
+<li><a href="http://www.cadillac.com/v-series/2016-cts-v-sedan.html">CTS-V</a></li>
+<li><a href="http://www.lexus.com/models/RCF">RC F</a></li>
+<li><a href="https://www.youtube.com/watch?v=_z9q096Lhj0">BMW at CES recap video</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chevrolet_Corvette#Seventh_generation-C7_.282014.E2.80.93.29">C7 Corvette</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Ferrari_FF">Ferrari FF</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP</strong> for 15% off. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Our 100th Episode Spectacular!</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54aef518e4b00868a1cb5d6d</guid><pubDate>Fri, 09 Jan 2015 20:11:41 +0000</pubDate><title>99: Pop-Up Headlights</title><itunes:title>Pop-Up Headlights</itunes:title><itunes:episode>99</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp99.mp3" length="86528647" type="audio/mpeg"/><link>https://atp.fm/99</link><description><![CDATA[<ul>
+<li>Follow-Up:
+<ul><li>SSL
+<ul><li>In schools &amp; corporations</li>
+<li><a href="http://www.gogoair.com/">Gogo</a> actually <a href="http://www.neowin.net/news/gogo-inflight-internet-is-intentionally-issuing-fake-ssl-certificates">issues their own certificates to intercept SSL</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SOCKS">SOCKS</a></li></ul></li>
+<li>Using C# outside Windows (via <a href="https://twitter.com/praeclarum/status/551517070186541056">Frank A. Krueger</a>)</li>
+<li>Marco's <a href="https://golang.org">Go</a> feed poller <a href="https://twitter.com/marcoarment/status/552202315181326336">update</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Integrated_development_environment">IDE</a></li>
+<li><a href="http://www.eclipse.org">Eclipse</a></li>
+<li><a href="http://www.rust-lang.org">Rust</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Communicating_sequential_processes">Communicating sequential processes</a></li></ul></li></ul></li>
+<li>Apple's Software Quality
+<ul><li><a href="http://www.marco.org/2015/01/04/apple-lost-functional-high-ground">Marco's post</a></li>
+<li><a href="http://www.marco.org/2015/01/05/popular-for-a-day">Marco's retrospective</a></li>
+<li><a href="http://video.cnbc.com/gallery/?video=3000343764">Mention on CNBC</a></li>
+<li><a href="http://5by5.tv/hypercritical/55">Hypercritical #55</a></li>
+<li><a href="http://www.caseyliss.com/2015/1/5/bravery">Casey's response to Marco</a></li>
+<li><a href="http://glog.glennf.com/blog/2015/1/6/the-software-and-services-apple-needs-to-fix">Glenn Fleishman's list</a></li></ul></li>
+<li>How to write for understanding
+<ul><li><a href="http://www.marco.org/2013/12/29/apple-doesnt-have-time">Marco laments about software quality in the past</a></li></ul></li>
+<li><a href="http://9to5mac.com/2015/01/06/macbook-air-12-inch-redesign/">Rumored 12" MacBook Air</a>
+<ul><li><a href="https://www.twelvesouth.com/product/plugbug">PlugBug</a></li>
+<li><a href="https://twitter.com/chockenberry/status/552928449250078721">Chockenberry on a potential ARM transition</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Fat_binary">Fat binary</a></li>
+<li>Special thanks to <a href="http://david-smith.org/">_DavidSmith</a> for finding "bezels" in <a href="http://5by5.tv/hypercritical/22">Hypercritical #22</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>HIGHGROUND</strong> for 10% off.</li>
+<li><a href="https://caspersleep.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+</ul>]]></description><itunes:subtitle>Adventures in Go, Apple's software-quality issues, Marco's blogging issues, and the rumored 12-inch MacBook Air.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54a82efbe4b08424e6a1e943</guid><pubDate>Sat, 03 Jan 2015 21:40:44 +0000</pubDate><title>98: Landmines, Pitfalls, and Bottomless Pits</title><itunes:title>Landmines, Pitfalls, and Bottomless Pits</itunes:title><itunes:episode>98</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:07:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp98.mp3" length="92162319" type="audio/mpeg"/><link>https://atp.fm/98</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>More on John's windowing strategy
+<ul><li><a href="http://www.macupdate.com/app/mac/6272/application-switcher-menu">Application Switcher Menu</a> (the <a href="http://www.vercruesse.de/">developer's site</a> is down)</li>
+<li><a href="http://www.dragthing.com/">DragThing</a></li></ul></li>
+<li>Why one would run SSL on "read-only" sites</li></ul></li>
+<li>Marco (mostly) hates new things again
+<ul><li><a href="http://nodejs.org">Node</a></li>
+<li><a href="https://golang.org">Go</a></li>
+<li><a href="https://www.python.org">Python</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Generic_programming">Generics</a></li>
+<li><a href="https://en.wikipedia.org/wiki/C_preprocessor">C Macros</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Operator_overloading">Operator overloading</a></li>
+<li><a href="http://rubyonrails.org">Rails</a></li>
+<li><a href="https://twitter.com/siracusa/status/550789632561283072">John's thought on Twitter</a></li>
+<li><a href="http://search.cpan.org/dist/AnyEvent/">AnyEvent</a></li>
+<li><a href="http://software.schmorp.de/pkg/libev.html">libev</a></li>
+<li><a href="http://libevent.org">libevent</a></li>
+<li><a href="http://www.shiftyjelly.com">Shifty Jelly</a> &amp; <a href="http://www.shiftyjelly.com/pocketcasts">Pocket Casts</a></li>
+<li><a href="http://www.coreint.org/2014/12/episode-167-that-little-tinge-of-uncertainty/">Core Intuition on Swift</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Objective-C#Garbage_collection">Garbage Collection in Objective-C</a></li>
+<li><a href="https://developer.apple.com/legacy/library/documentation/Cocoa/Conceptual/Legacy/JavaBridge/JavaBridge.pdf">Apple Java Bridge</a></li>
+<li><a href="https://en.wikipedia.org/wiki/CodeWarrior">CodeWarrior</a></li></ul></li>
+<li><a href="https://www.icloud.com/photostream/#A4G60dj6GJ6KNN">Apple's Marketing Survey</a> (via Joe Sieger)
+<ul><li><a href="https://developer.apple.com/app-store/review/guidelines/">App Store Review Guidelines</a>, specifically <a href="https://developer.apple.com/app-store/review/guidelines/#push-notifications">5.6</a></li>
+<li><a href="https://developer.apple.com/news/?id=12302014a">Apple's humorous announcement</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Pointy-haired_Boss">Pointy-haired boss</a></li>
+<li><a href="http://www.panic.com/">Panic</a></li></ul></li>
+<li>Marco's new thoughts on his new iPad
+<ul><li><a href="http://tapbots.com/software/tweetbot/ipad/">Tweetbot</a></li>
+<li><a href="http://bigbucketsoftware.com/theincident/">The Incident</a></li>
+<li><a href="http://www.spaceageapp.com">Space Age</a></li>
+<li><a href="http://www.objc.io">objc.io</a></li>
+<li><a href="https://www.phpbb.com">phpBB</a></li></ul></li>
+<li>Post-show
+<ul><li>Textshotting
+<ul><li><a href="https://twitter.com/mgsiegler/status/549346303634059266">Example from MG Siegler</a></li>
+<li><a href="https://twitter.com/fmanjoo/status/550437974010126336">Example from Farhad Manjoo</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Wireless_Application_Protocol">WAP</a></li></ul></li>
+<li><a href="http://boarshead.com/products/detail/545-pancetta">Boar's Head Pancetta</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Serial_comma">Oxford comma</a>
+<ul><li><a href="http://en.wikipedia.org/wiki/Serial_comma#Resolving_ambiguity">Examples</a> </li></ul></li>
+<li>When to give up on a language
+<ul><li><a href="http://nodejs.org/api/timers.html">Node Timers module</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP</strong> for 20% off your first order. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Marco's Node results, Apple's developer marketing survey, and getting back into the iPad.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54996e1fe4b015fce7fb289e</guid><pubDate>Fri, 26 Dec 2014 15:42:57 +0000</pubDate><title>97: You Have to Know When to Stop</title><itunes:title>You Have to Know When to Stop</itunes:title><itunes:episode>97</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp97.mp3" length="62984666" type="audio/mpeg"/><link>https://atp.fm/97</link><description><![CDATA[<ul>
+<li>Follow-Up:
+<ul><li><a href="http://searchengineland.com/google-starts-giving-ranking-boost-secure-httpsssl-sites-199446">Google giving SSL Sites search ranking boost</a> (via (@<a href="https://twitter.com/thesupermikey/status/546382081165918208">thesupermikey</a>)</li>
+<li><a href="https://letsencrypt.org/">Let's Encrypt</a> plans to give free SSL certs</li>
+<li><a href="http://en.wikipedia.org/wiki/Google_Authenticator">Google Authenticator</a> and handling web forms appropriately</li></ul></li>
+<li>Marco expands his horizons
+<ul><li><a href="http://en.wikipedia.org/wiki/POODLE">POODLE attack</a></li>
+<li><a href="http://curl.haxx.se">cURL</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Transport_Layer_Security">SSL/TLS</a></li>
+<li><a href="http://nodejs.org/">Node.js</a></li>
+<li><a href="http://supervisord.org/">supervisord</a></li>
+<li><a href="http://kr.github.io/beanstalkd/">beanstalkd</a></li>
+<li><a href="http://curl.haxx.se/libcurl/c/libcurl-multi.html">curl-multi</a> </li>
+<li><a href="https://github.com/atmos/camo">camo</a></li>
+<li><a href="https://www.heroku.com">Heroku</a></li>
+<li><a href="http://memcached.org/">memcached</a></li>
+<li><a href="http://nginx.org/">nginx</a></li>
+<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Inheritance_and_the_prototype_chain">JavaScript prototypes</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Pentium_Pro">Pentium Pro</a></li>
+<li><a href="https://code.google.com/p/v8/">V8 Engine</a></li>
+<li><a href="https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers.setTimeout">setTimeout()</a></li>
+<li><a href="https://golang.org">Go</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSURLSession_class/index.html">NSURLSession</a></li>
+<li><a href="http://www.macminicolo.net">MacMiniColo</a></li>
+<li><a href="https://www.linode.com">Linode</a></li>
+<li><a href="http://framework.zend.com">Zend Framework</a></li>
+<li><a href="http://hacklang.org">Hack</a></li>
+<li><a href="http://hhvm.com">HHVM</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/Miscellaneous/Conceptual/CloudKitQuickStart/Introduction/Introduction.html">CloudKit</a></li></ul></li>
+<li>Holidays as the family tech support expert
+<ul><li><a href="http://hypercritical.co/2013/12/22/fill-your-tv">Fill Your TV</a></li>
+<li><a href="http://www.alsoft.com/DiskWarrior/">DiskWarrior</a></li>
+<li><a href="http://www.irltalk.com/episodes/episode-24-you-only-need-to-make-it-to-88-mph">Communication Pyramid</a></li></ul></li>
+<li>Casey tries <a href="http://workflow.is/">Workflow</a> and channels his inner <a href="http://www.macstories.net/reviews/workflow-review-integrated-automation-for-ios-8/">Federico Viticci</a>
+<ul><li><a href="http://www.caseyliss.com/2014/12/21/workflow-for-ios">Casey's Review</a> (posted after this show was recorded)</li>
+<li><a href="http://relay.fm/analog/">Analog(ue)</a></li>
+<li><a href="http://synology.com">Synology NAS Devices</a></li></ul></li>
+<li>Post-show:
+<ul><li>Holiday equipment physical inspections</li>
+<li><a href="http://www.gethopscotch.com/">Hopscotch</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Turing_completeness">Turing completeness</a></li></ul></li>
+<li>Be sure to turn on relatives' iCloud Backups</li>
+<li>John's etiquitte guide to real-time tweeting to podcast hosts while listening
+<ul><li>Yes, John knows you can copy to the clipboard from Google Authenticator</li>
+<li><a href="http://www.irltalk.com">IRLTalk</a></li></ul></li>
+<li><a href="http://blog.gethopscotch.com/post/97227341146/hopscotch-is-now-turing-complete">Hopscotch achieves Turing completeness</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Marco leaves his house for the first time, Casey travels to Italy on his iPad, and John rescues his family from outdated operating systems.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:549424c2e4b0dae0eab55f7a</guid><pubDate>Fri, 19 Dec 2014 23:34:24 +0000</pubDate><title>96: The Windows of Siracusa County</title><itunes:title>The Windows of Siracusa County</itunes:title><itunes:episode>96</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:01</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp96.mp3" length="103818576" type="audio/mpeg"/><link>https://atp.fm/96</link><description><![CDATA[<ul>
+<li>Casey upgrades his podcasting setup after an awkward Apple store experience</li>
+<li>Follow-up:
+<ul><li>App Store Woes
+<ul><li><a href="https://twitter.com/panic/status/543095328287633408">Panic's Transmit woes reversed</a></li>
+<li><a href="http://shinyplasticbag.com/dragondrop/">DragonDrop</a></li>
+<li><a href="http://whimsicalifornia.com/timebar/">Timebar</a></li>
+<li><a href="https://cromulentlabs.wordpress.com/2014/12/07/launcher-followup-and-thoughts-on-the-app-store-review-system/">Launcher</a></li></ul></li>
+<li><a href="http://www.smh.com.au/digital-life/games/how-andy-and-matt-are-making-a-motza-by-wasting-your-time-with-crossy-road-20141217-1276j5.touch.html">Crossy Road financials</a></li>
+<li>PS4 DLNA support is coming (via <a href="https://twitter.com/asendra_/status/543706781172916224">@asendra_</a>)</li>
+<li><a href="https://plex.tv/">Plex</a> has <a href="https://blog.plex.tv/2014/12/17/plex-now-sega-genesis-just-kidding-ps3-ps4/">announced PS4 support</a> (via <a href="https://twitter.com/returnedlast/status/545264456516005888">@returnedlast</a>)
+<ul><li>However, <a href="https://support.plex.tv/hc/en-us/articles/204074136">rollout will be staggered</a></li></ul></li>
+<li>Sleazy Twitter app scans</li>
+<li><a href="http://www.neglectedpotential.com">Nick Arnott</a> corrects Marco</li>
+<li><a href="https://twitter.com/AlexRedSox/status/544912344221220864">Christmas comes early</a> for John, perhaps because of <a href="https://twitter.com/RoMoExpress/status/545234594052980736">Romain</a> <a href="https://twitter.com/RoMoExpress/status/545234791868952577">Moisescot</a>
+<ul><li><a href="http://tapbots.com/software/pastebot/">Pastebot</a> (RIP)</li></ul></li></ul></li>
+<li><a href="http://hockeyapp.net/blog/2014/12/11/hockeyapp-joins-microsoft.html">Microsoft Acquires Hockey App</a>
+<ul><li><a href="http://azure.microsoft.com/en-us/documentation/services/mobile-services/">Azure Mobile Services</a></li></ul></li>
+<li><a href="http://www.chromium.org/Home/chromium-security/marking-http-as-non-secure">Should HTTP or HTTPS be the default browser state</a>?
+<ul><li><a href="https://www.eff.org/https-everywhere">HTTPS Everywhere</a></li>
+<li><a href="http://daringfireball.net/linked/2014/12/16/eric-schmidt-privacy">Eric Schmidt is confused, as usual</a></li></ul></li>
+<li>Finally, a very special after-show, starting with John missing <a href="https://en.wikipedia.org/wiki/WindowShade">WindowShade</a> (<a href="https://riscx.files.wordpress.com/2010/09/windowshade_x_review_092610.jpg">image</a>).</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://thedash.com/atp">Dash</a>: Create a free, real-time dashboard for your website, your business, or your life. (Check out the ones they made for us.)</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+</ul>]]></description><itunes:subtitle>We wouldn't use a Siracusa County title lightly.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:548a1ed4e4b0567da79d542d</guid><pubDate>Thu, 11 Dec 2014 23:08:30 +0000</pubDate><title>95: The Bear Wakes Up and Bites You</title><itunes:title>The Bear Wakes Up and Bites You</itunes:title><itunes:episode>95</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp95.mp3" length="80796272" type="audio/mpeg"/><link>https://atp.fm/95</link><description><![CDATA[<ul>
+<li>Follow-Up:
+<ul><li><a href="https://twitter.com/mergesort/status/541439080584978433">Ad income isn't included in Top Grossing</a> (Joe F.)</li>
+<li><a href="https://twitter.com/WickedGood/status/541983373401804802">Crossy Road added a coin doubler</a> (Steve Lubitz) and <a href="https://twitter.com/KlickTock/status/542047095985688576">developer response</a></li></ul></li>
+<li><a href="http://bitsplitting.org/2014/12/10/push-notification-traps/">Daniel Jalkut's idea for Push Notification Traps</a></li>
+<li>This week's App Store drama
+<ul><li><a href="https://cromulentlabs.wordpress.com/2014/12/07/launcher-followup-and-thoughts-on-the-app-store-review-system/">The phone call to Launcher's developer</a></li>
+<li><a href="http://oleb.net/blog/2014/12/apple-out-of-touch/">Apple's questionable decisions recently</a></li>
+<li><a href="http://www.joecieplinski.com/blog/2014/12/09/regarding-the-latest-app-store-rejections/">Friction within Apple?</a></li>
+<li><a href="http://stratechery.com/2014/daily-update-app-store-anguish-old-apples-last-stand-time-change/">Stratechery: App Store Anguish, Old Apple's Last Stand, Time for a Change?</a> (membership required)</li></ul></li>
+<li>Obligations to maintain your apps
+<ul><li>Why Casey discontinued <a href="http://fasttext.caseyliss.com/">Fast Text</a></li>
+<li>Open-source time commitments
+<ul><li>Casey's <a href="https://github.com/cliss/accidentalbot">Accidentalbot</a> and <a href="https://github.com/cliss/camel">Camel</a></li>
+<li>John's <a href="http://search.cpan.org/~jsiracusa/">CPAN modules</a></li>
+<li>Marco's <a href="https://github.com/marcoarment/FCModel">FCModel</a> and <a href="http://www.marco.org/2014/01/20/bugshotkit">BugshotKit</a></li></ul></li></ul></li>
+<li>Post-show:
+<ul><li>John has some opinions on his PS4 so far.</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://hioscar.com/atp">Oscar</a>: A novel approach to health insurance for people, not corporations.</li>
+</ul>]]></description><itunes:subtitle>App Store drama, detecting push-notification spam, and obligations to maintain your old apps and open-source projects.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5480ba89e4b09a87487706f8</guid><pubDate>Fri, 05 Dec 2014 21:19:09 +0000</pubDate><title>94: Spirited Defense of Pong</title><itunes:title>Spirited Defense of Pong</itunes:title><itunes:episode>94</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:40:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp94.mp3" length="72593042" type="audio/mpeg"/><link>https://atp.fm/94</link><description><![CDATA[<ul>
+<li>Follow-Up:
+<ul><li>Casey clears up his car intentions
+<ul><li><a href="http://wot.motortrend.com/1411_volkswagen_golf_r_wagon_to_debut_at_l_a_auto_show.html#__federated=1">Golf R Wagon/Estate</a></li></ul></li></ul></li>
+<li><a href="http://www.marco.org/2014/12/01/app-store-rule-5-6">Apple using push notifications for an advertisement</a>
+<ul><li><a href="https://developer.apple.com/app-store/review/guidelines/#push-notifications">App Store Rule 5.6</a></li>
+<li><a href="https://twitter.com/tapbot_paul/status/539594117634748416">Paul Haddad's Idea</a></li></ul></li>
+<li><a href="http://www.macstories.net/ios/goodbye-drafts-widget-for-now/">Drafts' Today Widget fiasco</a>
+<ul><li>Tweets from <a href="https://twitter.com/agiletortoise">Greg Pierce</a>, author of <a href="http://agiletortoise.com/drafts/">Drafts</a>
+<ul><li><a href="https://twitter.com/agiletortoise/status/539887084128174082">One</a>, <a href="https://twitter.com/agiletortoise/status/539887258380541954">two</a>, <a href="https://twitter.com/agiletortoise/status/539888106095521795">three</a>, <a href="https://twitter.com/agiletortoise/status/539955598859583488">four</a></li></ul></li>
+<li><a href="http://www.imore.com/pcalc-widgets-and-how-app-store-works">PCalc's Today Widget brouhaha</a></li></ul></li>
+<li><a href="http://www.allenpike.com/2014/podcast-recording/">Should one create an app for creating podcasts?</a> Are niche professional apps worth creating?
+<ul><li><a href="http://martiancraft.com/blog/2014/12/professional-app-pricing/">Well, maybe...</a></li>
+<li><a href="http://www.finaldraft.com">Final Draft</a></li>
+<li><a href="http://johnaugust.com/scriptnotes">John August's Scripnotes Podcast</a></li>
+<li><a href="http://www.quark.com/Products/QuarkXPress/#1">Quark XPress</a></li>
+<li><a href="https://www.apple.com/logic-pro/">Logic Pro X</a></li>
+<li><a href="http://hindenburg.com/">Hindenburg</a> (<a href="http://hindenburg.com/about/#/why-hindenburg">Why the name "Hindenburg"?</a>)</li>
+<li><a href="https://www.copilot.com/">Fog Creek Copilot</a></li>
+<li><a href="http://www.coreint.org/2014/11/episode-162-double-down-on-that/">Core Intuition on App Windfalls</a></li></ul></li>
+<li>Game monetization and <a href="http://www.crossyroad.com">Crossy Road</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Frogger">Frogger</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Team_Fortress_2">Team Fortress 2</a></li>
+<li><a href="http://www.supercell.net/games/view/clash-of-clans">Clash of Clans</a></li>
+<li><a href="https://twitter.com/matthew_d_green/status/537236790000615426">The danger of Touch ID for sleeping parents</a></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://www.sixcolors.com/">Jason Snell</a> dominates Crossy Road
+<ul><li>(John's son dominates Jason Snell)</li></ul></li>
+<li>More on profitability (<a href="https://appfigures.com/">AppFigures</a>)</li>
+<li><a href="http://desertgolfing.captain-games.com">Desert Golfing</a>
+<ul><li><a href="http://www.upup.fm/show/kinda-annoy-people/">Up Up Down Down Interview</a></li></ul></li>
+<li><a href="http://twinbeard.com/frog-fractions">Frog Fractions</a></li>
+<li><a href="http://goo.gl/V9sAaH">Scorched Earth</a></li>
+<li><a href="https://itunes.apple.com/us/app/super-gravitron/id884231688?mt=8">Super Gravitron</a></li>
+<li><a href="https://itunes.apple.com/us/app/super-hexagon/id549027629?mt=8">Super Hexagon</a></li>
+<li><a href="https://itunes.apple.com/us/app/vvvvvv/id880645949?mt=8">VVVVVV</a></li>
+<li><a href="https://itunes.apple.com/us/app/threes!/id779157948?mt=8">Threes!</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.studioneat.com/atp">Studio Neat's ATP Cocktails</a>: Pick a drink and settle in for some F.U., browse their <a href="http://www.studioneat.com/pages/toolguide">Cocktail Tool Guide</a>, then use coupon <strong>ATP</strong> for 10% off anything in the Studio Neat store.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price, and a great gift for the holidays. Use code <strong>ATPHOLIDAY</strong> for $5 off the Winter Winston set.</li>
+</ul>]]></description><itunes:subtitle>Push-notification ads, Apple vs. Today widgets, feasibility of pro podcasting apps, and Crossy Road.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54762daae4b0d0ffbbb13a83</guid><pubDate>Wed, 26 Nov 2014 22:41:16 +0000</pubDate><title>93: I'm Not Running a Boarding House Here</title><itunes:title>I'm Not Running a Boarding House Here</itunes:title><itunes:episode>93</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:37:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp93.mp3" length="70363977" type="audio/mpeg"/><link>https://atp.fm/93</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="http://sequence-omega.net/2012/06/batteries-in-five-years/">Correction on battery increases year over year</a>
+<ul><li><a href="http://5by5.tv/hypercritical/74">Hypercritical #74</a></li>
+<li>Apple's priorities and engineering tradeoffs
+<ul><li><a href="http://5by5.tv/prompt">The Prompt</a> (succeeded by <a href="http://relay.fm/connected">Connected</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Palm_V">Palm V</a></li></ul></li></ul></li>
+<li>IIS on !Windows
+<ul><li><a href="https://github.com/aspnet/KestrelHttpServer">Kestrel</a></li>
+<li><a href="https://github.com/joyent/libuv">libuv</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Nginx">nginx</a></li>
+<li><a href="http://www.hanselman.com/blog/AnnouncingNET2015NETasOpenSourceNETonMacandLinuxandVisualStudioCommunity.aspx">Scott Hanselman's summary</a></li></ul></li>
+<li><a href="https://medium.com/@BoltVC/no-you-cant-manufacture-that-like-apple-does-93bea02a3bbf">Casey can't manufacture that thing like Apple does</a></li>
+<li>Homescreens
+<ul><li><a href="https://twitter.com/Foundareason/status/535884568394727424">Some people like them empty</a></li></ul></li></ul></li>
+<li>Group homescreen shaming
+<ul><li><a href="http://homescreen.is/">#Homescreen</a> and <a href="http://homescreen.is/top-apps">the top apps</a></li>
+<li><a href="http://homescreen.is/siracusa">John</a></li>
+<li><a href="http://homescreen.is/marcoarment">Marco</a></li>
+<li><a href="http://homescreen.is/caseyliss">Casey</a></li></ul></li>
+<li>Why there isn't an <a href="https://overcast.fm/">Overcast</a> Mac app (yet?)
+<ul><li><a href="http://staff.tumblr.com/post/286303145/tumblr-backup-mac-beta">Tumblr Backup</a></li>
+<li><a href="http://chameleonproject.org">Chameleon</a></li>
+<li><a href="http://www.marco.org/2014/09/17/overcast-accidentally-universal">Overcast iPad</a></li>
+<li><a href="http://www.coreint.org/">Core Intuition</a></li>
+<li><a href="http://blog.feedwrangler.net/posts/2014/pod-wrangler-mac-first-beta.html">Pod Wrangler Mac</a></li></ul></li>
+<li>Post-show <a href="http://neutral.fm/">Neutral</a>:
+<ul><li><a href="http://www.vw.com/models/golf-r/">VW Golf R</a>
+<ul><li><a href="http://www.autoblog.com/2014/11/24/2015-volkswagen-golf-r-review-video/">Autoblog photos</a></li>
+<li><a href="http://image.motortrend.com/f/roadtests/hatchbacks/1402_2015_volkswagen_golf_r_euro_spec_first_drive/66463425/2015-volkswagen-golf-r-cockpit.jpg">Interior photo</a></li></ul></li>
+<li>Flat-bottomed steering wheels</li>
+<li>Possible upgrades for <a href="https://twitter.com/erinliss">Erin</a>'s car</li>
+<li>Oxymoronic Cars
+<ul><li><a href="http://www.bmwusa.com/standard/content/vehicles/2015/x/default.aspx#x5">X5</a></li>
+<li><a href="http://www.drivesrt.com/2014/grand-cherokee-srt/">SRT-8</a></li>
+<li><a href="http://www.teslamotors.com/modelx">Tesla Model X</a></li></ul></li>
+<li>Other options:
+<ul><li><a href="http://www.bmwusa.com/standard/content/Vehicles/2015/3/335ixdrivegranturismo/default.aspx">3-series GT</a></li>
+<li><a href="http://www.subaru.com/vehicles/outback/index.html">Outback</a></li>
+<li><a href="http://www.cadillac.com/cts-v-luxury-wagon.html">CTS-V Wagon</a></li>
+<li><a href="http://www.lexus.com/models/ES">Lexus ES</a></li>
+<li><a href="http://automobiles.honda.com/accord%2Dsedan/">Honda Accord</a></li>
+<li><a href="http://www.volvocars.com/us/cars/new-models/v60">Volvo V60</a></li>
+<li><a href="http://automobiles.honda.com/odyssey/">Honda Odyssey</a></li>
+<li><a href="http://www.ford.com/trucks/f150/">F-150</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>PHISHRULES</strong> for 10% off.</li>
+<li><a href="http://www.studioneat.com/products/neaticekit">Neat Ice Kit</a>: Create perfect, clear ice for cocktails at home (<a href="http://www.caseyliss.com/2014/7/25/neat-ice-kit">Casey's review</a>). Use coupon <strong>ATP</strong> for 10% off anything in the Studio Neat store.</li>
+</ul>]]></description><itunes:subtitle>Homescreen shaming, why there's no Overcast for Mac yet, and a very special Neutral after-show.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:546c18dce4b03f89760cde7d</guid><pubDate>Wed, 19 Nov 2014 23:36:26 +0000</pubDate><title>92: You Don't Know My Pants</title><itunes:title>You Don't Know My Pants</itunes:title><itunes:episode>92</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:31:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp92.mp3" length="66012589" type="audio/mpeg"/><link>https://atp.fm/92</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Inside info on why iWork seems so screwed up</li>
+<li>More on open source .NET, from <a href="https://twitter.com/scionwest">@Scionwest</a>
+<ul><li><a href="https://twitter.com/Scionwest/status/534373079258914818">1</a></li>
+<li><a href="https://twitter.com/Scionwest/status/534373296276393984">2</a></li>
+<li><a href="https://twitter.com/Scionwest/status/534373489977733120">3</a></li>
+<li><a href="https://twitter.com/Scionwest/status/534373944057278464">4</a></li>
+<li><a href="http://www.discourse.org/">Discourse</a> (<a href="https://github.com/discourse/discourse">source</a>)</li></ul></li>
+<li>Germany's equivalent of Consumer Reports <a href="https://www.test.de/Smartphones-Biegestress-in-der-Hosentasche-4777471-0/">tests the bendiness of the new iPhones</a> (link in German)</li></ul></li>
+<li>Nokia's <a href="http://www.theverge.com/2014/11/18/7239709/nokia-n1-tablet-price-release-date">new tablet</a> features the <a href="http://www.theverge.com/2014/11/18/7239709/nokia-n1-tablet-price-release-date#photo-7003714-12">USB Type C connector</a></li>
+<li><a href="https://developer.apple.com/watchkit/">WatchKit</a>
+<ul><li><a href="http://www.david-smith.org/blog/2014/11/06/expectations-for-watchkit/">&#95;DavidSmith's Predictions</a></li>
+<li><a href="http://www.david-smith.org/blog/2014/11/18/initial-impressions-for-watchkit/">&#95;DavidSmith's Initial Impressions</a></li>
+<li><a href="http://goo.gl/2A5bpM">GEOS</a></li>
+<li><a href="https://twitter.com/chockenberry/status/534853149690183681">Craig Hockenberry on UI consistency</a></li>
+<li><a href="https://twitter.com/peteburtis/status/534901671080755200">Pete Burtis expands on the idea</a></li></ul></li>
+<li>Post-show:
+<ul><li>John's iPhone activation woes
+<ul><li><a href="https://twitter.com/siracusa/status/534447556483641344">SIM removal tool</a></li></ul></li>
+<li>John critiques cutting-edge apps:
+<ul><li><a href="http://instagram.com/">Instagram</a></li>
+<li><a href="http://vine.co/">Vine</a></li>
+<li><a href="http://www.youtube.com/">YouTube</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>CASEYNEEDSADRINK</strong> for 10% off.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+</ul>]]></description><itunes:subtitle>WatchKit, the Nokia iPad Mini, and John's iPhone.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5465f544e4b0344494636ab7</guid><pubDate>Fri, 14 Nov 2014 22:01:39 +0000</pubDate><title>91: Press Agree to Drive</title><itunes:title>Press Agree to Drive</itunes:title><itunes:episode>91</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:40:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp91.mp3" length="72646565" type="audio/mpeg"/><link>https://atp.fm/91</link><description><![CDATA[<ul>
+<li>Twitter's absurd <del data-preserve-html-node="true">mission</del> <a href="http://blogs.wsj.com/digits/2014/11/12/twitter-sharpens-strategy-to-win-over-investors/">strategy statement</a>
+<ul><li><a href="http://www.despair.com/meetings.html">Demotivational Poster</a></li>
+<li><a href="http://shouldiuseacarousel.com/">Should we use a carousel?</a></li></ul></li>
+<li>Follow-up:
+<ul><li>More on <a href="https://twitter.com/WalrusCP/status/531049555274784768/photo/1">app bundles</a></li>
+<li>Does iWork help Apple sell hardware?</li>
+<li>RiMac GPUs <a href="http://forums.macrumors.com/showthread.php?t=1815601">are throttled</a>?
+<ul><li>It's possible to get hot <a href="http://forums.macrumors.com/showpost.php?p=20328787&amp;postcount=121">even in OS X</a></li>
+<li><a href="http://www.barefeats.com/imac5k6.html">Gaming benchmarks</a></li>
+<li><a href="http://arstechnica.com/apple/2014/10/the-retina-imac-and-its-5k-display-as-a-gaming-machine/">More from Ars</a></li>
+<li><a href="http://bjango.com/mac/istatmenus/">iStat Menus</a></li></ul></li>
+<li>Why TRIM isn't widely supported on OS X</li>
+<li><a href="http://venturebeat.com/2014/10/20/iphone-6-outselling-the-6-plus-by-a-6-to-1-margin/">iPhone 6 vs. 6 Plus sales</a> (via <a href="https://twitter.com/_ryanbrodie/status/531965871322042368">@&#95;ryanbrodie</a>)
+<ul><li><a href="http://info.localytics.com/blog/more-iphone-6%E2%80%99s-being-sold-but-iphone-6-shows-stronger-user-engagement">More from Localytics</a></li></ul></li></ul></li>
+<li><a href="http://www.marco.org/2014/11/11/overcast11">Overcast 1.1</a>
+<ul><li><a href="https://www.apple.com/ios/carplay/">CarPlay</a></li>
+<li><a href="https://twitter.com/marcoarment/status/532380869018017792">Marco's testing setup</a></li>
+<li><a href="http://goo.gl/cmFCKS">Pioneer SPH-DA120</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/MediaPlayer/Reference/MPPlayableContentManager_Ref/index.html#//apple_ref/occ/cl/MPPlayableContentManager"><code>MPPlayableContentManager</code></a></li>
+<li>We covered in-car user interfaces <a href="http://neutral.fm/episodes/4-if-you-see-a-cursor-they-blew-it">before</a></li></ul></li>
+<li><a href="http://blogs.msdn.com/b/dotnet/archive/2014/11/12/net-core-is-open-source.aspx">Microsoft open-sources more of .NET</a>
+<ul><li><a href="http://arstechnica.com/information-technology/2014/11/microsoft-open-sources-net-takes-it-to-linux-and-os-x/">More from Ars</a></li>
+<li><a href="http://tirania.org/blog/archive/2014/Nov-12.html">More from Miguel de Icaza</a>
+<ul><li><a href="http://xamarin.com">Xamarin</a></li></ul></li>
+<li><a href="http://blogs.msdn.com/b/dotnet/archive/2013/09/30/ryujit-the-next-generation-jit-compiler.aspx">RyuJIT</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Street_Fighter#Hadouken">Hadouken</a></li>
+<li><a href="http://clang.llvm.org">Clang</a></li>
+<li><a href="http://www.llvm.org">LLVM</a></li>
+<li><a href="https://github.com/dotnet/home">.NET on Github</a></li>
+<li><a href="http://goo.gl/2dK6Nx">Darwin</a></li>
+<li><a href="https://en.wikipedia.org/wiki/KHTML">KHTML</a></li>
+<li><a href="https://en.wikipedia.org/wiki/WebKit">WebKit</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Common_Language_Runtime">CLR</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tcl">TCL</a></li>
+<li><a href="https://en.wikipedia.org/wiki/GNUstep">GNUstep</a></li>
+<li>Examples of software established in Linux
+<ul><li><a href="https://www.wireshark.org">Wireshark</a></li>
+<li><a href="http://audacity.sourceforge.net">Audacity</a></li>
+<li><a href="https://www.adium.im">Adium</a> (or, really, <a href="https://pidgin.im">Pidgin</a>)</li>
+<li><a href="http://git-scm.com">git</a></li>
+<li><a href="http://docs.seleniumhq.org">Selenium</a></li>
+<li><a href="https://www.phpbb.com">phpBB</a></li></ul></li>
+<li><a href="http://www.appcelerator.com">Titanium</a></li></ul></li>
+<li>The good, the bad, and the ugly of source control
+<ul><li><a href="https://en.wikipedia.org/wiki/DVD-RAM">DVD-RAM</a> and <a href="https://en.wikipedia.org/wiki/DVD%2BRW">DVD+RW</a>
+<ul><li><em>Turns out Marco's "DVD-RAM" emoji (<a href="http://emojipedia.org/minidisc/">&#x1f4bd;</a>) is really a <a href="http://en.wikipedia.org/wiki/MiniDisc">Minidisc</a>, which was moderately popular in Japan.</em></li></ul></li>
+<li><a href="http://www.perforce.com">Perforce</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apache_Subversion">SVN</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Concurrent_Versions_System">CVS</a></li>
+<li><a href="http://mercurial.selenic.com">Mercurial</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Betamax">Betamax</a></li></ul></li>
+<li>Post-show
+<ul><li><a href="http://www.caseyliss.com/2014/10/30/declan">Baby</a> Update
+<ul><li>The <a href="http://www.relay.fm/analogue/13">Analog(ue)-ATP Baby Treaty</a> (@31:00)</li>
+<li>Casey's <a href="http://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">fancy camera</a></li>
+<li>Scammy in-hospital newborn photography
+<ul><li><a href="https://en.wikipedia.org/wiki/Exchangeable_image_file_format">EXIF</a></li>
+<li><a href="http://www.tiffanyarment.com/">Tiffany Arment Photography</a></li></ul></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mandrill.com/">Mandrill</a>: Integrate, deliver, track and analyze — email infrastructure from Mandrill. Use promo code <strong>accidentaltech</strong> for 50,000 free email sends per month for your first 6 months.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>CASEYNEEDSANAP</strong> for 10% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Start here. Go anywhere. Use coupon <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Twitter's strategy, CarPlay development, and .NET open-sourcing.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:545ceb36e4b076fac269a342</guid><pubDate>Fri, 07 Nov 2014 19:59:18 +0000</pubDate><title>90: Speculative Abandonware</title><itunes:title>Speculative Abandonware</itunes:title><itunes:episode>90</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:44:37</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp90.mp3" length="75446530" type="audio/mpeg"/><link>https://atp.fm/90</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Declan night one</li>
+<li>It's <a href="https://en.wikipedia.org/wiki/Andy_Samberg">Andy Samberg</a> that is part of <a href="http://www.thelonelyisland.com">Lonely Island</a>, not "Adam Sandberg". <br />
+<em>Many of the videos below contain explicit lyrics.</em>
+<ul><li><a href="http://www.nbc.com/Saturday_Night_Live">Saturday Night Live</a></li>
+<li><a href="http://www.fox.com/brooklyn-nine-nine/">Brooklyn Nine-Nine</a></li>
+<li><a href="http://www.thelonelyisland.com/video/lazy-sunday">"Lazy Sunday"</a></li>
+<li><a href="http://www.youtube.com/watch?v=R7yfISlGLNU">"On a Boat"</a></li>
+<li><a href="http://www.hulu.com/watch/1402">"[Cheney] in a Box"</a></li>
+<li><a href="http://en.wikipedia.org/wiki/T-Pain">T-Pain</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Auto-Tune">Autotune</a></li>
+<li><a href="https://www.youtube.com/watch?v=M94ii6MVilw">"Semicolon"</a></li></ul></li>
+<li>App store prevents too-expensive bundle purchases (via <a href="https://twitter.com/WalrusCP/status/529638122758635521">@walruscp</a>)</li>
+<li><a href="http://goo.gl/NPh9wr">TRIM</a> support and John's SSD
+<ul><li><a href="http://www.cindori.org/software/trimenabler/">Trim Enabler</a> and a related <a href="http://www.cindori.org/trim-enabler-and-yosemite/">Yosemite FAQ</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Advanced_Host_Controller_Interface">AHCI</a></li>
+<li><a href="http://arstechnica.com/feature-series/the-ssd-revolution/">Ars on the rise of SSDs</a></li>
+<li><a href="https://en.wikipedia.org/wiki/SandForce">SandForce</a></li></ul></li>
+<li>Source list opacity in Yosemite (<a href="https://twitter.com/robertjcooper/status/526729394610401281">1</a> <a href="https://twitter.com/robertjcooper/status/526729399287050240">2</a>)
+<ul><li>This was also covered on <a href="http://daringfireball.net/thetalkshow/2014/10/25/ep-098">John's recent appearance</a> on <a href="http://daringfireball.net/thetalkshow/">The Talk Show</a></li>
+<li>Ancient GameCube controllers in modern times</li></ul></li></ul></li>
+<li><a href="http://www.microsoft.com/microsoft-band/en-us">Microsoft Band</a>
+<ul><li>&#95;David Smith's thoughts on <a href="http://david-smith.org/blog/2014/11/05/understanding-the-promise-of-the-applewatch/">his blog</a> and <a href="http://developingperspective.com/2014/10/31/201/">podcast</a></li>
+<li><a href="http://www.microsoft.com/microsoft-band/en-us">Exploded diagram</a></li>
+<li><a href="http://arstechnica.com/gadgets/2014/10/microsoft-band-and-microsoft-health-the-199-all-platform-fitness-band/">Ars Review</a></li>
+<li>Nice <a href="https://alpha.app.net/manton/post/42330871">summary by Manton Reece</a></li>
+<li><a href="https://en.wikipedia.org/wiki/WebOS">WebOS</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Microsoft_Courier">Courier</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Microsoft_Kin">Kin</a></li>
+<li><a href="http://www.theverge.com/2014/11/5/7160115/microsoft-surface-loses-on-election-night-as-cnn-commentators-use-it">Surface product placement goes wrong</a>
+<ul><li><a href="http://goo.gl/lvdJPU">House, M.D.</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Parks_and_Recreation">Parks and Recreation</a></li></ul></li></ul></li>
+<li>iWork file-format support
+<ul><li><a href="http://www.infoworld.com/article/2610821/open-source-software/open-document-standards-will-cure-apple-s-bit-rot.html">InfoWorld article</a></li>
+<li><a href="https://en.wikipedia.org/wiki/IWeb">iWeb</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tower_of_Babel">Tower of Babel</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ILife">iLife</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_Design_Awards">ADA</a></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://ecx.images-amazon.com/images/I/7115A2m702L._SL1500_.jpg">Wii U Pro Controller</a> versus <a href="http://upload.wikimedia.org/wikipedia/commons/a/a5/GameCube_controller.png">GameCube Controller</a></li>
+<li>John has a surprise</li>
+<li><a href="http://recode.net/2014/10/27/t-mobiles-legere-code-mobile-1/">iPhone 6/6 Plus sales ratio</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Tweetie">Tweetie</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIRefreshControl_class/index.html#//apple_ref/occ/cl/UIRefreshControl"><code>UIRefreshControl</code></a></li>
+<li>RiMac First Impressions
+<ul><li><a href="http://goo.gl/vJKhKa">Monaco</a></li>
+<li><a href="http://www.levien.com/type/myfonts/inconsolata.html">Inconsolata</a></li>
+<li><a href="http://goo.gl/5waCG0">Menlo</a></li>
+<li><a href="https://handbrake.fr">Handbrake</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. The official partner of <a href="https://www.harrys.com/movember">Movember</a>. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+</ul>]]></description><itunes:subtitle>Marco hasn't seen it, Microsoft Band, iWork file formats, and the Retina iMac in reality.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54554411e4b0ee76075e3e2c</guid><pubDate>Sun, 02 Nov 2014 20:05:40 +0000</pubDate><title>89: DeLorean + McLaren</title><itunes:title>DeLorean + McLaren</itunes:title><itunes:episode>89</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:40:45</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp89.mp3" length="72667809" type="audio/mpeg"/><link>https://atp.fm/89</link><description><![CDATA[<ul>
+<li><a href="http://www.caseyliss.com/2014/10/30/declan">Casey's new arrival</a>
+<ul><li><a href="http://www.caseyliss.com/2014/5/14/finally">Some background</a></li>
+<li><a href="http://www.imdb.com/title/tt0119395/?ref_=fn_al_tt_1">The Jackal</a></li></ul></li>
+<li>Follow-Up:
+<ul><li>Marco's Retina iMacs may be <a href="https://www.youtube.com/watch?v=avaSdC0QOUM">on a boat</a></li>
+<li><a href="http://daringfireball.net/thetalkshow/2014/10/25/ep-098">The Talk Show</a> FU: the new iMac displays <a href="http://www.imore.com/retina-5k-imac-tear-down-shows-its-construction-nearly-same-last-years-model">are laminated</a></li>
+<li><a href="http://arstechnica.com/tech-policy/2014/10/us-sues-att-alleges-severe-throttling-of-unlimited-data-customers/">FCC sues AT&amp;T</a> for heavy throttling of their "unlimited" plan</li>
+<li><a href="https://en.wikipedia.org/wiki/ECC_memory">ECC RAM</a> <em>is</em> <a href="http://perspectives.mvdirona.com/2009/10/07/YouReallyDONeedECCMemory.aspx">actually worth it</a></li>
+<li>Marco's intentions for his Mac Pro
+<ul><li><a href="https://www.ifixit.com/Teardown/iMac+Intel+27-Inch+Retina+5K+Display+Teardown/30260">iFixIt's Teardown of the iMac with Retina 5K Display</a></li>
+<li><a href="https://twitter.com/_DavidSmith/status/525316704612921345/photo/1">&#95;David Smith's screenshot</a> of Xcode and iOS Simulator</li>
+<li>Fan noise <a href="https://twitter.com/kylecronin/status/526943183176224769">thoughts</a> and <a href="https://twitter.com/kylecronin/status/526949552696606720">recording</a></li></ul></li>
+<li>Casey has used Apple Pay</li>
+<li>More on App Store bundles as <a href="https://twitter.com/Schalenmann/status/526851866727313409">upgrade pricing</a>
+<ul><li><a href="http://supertop.co/unread/">Unread</a>'s <a href="http://blog.supertop.co/post/100700457402/moving-unread-to-supertop">move to Supertop</a></li></ul></li>
+<li>Continuity hardware-requirements Knowledge Base entries (via <a href="https://twitter.com/MCRascasse/status/526708301988655105">@MCRascasse</a>)
+<ul><li><a href="http://support.apple.com/en-us/TS5458">Get help using Continuity with iOS 8</a>
+<ul><li><a href="http://support.apple.com/en-us/HT6337">Connect your iPhone, iPad, iPod touch, and Mac using Continuity</a></li></ul></li></ul></li>
+<li>Restricting apps from <a href="https://en.wikipedia.org/wiki/Apple_A5">A5</a> and <a href="https://en.wikipedia.org/wiki/Apple_A6">A6</a> devices by <a href="https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW3">requiring Metal</a> (via <a href="https://twitter.com/lmarburger/status/528226684424957952">@lmarburger</a>)</li>
+<li>GamerGate
+<ul><li><a href="http://badassdigest.com/2014/10/27/film-crit-hulk-smash-on-despair-gamergate-and-quitting-the-hulk/">FILM CRIT HULK</a></li>
+<li><a href="http://simonganz.com/2013/04/the-dehulkifier/">The DeHulkifier</a></li>
+<li><a href="http://www.theverge.com/2012/11/8/3611344/film-crit-hulk-interview">WHY HULK WRITES LIKE THIS</a></li></ul></li></ul></li>
+<li>Tim Cook <a href="http://www.businessweek.com/articles/2014-10-30/tim-cook-im-proud-to-be-gay">announces he is gay</a></li>
+<li>Post-show:
+<ul><li><a href="http://www.microsoft.com/Microsoft-Band/en-us">Microsoft Band</a>, extremely briefly</li>
+<li>John's new arrival
+<ul><li><a href="http://www.derlien.com/">Disk Inventory X</a></li>
+<li><a href="http://www.amazon.com/dp/B00LF10KTE/?tag=siracusa-20">John's selection</a></li></ul></li>
+<li>Casey's newfound picture-taking modus operandi, and tips from Marco
+<ul><li><a href="http://www.amazon.com/dp/B00HPQ09H6/?tag=liismo-20">Casey's camera</a></li>
+<li><a href="http://toolsandtoys.net/reviews/the-olympus-om-d-e-m10/">Shawn Blanc's Review</a></li>
+<li><a href="http://www.caseyliss.com/2014/10/24/olympus-om-d-e-m10-quick-thoughts">Casey's quick thoughts</a></li>
+<li><a href="http://twitter.com/caseyliss/status/528932180161216512/photo/1">Casey's wedding pictures vs. baby pictures</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Bokeh">Bokeh</a></li>
+<li>John makes a shocking confession</li>
+<li><a href="http://twitter.com/mrgan">Neven</a> and <a href="https://twitter.com/antichrista">Christa</a> Mrgan</li>
+<li><a href="http://instagram.com/p/u1yH1Ol2uo/">Baby Sandwich</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>CONGRATULATIONSCASEY</strong> for 10% off.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Casey's new-parenthood, Tim Cook's coming out, iMac minutia, FILM CRIT HULK, and discovering f/1.4.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:544a49bbe4b00ed4519fff93</guid><pubDate>Fri, 24 Oct 2014 21:06:24 +0000</pubDate><title>88: Standing on Opposite Sides of the Gym</title><itunes:title>Standing on Opposite Sides of the Gym</itunes:title><itunes:episode>88</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:17:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp88.mp3" length="99324745" type="audio/mpeg"/><link>https://atp.fm/88</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>SMS Relay doesn't require Bluetooth Low Energy (<a href="https://twitter.com/Jury/status/524579634437160960">Tweet by @Jury</a>)</li>
+<li>Is a grandfathered AT&amp;T unlimited-data plan worth keeping?</li>
+<li><a href="http://www.dropbox.com/">Dropbox</a> versus <a href="https://www.apple.com/icloud/icloud-drive/">iCloud Drive</a> versus <a href="https://onedrive.live.com/about/en-us/">OneDrive</a>
+<ul><li><a href="http://www.macstories.net/reviews/ios-8-document-providers-and-dropbox/">Dropbox document picker</a></li></ul></li>
+<li><a href="http://www.nytimes.com/2014/10/06/technology/hong-kong-protests-propel-a-phone-to-phone-app-.html?_r=0">Bluetooth mesh networking</a></li></ul></li>
+<li>Twitter's <a href="http://online.wsj.com/articles/twitter-to-offer-new-tools-for-app-developers-1413770895">developer conference</a>
+<ul><li><a href="https://dev.twitter.com/products/digits">Twitter Digits</a></li>
+<li><a href="http://www.marco.org/2014/10/20/wsj-twitter-peace-offering">Marco on developers trusting Twitter</a></li>
+<li><a href="http://scripting.com/2014/10/21/whyISayYesToTwitter.html">Dave Winer's response</a></li>
+<li><a href="http://www.theverge.com/2014/10/22/7034113/inside-twitters-ambitious-plan-to-kill-the-password-on-mobile-devices">Verge article</a></li></ul></li>
+<li><a href="http://arstechnica.com/apple/2014/10/os-x-10-10/">Yosemite Review</a> recap, one week on.
+<ul><li>Does anyone really care about the Mac anymore?</li>
+<li><a href="http://www.imore.com/ios-8-review">iMore's iOS 8 Review</a></li></ul></li>
+<li>Yosemite first thoughts
+<ul><li>Casey uses GitHub's <a href="https://atom.io/">Atom text editor</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Windows_Aero">Aero Glass</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Chromatic_aberration">Chromatic aberration</a></li>
+<li><a href="https://twitter.com/afwaller/status/525115198529863681">Super close-up of close button</a></li>
+<li><a href="http://design.pixelcity.com/images/transparency.jpg">Early OS X transparency</a></li></ul></li>
+<li><a href="https://www.apple.com/apple-pay/">Apple Pay</a>
+<ul><li><a href="http://cartwheel.target.com">Target Cartwheel</a></li>
+<li><a href="http://www.forbes.com/sites/kashmirhill/2012/02/16/how-target-figured-out-a-teen-girl-was-pregnant-before-her-father-did/">Target reveals daughter's pregnancy</a></li></ul></li>
+<li><a href="http://www.apple.com/imac-with-retina/">iMac with Retina 5K display</a></li>
+<li>Post-show:
+<ul><li>John is iPhoneless again, but for how long?</li>
+<li>More on GamerGate
+<ul><li><a href="http://nymag.com/scienceofus/2014/10/gamergate-should-stop-lying-to-itself.html">New York Magazine article</a> by Jesse Singal</li>
+<li><a href="https://en.wikipedia.org/wiki/Felicia_Day">Felicia Day</a> <a href="http://thisfeliciaday.tumblr.com/post/100700417809/the-only-thing-i-have-to-say-about-gamer-gate">posts on GamerGate</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Doxing">Doxing</a></li>
+<li><a href="http://en.wikipedia.org/wiki/No_true_Scotsman">No true Scotsman</a></li>
+<li><a href="http://deadspin.com/the-future-of-the-culture-wars-is-here-and-its-gamerga-1646145844">Deadspin summary</a></li>
+<li><a href="http://theweek.com/article/index/270495/an-open-letter-to-brands-about-gamergate">Brands and GamerGate</a></li>
+<li><a href="https://twitter.com/waxpancake/status/524338462355234816">Twitter statistics</a></li>
+<li>Designing social systems to reduce abuse vectors and incentives</li>
+<li><a href="http://www.marco.org/2014/08/29/wirecutter-resolved">Marco and The Wirecutter</a></li>
+<li><a href="http://en.wikipedia.org/wiki/2014_Isla_Vista_killings">Isla Vista Shooting</a> (<a href="http://www.washingtonpost.com/news/post-nation/wp/2014/05/24/shooter-kills-at-least-six-people-in-rampage-near-uc-santa-barbara/">more</a>)</li>
+<li><a href="https://support.twitter.com/groups/31-twitter-basics/topics/111-features/articles/119135-about-verified-accounts">Perks of verified Twitter accounts</a></li>
+<li><a href="http://www.subtraction.com/2014/10/23/this-is-not-a-conspiracy-theory-2/">Kirby Ferguson</a>
+<ul><li><a href="http://www.thisisnotaconspiracytheory.com/">This is Not a Conspiracy Theory</a></li>
+<li><a href="http://everythingisaremix.info/watch-the-series/">Everything is a Remix</a></li></ul></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like, free for up to 10 people.</li>
+</ul>]]></description><itunes:subtitle>Twitter and developers, Apple Pay, interest waning in OS X, and GamerGate.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5441c081e4b0a94c76797eb6</guid><pubDate>Sat, 18 Oct 2014 20:06:17 +0000</pubDate><title>87: Not an Accurate Representation of My Mousing Skills</title><itunes:title>Not an Accurate Representation of My Mousing Skills</itunes:title><itunes:episode>87</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:24:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp87.mp3" length="104175292" type="audio/mpeg"/><link>https://atp.fm/87</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li><a href="http://www.nintendolife.com/news/2014/10/nintendo_confirms_gamecube_controller_adapter_will_have_more_use_than_just_super_smash_bros">GameCube controllers only work with Super Smash Brothers</a></li></ul></li>
+<li>Apple's event: Yosemite, iPad Air 2, Retina iMac
+<ul><li>Unfunny funny skits</li>
+<li>Retconned Retina iPad Mini</li>
+<li>The <a href="http://en.wikipedia.org/wiki/Apple_A5">A5</a> lives on <a href="http://www.allenpike.com/2014/the-ipad-zombie/">for another year or two</a></li>
+<li>Apple's <a href="http://en.wikipedia.org/wiki/Average_selling_price">ASP</a> <a href="http://scripting.com/davenet/2001/04/30/strategyTax.html">strategy tax</a> (<a href="http://arstechnica.com/staff/2011/03/the-apple-strategy-tax/">John, previously</a>)</li>
+<li>The new iPads</li>
+<li>John's iOS device plans</li>
+<li><a href="https://www.authy.com/">Authy two-factor auth app</a></li>
+<li>iMac Retina 5K
+<ul><li><a href="http://www.marco.org/2014/10/16/retina-imac-vs-mac-pro">Marco on 5K iMac vs. Mac Pro</a></li>
+<li><a href="http://developingperspective.com/2014/10/17/0/">Developing Perspective</a></li></ul></li></ul></li>
+<li><a href="http://arstechnica.com/apple/2014/10/os-x-10-10/">John's Review</a>
+<ul><li><a href="https://itunes.apple.com/us/book/os-x-10.10-yosemite-ars-technica/id928630628?mt=11&amp;uo=4&amp;at=11l6SN">Buy the iBook!</a></li>
+<li><a href="http://www.amazon.com/dp/B00OFLKWTY/?tag=siracusa-20&amp;linkId=WD7GDMIPVQ63BLSX">Buy the Kindle eBook</a></li>
+<li><a href="http://arstechnica.com/subscriptions/">Buy Ars Premier</a> to get all the things</li>
+<li><a href="http://hypercritical.co/2014/10/16/yosemite">About John's review</a></li>
+<li><a href="http://xscopeapp.com/">xScope</a></li>
+<li><a href="https://twitter.com/clattner_llvm/status/522872486027726848">Lattner's tweet</a></li>
+<li><a href="https://mikeash.com/pyblog/">Mike Ash's Friday Q&amp;A</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/campaigns/hello?ref=atp&amp;type=podcast">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://mandrill.com/">Mandrill</a>: Integrate, deliver, track and analyze — email infrastructure from Mandrill. Use promo code <strong>accidentaltech</strong> for 50,000 free email sends per month for your first 6 months.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use coupon <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Chairman Honeycrisp let Granny Smith spend a bit too much time with the Supreme Allied Commander of Super Secrecy.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:54352004e4b021140b8bf30d</guid><pubDate>Wed, 08 Oct 2014 22:11:51 +0000</pubDate><title>86: Moving the Party to the Bar Down the Block</title><itunes:title>Moving the Party to the Bar Down the Block</itunes:title><itunes:episode>86</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:37:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp86.mp3" length="70399560" type="audio/mpeg"/><link>https://atp.fm/86</link><description><![CDATA[<ul>
+<li>Trends in social networks
+<ul><li><a href="https://broadcast.app.net">App.net Broadcast</a></li>
+<li><a href="http://ello.co/">Ello</a> (<a href="https://ello.co/marcoarment">@marcoarment</a>, <a href="https://ello.co/caseyliss">@caseyliss</a>, <a href="https://ello.co/johnsiracusa">@johnsiracusa</a>, <a href="https://ello.co/atpfm">@atpfm</a>)</li>
+<li><a href="http://cupcake.io/">Cupcake</a></li>
+<li><a href="http://www.muleradio.net/thetalkshow/74/">The Talk Show #74</a>: <a href="http://glennf.com">Glenn Fleishmann</a> explains <a href="https://en.wikipedia.org/wiki/Bitcoin">Bitcoin</a></li></ul></li>
+<li>Follow-up:
+<ul><li>iPhone 6 Plus Scaling (mostly thanks to <a href="https://twitter.com/pocketpixels">Hendrik</a>'s research)
+<ul><li><a href="https://devforums.apple.com/message/1039842">Dev Forums</a></li>
+<li><a href="https://www.youtube.com/watch?v=eH0hyh5cvbU">Hendrik's video</a></li>
+<li><a href="http://vimeo.com/41414940">Test pattern</a></li>
+<li><a href="http://www.theregister.co.uk/2014/09/23/apple_iphone_6_plus_review/?page=2">Source of the image-of-text from last week</a></li>
+<li><a href="http://www.reduser.net/forum/showthread.php?120459-EXPENDABLES-3-4K-WORKFLOW-DISCOVERY">Forum post about scaling <em>adding</em> detail</a></li></ul></li>
+<li>More on the bendy iPhone 6 and 6 Plus
+<ul><li><a href="http://www.consumerreports.org/cro/news/2014/09/consumer-reports-tests-iphone-6-bendgate/index.htm">Consumer Reports</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Uri_Geller">Uri Gellar</a></li></ul></li></ul></li>
+<li>Continued iPhone 6 impressions
+<ul><li><a href="http://www.uxmatters.com/mt/archives/2013/02/how-do-users-really-hold-mobile-devices.php">Grips</a></li>
+<li><a href="http://store.apple.com/us/product/MGR62ZM/A/iphone-6-leather-case-olive-brown">Apple Leather Case</a></li>
+<li><a href="http://store.apple.com/us/product/MGQF2ZM/A/iphone-6-silicone-case-black?fnode=47">Apple Silicone Case</a></li>
+<li><a href="http://www.valentinegoods.com/collections/types?q=iPhone%206%20-%206%20Plus">Valentine Goods leather backs</a></li>
+<li><a href="https://twitter.com/mantia/status/515285853464064000">Louie Mantia on sizes</a></li></ul></li>
+<li>Post-show:
+<ul><li>More on the iPhones 6 screens</li>
+<li>Gamecube controllers
+<ul><li><a href="http://www.amazon.com/dp/B00L3LQ1FI?tag=siracusa-20">Adapter for Wii U</a></li>
+<li>It is <a href="http://www.nintendolife.com/news/2014/10/nintendo_confirms_gamecube_controller_adapter_will_have_more_use_than_just_super_smash_bros">supposedly compatible with more than just Super Smash Bros</a></li>
+<li><a href="https://en.wikipedia.org/wiki/F-Zero_%28video_game%29">F-Zero</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.studioneat.com/products/neaticekit">Neat Ice Kit</a>: Create perfect, clear ice for cocktails at home (<a href="http://www.caseyliss.com/2014/7/25/neat-ice-kit">Casey's review</a>). Use coupon <strong>ATP</strong> for 10% off anything in the Studio Neat store.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon <strong>INVISIBLESPREADSHEET</strong> for 10% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use coupon <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Ello and Twitter, iPhone 6 Plus scaling, and the iPhone 6's appeal vs. usability tradeoff.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:542e983ce4b0c5ddad2d27f5</guid><pubDate>Fri, 03 Oct 2014 20:08:22 +0000</pubDate><title>85: The Unexpected Hard Part</title><itunes:title>The Unexpected Hard Part</itunes:title><itunes:episode>85</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:20:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp85.mp3" length="58290853" type="audio/mpeg"/><link>https://atp.fm/85</link><description><![CDATA[<ul>
+<li>Follow-Up:
+<ul><li>John defends his derision about <a href="http://atp.fm/84">the load-bearing finger</a>
+<ul><li><a href="http://www.youtube.com/watch?v=EY4c2mh15Yk">Thumb commercial</a></li></ul></li></ul></li>
+<li>Accidental Build and Analyze about <a href="https://developer.apple.com/library/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS8.html#//apple_ref/doc/uid/TP40014205-DontLinkElementID_1">iOS 8 size classes and adaptive UI</a>
+<ul><li><a href="http://carpeaqua.com/2014/06/14/thinking-in-terms-of-ios-8-size-classes/">Write-up by Justin Williams</a> (the "???" square in the grid is the iPhone 6 Plus in landscape)</li>
+<li><a href="http://www.youtube.com/watch?v=FrPVVO3A6yY">iPad resizable-apps video by Steven Troughton-Smith</a></li></ul></li>
+<li>Designing Applications
+<ul><li><a href="http://vesperapp.co">Vesper</a></li>
+<li><a href="http://supertop.co/unread/">Unread</a></li></ul></li>
+<li>Continued Follow-Up:
+<ul><li><a href="https://en.wikipedia.org/wiki/Near_field_communication">NFC</a> around the world</li>
+<li>iPhone 6+ scaling
+<ul><li><a href="https://twitter.com/counternotions/status/515363864868036608/photo/1">Original tweet</a></li>
+<li><a href="http://www.theregister.co.uk/2014/09/23/apple_iphone_6_plus_review/?page=2">Source</a></li>
+<li><a href="http://arstechnica.com/staff/2005/09/1353/">John on Mac resolution swapping</a></li></ul></li>
+<li>Bendy iPhones 6
+<ul><li><a href="http://www.consumerreports.org/cro/news/2014/09/consumer-reports-tests-iphone-6-bendgate/index.htm">Consumer Reports bends phones</a></li>
+<li><a href="https://twitter.com/alackofcolor/status/516614364506628096">Anecdotal evidence</a></li></ul></li>
+<li>iPod Touch people</li>
+<li><a href="http://en.wikipedia.org/wiki/Marquetry">Marquetry</a> (via <a href="https://twitter.com/sjsyrek/status/515879515411976192">@sjsyrek</a>)</li>
+<li><a href="https://en.wikipedia.org/wiki/Generic_trademark">Proprietary eponym</a></li></ul></li>
+<li><a href="https://www.kickstarter.com/projects/jonathanmann/the-harry-potter-ep">Jonathan Mann's Harry Potter EP on Kickstarter</a></li>
+<li>Post-show Follow-Up:
+<ul><li>The Invisible Spreadsheet</li>
+<li>Update on John's review</li>
+<li>Slippery iPhones 6 and cases</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.raizlabs.com/">Raizlabs</a>: A full-service development firm looking to hire experienced mobile developers, designers, and product managers in Boston and San Francisco.</li>
+<li><a href="https://caspersleep.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Adaptive apps, iPhone 6 Plus scaling, invisible spreadsheets, marquetry, and proprietary eponyms.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5425629be4b0cbb11e03fad5</guid><pubDate>Fri, 26 Sep 2014 19:01:35 +0000</pubDate><title>84: The Load-Bearing Finger</title><itunes:title>The Load-Bearing Finger</itunes:title><itunes:episode>84</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:12:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp84.mp3" length="95561741" type="audio/mpeg"/><link>https://atp.fm/84</link><description><![CDATA[<ul>
+<li>Follow-Up:
+<ul><li><a href="http://sixcolors.com/post/2014/09/how-fast-is-that-iphone-6-processor/">Jason Snell on iPhone 6 CPUs</a></li>
+<li>Upgradeable Apple Watches
+<ul><li><a href="https://en.wikipedia.org/wiki/Apple_S1">Apple S1</a></li></ul></li>
+<li>How do you sell a $10,000+ watch in an Apple Store?</li>
+<li>Apple Watch Edition's <a href="http://sixcolors.com/2014/09/the-luxury-of-the-apple-watch-edition/">special box</a></li>
+<li>Apple Pay and banking</li>
+<li><a href="http://twitter.com/jazzviolin/status/512067321759010816">The hidden meanings of Apple "tv"/"WATCH" text styling</a></li>
+<li><a href="http://www.businessinsider.com/microsoft-nfl-surface-ipads-2014-9">Trade names and the NFL</a></li>
+<li><a href="http://jiggity.com/steve.html">If Steve were alive...</a>
+<ul><li><a href="http://stratechery.com/2014/tim-cook-introduced-watch-exponent-episode-017-lets-end/">Ben Thompson's take</a></li></ul></li></ul></li>
+<li>Tim Cook's Charlie Rose interview
+<ul><li><a href="http://www.hulu.com/watch/686851">Part 1</a></li>
+<li><a href="http://www.hulu.com/watch/687651">Part 2</a></li>
+<li>Apple's <a href="http://www.apple.com/diversity/">diversity report</a></li></ul></li>
+<li>iPhone 6/6+ impressions
+<ul><li><a href="http://store.apple.com/us/product/MGR62ZM/A/iphone-6-leather-case-olive-brown?fnode=47">Apple iPhone 6 leather case</a></li>
+<li><a href="http://www.hellointernet.fm/podcast/21">Hello, Internet #21</a></li>
+<li><a href="http://www.virginiaroberts.com/initial-iphone-6-plus-impressions/">Virginia Roberts</a></li>
+<li><a href="http://www.512pixels.net/blog/2014/9/review-the-iphone-6">Stephen Hackett</a></li>
+<li><a href="http://en.wikipedia.org/wiki/MacBook_Pro#2nd_generation_.28unibody.29">17" MacBook Pro</a></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://www.youtube.com/watch?v=znK652H6yQM">iPhone 6 Plus bending video</a> (<a href="https://www.youtube.com/watch?v=IROcoJeVfSI">follow-up with more phones</a>, <a href="https://www.youtube.com/watch?v=FwM4ypi3at0">Galaxy Note 3</a>)</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mobelux.com/">Mobelux</a>: A product team for hire. Whether you need a development partner on a big idea or want help getting your product mobile, we've got you covered.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>WHITECARSLOL</strong> for 10% off.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Upgradeable watches, Steve Jobs fan fiction, and of course, what three nerds think of the new iPhones.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:541b0954e4b0fcd826d07e55</guid><pubDate>Thu, 18 Sep 2014 21:13:53 +0000</pubDate><title>83: Entering the iTouch Phase of My Life</title><itunes:title>Entering the iTouch Phase of My Life</itunes:title><itunes:episode>83</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:45:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp83.mp3" length="76320074" type="audio/mpeg"/><link>https://atp.fm/83</link><description><![CDATA[<ul>
+<li>Pre-Show: <a href="http://www.theverge.com/2014/9/17/6359009/amazon-kindle-fire-hd-6-7-cheap-tablet-announcement-price">Inexpensive tablets</a></li>
+<li>Follow-up:
+<ul><li>More on Retina displays for the Mac
+<ul><li><a href="https://en.wikipedia.org/wiki/Thunderbolt_%28interface%29#Thunderbolt_2">Thunderbolt 2</a>, <a href="https://en.wikipedia.org/wiki/Thunderbolt_%28interface%29#Thunderbolt_3">Thunderbolt 3</a>, and <a href="http://en.wikipedia.org/wiki/Skylake_%28microarchitecture%29">Skylake</a></li></ul></li>
+<li>iPhones 6 and 6 Plus
+<ul><li><a href="https://en.wikipedia.org/wiki/Image_stabilization">Optical image stabilization</a></li>
+<li><a href="https://twitter.com/panzer">Matt Panzarino</a>'s <a href="http://techcrunch.com/2014/09/17/life-is-tough/">awesome iPhones review</a></li>
+<li><a href="http://www.barefeats.com/iph6b.html">Barefeats benchmark</a></li>
+<li>Marco teaches Casey about photography</li></ul></li>
+<li><a href="http://www.android.com/wear/">Android Wear</a> versus <a href="http://www.samsung.com/global/microsite/galaxynote3-gear/">Galaxy Gear</a></li>
+<li>Apple's and Google's rates on payments
+<ul><li><a href="http://www.quora.com/Is-Google-Wallet-considered-a-card-present-or-card-not-present-transaction">Quora article</a></li>
+<li><a href="http://www.ft.com/cms/s/0/7ffa706e-3a63-11e4-bd08-00144feabdc0.html">Financial Times</a></li></ul></li>
+<li>Whether we're blind to Android doing things first
+<ul><li><a href="http://atp.fm/episodes/2013/3/9/1-iphone-plus">ATP #1</a></li></ul></li>
+<li>Apple Watch's potential pricing
+<ul><li><a href="http://instagram.com/p/svoWQMqyn-/">Solid gold cases</a> </li>
+<li><a href="http://en.wikipedia.org/wiki/Veblen_good">Veblen goods</a></li>
+<li><a href="http://daringfireball.net/2014/09/apple_watch">Gruber's analysis</a></li>
+<li>Buying experience
+<ul><li><a href="https://twitter.com/blankbaby/status/512069675275276288">Scott McNulty's tweet</a></li>
+<li><a href="https://www.apple.com/retail/grandcentral/">Apple Store in Grand Central Terminal</a></li></ul></li>
+<li>Cases, fashion, and personalization</li>
+<li><a href="http://www.apple.com/watch/apple-watch-sport/">Closeup of Apple Watch Sport</a></li>
+<li><a href="http://www.youtube.com/watch?v=5DHYe4dhjXw">Stickers commercial</a></li>
+<li><a href="http://recode.net/2014/09/09/apple-unveils-watch-iphone-6-mobile-payments-liveblog/">Offline features</a></li>
+<li>Send text messages in languages with pictographic/<a href="https://en.wikipedia.org/wiki/Logogram">Logogram</a> alphabets
+<ul><li><a href="https://en.wikipedia.org/wiki/Graffiti_%28Palm_OS%29">Graffiti</a></li></ul></li>
+<li>Battery indicator
+<ul><li><a href="http://citizenwatchserv.com/?page_id=15">Charging Citizen Eco Drive watches</a></li></ul></li></ul></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://www.marco.org/2014/09/16/this-u2-album-really-does-suck">The U2 thing</a></li>
+<li><a href="http://www.apple.com/privacy/">Apple Privacy Announcement</a></li>
+<li><a href="http://www.hulu.com/watch/686851">Charlie Rose Part 1</a> and <a href="http://www.hulu.com/watch/687651">Part 2</a></li>
+<li><a href="http://www.marco.org/2014/09/17/overcast-accidentally-universal">Marco accidentally releases an iPad app</a>
+<ul><li><a href="http://oleb.net/blog/2014/08/replacing-launch-images-with-storyboards/">Replacing launch images with storyboards</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like, free for up to 10 people.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+</ul>]]></description><itunes:subtitle>Marco explains photography to Casey, John explains watches to Marco, and Casey explains credit cards to Europeans.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:541191c1e4b0419281dde9e6</guid><pubDate>Thu, 11 Sep 2014 22:08:32 +0000</pubDate><title>82: The Flash Storage Is Adequate</title><itunes:title>The Flash Storage Is Adequate</itunes:title><itunes:episode>82</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:49:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp82.mp3" length="122364588" type="audio/mpeg"/><link>https://atp.fm/82</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Marco and John get excited about <a href="http://www.anandtech.com/show/8496/dell-previews-27inch-5k-ultrasharp-monitor-5120x2880">a monitor</a></li>
+<li><a href="https://twitter.com/yezzer/status/508013445506424832/photo/1">Sexism epiphanies</a></li>
+<li><a href="http://arstechnica.com/gadgets/2014/09/tivo-announces-tivo-mega-a-rackmount-dvr-with-six-tuners-and-24-tb/">TiVo Mega</a>
+<ul><li><a href="http://arstechnica.com/gadgets/2013/09/with-30-tuners-and-30-tb-of-storage-snapstream-make-tivos-look-like-toys/">SnapStream</a></li>
+<li><a href="http://www.kaleidescape.com/products/premiere/disc-vaults/dv700/">Kaleidescape Disc Vault</a></li></ul></li></ul></li>
+<li>Macworld layoffs
+<ul><li><a href="http://snellworld.com">Jason Snell</a></li></ul></li>
+<li>iPhone 6/Apple Watch Event
+<ul><li>iPhone 6 &amp; 6+
+<ul><li><a href="http://blog.streamingmedia.com/2014/09/why-apples-livestream-failed.html">Ill-informed stream theories</a></li>
+<li><a href="https://www.youtube.com/watch?v=2LHv1FPd1Ec">Samsung's cheesy S4 intro</a></li>
+<li><a href="https://twitter.com/forgottentowel">@forgottentowel</a> on <a href="https://twitter.com/caseyliss/status/509676102462472192">iPhone design priorities</a></li>
+<li><a href="http://www.juicybitssoftware.com/files/iPhone%206%20Size%20Comparison.pdf">Printable iPhone 6/6+ templates</a> (or this <a href="http://cdn.arstechnica.net/wp-content/uploads/2014/09/iphone-scale.pdf">alternate</a>)</li>
+<li><a href="http://atp.fm/episodes/2013/3/9/1-iphone-plus">ATP #1</a></li></ul></li>
+<li>Special guest appearance by <a href="http://www.tiffanyarment.com/">Tiffany Arment</a></li>
+<li>Apple Watch
+<ul><li><a href="http://appleinsider.com/articles/14/09/08/vague-schematics-details-hint-at-mic-speaker-rectangular-design-for-apples-iwatch">EVT Leak</a></li>
+<li><a href="http://arstechnica.com/staff/2010/01/antacid-tablet/">"Antacid Tablet"</a></li>
+<li><a href="http://ryanpmack.com/files/AppleWatchSizeComparison.pdf">Printable Apple Watch templates</a></li>
+<li><a href="http://www.apple.com/pr/library/2014/09/09Apple-Unveils-Apple-Watch-Apples-Most-Personal-Device-Ever.html">Apple PR Announcement</a></li>
+<li><a href="http://www.hodinkee.com/blog/hodinkee-apple-watch-review">A high-end-watch nerd talking about the Apple Watch</a></li>
+<li><a href="http://www.apple.com/watch/features/">Walkie-Talkie feature</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>NECESSARYBUTNOTSUFFICIENT</strong> for 10% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+</ul>]]></description><itunes:subtitle>Our iPhone 6/6+, Apple Pay, and Apple Watch spectacular.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:540a1792e4b029a48853cb92</guid><pubDate>Fri, 05 Sep 2014 20:53:53 +0000</pubDate><title>81: You Left Your Money in a Bank</title><itunes:title>You Left Your Money in a Bank</itunes:title><itunes:episode>81</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:25:29</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp81.mp3" length="104878411" type="audio/mpeg"/><link>https://atp.fm/81</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>TiVo service charges and OTA channels</li>
+<li><a href="http://frayedlightningcables.tumblr.com/">Frayed Lightning Cables on Tumblr</a></li>
+<li><a href="https://twitter.com/Hunter/status/505825063426600961">Google allegedly dropped out of buying Twitch</a></li></ul></li>
+<li><a href="http://recode.net/2014/08/31/veteran-tech-journalist-anand-shimpi-headed-to-apple/">Anand Shimpi retires from AnandTech to work for Apple</a>
+<ul><li><a href="http://www.anandtech.com/show/8456/the-road-ahead">Anand's announcement</a></li>
+<li><a href="http://www.tomshardware.com/reviews/intel-admits-problems-pentium-iii-1,235.html">Tom's Hardware Guide and the 1133 MHz Pentium III</a></li></ul></li>
+<li><a href="https://www.nikcub.com/posts/notes-on-the-celebrity-data-theft/">Hackers steal photos from celebrities</a>, apparently by phishing their iCloud accounts or answering security questions
+<ul><li>Possibly similar to <a href="http://www.wired.com/2012/08/apple-amazon-mat-honan-hacking/all/">Mat Honan's hack</a></li>
+<li><a href="http://thenextweb.com/apple/2014/09/01/this-could-be-the-apple-icloud-flaw-that-led-to-celebrity-photos-being-leaked/">Find My iPhone was missing rate-limiting</a></li>
+<li><a href="http://www.apple.com/pr/library/2014/09/02Apple-Media-Advisory.html">Apple says the rate-limiting flaw wasn't involved</a></li>
+<li><a href="http://stratechery.com/2014/icloud-apples-founding-myth/">Ben Thompson on iCloud's reputation</a></li>
+<li><a href="http://online.wsj.com/articles/tim-cook-says-apple-to-add-security-alerts-for-icloud-users-1409880977">Tim Cook responds in WSJ interview</a></li></ul></li>
+<li><a href="http://www.apple.com/live/">Next week's Apple event</a>
+<ul><li><a href="https://www.youtube.com/watch?v=QRzhd_fOY-sk">Feld &amp; Volk video of an assembled 4.7" iPhone 6</a></li>
+<li><a href="https://twitter.com/_DavidSmith/status/505034728207290369">Relative seating capacity of Apple event venues</a></li></ul></li>
+<li><a href="http://games.slashdot.org/story/14/09/04/1451217/combating-recent-ugly-incidents-of-misogyny-in-gamer-culture">Recent attacks of women in gaming</a>
+<ul><li><a href="http://www.theguardian.com/technology/2014/sep/01/how-to-attack-a-woman-who-works-in-video-games">An overview on The Guardian</a></li>
+<li><a href="http://thiscageisworms.com/2014/09/02/a-conversation-about-concerns-in-videogame-journalism/">Another good overview</a></li>
+<li><a href="http://www.feministfrequency.com/">Feminist Frequency</a> (<a href="https://www.youtube.com/channel/UC7Edgk9RxP7Fm7vjQ1d-cDA">YouTube channel</a>)</li>
+<li><a href="http://5by5.tv/isometric">Isometric</a>: <a href="https://twitter.com/Spacekatgal">Brianna Wu</a>, <a href="https://twitter.com/samusclone">Maddy Myers</a>, <a href="https://twitter.com/Georgia_Dow">Georgia Dow</a>, and <a href="https://twitter.com/WickedGood">Steve Lubitz</a></li>
+<li><a href="https://twitter.com/SusanArendt">Susan Arendt</a></li></ul></li>
+<li><a href="http://blog.codinghorror.com/standard-markdown-is-now-common-markdown/">"Common Markdown"</a>, née <a href="http://blog.codinghorror.com/standard-flavored-markdown/">"Standard Markdown"</a>
+<ul><li><a href="http://daringfireball.net/projects/markdown/syntax">John Gruber's official Markdown</a></li></ul></li>
+<li>That word for when "I know that you know that I know…" and so on that John couldn't remember: <a href="http://www.sirlin.net/articles/yomi-layer-3-knowing-the-mind-of-the-opponent.html">Yomi</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+</ul>]]></description><itunes:subtitle>Anand goes to Apple, celebrity photo theft and iCloud security, event predictions, women in gaming, Atwood Markdown, and the button-fly agenda.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53fe9965e4b09024f2c004ad</guid><pubDate>Fri, 29 Aug 2014 19:36:05 +0000</pubDate><title>80: Tangled in Version Numbers</title><itunes:title>Tangled in Version Numbers</itunes:title><itunes:episode>80</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:46</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp80.mp3" length="63319865" type="audio/mpeg"/><link>https://atp.fm/80</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>iTunes on Windows <a href="https://twitter.com/chucker/status/503548242785996801">uses Objective-C</a></li>
+<li>Lightning cables
+<ul><li>Advice from <a href="https://twitter.com/gemushka/status/503195647479386112">Geniuses at the Apple Bar</a></li>
+<li><a href="https://twitter.com/gemushka/status/503195203260674049">When to ask for a replacement</a></li>
+<li><a href="https://twitter.com/sanditech/status/502782439719456770">Strain relief design</a></li>
+<li><a href="https://twitter.com/frankenderle/status/502708103507636224">USB icon on the cable</a></li></ul></li>
+<li>There's still <a href="http://www.apple.com/macbook-pro/specs/">a Mac with an optical drive</a></li>
+<li>CD-ROM nostalgia
+<ul><li><a href="http://goo.gl/TUo7jX">CD caddy</a></li>
+<li><a href="https://en.wikipedia.org/wiki/X87#80387">Math co-processor</a></li>
+<li><a href="http://www.xbitlabs.com/articles/storage/display/kenwood-truex.html">Kenwood TrueX 72x CD-ROM with 7 laser beams</a></li></ul></li>
+<li>When will Apple let spinning hard drives die?
+<ul><li><a href="https://www.ifixit.com/Guide/iMac+Intel+27-Inch+EMC+2309+and+2374+Hard+Drive+Replacement/1634#s9329">What size drives do iMacs use?</a></li></ul></li>
+<li>Verizon "SpeedMatch"</li></ul></li>
+<li>Merlin Mann <a href="https://twitter.com/hotdogsladies/status/504665904307634176">asks about</a> the new <a href="http://www.cnet.com/products/tivo-roamio-ota/">TiVo Roamio OTA</a></li>
+<li><a href="https://medium.com/@bcapps/death-to-the-dot-94d5b6422ff8">Version Numbering</a>
+<ul><li><a href="http://blog.codinghorror.com/the-infinite-version/">The Infinite Version</a></li>
+<li>Do people care about pretty URLs.aspx?</li></ul></li>
+<li><a href="https://www.eff.org/deeplinks/2013/05/help-save-podcasting">Podcast Patent Troll</a>
+<ul><li><a href="http://arstechnica.com/tech-policy/2013/02/eff-to-defend-against-troll-with-podcasting-patent-granted-in-2012/">Ars Technica</a></li>
+<li><a href="http://5by5.tv/hypercritical/67">Hypercritical #67</a></li>
+<li><a href="http://5by5.tv/hypercritical/68">Hypercritical #68</a></li>
+<li><a href="http://arstechnica.com/tech-policy/2014/08/adam-carolla-strikes-a-deal-with-podcasting-patent-troll/">Ars on Carolla Settling</a></li>
+<li><a href="http://adamcarolla.com/jo-koy-3/">Adam Carolla discusses the case</a> starting around 40 minutes</li></ul></li>
+<li><a href="http://www.marco.org/headphones-closed-portable">Marco's headphone review</a></li>
+<li>Post-Show:
+<ul><li>John's review status</li>
+<li><a href="http://www.polygon.com/2014/8/25/6067061/amazon-confirms-acquisition-of-twitch-for-970-million">Amazon buys Twitch</a>
+<ul><li><a href="http://en.wikipedia.org/wiki/Twitch_Plays_Pok%C3%A9mon">Twitch Plays Pokémon</a></li>
+<li><a href="http://5by5.tv/isometric/14">Isometric</a></li></ul></li>
+<li><a href="http://marco.coffee/">Marco.☕️</a></li>
+<li><a href="http://bad.coffee/">Bad.☕️</a></li>
+<li><a href="http://flophousepodcast.wikia.com/wiki/Words_that_Sound_Like_Other_Words">Explanation of John's joke domain for The Flop House</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://itunes.apple.com/us/app/quotebook-notebook-for-quotes/id423726272?at=10l4Vh&amp;ct=atp&amp;ls=1&amp;mt=8">Quotebook 3</a>: Collect quotes that matter. Download it today on the App Store for iPhone and iPad.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP</strong> for 15% off. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+</ul>]]></description><itunes:subtitle>52X CD-ROM drives, TiVo Roamio OTA for cord-cutters, version numbers, podcast patents, and trolling via domain names.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53f616dfe4b04ccdcf2f6c84</guid><pubDate>Thu, 21 Aug 2014 23:12:24 +0000</pubDate><title>79: Tip Ring Ring Sleeve</title><itunes:title>Tip Ring Ring Sleeve</itunes:title><itunes:episode>79</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:34:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp79.mp3" length="68455722" type="audio/mpeg"/><link>https://atp.fm/79</link><description><![CDATA[<ul>
+<li>Pre-show: <a href="http://www.relay.fm/">Relay FM</a> and <a href="http://relay.fm/analogue">Casey's new show about feelings</a></li>
+<li>Follow-up:
+<ul><li><a href="http://www.macrumors.com/2014/08/17/another-image-new-lightning-cable/">Rumored Lightning cable with reversible USB end, too</a></li>
+<li>Lightning cables breaking at the <a href="https://twitter.com/danielpunkass/status/500320577874563072">strain-delay cuff</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/Pvc">PVC</a></li>
+<li><a href="http://store.apple.com/us/product/MD818ZM/A/lightning-to-usb-cable">Apple's official cable</a></li>
+<li><a href="http://www.amazon.com/dp/B00B3OA7R8/?tag=liismo-20">Amazon's knockoffs</a></li>
+<li><a href="http://www.monoprice.com/Product?c_id=112&amp;cp_id=11213&amp;cs_id=1083101&amp;p_id=10558&amp;seq=1&amp;format=2">Monoprice's knockoffs</a></li></ul></li>
+<li>Cables' Springy Bits
+<ul><li><a href="http://goo.gl/2yF9aM">TRRS connector</a></li></ul></li>
+<li><a href="http://www.verizon.com/support/residential/internet/fiosinternet/troubleshooting/network/questionsone/99147.htm">Non-spammy Verizon DNS</a></li>
+<li><a href="https://twitter.com/geoffkeighley/status/500309033547739136">Console sales</a></li>
+<li><a href="http://old.haxe.org/forum/thread/3693">How do you pronounce "Haxe"?</a></li></ul></li>
+<li><a href="http://qz.com/251208/this-is-how-twitter-is-starting-to-fundamentally-redefine-itself/">Twitter continues to try to ruin itself</a>
+<ul><li>Being a completionist versus following <a href="https://twitter.com/glennf">Glenn Fleishman</a></li>
+<li><a href="http://twitterrific.com/ios">Twitterrific</a> with unified timelines and <a href="http://tapbots.com/software/tweetbot/">Tweetbot</a> without</li>
+<li><a href="http://www.theverge.com/2014/8/20/6050849/weird-new-twitter-feature-lets-you-build-an-acura-right-inside-a-tweet">Build an Acura in a tweet!</a></li>
+<li><a href="https://app.net/">App.net</a> and <a href="https://tent.io/">Tent</a></li></ul></li>
+<li><a href="http://www.ilounge.com/index.php/articles/comments/whats-new-in-itunes-12/">iTunes 12</a>
+<ul><li>Will iTunes ever get a complete rewrite or have functionality spun off into multiple apps?</li>
+<li><a href="http://www.imore.com/photos-os-x-yosemite-explained">Photos in Yosemite</a></li></ul></li>
+<li>Post-show:
+<ul><li>Non-ideal times to decide whether to have another baby or write another OS X review</li>
+<li>How old is <a href="http://www.512pixels.net/">Stephen Hackett</a>, really?</li>
+<li>Could you use an iOS device as a media-sync host for an iPod?</li>
+<li>Transferring large files over wireless (including <a href="http://www.amazon.com/dp/B00FG8PPXI/?tag=liismo-20">Eye-Fi</a> cards)</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://caspersleep.com/atp">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>ATP</strong> for $50 off.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Reversible USB, Twitter further ruining itself, and whether we'll ever get a major iTunes rewrite.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53ecb274e4b061ec1cffca1b</guid><pubDate>Fri, 15 Aug 2014 02:20:03 +0000</pubDate><title>78: Fleece the Whales</title><itunes:title>Fleece the Whales</itunes:title><itunes:episode>78</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:33:01</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp78.mp3" length="67103688" type="audio/mpeg"/><link>https://atp.fm/78</link><description><![CDATA[<ul>
+<li>Pre-Show:
+<ul><li><a href="http://www.caseyliss.com/2014/8/11/announcing-analog">Casey's New Podcast</a></li></ul></li>
+<li>Follow-Up:
+<ul><li><a href="http://arstechnica.com/gadgets/2014/08/small-reversible-usb-type-c-connector-finalized/">USB Type-C connector finalized</a>
+<ul><li><a href="http://arstechnica.com/gadgets/2014/08/small-reversible-usb-type-c-connector-finalized/?comments=1&amp;post=27382733">Peter Bright's comment</a></li>
+<li><a href="http://xkcd.com/927/">xkcd</a></li></ul></li>
+<li>ARM Macs
+<ul><li><a href="https://en.wikipedia.org/wiki/Summly">Summly</a></li>
+<li><a href="http://goo.gl/0vjR8W">WIMP</a></li>
+<li><a href="http://david-smith.org/iosversionstats/">&#95;DavidSmith's Version Stats</a></li></ul></li>
+<li>More on Jared Sinclair and the App Store economy
+<ul><li><a href="http://blog.jaredsinclair.com/post/94169163105/my-new-job">Jared's new job</a></li>
+<li><a href="http://releasenotes.tv/65-an-indie-state-of-mind/">Release Notes #65</a></li>
+<li><a href="http://developingperspective.com/2014/07/30/192/">&#95;DavidSmith's Developing Perspective #192</a></li>
+<li><a href="http://content.time.com/time/specials/packages/article/0,28804,1823107_1823513_1823573,00.html">Early Instapaper screenshots</a></li>
+<li><a href="http://www.marco.org/2014/07/28/app-rot">"App Rot"</a></li>
+<li><a href="http://supermegaultragroovy.com/products/capo/">Capo</a></li></ul></li>
+<li>TiVo Premiere UI update
+<ul><li><a href="http://www.slashgear.com/tivo-on-xbox-one-and-fire-tv-possible-after-adobe-ousted-11337096/">TiVo ditches Flash</a></li>
+<li><a href="http://haxe.org/">Haxe</a> <em>(həvər)</em></li></ul></li>
+<li><a href="https://twitter.com/OvercastFM/status/498205033776025600">Account-free Overcast</a>
+<ul><li><a href="https://twitter.com/danielpunkass/status/499204525216264193">Jalkut theory on App Store review</a></li></ul></li></ul></li>
+<li>Post-show:
+<ul><li><a href="http://www.verizon.com/home/MLP/myrewards.html">Casey sells his soul for symmetric internet</a> via <a href="https://twitter.com/urbanape/status/499199410434490368">Zac Bir</a>
+<ul><li><a href="http://www.imdb.com/title/tt0094924/?ref_=fn_al_tt_1">A Cry in the Dark</a></li></ul></li>
+<li>Casinos
+<ul><li><a href="http://www.imdb.com/title/tt0181984/?ref_=fn_al_tt_1">Boiler Room</a></li>
+<li><a href="http://www.imdb.com/title/tt2699128/?ref_=fn_al_tt_4">Leftovers</a></li>
+<li><a href="http://www.imore.com/debug-30-casey-liss-c-and-net">Casey on Debug</a></li></ul></li>
+<li><a href="https://twitter.com/marcoarment/status/498854488934195200">Wii U Games</a>
+<ul><li><a href="http://mariokart8.nintendo.com">Mario Kart 8</a></li>
+<li><a href="https://en.wikipedia.org/wiki/The_Legend_of_Zelda:_Skyward_Sword">The Legend of Zelda: Skyward Sword</a></li>
+<li><a href="http://www.theguardian.com/technology/2014/aug/13/playstation-4-hits-ten-million-sales-as-sony-announces-shareplay-initiative">Playstation 4 Sales</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mario_Kart:_Double_Dash!!">Mario Kart: Double Dash!!</a></li>
+<li><a href="http://nintendoland.nintendo.com">Nintendoland</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mario_Kart_Wii">Mario Kart Wii</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Mario_Kart_64">Mario Kart 64</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>VINYLSOUNDSBETTER</strong> for 10% off.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Get 20% off with this link.</li>
+</ul>]]></description><itunes:subtitle>We've finally done it: an entire show of follow-up. Sort of.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53e4c073e4b0891e7f85d5aa</guid><pubDate>Fri, 08 Aug 2014 18:58:30 +0000</pubDate><title>77: Full-Stack Businessperson</title><itunes:title>Full-Stack Businessperson</itunes:title><itunes:episode>77</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:57:53</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp77.mp3" length="85004690" type="audio/mpeg"/><link>https://atp.fm/77</link><description><![CDATA[<ul>
+<li>Casey wants to be the pre-show DJ
+<ul><li><a href="https://itunes.apple.com/us/album/journey-original-soundtrack/id511359368">Journey Soundtrack</a></li>
+<li><a href="http://www.transporttycoon.com/">Transport Tycoon</a></li>
+<li><a href="http://www.transporttycoon.net/music?recording=1">TT Original MIDI Music</a></li>
+<li><a href="http://www.transporttycoon.net/music?recording=7">TT Remastered MP3 Music</a></li>
+<li><a href="http://www.openttd.org/en/">OpenTTD</a></li></ul></li>
+<li>Follow-up:
+<ul><li>Mavericks, Gmail, and Mail.app</li>
+<li>Apple and IBM</li>
+<li>John's review status
+<ul><li><a href="http://www.synergy-project.org">Synergy</a></li></ul></li>
+<li>Overcast status
+<ul><li>Mixing server roles for burst capacity</li>
+<li><a href="http://linuxcommand.org/man_pages/nice1.html"><code>nice</code></a></li>
+<li>Weighing feedback</li></ul></li></ul></li>
+<li>Macs with ARMs (in contrast to bubbles with feet)
+<ul><li><a href="http://www.mondaynote.com/2014/08/03/macintel-the-end-is-nigh/">Jean-Louis Gassée's article</a></li>
+<li><a href="https://en.wikipedia.org/wiki/MVNO">MVNO</a></li>
+<li><a href="http://www.apple.com/macbook-air/specs.html">MacBook Air Specs</a></li>
+<li><a href="http://www.apple.com/ipad-air/specs/">iPad Air Specs</a></li>
+<li><a href="http://browser.primatelabs.com/mac-benchmarks">MacBook Air Geekbench</a></li>
+<li><a href="http://browser.primatelabs.com/ios-benchmarks">iPad Air Geekbench</a></li>
+<li><a href="http://macpowerusers.com/">Mac Power Users</a></li></ul></li>
+<li>Making money in the App Store
+<ul><li><a href="http://blog.jaredsinclair.com/post/93118460565/a-candid-look-at-unreads-first-year">Jared Sinclair's blog post</a></li>
+<li><a href="http://www.npr.org/blogs/money/2014/07/02/327289264/episode-550-when-salaries-arent-secret">Planet Money on discussing salaries</a></li>
+<li><a href="http://itunes.com/apps/FastText">Fast Text</a> (iTunes Link) sales
+<ul><li><a href="http://likethought.com/opacity/express/">Opacity Express</a></li>
+<li><a href="http://painstaking.co">Jakub Świadek</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIViewController_Class/Reference/Reference.html#//apple_ref/occ/instp/UIViewController/topLayoutGuide"><code>topLayoutGuide</code></a></li>
+<li><a href="http://carpeaqua.com/2014/07/29/my-thoughts-on-being-indie-in-2014/">Justin Williams on business</a></li>
+<li><a href="http://txt.jazzychad.net/gist/19a05ad4e7ef77072b44">Jazzychad's post on games</a></li>
+<li><a href="https://medium.com/p/7b54af3f574e">Stephen Orth on a different kind of App Store success</a></li>
+<li><a href="http://carpeaqua.com/2014/08/04/ninety-days/">Justin Williams - "90 days"</a></li>
+<li><a href="http://stuartkhall.com/posts/an-app-store-experiment">Stuart Hall - "An App Store Experiment"</a></li></ul></li></ul></li>
+<li>Post-show:
+<ul><li><a href="https://en.wikipedia.org/wiki/Rube_Goldberg_Machine">Rube Goldberg Machine</a></li>
+<li>Casey's terrible fast-food preferences
+<ul><li><a href="http://www.fazolis.com/menu/fresh-made-pastas/samplers/ultimate-sampler">Fazoli's Ultimate Sampler</a></li>
+<li><a href="https://twitter.com/caseyliss/status/495675090764570624">Casey's "breadsticks"</a></li>
+<li><a href="http://www.sonicdrivein.com">Sonic Drive-In</a></li>
+<li><a href="http://www.shakeshack.com">Shake Shack</a></li>
+<li><a href="http://fiveguys.com">Five Guys</a></li>
+<li><a href="http://cookoutnc.com">Cook-Out</a></li>
+<li><a href="http://boarshead.com/products/detail/435-beef-frankfurters-natural-casing-giants-8-1-consumer">Boar's Head Natural Casing Beef Frankfurters</a></li>
+<li><a href="http://www.yelp.com/biz/lothars-gourmet-sausages-purcellville">Lothar's Gourmet Sausages</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.topbrewerusa.com/">TopBrewer</a>: A revolutionary built-in coffee system for the home or small business.</li>
+<li><a href="https://www.fractureme.com">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP</strong> for 15% off. <a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a> (First 25 people: Use code <strong>marcofree</strong> for a free small square Fracture).</li>
+<li><a href="http://neededition.com/">Need</a>: A refined retailer and lifestyle magazine for men. <a href="mailto:hello@neededition.com?subject=New%20York%20Fashion%20Week">Email here</a> after ordering to get some bonuses and 25% off your next order.</li>
+</ul>]]></description><itunes:subtitle>Transport Tycoon, sausages, ARM Macs, and making money in the App Store.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53d788dee4b0ba978ec7dc31</guid><pubDate>Wed, 30 Jul 2014 17:04:00 +0000</pubDate><title>76: Not Suitable for Any Purpose</title><itunes:title>Not Suitable for Any Purpose</itunes:title><itunes:episode>76</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp76.mp3" length="80833374" type="audio/mpeg"/><link>https://atp.fm/76</link><description><![CDATA[<ul>
+<li>Follow-up on Overcast:
+<ul><li><a href="http://www.imore.com/debug">Debug</a></li>
+<li>Downloads, accounts, conversions, server load</li></ul></li>
+<li><a href="http://pando.com/2014/07/10/revealed-emails-court-docs-show-how-sony-stood-up-to-steve-jobs-and-pixars-wage-fixing-cartel/">Pixar and Ed Catmull get involved in wage-fixing</a>
+<ul><li><a href="http://atp.fm/episodes/59-the-little-puck-that-could">Previously on ATP</a></li>
+<li><a href="http://5by5.tv/incomparable/197">The Incomparable</a></li>
+<li><a href="http://www.bbc.co.uk/topgear">Top Gear</a> <a href="http://forums.finalgear.com/tg-us-specific-episode-discussions/03x04-september-4th-2012-a-54140/">Series 3 Episode 4</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Sega_Saturn">Sega Saturn</a></li></ul></li>
+<li><a href="https://appleseed.apple.com/sp/betaprogram/">Yosemite Public Beta</a>
+<ul><li><a href="http://tools.ietf.org/html/rfc3501">IMAP</a></li>
+<li><a href="http://atp.fm/episodes/39-desperation-mode">VPN woes</a> of the past</li>
+<li><a href="http://radar.apple.com/">Radar</a></li>
+<li><a href="http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html">SuperDuper</a></li>
+<li><a href="https://en.wikipedia.org/wiki/OS/2_Warp#1994.E2.80.931996:_The_.22Warp.22_years">OS/2 Warp</a></li></ul></li>
+<li>After-show:
+<ul><li>Marco rents crazy headphones from <a href="https://www.thecableco.com/Product/NEW-Headphone-Lending-Library">The Cable Company</a>
+<ul><li><a href="http://www.marco.org/2014/07/12/ridiculous-headphones-pile-of-schiit">Marco's original post</a></li>
+<li><a href="http://hifiman.com/Products/?pid=92">HE-6 headphones</a> (<a href="http://www.innerfidelity.com/content/how-planar-magnetic-headphones-work">the crazy way that planar-magnetic drivers work</a>)</li>
+<li><a href="http://hifiman.com/Products/?pid=116">The massive EF-6 amp</a> and its <a href="http://www.6moons.com/audioreviews/hifiman5/open2.png">crazy audiophile volume knob</a> (top center) — it's a <a href="http://diyaudioprojects.com/Misc/DIY-Stepped-Attenuator/">stepped</a> <a href="http://diyparadise.com/stepped_atten.html">attenuator</a>, since common <a href="http://en.wikipedia.org/wiki/Potentiometer">potentiometers</a> are considered inferior.</li>
+<li><a href="http://en.wikipedia.org/wiki/XLR_connector">XLR plugs</a> and <a href="http://en.wikipedia.org/wiki/Balanced_audio">balanced audio</a></li>
+<li><a href="http://www.ultimateears.com/en-us/pro">Casey still loves in-ear monitors</a> (probably while listening to vinyl), but many experts in both <a href="http://www.head-fi.org/t/634201/battle-of-the-flagships-58-headphones-compared-update-audeze-lcd-2-revision-2-6-4-13">prefer headphones</a>.</li></ul></li>
+<li>Casey surprises Marco and John by playing <a href="https://en.wikipedia.org/wiki/Journey_%282012_video_game%29">Journey</a>
+<ul><li>Casey <a href="https://twitter.com/caseyliss/status/490670824618475520">drops hints on Twitter</a> days before and John <a href="https://twitter.com/siracusa/status/490671039454937088">picks up on it</a></li>
+<li><a href="http://www.amazon.com/dp/B00GAC1D2G/?tag=liismo-20">PlayStation Store Credit on Amazon</a></li>
+<li><a href="http://www.amazon.com/dp/B008DCOVP2/?tag=liismo-20">Journey Soundtrack on Amazon</a> and <a href="https://itunes.apple.com/us/album/journey-original-soundtrack/id511359368?at=11lIuy&amp;ct=atpfm">iTunes</a></li>
+<li><a href="http://www.monumentvalleygame.com/">Monument Valley</a></li>
+<li><a href="http://hypercritical.co/2012/11/27/strange-game">John's blog post</a></li>
+<li><a href="http://atp.fm/episodes/69">Tiff plays Journey</a></li>
+<li><a href="http://5by5.tv/incomparable/108">The Incomparable on Journey</a></li>
+<li><a href="http://www.imdb.com/title/tt1375666/">Inception</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like, free for up to 10 people.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>IHATEYOUSOMUCH</strong> for 10% off.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+</ul>]]></description><itunes:subtitle>Overcast post-launch, Pixar and wage-fixing, Yosemite beta, and a very special after-show.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53cfaaf6e4b0bca5ae172afd</guid><pubDate>Thu, 24 Jul 2014 21:49:55 +0000</pubDate><title>75: You Had Your Moment</title><itunes:title>You Had Your Moment</itunes:title><itunes:episode>75</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:06</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp75.mp3" length="62838357" type="audio/mpeg"/><link>https://atp.fm/75</link><description><![CDATA[<ul>
+<li>Pre-Show: John visits <a href="https://www.sixflags.com/newengland">Six Flags</a></li>
+<li>Follow-up:
+<ul><li>Overcast week one update
+<ul><li>Server side vs. local feed crawling</li>
+<li>XML wonkiness
+<ul><li><a href="https://en.wikipedia.org/wiki/XPath">XPath</a></li>
+<li><a href="https://en.wikipedia.org/wiki/XSL_Transformations">XSLT</a></li></ul></li>
+<li>UI Changes in 1.0.1
+<ul><li>What should the rewind and fast-forward buttons do in a podcast app?</li>
+<li><a href="http://www.imore.com/debug-39-nitin-ganatra-episode-i-system-7-carbon">Episode 1 of the Debug Epic with Nitin Ganatra</a></li>
+<li>More on priority podcasts</li></ul></li></ul></li>
+<li>Sapphire iPhone 6
+<ul><li><a href="http://www.youtube.com/watch?v=b7ANcWQEUI8">Second Marques Brownlee Video</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Mohs_scale_of_mineral_hardness">Mohs Hardness Scale</a></li>
+<li><a href="http://www.corninggorillaglass.com/gorilla-channel/Corning®-Gorilla®-Glass-vs.-Sapphire">Gorilla Glass</a></li></ul></li></ul></li>
+<li><a href="https://www.apple.com/pr/library/2014/07/15Apple-and-IBM-Forge-Global-Partnership-to-Transform-Enterprise-Mobility.html">Apple &amp; IBM Partner in the Enterprise</a></li>
+<li>Post-show:
+<ul><li>Keeping devices &amp; sceens pristine
+<ul><li><a href="https://en.wikipedia.org/wiki/Macintosh_SE/30">Mac SE/30</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_Plus">Mac Plus</a></li></ul></li>
+<li>Used cars, kids, dings, and knicks
+<ul><li><a href="http://neutral.fm/episodes/3-a-bra-phase">Bra Phase</a></li></ul></li>
+<li>John criticizes recent <a href="http://www.caseyliss.com/showbot">showbot</a> changes</li>
+<li>TV Talk
+<ul><li>Which <a href="https://en.wikipedia.org/wiki/Mike_Judge">Mike Judge</a> creations are funnier than others</li>
+<li><a href="http://goo.gl/o0PedF">Halt and Catch Fire</a></li>
+<li><a href="http://goo.gl/eY0oCw">Silicon Valley</a></li>
+<li><a href="http://goo.gl/lFPA9n">Veep</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsors:</p>
+
+<ul>
+<li><a href="https://cottonbureau.com/">Cotton Bureau</a>: High-quality, design- and tech-focused T-shirts. Get 15% off any order in July with code <strong>ATP15</strong> at checkout.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Summer amusements, server-side parsing, UI meets the real world, sapphire, and the Apple/IBM partnership.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53c9091ee4b01d2bd00c402c</guid><pubDate>Fri, 18 Jul 2014 20:24:19 +0000</pubDate><title>74: One Of Us Shipped Something</title><itunes:title>One Of Us Shipped Something</itunes:title><itunes:episode>74</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp74.mp3" length="95937224" type="audio/mpeg"/><link>https://atp.fm/74</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Showbot status and pull requests</li>
+<li>Older phones still being bought today, like the iPhone 4S
+<ul><li>Long-term device limitations and upgradeability, RAM, spinning disks, and Mac/iOS purchasing strategies</li>
+<li>Vindictive but self-defeating defections</li></ul></li>
+<li>Screen size, small hands, and pants/trousers/jeans/khakis/whatevertheyrecalled.
+<ul><li><a href="http://jellystyle.com/podcasts/silverscreenqueens">Silver Screen Queens Podcast</a></li>
+<li><a href="http://www.cgpgrey.com">CGP Grey</a></li></ul></li>
+<li><a href="http://www.panasonic.com/business/plasma/3d/3d-plasma-th-152ux1.asp">4K Plasma TVs</a>, as pointed out by <a href="https://twitter.com/Awax/status/487487153686216704">Awax</a>, which <a href="http://catalog2.panasonic.com/webapp/wcs/stores/servlet/ModelDetail?storeId=11201&amp;catalogId=13051&amp;itemId=490650&amp;catGroupId=14624&amp;displayTab=O">lists for $500K</a></li></ul></li>
+<li><a href="http://overcast.fm/">Overcast</a> has shipped!
+<ul><li>Planning for server load and timing a release in the App Store</li>
+<li>Why require user accounts, and why not iCloud?</li>
+<li>Why freemium?</li>
+<li>What took so long? Why no streaming? Why does that even matter?</li>
+<li><a href="http://www.irltalk.com">IRL Talk</a></li>
+<li><a href="http://www.doradasoftware.com/best-podcast-app/">RSSRadio</a></li>
+<li><a href="https://en.wikipedia.org/wiki/ARM_architecture#SIMD_extensions_for_multimedia">ARM SIMD Extensions</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Altivec">AltiVec</a></li>
+<li>Features users will hopefully appreciate</li>
+<li>Linking to other independent podcast apps
+<ul><li><a href="https://news.ycombinator.com/item?id=8042611">Some serious dedication on Hacker News</a></li>
+<li>Posted after we recorded: <a href="http://blog.supertop.co/post/92045591052/overcast">Castro's response</a></li></ul></li>
+<li>Podcast directory design motivations</li></ul></li>
+<li>Possible web-hosting on an <a href="http://en.wikipedia.org/wiki/Apple_A7">A7</a>-based Apple TV like at <a href="http://atv.macminivault.com/">Mac Mini Vault</a></li>
+<li>After-show:
+<ul><li>John gets <a href="http://hypercritical.co/">Hypercritical</a> about Overcast</li>
+<li><a href="http://www.esn.fm/electricshadow/">Electric Shadow</a></li>
+<li><a href="http://5by5.tv/b2w/">Back to Work</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com">Fracture</a>: Photos printed in vivid color directly on glass. Use code ATP for 15% off. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://neededition.com/">Need</a>: A refined retailer and lifestyle magazine for men. <a href="mailto:hello@neededition.com?subject=Overcast%20Trousers">Email here</a> after ordering to get some bonuses and 25% off your next order.</li>
+</ul>]]></description><itunes:subtitle>Unfortunately, it wasn't Fast Text for iOS 7.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53bed1eee4b0e8c6be1e411e</guid><pubDate>Thu, 10 Jul 2014 22:19:45 +0000</pubDate><title>73: Notifications Duck</title><itunes:title>Notifications Duck</itunes:title><itunes:episode>73</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:20:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp73.mp3" length="57987731" type="audio/mpeg"/><link>https://atp.fm/73</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>Why would someone switch from iOS to Android? Is it because of software updates?
+<ul><li><a href="http://www.sprint.com/landings/framily/">Framily</a></li>
+<li><a href="http://rustyshelf.org/2014/07/01/io-thoughts/">Google I/O Inclusiveness</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Penny-farthing">Penny-farthing bicycle</a></li></ul></li>
+<li><a href="https://twitter.com/ivanski/status/484741992060964864">RAW editing in iPhoto</a></li>
+<li><a href="http://www.npr.org/blogs/health/2014/01/24/265702152/silencing-many-hospital-alarms-leads-to-better-health-care">Alarm fatigue</a> and how it relates to notifications on our phones</li>
+<li>More on health monitoring by <a href="http://benjamingriffelsblog.blogspot.com/2014/05/update-regarding-health-tech.html">Ben Griffel</a></li>
+<li><a href="http://www.controlplaneapp.com">Control Plane</a></li>
+<li>The <a href="http://www.theverge.com/2014/7/2/5864371/samsung-ending-production-of-plasma-tvs">death of plasma</a>
+<ul><li><a href="http://www.hdtvtest.co.uk/news/4k-plasma-201311133417.htm">The challenges of making a 4K plasma TV</a></li>
+<li>Are 4K TVs worth it?</li>
+<li><a href="https://en.wikipedia.org/wiki/Crutchfield">Crutchfield</a></li>
+<li><a href="http://blog.netflix.com/2014/05/netflix-now-streaming-in-ultra-hd-4k.html">Netflix Shows 4K</a></li></ul></li></ul></li>
+<li><a href="https://www.youtube.com/watch?v=5R0_FJ4r73s">Leaked "iPhone 6" "Sapphire" Display Video</a></li>
+<li>Post-show:
+<ul><li>Overcast and <a href="https://en.wikipedia.org/wiki/Content_Security_Policy">Content Security Policy</a>
+<ul><li><a href="https://github.com/blog/1477-content-security-policy">Github rolled out CSP</a></li></ul></li>
+<li>Firefox memories
+<ul><li><a href="http://kpdf.kde.org/stuff/nytimes-firefox-final.pdf">Firefox's launch ad in the New York Times</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Layout_engine#Timeline">Browser rendering engine timeline</a></li>
+<li><a href="https://en.wikipedia.org/wiki/XUL">XUL</a></li></ul></li>
+<li><a href="https://www.rescuetime.com">Rescue Time</a></li>
+<li>THE SHOWBOT SURVIVED!</li>
+<li>Quick <a href="http://neutral.fm/">Neutral</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/BMW_M3#F80_M3">F80 M3</a> vs. <a href="https://en.wikipedia.org/wiki/BMW_M3#E90.2F92.2F93_M3">E92 M3</a> <a href="http://f80.bimmerpost.com/forums/showthread.php?t=1008501">dyno comparison</a></li>
+<li><a href="http://www.youtube.com/watch?v=_p7s2VXBIcs">F10 M5 Launch Control</a></li>
+<li><a href="http://www.caranddriver.com/reviews/2015-porsche-918-spyder-prototype-drive-review">Porsche 918</a></li>
+<li><a href="http://vimeo.com/84791343">Casey's traction control in the snow</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>ATP</strong> for $5 off your first purchase.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>]]></description><itunes:subtitle>Product choices in social circles, 4K and plasma, sapphire displays, and a post-show in memory of Firefox.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53b3f904e4b0bf59f94b1276</guid><pubDate>Thu, 03 Jul 2014 14:19:38 +0000</pubDate><title>72: Take Your Co-Host To Work Day</title><itunes:title>Take Your Co-Host To Work Day</itunes:title><itunes:episode>72</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:11</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp72.mp3" length="80174842" type="audio/mpeg"/><link>https://atp.fm/72</link><description><![CDATA[<ul>
+<li>Pre-Show:
+<ul><li>Showbot is back, and it has <a href="http://en.wikipedia.org/wiki/Bugzilla#Zarro_Boogs">Zarro Boogs</a>.</li></ul></li>
+<li>Follow-up:
+<ul><li><a href="https://twitter.com/DonLodsky/status/483613028362227712">Don Lodsky points us</a> to a sample of <a href="http://www.polymer-project.org/components/paper-elements/demo.html#paper-checkbox">Google's new web design for desktop</a></li>
+<li>A brief meta-discussion about what we cover, how we cover it, and what being an "expert" is</li>
+<li>Feedback on potential wearables from <a href="http://benjamingriffelsblog.blogspot.com/">Ben Griffel</a>, biomedical engineer, and Per Östergren, MD</li></ul></li>
+<li><a href="http://www.loopinsight.com/2014/06/27/apple-stops-development-of-aperture/">Aperture and iPhoto's brands were sunset</a>
+<ul><li><a href="http://www.apertureexpert.com/sites/default/files/sitegraphics/tips/photos-for-os-x_apertureexpert.jpg">Zoomed Photos UI screenshot</a></li>
+<li><a href="http://arstechnica.com/apple/2014/06/apple-to-cease-development-support-of-pro-photo-app-aperture/">Apple tells Ars Technica</a> of "plans for professional-grade features such as image search, editing, effects, and most notably, third-party extensibility."</li>
+<li>We channel our our inner <a href="http://5by5.tv/prompt">Prompt</a> and discuss photo management techniques</li></ul></li>
+<li>Wonky design choices
+<ul><li><a href="https://twitter.com/jimray/status/483676017244901376">Jim Ray's tweet</a> that started the conversation</li>
+<li><a href="https://www.oxo.com/s-21-good-grips.aspx">OXO Good Grips</a></li>
+<li><a href="https://www.ifixit.com/Teardown/AirPort+Extreme+A1521+Teardown/15044">iFixit teardown of the AirPort Extreme</a></li>
+<li>A geometry lession regarding the <a href="http://nofilmschool.com/wp-content/uploads/2013/10/Apple-Mac-Pro-Back-Ports.jpg">Back of Marco's trash can</a></li>
+<li><a href="http://www.marco.org/media/2011/09/macbook-pro-sharp-edges.jpg">Sharp edges got softer</a> on MacBook Pros over time </li></ul></li>
+<li>After show:
+<ul><li><a href="https://gist.github.com/cliss/c618e3e20f9539f69568">More Showbot talk</a> (spoiler alert)
+<ul><li>John complains about Safari</li>
+<li>John complains about the Showbot</li>
+<li>Casey self-censors</li>
+<li>XSS by friend of the bot <a href="https://twitter.com/jeremybanks">Jeremy Banks</a></li></ul></li>
+<li>Marco circles back and exits the parking ramp regarding <a href="https://overcast.fm/">Overcast</a>
+<ul><li>The <a href="http://blackpixel.com/blog/2012/02/radar-or-gtfo.html">ghost</a> of <a href="https://twitter.com/jury">Jury</a></li>
+<li>Marco's <a href="http://www.youtube.com/watch?v=D2RoYvcqhgM">XOXO talk</a> where Overcast was announced... in September 2013</li>
+<li>Working around UIKit limitations with crazy hacks</li>
+<li>Whether to wait for iOS 8</li></ul></li>
+<li>John's Yosemite review status</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://hover.com/atp">Hover</a>: The best way to buy and manage domain names. Use coupon code <strong>PARKINGLOT</strong> for 10% off.</li>
+<li><a href="http://igloosoftware.com/casey">Igloo</a>: Igloo is an intranet you'll actually like.</li>
+</ul>]]></description><itunes:subtitle>Follow-up from doctors and Android enthusiasts, Aperture and iPhoto parking their sunsets into Photos for Mac, and designing for aesthetics over usefulness.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53ac810ce4b0c4342e3b4c35</guid><pubDate>Fri, 27 Jun 2014 16:17:06 +0000</pubDate><title>71: Security By Guilt</title><itunes:title>Security By Guilt</itunes:title><itunes:episode>71</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:42:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp71.mp3" length="73894713" type="audio/mpeg"/><link>https://atp.fm/71</link><description><![CDATA[<ul>
+<li>Pre-show:
+<ul><li><a href="http://www.milliondollarhomepage.com/">Million Dollar Homepage</a> (more on <a href="https://en.wikipedia.org/wiki/The_Million_Dollar_Homepage">Wikipedia</a>)</li>
+<li><a href="http://twitter.com/tewy">Alex Tew's Twitter Account</a> and <a href="http://www.calm.com/">new venture</a></li></ul></li>
+<li><a href="http://github.com/cliss/accidentalbot">Casey's Showbot</a> returns.
+<ul><li>SPOILER ALERT: The <a href="https://gist.github.com/cliss/95771f78a664954a03b3">Gist</a> Casey mentioned</li></ul></li>
+<li>Casey breaks Marco's brain with consulting terminology</li>
+<li>Is "!s" pronounced "bang-S" or "exclamation-point-S"?</li>
+<li>Hat colors</li>
+<li>Google I/O
+<ul><li><a href="http://www.theverge.com/2014/6/25/5842050/the-most-important-things-google-announced-at-i-o">Overview</a></li>
+<li><a href="http://www.google.com/design/">Material Design</a>
+<ul><li><a href="http://www.youtube.com/watch?v=Q8TXgCzxEnw">Design Reel video</a></li></ul></li>
+<li><a href="http://www.android.com/auto/">Android Auto</a></li>
+<li><a href="http://www.theverge.com/2014/6/25/5843028/up-close-with-the-moto-360-the-best-looking-smartwatch-yet">Moto 360 Watch</a>
+<ul><li><a href="http://www.panerai.com/">Panerai Watches</a></li></ul></li>
+<li>Lock-in by visual affordances</li>
+<li><a href="https://developers.google.com/gmail/api/">Gmail API</a>
+<ul><li>The API <a href="https://twitter.com/mattcutts/status/481927870499942401">doesn't replace IMAP</a></li>
+<li>Marco's <a href="https://twitter.com/marcoarment/status/355057307522039808">prediction about IMAP support</a></li></ul></li>
+<li><a href="http://source.android.com/devices/tech/dalvik/art.html">ART Runtime</a></li></ul></li>
+<li>Are web APIs still necessary?</li>
+<li>Post-show:
+<ul><li>"Follow-down" on Swift and openness (<a href="https://mikeash.com/pyblog/friday-qa-2014-06-20-interesting-swift-features.html#comment-2ba71511053a8017a556bc4ef9c091fa">Lattner's comment</a> on <a href="https://mikeash.com/pyblog/friday-qa-2014-06-20-interesting-swift-features.html">Mike Ash's Friday Q&amp;A</a>)</li>
+<li>More silly business metaphors</li>
+<li>Casey's Showbot: web sockets, error handling, and developing for work vs. "play".</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.raizlabs.com/atp">Raizlabs</a>: A full-service development firm looking to hire experienced mobile developers, designers, and product managers in Boston and San Francisco.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: A better web starts with your website. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Let's put Google I/O in the parking lot so we can talk about Million Dollar Homepage.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53a3b604e4b0661f04d34a9a</guid><pubDate>Fri, 20 Jun 2014 15:53:12 +0000</pubDate><title>70: The Endgame Is Omnipotence</title><itunes:title>The Endgame Is Omnipotence</itunes:title><itunes:episode>70</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp70.mp3" length="63034612" type="audio/mpeg"/><link>https://atp.fm/70</link><description><![CDATA[<ul>
+<li>Follow-up on app bundles as upgrade pricing.</li>
+<li>Whether games are more like apps or movies.</li>
+<li>Amazon's Fire Phone
+<ul><li>Who's it for?</li>
+<li>Mayday tech-support feature vs. Apple's retail stores
+<ul><li><a href="http://www.ifoapplestore.com/stores/population_density.html">Apple stores vs. U.S. population density</a></li></ul></li></ul></li>
+<li>Amazon and Apple doing what they're respectively, exclusively good at.
+<ul><li>Continuity and Handoff in Yosemite and iOS 8</li>
+<li><a href="http://daringfireball.net/2014/06/only_apple">Only Apple</a> (John Gruber)</li></ul></li>
+<li>John's opinion of iMessage.</li>
+<li>Casey's further adventures developing a small web app in a hostile environment.
+<ul><li><a href="https://www.owasp.org/index.php/Category:OWASP_Top_Ten_Project">OWASP top 10</a> web vulnerabilities</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://needlifestyle.com/">Need</a>: A refined retailer and lifestyle magazine for men. <a data-preserve-html-node="true" href="mailto:hello@needlifestyle.com?subject=World's%20Greatest%20Podcast">Email here after ordering</a> to get some bonuses and 25% off your next order.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use coupon code <strong>LETMEGETTHATFORYOU</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Are games more like apps or movies? Amazon Fire Phone, Mayday vs. Apple stores, Continuity, and playing to your strengths.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:539b5bf2e4b0d3e3ce4bb628</guid><pubDate>Fri, 13 Jun 2014 20:20:18 +0000</pubDate><title>69: Welcome to the Web, Casey</title><itunes:title>Welcome to the Web, Casey</itunes:title><itunes:episode>69</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:46:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp69.mp3" length="76551741" type="audio/mpeg"/><link>https://atp.fm/69</link><description><![CDATA[<ul>
+<li>Follow-up:
+<ul><li>It's OK if you got two T-shirts. Keep them both.</li>
+<li>Marco was wrong about <a href="https://developer.apple.com/icloud/documentation/cloudkit-storage/">CloudKit limits</a>.</li></ul></li>
+<li><a href="http://caseyliss.com/showbot">Casey's broken Showbot</a>.</li>
+<li>Abusing new <a href="https://developer.apple.com/support/appstore/app-bundles/">App Bundles and Complete This Bundle</a> to achieve upgrade pricing in the App Store.</li>
+<li><a href="http://oleb.net/blog/2014/06/apple-lifted-beta-nda/">The WWDC NDA is mostly gone</a>.
+<ul><li><a href="https://developer.apple.com/videos/wwdc/2014/">WWDC 2014 videos</a></li></ul></li>
+<li>Marco's likely filesystem corruption and restore.
+<ul><li><a href="http://www.shirt-pocket.com/SuperDuper/superduperdescription.html">SuperDuper</a></li>
+<li><a href="http://5by5.tv/bionic">Bionic</a></li>
+<li><a href="http://blog.barthe.ph/2014/06/10/hfs-plus-bit-rot/">HFS+ Bit Rot</a></li></ul></li>
+<li>Apple's new <a href="https://developer.apple.com/library/prerelease/ios/documentation/Miscellaneous/Conceptual/MTLProgGuide/Introduction/Introduction.html">Metal graphics API</a>.
+<ul><li><a href="http://www.imore.com/debug">Debug</a></li></ul></li>
+<li>Might the next Apple TV <a href="https://twitter.com/siracusa/status/473534326047395840">become a game console</a>?
+<ul><li><a href="http://stratechery.com/2014/apple-tv-might-disrupt-microsoft-sony/">How Apple TV Might Disrupt Microsoft and Sony</a> (Ben Thompson)</li>
+<li>TV "pucks" for gamers</li></ul></li>
+<li>After-show special: <a href="http://www.tiffanyarment.com/">Tiff</a> and John discuss <a href="http://thatgamecompany.com/games/journey/">Journey</a>.
+<ul><li><a href="http://5by5.tv/incomparable/108">The Incomparable: Journey</a></li>
+<li><a href="http://hypercritical.co/2012/11/27/strange-game">Strange Game</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://automatic.com/atp">Automatic</a>: Your smart driving assistant. Order <a href="http://automatic.com/atp">here</a> for 20% off.</li>
+</ul>]]></description><itunes:subtitle>Casey learns web programming, App Bundles as upgrade pricing, HFS+ (of course), Metal, and the next Apple TV as a disruptive game console.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:538e35b2e4b07a3ec5184bf4</guid><pubDate>Tue, 03 Jun 2014 20:54:39 +0000</pubDate><title>68: Siracusa Waited Impatiently For This</title><itunes:title>Siracusa Waited Impatiently For This</itunes:title><itunes:episode>68</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp68.mp3" length="74661481" type="audio/mpeg"/><link>https://atp.fm/68</link><description><![CDATA[<p>Our initial WWDC reactions.</p>
+
+<p>Recorded live at <a href="http://www.macworld.com/">Macworld</a>'s podcast studio. Thanks, <a href="https://twitter.com/jsnell">Jason Snell</a>!</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: The intranet you'll actually like. And it's about to get even better.</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price. </li>
+</ul>]]></description><itunes:subtitle>WWDC reactions.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5382a479e4b0ed66fc5264c8</guid><pubDate>Wed, 28 May 2014 14:05:52 +0000</pubDate><title>67: Tim Said, Man</title><itunes:title>Tim Said, Man</itunes:title><itunes:episode>67</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:09:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp67.mp3" length="93475193" type="audio/mpeg"/><link>https://atp.fm/67</link><description><![CDATA[<ul>
+<li>We'll be guests on the WWDC live episode of The Talk Show: Tuesday, June 3, 6–9 PM. <a href="https://ti.to/daringfireball/the-talk-show-wwdc-2014">Get tickets here ASAP!</a> John will be taking a plane... for you.</li>
+<li>Follow-up:
+<ul><li>Which is faster: installing <a href="https://github.com/mutewinter/Showbot">Showbot</a> or reimplementing it?
+<ul><li><a href="http://www.caseyliss.com/2014/5/25/accidentalbot">Casey's open-source Node version</a></li></ul></li>
+<li><a href="http://benchmarksgame.alioth.debian.org/u64/benchmark.php?test=all&amp;lang=v8&amp;lang2=php&amp;data=u64">PHP isn't faster than Javascript</a>, voiding Marco's accidental argument in the last episode.</li>
+<li>Node.js <a href="http://wiki.commonjs.org/wiki/Implementations/node.js">uses</a> CommonJS, not <a href="http://en.wikipedia.org/wiki/Asynchronous_module_definition">AMD</a>. ECMAScript also adds <a href="https://github.com/lukehoban/es6features#modules">formal module support</a>, which <a href="https://github.com/square/es6-module-transpiler">es6-module-transpiler</a> lets you use today.</li>
+<li>To the great surprise of nobody except John, iPhones come with earbuds, and those earbuds come with clickers.</li>
+<li>To the great surprise of nobody, including John, the Bluetooth-pairing interface in a car was terrible, and both Marco and Casey missed <a href="http://www.imdb.com/title/tt0089901/">an obscure reference</a>.</li>
+<li>iOS games that support physical game controllers <a href="https://developer.apple.com/library/ios/documentation/ServicesDiscovery/Conceptual/GameControllerPG/Introduction/Introduction.html">must also work without them</a>.</li></ul></li>
+<li>If the "iPhone 6" comes in two sizes, which do you buy?
+<ul><li>Possibility of <a href="http://9to5mac.com/2014/05/14/likely-iphone-6-with-sharper-larger-1704-x-960-resolution-screen-in-testing/">resolution scaling modes</a>.</li>
+<li>Would the cameras be different? (<a href="http://www.muleradio.net/thetalkshow/69/">Marco on The Talk Show</a>, starting around 01:26:00).</li></ul></li>
+<li>WWDC product-announcement predictions:
+<ul><li>New MacBook Airs or a 12" Retina MacBook Air? (<a href="http://arstechnica.com/gadgets/2014/05/new-intel-chipsets-speed-up-your-storage-but-theyre-missing-new-cpus/">Intel's Broadwell delay</a>)
+<ul><li><a href="http://www.macworld.com/article/2150841/lab-tested-new-2014-macbook-air-benchmarks.html">Macworld's slow SSD speeds in the new Airs</a> may just be from <a href="http://blog.macsales.com/24043-new-2014-macbook-airs-have-same-ssd-speeds-as-2013-models-owc-testing-shows">different SSD manufacturers</a>.</li></ul></li>
+<li>New Apple TV hardware or software?
+<ul><li>The Apple TV 3's CPU <a href="http://www.anandtech.com/show/5740/apple-tv-a5-soc-is-32nm-harvested-dualcore-a5">was originally</a> a dual-core A5 with one die disabled, but <a href="http://www.chipworks.com/en/technical-competitive-analysis/resources/blog/inside-the-latest-apple-a5-from-a-new-apple-tv/">not anymore</a>.</li></ul></li>
+<li>The iPod Touch <a href="http://en.wikipedia.org/wiki/IPod_Touch#Technical_specifications">still has an A5 LOL</a>.</li>
+<li>There may not be <em>any</em> new hardware announced at WWDC, just like previous WWDCs in 2007, 2008, 2010, and 2011.</li>
+<li>New sensors to be taken advantage of, like <a href="https://itunes.apple.com/us/app/pedometer++/id712286167?mt=8">Pedometer++</a> did with the M7 last year.</li>
+<li><a href="http://furbo.org/2014/03/13/wearing-apple/">Craig Hockenberry on Apple wearables</a></li>
+<li>Wearables, sensors, and watches in fashion and reality.</li>
+<li>Bringing the new Mac Pro's dark-glossy-aluminum finish to more Pro hardware?</li>
+<li>Retina Thunderbolt Display?</li>
+<li>The Magic Mouse. Yes, we really talked about this.</li></ul></li>
+<li>Drawing conclusions from the "To Be Announced" sessions in the WWDC schedule.</li>
+<li>WWDC predictions for Mac OS X 10.10:
+<ul><li>Just a visual refresh, or notable improvements to the core OS as well?</li>
+<li>Apple shuffling engineers around to work on the new hotness while neglecting its established platforms and applications.</li>
+<li>Modernization or replacement of AppKit, possibly by bringing the relevant parts of UIKit to Mac?</li>
+<li>Is there any hope for a new filesystem, possibly by evolving Core Storage?</li></ul></li>
+<li>WWDC predictions for iOS 8:
+<ul><li>Better inter-app communication:
+<ul><li>A system like <a href="http://msdn.microsoft.com/en-us/library/windows/apps/hh464906.aspx">Contracts</a> or <a href="http://developer.android.com/guide/components/intents-filters.html">Intents</a>?</li>
+<li>Involving <a href="http://oleb.net/blog/2012/10/remote-view-controllers-in-ios-6/">remote view controllers</a>?</li>
+<li><a href="http://9to5mac.com/2014/05/13/apple-plans-to-match-microsoft-surface-with-split-screen-ipad-multitasking-in-ios-8/">Side-by-side iPad multitasking</a>?</li></ul></li>
+<li>Springboard enhancements?</li>
+<li>Please kill Newsstand. Please. Just make them normal app icons.</li>
+<li>Could Remote View Controllers and Background Refresh be used for widgets, live tiles, or dynamic icons?</li>
+<li>Customizable default browser, mail app, etc.?</li></ul></li>
+<li>WWDC predictions for new or improved web services:</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://naturebox.com/atp">NatureBox</a>: Discover and enjoy delicious snacks, conveniently delivered to your home or office.</li>
+<li><a href="http://thedash.com/atp">Dash</a>: Create a free, real-time dashboard for your website, your business, or your life. (Check out the ones they made for us.)</li>
+</ul>]]></description><itunes:subtitle>WWDC predictions.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:537c9affe4b022541ba6b0ae</guid><pubDate>Thu, 22 May 2014 02:01:58 +0000</pubDate><title>66: Boiling A Pretty Big Lake</title><itunes:title>Boiling A Pretty Big Lake</itunes:title><itunes:episode>66</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp66.mp3" length="88235045" type="audio/mpeg"/><link>https://atp.fm/66</link><description><![CDATA[<ul>
+<li>The modern Apple-store experience</li>
+<li>Follow-up:
+<ul><li>Marco reneges on his recent praise of Beats headphones, then receives the <a href="http://www.officialdrdre.com/beats-by-dr.-dre-studio-bmw-headphones-limited-edition">saddest real-time follow-up ever</a></li>
+<li>Headphones mentioned:
+<ul><li><a href="http://www.beoplay.com/Products/BeoplayH6">B&amp;O BeoPlay H6</a>: Great comfort, but not sound.</li>
+<li><a href="http://www.amazon.com/dp/B0006NL5SM/?tag=marcoorg-20">Beyerdynamic DT-770 Pro</a> (32-ohm version; Casey's headphones) for very good sound at a great value (when the <a href="http://camelcamelcamel.com/product/B008POFOHM">price drops</a> to $175).</li>
+<li><a href="http://www.amazon.com/dp/B003WV7890/?tag=marcoorg-20">Sennheiser PX 200-II i</a>: Marco's favorite portable set. Great portability, clicker, and value, but poor sound and durability.</li>
+<li><a href="http://www.marco.org/2014/05/21/beats-alternatives">More picks from Marco</a></li>
+<li><a href="http://www.amazon.com/dp/B0019RBJOE/?tag=marcoorg-20">Ultimate Ears TripleFi 10</a> (Casey's earphones)</li></ul></li>
+<li><a href="http://stratechery.com/2014/net-neutrality-wake-call/">Net Neutrality</a></li></ul></li>
+<li>Nintendo's sad trombone
+<ul><li><a href="http://hypercritical.co/2013/09/02/nintendo-in-crisis">Nintendo in Crisis</a></li>
+<li><a href="http://www.polygon.com/2014/5/16/5722640/ps4-outperforms-xbox-one-during-april">PS4 outperforms Xbone</a></li>
+<li><a href="https://developer.apple.com/library/ios/documentation/ServicesDiscovery/Conceptual/GameControllerPG/Introduction/Introduction.html">Game Controller Programming Guide</a></li>
+<li>Nintendo 64 Accessories
+<ul><li><a href="https://en.wikipedia.org/wiki/Nintendo_64_accessories#Expansion_Pak">Expansion Pak</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Nintendo_64_accessories#Rumble_Pak">Rumble Pak</a></li></ul></li>
+<li><a href="http://arstechnica.com/gaming/2014/05/microsoft-announces-kinect-free-xbox-one-on-sale-june-9/">Kinect-free Xbone</a></li></ul></li>
+<li>Beginnings of WWDC predictions
+<ul><li><a href="https://en.wikipedia.org/wiki/Odwalla">Odwalla</a></li>
+<li><a href="http://9to5mac.com/2014/03/17/this-is-healthbook-apples-first-major-step-into-health-fitness-tracking/">Healthbook</a>
+<ul><li><a href="https://en.wikipedia.org/wiki/VO2_max">VO2</a></li></ul></li>
+<li><a href="http://5by5.tv/prompt/43">The Prompt on Carousel</a>, one of their many photo-management-related episodes</li>
+<li><a href="http://blog.codinghorror.com/the-infinite-version/">The Infinite Version</a></li>
+<li>Casey and Marco explore mixed metaphors... politely. Ish.</li>
+<li><a href="http://developingperspective.com/2014/05/16/0/">_ on the state of the Apple community</a></li>
+<li><a href="https://en.wikipedia.org/wiki/WebObjects">WebObjects</a></li>
+<li><a href="http://fnd.io/">Fnd.io</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Multipath_TCP">Multipath TCP</a></li></ul></li>
+<li>After-show:
+<ul><li><a href="http://9to5mac.com/2014/05/13/apple-plans-to-match-microsoft-surface-with-split-screen-ipad-multitasking-in-ios-8/">iOS 8 split-screen multitasking</a></li>
+<li>John obliquely discusses some <a href="http://overcast.fm/">Overcast</a> complaints.</li>
+<li>Wearables. Sorta.</li>
+<li>More on headphones.</li>
+<li>John was wrong about something.</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://thedash.com/atp">Dash</a>: Create a free, real-time dashboard for your website, your business, or your life. (Check out the ones they made for us.)</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use coupon code <strong>SCRUMMERFALL</strong> for 10% off.</li>
+<li><a href="http://naturebox.com/atp">NatureBox</a>: Discover and enjoy delicious snacks, conveniently delivered to your home or office.</li>
+</ul>]]></description><itunes:subtitle>Beats and headphone alternatives, Nintendo's situation, iOS 8 predictions, and the state of the iTunes Store infrastructure.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53782808e4b0cb63d6fad5fb</guid><pubDate>Sun, 18 May 2014 03:31:06 +0000</pubDate><title>65: The Year Of Casey</title><itunes:title>The Year Of Casey</itunes:title><itunes:episode>65</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:01:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp65.mp3" length="87251645" type="audio/mpeg"/><link>https://atp.fm/65</link><description><![CDATA[<ul>
+<li><a href="http://www.caseyliss.com/2014/5/14/finally">Casey's big news</a>! (Much better than <a href="http://www.mariowiki.com/Year_of_Luigi">The Year of Luigi</a>.)</li>
+<li>Casey and John discuss <a href="http://www.monumentvalleygame.com/">Monument Valley</a>, the <a href="http://en.wikipedia.org/wiki/M._C._Escher">Escher</a>-inspired puzzle game. (Marco didn't do his homework.)</li>
+<li><a href="http://bits.blogs.nytimes.com/2014/05/16/apple-and-google-end-patent-fights/?_php=true&amp;_type=blogs&amp;_r=0">Apple and Google agree to... something</a>
+<ul><li><a href="https://www.youtube.com/watch?v=2dKdBlKgquw">"Fight the real enemy"</a></li></ul></li>
+<li><a href="http://www.washingtonpost.com/news/morning-mix/wp/2014/05/09/dr-dre-could-be-upping-apples-cool-factor-in-3-2-billion-deal-to-buy-beats/">Apple might be buying Beats</a>: why, and what they'd probably do with it.</li>
+<li><a href="https://www.webkit.org/blog/3362/introducing-the-webkit-ftl-jit/">WebKit optimizes Javascript with LLVM</a>
+<ul><li><a href="https://www.destroyallsoftware.com/talks/wat">Wat</a></li>
+<li><a href="https://www.destroyallsoftware.com/talks/the-birth-and-death-of-javascript">The Birth &amp; Death of JavaScript</a></li></ul></li>
+<li>"Full-stack developers" keeping up with the crazy world of Javascript frameworks.</li>
+<li>Using third-party code.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://smilesoftware.com/atp?crcat=atp&amp;crsource=pdfpen-scan-plus&amp;crcampaign=may14">PDFPen Scan+</a>: Scan and OCR PDFs anywhere from your iPhone or iPad, upload, share, and more.</li>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+</ul>]]></description><itunes:subtitle>Casey's big news, Monument Valley, Apple and Beats, and the crazy world of Javascript.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:536b8657e4b0080bfee26a53</guid><pubDate>Thu, 08 May 2014 15:23:12 +0000</pubDate><title>64: It Never Died Because It Never Lived</title><itunes:title>It Never Died Because It Never Lived</itunes:title><itunes:episode>64</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:34:38</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp64.mp3" length="68259522" type="audio/mpeg"/><link>https://atp.fm/64</link><description><![CDATA[<ul>
+<li><strong><a href="http://teespring.com/accidental">Hurry if you want an ATP T-Shirt!</a> Just $19, and the sale may be over by the time you read this!</strong></li>
+<li>Follow-up:
+<ul><li>Who plays video games vs. self-identified "gamers"</li>
+<li><a href="https://www.comixology.com">ComiXology</a>
+<ul><li>Is Apple's 30% cut of in-app purchases the same as net neutrality?</li>
+<li><a href="https://www.youtube.com/watch?v=NAxMyTwmu_M">Vihart Video</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Internet2">Internet2</a></li>
+<li>Who should blink, Apple or ComiXology?</li></ul></li>
+<li><a href="http://applinks.org">AppLinks</a></li></ul></li>
+<li><a href="http://blog.app.net/2014/05/06/app-net-state-of-the-union/">App.net sunsets its employees</a>
+<ul><li><a href="http://www.revolution60.com/page2/index.php?id=85019162841">Brianna Wu's Post</a></li>
+<li><a href="https://tent.io/">Tent</a></li></ul></li>
+<li>Chrome experiments with <a href="http://www.allenpike.com/2014/burying-the-url/">removing URLs from the omnibox</a></li>
+<li><a href="http://www.caseyliss.com/2014/5/2/camel-open-sourced">Casey open-sourced his Camel blog engine</a></li>
+<li>After-show:
+<ul><li><a href="https://github.com/cliss/camel/blob/master/camel.js">Casey's flower boxes</a></li>
+<li><a href="http://search.cpan.org/~jsiracusa/">John's code on CPAN</a>
+<ul><li><a href="http://rosecode.org">Rose</a></li></ul></li>
+<li>Marco's bastardized <a href="http://en.wikipedia.org/wiki/Indent_style#K.26R_style">K&amp;R style</a> wedged into <a href="https://github.com/marcoarment/FCModel/blob/master/FCModel/FCModel.m">his Objective-C code</a></li>
+<li><a href="http://inessential.com/2014/04/13/vesper_sync_diary_13_unlucky_13">Brent Simmons on Javascript integers</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://naturebox.com/atp">NatureBox</a>: Discover and enjoy delicious snacks, conveniently delivered to your home or office.</li>
+<li><a href="http://www.igloosoftware.com/campaigns/q1_2014?ref=atp&amp;type=podcast&amp;month=may">Igloo</a>: An intranet you'll actually like.</li>
+<li><a href="http://newrelic.com/atp">New Relic</a>: See your web app's performance and find bottlenecks anywhere in the stack. Start your 30-day free trial.</li>
+</ul>]]></description><itunes:subtitle>Apple/Amazon as a net neutrality debate, App.net's grim future, Chrome beta's URL bar, and Casey goes open-source.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53639578e4b0f65b2793d9af</guid><pubDate>Fri, 02 May 2014 16:14:48 +0000</pubDate><title>63: I Hold My Children To A Higher Standard</title><itunes:title>I Hold My Children To A Higher Standard</itunes:title><itunes:episode>63</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:03</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp63.mp3" length="80083000" type="audio/mpeg"/><link>https://atp.fm/63</link><description><![CDATA[<ul>
+<li><strong><a href="http://teespring.com/accidental">ATP T-Shirts</a>: $19 each, available for only 1 week!</strong></li>
+<li>Follow-up:
+<ul><li><a href="http://birchtree.me/blog/you-dont-grow-out-of-gaming">Average age of gamers</a> (more <a href="http://www.theesa.com/facts/">here</a> and <a href="http://www.theesa.com/facts/pdfs/ESA_EF_2014.pdf">here</a> from the Entertainment Software Association)</li>
+<li>Your favorite game genres going out of fashion</li>
+<li>Apps and games Mentioned:
+<ul><li><a href="http://en.wikipedia.org/wiki/Metal_Gear_Solid">Metal Gear Solid</a></li>
+<li><a href="http://en.wikipedia.org/wiki/The_Legend_of_Zelda:_Ocarina_of_Time">Legend of Zelda: Ocarina of Time</a></li>
+<li><a href="https://itunes.apple.com/us/app/flight-control/id306220440?mt=8&amp;ign-mpt=uo%3D4">Flight Control (iTunes)</a></li>
+<li><a href="http://bigbucketsoftware.com/theincident/">The Incident</a></li>
+<li><a href="http://www.atebits.com/letterpress/">Letterpress</a></li>
+<li><a href="http://www.andreasilliger.com/index.php">Tiny Wings</a></li>
+<li><a href="http://rampchamp.com">Ramp Champ</a></li>
+<li><a href="http://asherv.com/threes/">Threes</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Total_Annihilation">Total Annihilation</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Supreme_Commander_%28video_game%29">Supreme Commander</a></li></ul></li></ul></li>
+<li><a href="http://applinks.org/">Facebook App Links</a>
+<ul><li><a href="http://www.macstories.net/news/with-app-links-facebook-aims-at-bridging-the-gap-between-mobile-apps/">MacStories</a></li>
+<li><a href="https://twitter.com/reneritchie/status/461625282189733889">Rene Ritchie</a></li></ul></li>
+<li><a href="http://www.theverge.com/2014/4/26/5656468/comixology-ios-update-removes-in-app-purchases">ComiXology removes in-app purchase</a>
+<ul><li><a href="http://5by5.tv/b2w/169">Back to Work</a></li>
+<li><a href="http://office.microsoft.com/en-us/mobile/">Office for iPad/iPhone</a></li></ul></li>
+<li>After-show:
+<ul><li><a href="http://techcrunch.com/2014/02/21/rumor-testflight-owner-burstly-is-being-acquired-by-apple/">Burstly acquired by Apple</a>, which brings <a href="http://testflightapp.com">TestFlight</a> with it.</li>
+<li><a href="http://www.caseyliss.com/">Casey's new website</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP</strong> for 20% off. (<a href="http://cl.ly/image/1p400i300h2F">Marco's 5x5 app-icon Fractures</a>)</li>
+<li><a href="http://newrelic.com/atp">New Relic</a>: See your web app's performance and find bottlenecks anywhere in the stack. Start your 30-day free trial.</li>
+</ul>]]></description><itunes:subtitle>ATP T-shirts (hurry!), average gamer age and game genres falling out of favor, Facebook App Links, and Apple's 30% commission vs. Amazon and customers.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53590d1fe4b083ea19ed066e</guid><pubDate>Thu, 24 Apr 2014 22:19:35 +0000</pubDate><title>62: Journey Would Be Wasted On You</title><itunes:title>Journey Would Be Wasted On You</itunes:title><itunes:episode>62</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:13:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp62.mp3" length="96079056" type="audio/mpeg"/><link>https://atp.fm/62</link><description><![CDATA[<ul>
+<li>Follow-up on pCell and database scaling, including horizontal sharding schemes, tiered data layers, and taking a stand against the "premature optimization" tautology.</li>
+<li>When and why do developers learn something new, and why does Marco keep using PHP for everything?
+<ul><li><a href="https://github.com/marcoarment/secondcrack">Second Crack</a></li>
+<li><a href="http://fasttext.caseyliss.com/">Fast Text</a></li>
+<li><a href="http://hypercritical.co/">John's blog</a></li></ul></li>
+<li><a href="http://www.macworld.com/article/2146568/apple-launches-beta-seed-for-os-x-program-for-end-users.html">OS X Beta Program for End Users</a>
+<ul><li><a href="http://furbo.org/2014/04/18/get-ready-for-june-2nd/">What's coming on June 2nd?</a></li></ul></li>
+<li>Casey and Marco make John proud (<a href="http://www.imdb.com/title/tt0151804/?ref_=fn_al_tt_1">spoiler</a>)</li>
+<li>New <a href="http://www.macrumors.com/2014/04/21/thunderbolt-third-generation-details/">third-generation Thunderbolt details</a>
+<ul><li><a href="http://www.engadget.com/2012/06/11/apple-magsafe-vs-magsafe-2-photos-incompatible-power-connectors/">MagSafe vs. MagSafe 2</a></li></ul></li>
+<li><a href="http://overcast.fm/">Overcast</a> update</li>
+<li>Are iPad sales leveling off? Why?
+<ul><li>How we use our iPads today</li>
+<li>Limitations in modern iOS</li>
+<li>Are iPad apps stagnating?</li>
+<li><a href="http://www.mondaynote.com/2014/04/20/the-ipad-is-a-tease/">Jean-Louis Gassée's take</a></li>
+<li><a href="http://daringfireball.net/linked/2014/04/21/gassee-ipad">Gruber's response</a></li>
+<li><a href="http://tumblr.caseyliss.com/post/70507092687">Casey on T-Mobile's Free Internet</a> (relevant <a href="http://support.t-mobile.com/docs/DOC-9700">T-Mobile info</a>)</li>
+<li>Apps mentioned:
+<ul><li><a href="http://tapbots.com/software/tweetbot/ipad/">Tweetbot</a></li>
+<li><a href="http://twitterrific.com/ios/">Twitterrific</a></li>
+<li><a href="https://agilebits.com/onepassword/ipad">1Password</a></li>
+<li><a href="http://flexibits.com/fantastical-ipad">Fantastical 2</a></li>
+<li><a href="http://asherv.com/threes/">Threes</a></li>
+<li><a href="http://www.monumentvalleygame.com">Monument Valley</a></li>
+<li><a href="http://simogo.com/work/year-walk-ios/">Year Walk</a></li>
+<li><a href="http://www.fireproofgames.com/the-room">The Room</a></li></ul></li></ul></li>
+<li>Will tablets be marginalized by bigger phones and smaller laptops?</li>
+<li>After-show:
+<ul><li><a href="http://en.wikipedia.org/wiki/Sega_CD">Sega CD</a>, <a href="http://en.wikipedia.org/wiki/Sega_32X">32X</a>, <a href="http://en.wikipedia.org/wiki/Sega_Genesis#Variations">CDX</a> (which Marco thought was codenamed Jupiter, but that was <a href="http://segaretro.org/Sega_Jupiter">something else</a>), <a href="http://en.wikipedia.org/wiki/Sega_Saturn">Saturn</a>, and <a href="http://en.wikipedia.org/wiki/Sega_Dreamcast">Dreamcast</a>.</li>
+<li>Casey and Marco's video game history and why they don't bother anymore. What do the three hosts do during our free time, anyway?</li>
+<li>Apps mentioned:
+<ul><li><a href="http://www.ridiculousfishing.com/">Ridiculous Fishing</a></li>
+<li><a href="http://www.atebits.com/letterpress/">Letterpress</a></li>
+<li><a href="http://www.weplaydots.com">Dots</a></li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://newrelic.com/atp">New Relic</a>: See your web app's performance and find bottlenecks anywhere in the stack. Start your 30-day free trial.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://helpspot.com/atp">HelpSpot</a>: Simple, powerful, customizable help-desk software with no monthly fees. Use code <strong>ATP14</strong> for $100 off.</li>
+</ul>]]></description><itunes:subtitle>Developers learning new things, using OS X betas, Thunderbolt 3, what's holding the iPad back, whether tablets will be marginalized by bigger phones and smaller laptops, and the Sega CD.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5350537ae4b0c2d6c8937f70</guid><pubDate>Fri, 18 Apr 2014 15:04:48 +0000</pubDate><title>61: Perfectly Neutral</title><itunes:title>Perfectly Neutral</itunes:title><itunes:episode>61</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:59</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp61.mp3" length="82918292" type="audio/mpeg"/><link>https://atp.fm/61</link><description><![CDATA[<ul>
+<li>Follow-up on <a href="http://www.imore.com/how-share-photo-streams-friends-and-family-not-using-iphone-or-ipad">Photo Stream Web Sites</a></li>
+<li>Follow-up on vinyl, including how <a href="https://gist.githubusercontent.com/marcedwards/10618828/raw/484701b224880fad0763f6f9ece0f913b8826c94/Vinyl+vs+CD+vs+digital+audio">Marc Edwards thinks it's evil</a>, and the difference between pleasing and accurate sound. (Marco's <a href="http://www.headphone.com/selection-guide/top-picks/sennheiser-hd-800.php">open</a> and <a href="http://www.headphone.com/selection-guide/top-picks/fostex-th-900.php">closed</a> headphones, <a href="http://schiit.com/products/asgard-2">amp</a>, and <a href="http://schiit.com/products/bifrost">DAC</a>)</li>
+<li>The Apple insight attained by way of <a href="http://recode.net/2014/04/05/the-six-juiciest-documents-from-the-apple-samsung-trial-this-week/">documents released in the Samsung trial</a>
+<ul><li><a href="http://www.amazon.com/dp/0812993012?tag=siracusa-20">Creativity, Inc.</a>, the book about Pixar by <a href="http://en.wikipedia.org/wiki/Edwin_Catmull">Ed Catmull</a></li></ul></li>
+<li>Is Greg Christie's departure <a href="http://9to5mac.com/2014/04/09/jony-ive-shakes-up-apples-software-design-group-iphone-interface-creator-greg-christie-departing/">a contentious story</a> or <a href="http://techcrunch.com/2014/04/09/veteran-apple-designer-greg-christie-departing-and-his-group-will-report-to-jony-ive/">not</a>?
+<ul><li>This, too, <a href="http://www.fastcompany.com/3027135/inside-the-pixar-braintrust">relates to Pixar</a></li>
+<li><a href="http://twitter.com/kongtomorrow">Ken Ferry</a> on getting ideas approved at Apple, as heard on <a href="http://www.imore.com/debug-33-ken-ferry-auto-layout-passbook-and-understudy">Debug #33</a></li></ul></li>
+<li><a href="http://www.artemis.com/pcell">Artemis pCell</a> (<a href="http://vimeo.com/86746051">demo video</a>)</li>
+<li>Scaling servers and how to use MySQL effectively
+<ul><li>Marco's <a href="http://www.amazon.com/dp/1449314287/?tag=marcoorg-20">preferred book</a> (but he prefers the <a href="http://www.amazon.com/dp/0596101716?tag=marcoorg-20">second edition</a>)</li>
+<li>Perhaps <a href="http://grimoire.ca/mysql/choose-something-else">not use MySQL</a>?</li>
+<li>A long list of <a href="http://sql-info.de/mysql/gotchas.html">MySQL gotchas</a></li>
+<li>How FriendFeed did <a href="http://backchannel.org/blog/friendfeed-schemaless-mysql">crazy schema-less MySQL</a></li></ul></li>
+<li>After show: why Casey hates his car, thanks to a <a href="http://www.goochlanddriveintheater.com">trip to the movies</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://smilesoftware.com/atp?crcat=atp&amp;crsource=pdfpen-ipad&amp;crcampaign=apr14">PDFpen for iPad</a>: Powerful, mobile PDF editing.</li>
+<li><a href="http://igloosoftware.com/casey">Igloo</a>: Igloo is an intranet you'll actually like.</li>
+<li><a href="http://newrelic.com/atp">New Relic</a>: See your web app's performance and find bottlenecks anywhere in the stack. Start your 30-day free trial.</li>
+</ul>]]></description><itunes:subtitle>Vinyl sound, Apple/Samsung trial documents, Greg Christie's departure, pCell, performance vs. scaling, and why Marco never uses JOINs.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53471887e4b05abb16be8e7b</guid><pubDate>Fri, 11 Apr 2014 03:53:07 +0000</pubDate><title>60: The Great Odwalla Flavor Change of 2013</title><itunes:title>The Great Odwalla Flavor Change of 2013</itunes:title><itunes:episode>60</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:23:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp60.mp3" length="103729239" type="audio/mpeg"/><link>https://atp.fm/60</link><description><![CDATA[<ul>
+<li><a href="http://en.wikipedia.org/wiki/Please_Hammer,_Don't_Hurt_'Em">Please Hammer, Don't Hurt 'Em</a> while you sunset <a href="http://www.dancejam.com/">Dance Jam</a></li>
+<li><a href="http://developer.apple.com/wwdc/">WWDC</a>
+<ul><li>How to make a lottery work, like <a href="http://www.shmoocon.org/human_registration">Shmoocon</a> does</li>
+<li>How to write a live blogging system for keynotes</li>
+<li>Our winnings and losses in the <a href="https://developer.apple.com/wwdc/tickets/">WWDC Don't-Call-it-a-Lottery</a></li>
+<li>Levels of randomness and Apple's discretionary pool of tickets</li>
+<li>What's the right way to distribute tickets?</li>
+<li>Is today's WWDC really tenable? What could be done?</li>
+<li><a href="http://www.altconf.com">AltConf</a> and "<a href="https://twitter.com/rentzsch/status/453336961885822976">CDWW</a>"</li></ul></li>
+<li><a href="http://heartbleed.com">Heartbleed</a></li>
+<li><a href="http://www.dropbox.com/">Dropbox</a>'s Announcements
+<ul><li><a href="https://blog.dropbox.com/2014/04/growing-our-leadership-team/">Condoleezza Rice joins their board</a></li>
+<li><a href="https://blog.dropbox.com/2014/04/introducing-carousel/">Carousel</a>, a new photo sharing app.
+<ul><li>Some potential <a href="http://www.wysk.com/index/virginia/richmond/lehma37/mobelux-labs-llc/trademarks">trademark issues</a> with <a href="http://mobelux.com/">some friends of Marco and Casey's</a></li>
+<li>Does this leverage <a href="https://twitter.com/sameersundresh/status/398855787759419393">Everpix IP</a>?</li>
+<li>How the UI is similar to <a href="http://karakullake.blogspot.com/2010/05/85-mph-speedometer.html">Oldsmobile speedometers from the 80s</a></li></ul></li></ul></li>
+<li><a href="http://www.adobe.com/products/lightroom-mobile.html?PID=6146810">Lightroom Mobile</a></li>
+<li>In an unusually angsty after-show, John takes Marco and Casey on:
+<ul><li>Where do crashes <em>really</em> come from?
+<ul><li>John on <a href="http://www.imore.com/debug-32-john-siracusa-copland-2014">Debug #32</a></li></ul></li>
+<li>Is Vinyl <em>really</em> better than CDs?
+<ul><li><a href="http://www.irltalk.com/episodes/episode-19-a-hullaballoo-is-not-necessary">IRL Talk #19</a></li>
+<li>Casey on <a href="http://www.irltalk.com/episodes/episode-21-its-fine-if-its-ten-years-later">IRL Talk #21</a></li>
+<li>Christopher “Monty” Montgomery's <a href="https://wiki.xiph.org/Videos/Digital_Show_and_Tell">excellent video</a> explaining audio sampling</li></ul></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://newrelic.com/atp">New Relic</a>: See your web app's performance and find bottlenecks anywhere in the stack. Start your 30-day free trial.</li>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: A private cloud storage drive that you own and control. Use code <strong>ATP10</strong> for 10% off any Transporter.</li>
+</ul>]]></description><itunes:subtitle>WWDC tickets, Heartbleed, Dropbox Carousel, and a spirited after-show about the causes of app crashes and Casey's phonographic tea ceremony.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:533ee18fe4b0cffc81fd338f</guid><pubDate>Fri, 04 Apr 2014 16:46:57 +0000</pubDate><title>59: The Little Puck That Could</title><itunes:title>The Little Puck That Could</itunes:title><itunes:episode>59</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:40:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp59.mp3" length="72646521" type="audio/mpeg"/><link>https://atp.fm/59</link><description><![CDATA[<ul>
+<li>Follow-up on vocabulary and <a href="http://www.oculusvr.com/blog/introducing-michael-abrash-oculus-chief-scientist/">Michael Abrash joining Oculus</a>.</li>
+<li><a href="http://www.amazon.com/dp/B00CX5P8FC?tag=marcoorg-20">Amazon Fire TV</a> — <a href="http://ifixit.org/blog/6415/amazon-tv-fire/">no fan</a>!</li>
+<li><a href="http://www.theverge.com/2014/4/2/5573680/first-images-of-the-reversible-usb-cable">USB-IF's renderings of their proposed new connector</a></li>
+<li><a href="http://pando.com/2014/03/22/revealed-apple-and-googles-wage-fixing-cartel-involved-dozens-more-companies-over-one-million-employees/">The giant anti-poaching collusion between Google, Apple, and dozens of other companies</a> (<a href="http://techcrunch.com/2014/03/24/sheryl-sandberg-facebook-refused-no-poaching-agreement-with-google/">Facebook apparently refused</a>)</li>
+<li><a href="http://pando.com/2014/03/27/how-steve-jobs-forced-google-to-cancel-its-plan-to-open-a-paris-office/">Google checking with Steve Jobs first before making a hiring decision</a></li>
+<li>After-show: We tried to predict WWDC dates, not knowing that Apple would announce them 12 hours later, then discussed ticket lotteries and how Apple probably wouldn't build one. (Yeah.)</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+<li><a href="http://www.pixelmator.com/">Pixelmator</a>: Full-featured image editing app for the Mac.</li>
+<li><a href="http://2checkout.com/casey">2Checkout</a>: Control your checkout experience from pixel to payout with our Payment API. Visit for your free sandbox account.</li>
+</ul>]]></description><itunes:subtitle>Amazon Fire TV and the rest of the puck landscape, tech giants' anti-poaching agreements, and WWDC ticketing (sort of).</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53359d68e4b0ecb20d5cf88e</guid><pubDate>Fri, 28 Mar 2014 16:09:52 +0000</pubDate><title>58: Always On Vacation In California</title><itunes:title>Always On Vacation In California</itunes:title><itunes:episode>58</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:00:07</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp58.mp3" length="57779614" type="audio/mpeg"/><link>https://atp.fm/58</link><description><![CDATA[<ul>
+<li>Follow-up on discussing sexism in technology, <a href="https://medium.com/the-web-we-make/79403a7eade1">Anil's experiment</a>, empathy, <a href="http://www.nizkor.org/features/fallacies/ad-hominem-tu-quoque.html">ad hominem tu quoque</a>, and cultural rigidity.</li>
+<li><a href="http://arstechnica.com/gaming/2014/03/facebook-purchases-vr-headset-maker-oculus-for-2-billion/">Facebook buying Oculus</a>:
+<ul><li><a href="http://appleinsider.com/articles/14/03/26/oculus-co-founder-defends-sale-of-company-amidst-backlash-says-facebook-a-better-home-than-apple">Outrage</a> from Oculus' Kickstarter backers, including from <a href="http://notch.net/2014/03/virtual-reality-is-going-to-change-the-world/">Minecraft creator Notch</a>, and the expectations that Kickstarter creates in "backers".</li>
+<li>Why did Oculus <a href="https://twitter.com/codinghorror/status/448892700398350336/photo/1">sell</a>? How far into the future did Oculus' "vision" extend, and what will happen to its vision now?</li>
+<li>Why did Facebook buy? Does Mark Zuckerberg have a clear vision for Facebook's future?</li></ul></li>
+<li>Facebook's <a href="http://hacklang.org/">Hack</a> language extension to PHP:
+<ul><li>PHP is <a href="http://me.veekun.com/blog/2012/04/09/php-a-fractal-of-bad-design/">poorly designed</a> but <a href="http://en.wikipedia.org/wiki/Programming_languages_used_in_most_popular_websites">very practical</a>.</li>
+<li>The risks of using Hack (Marco's <a href="http://www.marco.org/2014/03/21/hack">two</a> <a href="http://www.marco.org/2014/03/23/owning-a-programming-language">posts</a>).</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://helpspot.com/atp">HelpSpot</a>: Simple, powerful, customizable help-desk software with no monthly fees. Use code <strong>ATP14</strong> for $100 off.</li>
+<li><a href="http://igloosoftware.com/casey">Igloo</a>: Igloo is an intranet you'll actually like. (Nobody likes SharePoint.)</li>
+<li><a href="http://warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+</ul>]]></description><itunes:subtitle>How and when to discuss sexism in technology, Facebook buying Oculus and having visions, and the Hack extension to PHP.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:532ae0b5e4b0f44028bbe289</guid><pubDate>Fri, 21 Mar 2014 14:13:37 +0000</pubDate><title>57: Smorgasbord of Pronunciation</title><itunes:title>Smorgasbord of Pronunciation</itunes:title><itunes:episode>57</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:34:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp57.mp3" length="45272761" type="audio/mpeg"/><link>https://atp.fm/57</link><description><![CDATA[<ul>
+<li>Follow-up on the complexity of computer science versus other fields: <a href="http://en.wikiquote.org/wiki/Computer_science#Disputed">quotes</a> and <a href="http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/1a-overview-and-introduction-to-lisp/">videos from MIT's SICP class</a> (9:00–10:45).</li>
+<li>The <a href="http://www.macstories.net/news/apple-launches-8gb-iphone-5c-replaces-ipad-2-with-updated-ipad-4/">death of the iPad 2</a>, the use of sapphire in Apple devices, <a href="http://news.cnet.com/8301-13579_3-57619914-37/corning-exec-slams-sapphire-rumored-for-apple-device/">sapphire versus Gorilla Glass</a>, and the <a href="http://www.lg.com/us/mobile-phones/gflex">flexible LG phone</a>.</li>
+<li><a href="http://www.amazon.com/Haunted-Empire-Apple-After-Steve/dp/0062128256/ref=sr_1_1?ie=UTF8&amp;qid=1395320605&amp;sr=8-1&amp;keywords=haunted+empire">Haunted Empire</a>, the <a href="http://www.amazon.com/Jony-Ive-Genius-Greatest-Products/dp/159184617X/ref=sr_1_1?ie=UTF8&amp;qid=1395321231&amp;sr=8-1&amp;keywords=leander">Jony Ive book</a>, the <a href="http://time.com/jonathan-ive-apple-interview/">Jony Ive interview</a>, access to Apple, and <a href="http://jeffcarlson.com/2014/03/17/why-do-big-magazines-hire-hacks-for-big-tech-stories/">hiring hacks for tech stories</a>.</li>
+<li><a href="http://www.polygon.com/2014/3/18/5524058/playstation-vr-ps4-virtual-reality">Sony's Project Morpheus VR headset</a> and <a href="http://www.polygon.com/2014/3/19/5526966/project-morpheus-sonys-playstation-4-virtual-reality-helmet-is-much">initial impressions</a>
+<ul><li>The <a href="http://www.oculusvr.com">Oculus Rift</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Michael_Abrash">Michael Abrash</a>'s blog posts:
+<ul><li><a href="http://blogs.valvesoftware.com/abrash/two-possible-paths-into-the-future-of-wearable-computing-part-1-vr/">Two Possible Paths into the Future of Wearable Computing Part 1</a></li>
+<li><a href="http://blogs.valvesoftware.com/abrash/when-it-comes-to-resolution-its-all-relative/">When it comes to resolution, it's all relative</a></li>
+<li><a href="http://blogs.valvesoftware.com/abrash/latency-the-sine-qua-non-of-ar-and-vr/">Latency – the sine qua non of AR and VR</a></li>
+<li><a href="http://blogs.valvesoftware.com/abrash/raster-scan-displays-more-than-meets-the-eye/">Raster-Scan Displays: More Than Meets the Eye</a></li>
+<li><a href="http://blogs.valvesoftware.com/abrash/game-developers-conference-and-space-time-diagrams/">Game Developers Conference and space-time diagrams</a></li>
+<li><a href="http://blogs.valvesoftware.com/abrash/why-virtual-isnt-real-to-your-brain/">Why virtual isn't real to your brain</a></li>
+<li><a href="http://blogs.valvesoftware.com/abrash/down-the-vr-rabbit-hole-fixing-judder/">Down the VR rabbit hole: Fixing judder</a></li></ul></li>
+<li><a href="http://en.wikipedia.org/wiki/John_D._Carmack">John Carmack</a> and his <a href="http://www.altdevblogaday.com/2013/02/22/latency-mitigation-strategies/">latency mitigation strategies</a></li>
+<li>Casey's <a href="http://www.youtube.com/watch?v=SP8wSw4bBuA">birthday party</a> as a child</li>
+<li><a href="http://www.polygon.com/2014/3/19/5524418/why-oculus-is-hoping-that-sonys-project-morpheus-headset-delivers-a">Why Oculus hopes Project Morpheus is good</a></li></ul></li>
+<li>The <a href="http://blogs.wsj.com/digits/2014/03/17/github-puts-co-founder-on-leave-investigates-harassment-claims/">GitHub hubbub</a>, sexism, and how to get better (such as <a href="http://www.appcamp4girls.com">App Camp for Girls</a>).</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.remobjects.com/cs">RemObjects C#</a>: Write native iOS and Android apps using the C# language that you already know.</li>
+<li><a href="http://smilesoftware.com/atp?crcat=atp&amp;crsource=textexpander&amp;crcampaign=mar14">TextExpander</a>: Stop wasting time typing the same things over and over again.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>CRITICAL</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Flexible phones, interviews and books by hacks, VR headsets, and sexism.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:532330a3e4b0a11842c702e2</guid><pubDate>Fri, 14 Mar 2014 16:38:49 +0000</pubDate><title>56: The Woodpecker</title><itunes:title>The Woodpecker</itunes:title><itunes:episode>56</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp56.mp3" length="60192890" type="audio/mpeg"/><link>https://atp.fm/56</link><description><![CDATA[<ul>
+<li>Follow-up on <a href="https://twitter.com/drdrang/status/441962334420889600">software complexity</a>: <a href="http://en.wikipedia.org/wiki/The_Mythical_Man-Month">The Mythical Man-Month</a>, <a href="http://en.wikipedia.org/wiki/No_Silver_Bullet">No Silver Bullet</a>, <a href="http://agilemanifesto.org/">the original Agile manifesto</a>, and <a href="http://pragdave.me/blog/2014/03/04/time-to-kill-agile/">what Agile has become</a>.</li>
+<li>What we found most useful from our computer-science educations.</li>
+<li>Marco's impressions of his new Mac Pro.</li>
+<li>External disks, PCI-Express SSDs, and cable management.</li>
+<li>John buys a <a href="http://www.amazon.com/dp/B007JF85WE?tag=siracusa-20">home-theater AV receiver</a>. (<a href="http://www.amazon.com/dp/B00B981F1U/?tag=siracusa-20">The newer version he didn't need</a>)</li>
+<li>Stereo vs. surround speakers, and integrated vs. external subwoofers. (<a href="https://www.nuforce.com/index.php?option=com_k2&amp;view=item&amp;layout=item&amp;id=9&amp;Itemid=192/">Marco's tiny, buggy amp</a> and <a href="http://www.paradigm.com/products-current/type=bookshelf/model=atom-monitor/page=overview">great speakers</a>).</li>
+<li>After-show: <a href="http://www.ponomusic.com">Pono</a>, <a href="http://en.wikipedia.org/wiki/ABX_test">ABX tests</a>, <a href="http://mp3ornot.com/">mp3ornot</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: A private cloud storage drive that you own and control. Use code <strong>ATP</strong> for 10% off any Transporter.</li>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>CRITICAL</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Software complexity, comp-sci usefulness, Marco's Mac Pro, John's AV receiver, and home-theater speaker philosophies.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5318ee81e4b0d5b5621a939b</guid><pubDate>Thu, 06 Mar 2014 21:54:13 +0000</pubDate><title>55: Dave, Who Stinks!</title><itunes:title>Dave, Who Stinks!</itunes:title><itunes:episode>55</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:10:22</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp55.mp3" length="62701401" type="audio/mpeg"/><link>https://atp.fm/55</link><description><![CDATA[<ul>
+<li>Follow-up on Final Draft and treating warnings as exceptions in production.</li>
+<li>Software methodologies. For real this time.</li>
+<li><a href="http://typicalprogrammer.com/why-dont-software-development-methodologies-work/">Why don’t software development methodologies work?</a></li>
+<li><a href="http://help.fogcreek.com/7676/evidence-based-scheduling-ebs">Evidence-based scheduling</a>.</li>
+<li>Marco plugs <a href="https://github.com/marcoarment/FCModel">FCModel</a>, Casey plugs <a href="http://www.imore.com/debug-30-casey-liss-c-and-net">his Debug appearance</a>, and John plugs <a href="https://soundcloud.com/jonathanmann/atp-ending-theme-more-bleeps">bleeps and boops</a>.</li>
+<li>After-show: <a href="http://www.engadget.com/2014/03/04/apple-carplay-ferrari-ff-hands-on/">CarPlay</a>, and <a href="http://www.chord.co.uk/blog/new-chord-ethernet-cables/">£1,600 audiophile Ethernet cables</a> (via <a href="https://alpha.app.net/dalton">Dalton</a>).</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://store.bravewave.net">In Flux</a>: A new music album that explores the interplay between video games, music, and nostalgia.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>CRITICAL</strong> for 10% off.</li>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use.</li>
+</ul>]]></description><itunes:subtitle>Software methodologies. (Finally.)</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5310ce77e4b05a56d51fd4ed</guid><pubDate>Fri, 28 Feb 2014 17:59:06 +0000</pubDate><title>54: goto fail;</title><itunes:title>goto fail;</itunes:title><itunes:episode>54</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:52:04</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp54.mp3" length="53915763" type="audio/mpeg"/><link>https://atp.fm/54</link><description><![CDATA[<ul>
+<li><a href="http://www.youtube.com/watch?v=_P9HqHVPeik">Wolfram Language</a>.</li>
+<li><a href="https://gotofail.com/">The "goto fail" SSL bug</a> and the chances that it was nefariously introduced by an NSA effort, possibly as part of their <a href="http://www.nytimes.com/interactive/2013/09/05/us/documents-reveal-nsa-campaign-against-encryption.html?_r=0">$250 million annual budget for such operations</a>.</li>
+<li><a href="http://arstechnica.com/tech-policy/2013/11/apple-takes-strong-privacy-stance-in-new-report-publishes-rare-warrant-canary/">Apple's warrant canary</a>.</li>
+<li>Casey's and <a href="http://hastebin.com/gabigaqite.php">Marco's</a> hard-to-find bugs and language misfeatures. (Perl protects John from writing bugs.)</li>
+<li>Whether language-interpreter warnings should be treated as errors in production.</li>
+<li><a href="http://johnaugust.com/2014/the-one-with-the-guys-from-final-draft">The Scriptnotes episode with the Final Draft CEO</a>, <a href="http://johnaugust.com/2014/period-space">the follow-up in the next episode</a>, and <a href="http://www.kenttessman.com/2014/02/notes-on-scriptnotes/">Kent Tessman's response</a>.</li>
+<li>After-show: Google <a href="http://www.marco.org/2014/02/26/google-lobbying-for-unsafe-driving">lobbying against</a> Glass bans while driving, and Objective-C exception conventions.</li>
+<li>Next week will be the Software Methodologies show. For real this time!</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://picturelife.com/atp">Picturelife</a>: The one app your photos need. Back up, search, edit, and share on Mac and iOS.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>CASEY</strong> for 10% off.</li>
+<li><a href="http://www.helpspot.com/atp">HelpSpot</a>: Simple, powerful, customizable help-desk software with no monthly fees. Use code <strong>ATP14</strong> for $100 off.</li>
+</ul>]]></description><itunes:subtitle>Wolfram Language, Apple's SSL bug and the NSA, warnings as exceptions in production, and that Scriptnotes episode.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:53078e5de4b0ee269ab0c471</guid><pubDate>Fri, 21 Feb 2014 17:35:12 +0000</pubDate><title>53: There's Gonna Be Some Flapping</title><itunes:title>There's Gonna Be Some Flapping</itunes:title><itunes:episode>53</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:05:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp53.mp3" length="60371352" type="audio/mpeg"/><link>https://atp.fm/53</link><description><![CDATA[<ul>
+<li>Follow-up on why Flappy Bird was successful.</li>
+<li><a href="http://kieranhealy.org/blog/archives/2014/02/15/social-aspects-of-success-and-failure-in-cultural-markets/">Kieran Healy's excellent article with science</a>.</li>
+<li><a href="http://www.43folders.com/2009/03/25/blogs-turbocharged">John Gruber and Merlin Mann at SXSW '09</a>.</li>
+<li>Goofball Jones' anonymous criticism of John's "shtick", and John's defense including many links:
+<ul><li><a href="http://arstechnica.com/staff/2009/05/hypercritical/">An explanation of John's "schtick"</a></li>
+<li>Some podcasts where John talks about things he likes:
+<ul><li><a href="http://5by5.tv/movies/1">Goodfellas</a></li>
+<li><a href="http://5by5.tv/incomparable/46">I Like My Coffee Like My Evil Sith Lords</a></li>
+<li><a href="http://5by5.tv/incomparable/47">Death Star University</a></li>
+<li><a href="http://5by5.tv/incomparable/67">Darth Vader's Office is Really Weird</a></li>
+<li><a href="http://5by5.tv/incomparable/68">Jedi Weekend</a></li>
+<li><a href="http://5by5.tv/incomparable/84">Wind is the Enemy</a></li>
+<li><a href="http://5by5.tv/incomparable/88">Skywalker's Eleven</a></li>
+<li><a href="http://5by5.tv/incomparable/89">Also Known as Endor</a></li>
+<li><a href="http://5by5.tv/incomparable/108">Journey: Then We Touched, Then We Sang</a></li>
+<li><a href="http://5by5.tv/incomparable/131">Professor Siracusa's Anime 101</a></li>
+<li><a href="http://5by5.tv/incomparable/144">Hangin' With the Totes</a></li></ul></li>
+<li><a href="http://arstechnica.com/gaming/2010/11/masterpiece-ico/">Masterpiece: Ico</a></li>
+<li><a href="http://5by5.tv/incomparable/100">The Incomparable #100: Who Cares What We Think?</a> - Why we do podcasts about what we think of things, good and bad.</li>
+<li><a href="http://atp.fm/episodes/41-penny-wise-pound-foolish">An ATP episode about how we deal with criticism</a></li></ul></li>
+<li>The massive WhatsApp acquistion by Facebook, the huge value of mobile messaging, and the web giants' chilling effect on competition.</li>
+<li>The "Copland 2010" argument that Objective-C needs to be replaced:
+<ul><li><a href="http://arstechnica.com/staff/2005/09/1372/">John's original "Copland 2010" article from 2005</a></li>
+<li><a href="http://arstechnica.com/apple/2010/06/copland-2010-revisited/">Copland 2010 Revisited</a> (in 2010)</li>
+<li><a href="http://ashfurrow.com/blog/we-need-to-replace-objective-c">We Need to Replace Objective-C</a> (Ash Furrow)</li>
+<li><a href="http://informalprotocol.com/2014/02/replacing-cocoa/">Replacing Objective-C and Cocoa</a> (Steve Streza)</li>
+<li><a href="http://kickingbear.com/blog/archives/412">Objective: Copland 2010</a> (Guy English)</li></ul></li>
+<li>Separating language shortcomings from API shortcomings.</li>
+<li>Casey got us to talk about LINQ briefly.</li>
+<li>Long-term evolution of programming languages.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>CASEY</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Flappy Bird hamburgers, things John likes, WhatsApp, and replacing Objective C (Copland 2010).</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52fe6ad7e4b087863741a41e</guid><pubDate>Fri, 14 Feb 2014 19:13:13 +0000</pubDate><title>52: Necessary But Not Sufficient</title><itunes:title>Necessary But Not Sufficient</itunes:title><itunes:episode>52</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:54</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp52.mp3" length="51918533" type="audio/mpeg"/><link>https://atp.fm/52</link><description><![CDATA[<ul>
+<li>Facebook Paper's gesture usability, in-app tutorial videos, and the design challenge of gestural interface.</li>
+<li><a href="http://www.rootmetrics.com/">RootMetrics</a> testing real-world wireless speeds.</li>
+<li>Despite constant effort to improve usability, what if computers just aren't for everyone? (There's a similar long-standing debate with programming. See <a href="http://en.wikipedia.org/wiki/4GL">4GL</a>.)</li>
+<li>The Flappy Bird saga: Whether it's <a href="http://www.marco.org/2014/02/12/why-indie-developers-go-insane">a good game</a> and <a href="http://www.forbes.com/sites/lananhnguyen/2014/02/11/exclusive-flappy-bird-creator-dong-nguyen-says-app-gone-forever-because-it-was-an-addictive-product/">why the developer pulled it</a>. (See also: <a href="http://superhexagon.com/">Super Hexagon</a>.)</li>
+<li><a href="http://www.baekdal.com/opinion/how-inapp-purchases-has-destroyed-the-industry/">Is free-with-in-app-purchase ruining the game industry?</a>.</li>
+<li>Comcast buying Time Warner and the implications on U.S. broadband competition.</li>
+<li>The stupid new top-level domains (TLDs).</li>
+<li>iBeacons and Bluetooth LE in stores and .museums.</li>
+<li>After-show: <a href="http://5by5.tv/bionic/77">Bionic on new TLDs</a> (at 26:50) and whether the TLDs are just a scam by ICANN, <a href="http://www.patreon.com/jonathanmann">Patreon</a>, and yet more on the Mac Pro.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>WHOTHEHELLISCASEY</strong> for 10% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>CASEY</strong> for 10% off.</li>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: A private cloud storage drive that you own and control. Use code <strong>ATP</strong> for 10% off any Transporter, or <strong>ATPSHARE</strong> to get the Transporter Sync for just $75.</li>
+</ul>]]></description><itunes:subtitle>Gesture explanations, usability ceilings, Flappy Bird, Comcast, and beacon.plumbing.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52f4f883e4b0ec7646ccf9f3</guid><pubDate>Fri, 07 Feb 2014 15:15:02 +0000</pubDate><title>51: Maybe We're Just Dinosaurs</title><itunes:title>Maybe We're Just Dinosaurs</itunes:title><itunes:episode>51</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:56:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp51.mp3" length="56126976" type="audio/mpeg"/><link>https://atp.fm/51</link><description><![CDATA[<ul>
+<li><a href="http://davesblog.com/blog/2014/02/05/verizon-using-recent-net-neutrality-victory-to-wage-war-against-netflix/">The FiOS net-neutrality non-story</a> and last summer's <a href="http://arstechnica.com/information-technology/2013/07/why-youtube-buffers-the-secret-deals-that-make-and-break-online-video/">YouTube-throttling story</a>.</li>
+<li>More FU on iPads going pro, giant-tablet-desk ergonomics, trying to understand John's theory again, and a train analogy from Casey.</li>
+<li>New Microsoft CEO Satya Nadella, Bill Gates' new wildcard role, and Microsoft's likely future direction. (<a href="http://www.marco.org/2014/02/05/microsofts-new-ceo">Marco's post</a>, <a href="http://daringfireball.net/2014/02/microsoft_past_and_future">John Gruber's post</a>, <a href="http://inessential.com/2014/02/04/azure_takes_over">Brent Simmons' post</a>)</li>
+<li><a href="https://www.facebook.com/paper">Paper</a>, <a href="http://news.fiftythree.com/post/75486632209/every-story-has-a-name-fiftythrees-story-began">Paper</a>, <a href="http://daringfireball.net/linked/2014/02/04/paper-paper-paper">Paper</a>, <a href="https://twitter.com/FiftyThree/status/430845528805756928">Fifty Three</a>, and <a href="http://figure53.com/notes/2014-02-04-david-and-goliath/">Figure 53</a>.</li>
+<li>Responsibly naming things by first <a href="http://tess2.uspto.gov/bin/gate.exe?f=login&amp;p_lang=english&amp;p_d=trmk">searching for trademark conflicts</a> and potentially applying for your own trademark.</li>
+<li>Apple's role in App Store name conflicts.</li>
+<li>Facebook Paper's opportunity cost to the world.</li>
+<li>After-show: More on Microsoft and some Retina MacBook Air speculation.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>CASEY</strong> for 10% off.</li>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+</ul>]]></description><itunes:subtitle>Microsoft's new CEO should relaunch the giant Surface table with an exclusive new app named Paper.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52ebcf89e4b03e6cdd671ce0</guid><pubDate>Fri, 31 Jan 2014 16:29:48 +0000</pubDate><title>50: Disk Light Observer Effect</title><itunes:title>Disk Light Observer Effect</itunes:title><itunes:episode>50</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:54:09</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp50.mp3" length="54914489" type="audio/mpeg"/><link>https://atp.fm/50</link><description><![CDATA[<ul>
+<li>Follow-up on <a href="http://atp.fm/episodes/49-roamio-and-siracusiet">why an iPad "Pro" needs to be larger</a> and why iOS is "better for people".</li>
+<li>Can iOS add more power-user functionality without harming its simplicity or usability?</li>
+<li>Whether Macs should ship with ARM CPUs, how such a transition would be challenging today, and whether Casey should just buy another power adapter.</li>
+<li><a href="http://hypercritical.co/2014/01/24/macintosh">The 30th anniversary of the Macintosh</a> and the experience of using <a href="http://d3nevzfk7ii3be.cloudfront.net/igi/CyS1JjC1hMyyVMXv">its power switch</a> (photo from <a href="http://www.ifixit.com/Teardown/Macintosh+128K+Teardown/21422#s57290">iFixit's awesome teardown</a>).</li>
+<li>Disk-ejecting usability.</li>
+<li>Using <a href="http://bjango.com/mac/istatmenus/">iStat Menus</a> to monitor your performance and assist future hardware decisions. (Or not.)</li>
+<li><a href="http://techcrunch.com/2014/01/29/lenovo-to-buy-motorola-mobility-from-google/">Lenovo buying Motorola's pillaged carcass from Google</a>, and whether they ruined <a href="http://kottke.org/09/10/the-original-ibm-thinkpad">the IBM ThinkPad</a>.</li>
+<li>After-show: What will we reflect on in 20 years as being the obvious sore spot with computers today?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.helpspot.com/atp">HelpSpot</a>: Simple, powerful, customizable help-desk software with no monthly fees. Use code <strong>ATP14</strong> for $100 off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>MARCO</strong> for 10% off.</li>
+<li><a href="http://cardsagainsthumanity.com/">Cards Against Humanity</a>: A free party game for horrible people.</li>
+</ul>]]></description><itunes:subtitle>Making iOS more powerful, ARM Macs, the Mac's 30th anniversary, debating iStat Menus, and the Motorola debacle.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52e2b13ee4b0d555484c018c</guid><pubDate>Fri, 24 Jan 2014 18:30:09 +0000</pubDate><title>49: Roamio and Siracusiet</title><itunes:title>Roamio and Siracusiet</itunes:title><itunes:episode>49</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:06:07</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp49.mp3" length="60656596" type="audio/mpeg"/><link>https://atp.fm/49</link><description><![CDATA[<ul>
+<li>Follow-up: Genius Bar employee reports of how most people deal with iCloud backups, <a href="http://5by5.tv/prompt/30">photo backups</a>, and storage limits, <a href="http://www.macroplant.com/iexplorer/">iExplorer</a> for exporting iMessages.</li>
+<li>iOS' storage model is a <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html">leaky abstraction</a>.</li>
+<li>Google may have wanted Nest for <a href="http://www.globes.co.il/serveen/globes/docview.asp?did=1000886261">its smart-home project</a> as well as the more obvious reasons.</li>
+<li><a href="http://www.wired.com/gadgetlab/2014/01/tivo-lays-hardware-design-team-gets-ready-exit-hardware/">TiVo may be exiting the hardware business</a>, or <a href="http://techland.time.com/2014/01/22/tivo-exiting-the-hardware-business-not-so-fast-says-tivo/">maybe not</a>.</li>
+<li><a href="http://www.bloomberg.com/news/2014-01-17/nintendo-forecasts-net-loss-on-stagnating-sales-of-wii-u-games.html">Nintendo continues to hurt</a>.</li>
+<li>Why was the first Wii really successful, and what really held back its long-term usage?</li>
+<li><a href="http://www.appleoutsider.com/2014/01/16/neutral/">Matt Drance</a>, <a href="http://www.avc.com/a_vc/2014/01/vc-pitches-in-a-year-or-two.html">Fred Wilson</a>, and <a href="http://www.theverge.com/2014/1/15/5311948/net-neutrality-and-the-death-of-the-internet">Nilay Patel</a> on the net neutrality news.</li>
+<li>After-show: <a href="http://5by5.tv/prompt/30">The Prompt looks back on the iPhone keynote</a>, <a href="http://5by5.tv/prompt/31">The Prompt on an iPad Pro</a>, <a href="http://www.muleradio.net/thetalkshow/67/">The Talk Show on crossing iOS and OS X</a>, <a href="http://boingboing.net/tag/notplaying">Not Playing podcast</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.getharvest.com/">Harvest</a>: Simple, beautiful online time-tracking software. Use code <strong>ATP</strong> for 50% off your first month.</li>
+<li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5839&amp;utm_medium=podcast&amp;utm_source=atp&amp;utm_campaign=sponsor-notes">lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 7-day trial.</li>
+<li><a href="http://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP14</strong> for 20% off. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+</ul>]]></description><itunes:subtitle>iOS storage management, dark times for TiVo and Nintendo, net neutrality, and "pro" iPads.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52d94b89e4b0de281e240aa2</guid><pubDate>Fri, 17 Jan 2014 15:25:48 +0000</pubDate><title>48: Marco Bought Four</title><itunes:title>Marco Bought Four</itunes:title><itunes:episode>48</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:29:02</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp48.mp3" length="42859310" type="audio/mpeg"/><link>https://atp.fm/48</link><description><![CDATA[<ul>
+<li>Follow-up: whether iMessage problems are widespread, reasons behind flattening the Mac Mini, and HDR TVs.</li>
+<li>The storage costs of Casey's emoji.</li>
+<li><a href="http://techcrunch.com/2014/01/13/google-just-bought-connected-device-company-nest-for-3-2b-in-cash/">Google buying Nest for $3.2 billion</a>.</li>
+<li><a href="http://stratechery.com/2014/googles-new-business-model/">Ben Thompson on Google's business model</a>.</li>
+<li>Nest has <a href="http://techcrunch.com/2013/05/11/from-the-garage-to-200-employees-in-3-years-how-nest-thermostats-were-born/">over 200 employees</a>, including many ex-Apple employees.</li>
+<li><a href="http://www.nytimes.com/2012/02/19/magazine/shopping-habits.html?pagewanted=all">The Target-pregnant story</a>.</li>
+<li><a href="http://www.marco.org/2014/01/14/nest-privacy">Marco's critical reading of Nest's statements</a>.</li>
+<li>Maintaining a skeptical but pragmatic relationship with Google.</li>
+<li>Stephen Hackett's <a href="https://twitter.com/ismh/status/422912877666660352">pants</a> and <a href="https://twitter.com/ismh/status/422913061209382912">regrets</a>.</li>
+<li>Modern expectations of privacy.</li>
+<li>Potential for privacy laws like <a href="http://en.wikipedia.org/wiki/Health_Insurance_Portability_and_Accountability_Act">HIPAA</a> applied to consumer technology.</li>
+<li><a href="http://www.theverge.com/2014/1/14/5307530/why-is-everyone-disappointed-by-google-buying-nest">Google's public opinion is turning</a>, but <a href="http://www.usatoday.com/story/tech/2014/01/16/google-acquires-nest-privacy/4518317/">stories like this will never be in USA Today</a>.</li>
+<li>Thought experiments with Apple buying Twitter, Dropbox, or Intel.</li>
+<li>After-show: Marco's house is filled with LEDs, John's house is filled with CFLs, and Casey's house is filled with apathy.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: A private cloud storage drive that you own and control. Use code <strong>ATP</strong> for 10% off any Transporter.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>MARCO</strong> for 10% off.</li>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use.</li>
+</ul>]]></description><itunes:subtitle>Implications of Google buying Nest, balancing skepticism with pragmatism, modern expectations of privacy, and Casey's vast emoji archive.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52d04e36e4b0713c7d6d3f94</guid><pubDate>Fri, 10 Jan 2014 19:48:41 +0000</pubDate><title>47: Better Pixels</title><itunes:title>Better Pixels</itunes:title><itunes:episode>47</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp47.mp3" length="51609474" type="audio/mpeg"/><link>https://atp.fm/47</link><description><![CDATA[<ul>
+<li>Follow-up: <a href="http://en.wikipedia.org/wiki/IBM_System_i">IBM AS/400 (aka System i)</a> and <a href="http://en.wikipedia.org/wiki/Single-level_store">single-level store</a>.</li>
+<li><a href="http://www.marco.org/2014/01/08/retina-imac-mac-pro-prediction">Marco's Retina theory</a>.</li>
+<li><a href="http://www.polygon.com/2014/1/7/5284336/sony-playstation-ces-2014-ps4">PS4</a> and <a href="http://www.polygon.com/2014/1/6/5280112/xbox-one-2013-sales-3-million-units">Xbone sales</a>.</li>
+<li>Trying to care about CES.</li>
+<li>Who "needs" the Mac Pro? Justifying toys and improving quality of life with smart purchases.</li>
+<li><a href="http://www.theverge.com/2014/1/6/5280452/panasonic-claims-new-4k-tvs-offer-plasma-like-picture-quality">Panasonic’s new LCD TVs</a> compared to <a href="http://en.wikipedia.org/wiki/Pioneer_Kuro">great TVs of the past</a>.</li>
+<li><a href="http://www.theverge.com/2013/11/25/5141600/any-given-sunday-the-chaos-and-spectacle-of-nfl-on-fox">4K on Fox Sports</a>, <a href="http://nofilmschool.com/2013/07/4k-uhd-color-space-gamut-frame-rate/">4K's color space</a>, and the chances of 4K catching on quickly.</li>
+<li>A <a href="http://en.wikipedia.org/wiki/Steam_Machine">Steam Box</a> (<a href="http://store.steampowered.com/livingroom/SteamController/">its controller</a>) as a replacement for a gaming PC.</li>
+<li>Three old men reminiscing about their teenage gaming years:
+<ul><li><a href="http://en.wikipedia.org/wiki/Null-modem_cable">Null-modem cables</a>, <a href="http://www.data-connect.com/images/USR_Modem.jpg">modems</a>, and <a href="http://en.wikipedia.org/wiki/Kali_%28software%29">special networking software</a>.</li>
+<li><a href="http://en.wikipedia.org/wiki/Hayes_command_set#Modem_initialization">Modem initialization strings</a> and <a href="http://en.wikipedia.org/wiki/Serial_Line_Internet_Protocol">SLIP</a>.</li>
+<li>What killed LAN parties? Perhaps it was <a href="http://en.wikipedia.org/wiki/GoldenEye_007_%281997_video_game%29">great 4-player</a> <a href="http://en.wikipedia.org/wiki/Mario_Kart_64">N64 games</a>.</li>
+<li><a href="http://threemovesahead.libsyn.com/">Three Moves Ahead Podcast</a>.</li>
+<li><a href="http://en.wikipedia.org/wiki/3dfx_Interactive">Voodoo 3D cards</a>, their <a href="http://cdnsupport.gateway.com/s/cables/A02105/A0210500.jpg">silly cables</a>, and <a href="http://en.wikipedia.org/wiki/Sound_Blaster">Sound Blasters</a>.</li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use code <strong>ATP14</strong> for 25% off. (<a href="http://cl.ly/image/1p400i300h2F">Marco's app-icon Fractures</a>)</li>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>MARCO</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>"Needing" the Mac Pro, 4K's chances in the market, Steam Boxes as gaming PC replacements, and a LAN-gaming retrospective.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52c70cede4b0117fe2096472</guid><pubDate>Fri, 03 Jan 2014 19:17:45 +0000</pubDate><title>46: A Compromised Machine</title><itunes:title>A Compromised Machine</itunes:title><itunes:episode>46</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:02:42</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp46.mp3" length="59015900" type="audio/mpeg"/><link>https://atp.fm/46</link><description><![CDATA[<ul>
+<li>Mac Pro follow-up: <a href="http://blog.macsales.com/22108-new-mac-pro-2013-teardown">socketed CPUs and potential upgrades</a>, and the benefits of only using stock Apple parts.</li>
+<li><a href="http://hypercritical.co/2014/01/02/apples-2013-scorecard">Scoring Apple's performance on John's 2013 to-do list</a>.</li>
+<li>Concerns about Apple's recent Mac apps, including iWork '13 and Messages/iMessage.</li>
+<li><a href="http://www.anandtech.com/show/7603/mac-pro-review-late-2013">AnandTech's Mac Pro review</a>.</li>
+<li>The Mac Pro's 4K/Retina monitor situation.</li>
+<li>The iMac vs. the Mac Pro, and the hardware needs of developers.</li>
+<li>Why do John and Marco care so much about Retina?</li>
+<li>What the next big computer-hardware shift may be.</li>
+<li>After-show: our future as old men, saturating USB 3, and the often-neglected Mac Mini.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://omnigroup.com/omnigraffle/?utm_campaign=mid-roll&amp;utm_term=jan">OmniGraffle</a>: Sketchy mockups or pixel-perfect designs for UX, UI, and diagrams.</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>TECHBYCHANCE</strong> for 10% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>MARCO</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Reviewing Apple's 2013 releases, yet more Mac Pro discussion, and the iMac as an alternative.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52b7c078e4b0818dc1d02b38</guid><pubDate>Thu, 26 Dec 2013 16:29:01 +0000</pubDate><title>45: Give Up On The Retina Dream</title><itunes:title>Give Up On The Retina Dream</itunes:title><itunes:episode>45</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:38:40</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp45.mp3" length="47446620" type="audio/mpeg"/><link>https://atp.fm/45</link><description><![CDATA[<ul>
+<li>Explaining our podcast artwork.</li>
+<li><a href="https://twitter.com/r0unak/status/413713412368003072">Facebook Likes in the App Store</a> and <a href="http://en.wikipedia.org/wiki/Banner_blindness">ad-banner blindness</a>.</li>
+<li><a href="http://forums.macrumors.com/showthread.php?t=1668673">Dual-input displays</a> and how they enable the 5120x2880 display that John and Marco want.</li>
+<li><a href="http://www.marco.org/2013/11/26/new-mac-pro-cpus">Turbo Boost and the Mac Pro's CPU options</a>.</li>
+<li>Using a laptop on a stand with an external keyboard, mouse, and monitor.</li>
+<li>The benefits of desktops and ECC.</li>
+<li>Mac Pro configurations for best value and future-proofing.</li>
+<li>Building separate gaming PCs, switching to iMacs, or trying to wedge PC gaming into Mac Pros.</li>
+<li><a href="http://www.marco.org/2013/12/22/mac-pro-pricing-over-time">Mac Pro price stratification over time</a>.</li>
+<li>Outlook 2011 for Mac complaints and John's multiple-selection-invalidation bug.</li>
+<li>Casey said some stuff at the end.</li>
+<li><a href="http://www.youtube.com/watch?v=X6Ed-6kiY3s">Special holiday theme song by Jonathan Mann</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://www.warbyparker.com/atp">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price.</li>
+</ul>]]></description><itunes:subtitle>Marco talks himself into a Mac Pro, John talks himself out of one, and Casey fumes quietly.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52b1f505e4b022eff541a127</guid><pubDate>Wed, 18 Dec 2013 19:18:16 +0000</pubDate><title>44: A Plague With Very Minor Effects</title><itunes:title>A Plague With Very Minor Effects</itunes:title><itunes:episode>44</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:51:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp44.mp3" length="53491015" type="audio/mpeg"/><link>https://atp.fm/44</link><description><![CDATA[<ul>
+<li><a href="http://www.everyinteraction.com/reversible-usb-type-c-lightning/">What if the new USB connector is too similar to Lightning</a>? (<a href="http://daringfireball.net/2013/12/lightning_apple">John Gruber on Lightning</a>)</li>
+<li><a href="https://twitter.com/vegarnilsen/status/412617927658311680">Potential for 5120-wide Retina displays</a> to overcome Thunderbolt bandwidth limits by using <a href="http://d35lb3dl296zwu.cloudfront.net/uploads/photo/image/14299/DSC_0346.jpg">"dual-input displays"</a>?</li>
+<li>John's "quick" tips for TV calibration. (<a href="https://itunes.apple.com/us/app/thx-tune-up/id592624594?mt=8">THX TV-calibration app</a>)</li>
+<li>"Rate This App" dialogs:
+<ul><li><a href="http://www.muleradio.net/thetalkshow/64/">The Talk Show's excellent discussion</a>.</li>
+<li><a href="http://www.marco.org/2013/12/14/rate-this-app">Marco's post</a>.</li>
+<li><a href="http://david-smith.org/blog/2013/12/16/degradation-or-aspiration/">Underscore David Smith on App Store quality standards</a>.</li>
+<li><a href="http://www.chuqui.com/2013/12/apple-cant-ban-rate-this-app-dialogs/">How Apple could process "report as inappropriate" at scale</a>.</li>
+<li>The effects of web popularity on Casey and Marco's respective unpopular apps (<a href="https://itunes.apple.com/us/app/fast-text/id376634510">Fast Text</a> and <a href="https://itunes.apple.com/us/app/bugshot/id669858907">Bugshot</a>).</li>
+<li><a href="http://en.wikipedia.org/wiki/5_Whys">5 Whys</a> exploring why developers use "Rate This App" dialogs.</li></ul></li>
+<li>What could Apple do to improve this?</li>
+<li>App Store discoverability vs. search, and how search could be improved.</li>
+<li>How much developers should be responsible for their own app marketing, and the uncomfortable reality that many apps just aren't compelling enough to sell well.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://www.audiblepodcast.com/atp">Audible</a>: Over 150,000 downloadable audiobooks. Get a free audiobook with a 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>Do you want to give us 5 stars, keep your criticism to yourself, or be asked again every week?</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52ab81a2e4b0dc4f70175861</guid><pubDate>Fri, 13 Dec 2013 21:52:21 +0000</pubDate><title>43: Brilliance Enhancer</title><itunes:title>Brilliance Enhancer</itunes:title><itunes:episode>43</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:53:35</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp43.mp3" length="54607710" type="audio/mpeg"/><link>https://atp.fm/43</link><description><![CDATA[<ul>
+<li><a href="http://terriblepodcastscreenplays.tumblr.com/post/69631072895/accidental-fountain-screenplay-the-case-of-liss">Accidental Fountain Screenplay: The Case of Liss</a> by Joe Steel. (And <a href="http://5by5.tv/bionic">Bionic</a>.)</li>
+<li>Desktop 4K/Retina resolutions hitting bandwidth limitations of Thunderbolt 2 and DisplayPort 1.2, and <a href="http://arstechnica.com/apple/2013/12/apple-briefly-sells-then-removes-sharp-4k-display-ahead-of-mac-pro-launch/">the Sharp/Apple non-news</a>.</li>
+<li>John's Squarespace-reseller idea <a href="http://specialists.squarespace.com/">already exists</a>.</li>
+<li>Why aren't iOS App Store purchases available for purchasing and management in the App Store app on the Mac?</li>
+<li>John's new TV:
+<ul><li>Technological progression from CRT to plasma and LCD, and the many hacky tricks used by modern TVs to overcome limitations and look better in stores. See also: <a href="http://5by5.tv/hypercritical/16">Hypercritical 16: The Soap Opera Effect</a>.</li>
+<li><a href="http://www.amazon.com/dp/B00BC4SJEC/?tag=siracusa-20">The new John Siracusa TV</a>.</li>
+<li>John's TV-calibration regimen.</li></ul></li>
+<li>Why we're not talking about the iOS notification sync in OS X that never shipped.</li>
+<li><a href="http://5by5.tv/b2w/149">Merlin's response</a> to our <a href="http://atp.fm/episodes/41-penny-wise-pound-foolish">criticism discussion</a>, and how Casey reacts to little worms.</li>
+<li>After-show Neutral: <a href="http://www.autoblog.com/2013/12/11/2015-bmw-m3-sedan-m4-coupe-video/">the new M3/M4</a> and John's <a href="http://en.wikipedia.org/wiki/Dead_pedal">dead pedal</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.pixelmator.com/">Pixelmator</a>: Full-featured image editing app for the Mac.</li>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: A private cloud storage drive that you own and control. <br />
+<strong>End-of-the-year sale:</strong> Use code <strong>ATP30</strong> for $30 off any Transporter before midnight on December 31, 2013!</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP12</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>John buys a TV.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52a215cbe4b053f7651e8ee3</guid><pubDate>Fri, 06 Dec 2013 18:21:46 +0000</pubDate><title>42: The Ultimate Vanity Search</title><itunes:title>The Ultimate Vanity Search</itunes:title><itunes:episode>42</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:48</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp42.mp3" length="49907069" type="audio/mpeg"/><link>https://atp.fm/42</link><description><![CDATA[<ul>
+<li>FU on PrimeSense.</li>
+<li>Apple's <a href="http://daringfireball.net/linked/2013/12/02/topsy-labs">acquisition of Topsy</a> and speculation on <a href="https://alpha.app.net/dalton/post/16407959">why</a>.</li>
+<li>Apple's possible difficulty in getting and keeping enough engineering talent, and how they might make bigger strides in web services.</li>
+<li>Which group wears the pants in a company?</li>
+<li>Marco's embarrassing FiOS support calls.</li>
+<li>How Apple's release and marketing schedule affects their web services.</li>
+<li>Methodologies and vocabularies.</li>
+<li><a href="http://www.theverge.com/2013/12/4/5173686/usb-type-c-connector-specification-announced">USB spec group will add a reversible connector</a>, the history of terrible USB connectors (see also: <a href="http://5by5.tv/hypercritical/5">Hypercritical #5</a> from around 45 minutes, <a href="http://5by5.tv/hypercritical/6">Hypercritical #6</a> from around 9 minutes, and the entire rest of the series, too), <a href="http://daringfireball.net/2013/12/lightning_apple">Lightning epitomizing Apple</a>.</li>
+<li><a href="http://www.anandtech.com/show/7563/dell-24-uhd-up2414q-gets-a-price-28-uhd-4k-3840x2160-announced">Dell renews hope for desktop Retina</a> with the new Mac Pro, single big monitors vs. dual smaller ones, and higher-than-native resolution scaling on the Retina MacBook Pro (see also: <a href="http://www.eye-friendly.com/">Eye-Friendly</a>).</li>
+<li>Waiting for a new technology to fully mature before switching, or adopting it earlier with tradeoffs and hacks.</li>
+<li>Texas.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP12</strong> for 10% off.</li>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like. Free for up to 10 people, and affordable for your entire company. (And check out this landing page, especially if you enjoyed John's Enterprise Software Assumptions in episode 39.)</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>PrimeSense and Topsy, Apple's engineering talent and web services, reversible USB plugs, renewed hope for desktop Retina displays for the new Mac Pro, and Texas.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5298e9c0e4b0c5f2207d0ce4</guid><pubDate>Fri, 29 Nov 2013 19:23:32 +0000</pubDate><title>41: Penny Wise, Pound Foolish</title><itunes:title>Penny Wise, Pound Foolish</itunes:title><itunes:episode>41</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>02:15:33</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp41.mp3" length="65152169" type="audio/mpeg"/><link>https://atp.fm/41</link><description><![CDATA[<ul>
+<li><a href="http://finerthings.in/featured/the-difference-between-photo-stream-and-shared-photo-streams-and-how-to-store-your-photos-and-videos-in-icloud/">David Chartier's clarification on Photo Stream limits</a>.</li>
+<li><a href="https://www.spacemonkey.com/">Space Monkey</a>, <a href="http://www.filetransporter.com/">Transporter</a>, <a href="https://www.box.com/">Box</a>, and <a href="http://en.wikipedia.org/wiki/AOL#2000s:_transition_and_rebranding">Xdrive</a>.</li>
+<li>Results of John's Disk Utility repair survey. (<a href="http://www.imore.com/debug-24-jalkut-nielsen-siracusa-and-future-os-x">John on Debug</a>)</li>
+<li><a href="http://news.xbox.com/2013/11/xbox-one-biggest-launch-in-xbox-history">Xbox One launch sales</a>.</li>
+<li><a href="http://www.engadget.com/2013/11/24/apple-confirms-primesense-buyout/">Apple buys PrimeSense</a>.</li>
+<li>Apple's potential expansion into the TV business.</li>
+<li><a href="http://www.linkedin.com/jobs2/view/9887522">Penny Arcade's job posting</a>, <a href="http://www.marco.org/2013/11/26/penny-arcade-awful-job">Marco's reaction</a>, and <a href="http://forums.penny-arcade.com/discussion/185114/about-the-penny-arcade-job-posting">the outgoing employee's description</a>.</li>
+<li>Extended after-show: how we deal with criticism, trolls, and our own flaws when facing our audience.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.warbyparker.com/">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price. Use coupon code <strong>ATP</strong> for free 3-day shipping.</li>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use. iPhone now available.</li>
+</ul>]]></description><itunes:subtitle>Disk Utility repair results, Xbox One launch, PrimeSense, Apple's potential in TV, Penny Arcade's job posting, and facing trolls.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:528fa6f1e4b0d7a400da6665</guid><pubDate>Fri, 22 Nov 2013 18:48:04 +0000</pubDate><title>40: The Compliance Shark</title><itunes:title>The Compliance Shark</itunes:title><itunes:episode>40</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:47:30</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp40.mp3" length="51683155" type="audio/mpeg"/><link>https://atp.fm/40</link><description><![CDATA[<ul>
+<li>Follow-up on <a href="https://twitter.com/AnyConnect/status/402527513555267585">Cisco VPNs on Mavericks</a> and [photo backups] to <a href="http://www.windowsphone.com/en-US/how-to/wp8/photos/automatically-save-the-photos-and-videos-you-take-to-skydrive">SkyDrive</a> on <a href="https://twitter.com/arebee/status/402637133434724352">Windows Mobile Phone Series Metro Not-Metro Phone Windows</a>.</li>
+<li>Why enterprise software is so hard, and the barriers to entry for small companies targeting the enterprise market.</li>
+<li><a href="http://www.economist.com/blogs/graphicdetail/2013/11/daily-chart-11">Game-console sales by generation</a>, <a href="http://hypercritical.co/2013/09/02/nintendo-in-crisis">Nintendo In Crisis</a>, and <a href="http://www.anandtech.com/show/7528/the-xbox-one-mini-review-hardware-analysis">AnandTech's Xbox One and PS4 mini-review</a>.</li>
+<li>Casey's new Retina iPad Mini, Marco's accidentally popular <a href="http://www.marco.org/rmbp-irtest.html">image-retention test</a>, <a href="http://www.displaymate.com/Tablet_ShootOut_4.htm">DisplayMate quality analysis</a>, free data with a T-Mobile SIM, and choosing between the iPad Air and Retina Mini.</li>
+<li><a href="http://www.anandtech.com/show/7519/apple-ipad-mini-with-retina-display-reviewed/2">A7 thermal throttling in iPhone 5S, iPad Air, and Retina iPad Mini</a>, and <a href="http://www.anandtech.com/show/7460/apple-ipad-air-review/2">deeper analysis of the A7</a>.</li>
+<li>John's disk-corruption adventure and why you should "repair" your HFS disks. <a href="http://fluidsurveys.com/surveys/siracusa/disk-first-aid/">Take John's disk-repair results survey!</a></li>
+<li><a href="http://www.youtube.com/watch?v=A7sHUMhsAIQ">Ending Theme Song 2.0 by Jonathan Mann</a>. (We still like the old one, so we'll keep it but rotate this in sometimes.)</li>
+<li>After-show: <a href="http://speirs.org/blog/2013/11/19/portable-podcasting.html">Fraser Speirs producing his podcast on an iPad</a>, <a href="http://5by5.tv/b2w/146">Back to Work 146 with Dan possibly going iPad-only</a>, <a href="http://www.youtube.com/watch?v=SVozdF5msic">SimCity 2000 on SNES</a>, <a href="http://www.macworld.com/article/2028888/review-logitechs-ultrathin-mini-keyboard-cover-makes-the-wrong-tradeoffs.html">Lex's Logitech Ultrathin Mini keyboard review</a>, <a href="http://refurb-tracker.com/">Apple refurb discounts</a>, and the <a href="http://www.youtube.com/watch?v=zWRTCfKznvU">Casio B.O.S.S.</a>, which can even exchange data with a PC!</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://atp.ting.com/">Ting</a>: Mobile that makes sense. No contracts, and pay only for what you use.</li>
+<li><a href="http://www.gemvara.com/?utm_source=ATP&amp;utm_medium=podcast&amp;utm_campaign=ATP_11_22">Gemvara</a>: The revolutionary leader of custom-made, fine jewelry shopping online.</li>
+</ul>]]></description><itunes:subtitle>Why enterprise software is hard, game-console sales, Retina iPad Minis, image retention, the A7's awesomeness, and repairing HFS.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52862536e4b0941019e9c597</guid><pubDate>Fri, 15 Nov 2013 13:44:11 +0000</pubDate><title>39: Desperation Mode</title><itunes:title>Desperation Mode</itunes:title><itunes:episode>39</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:22:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp39.mp3" length="39651117" type="audio/mpeg"/><link>https://atp.fm/39</link><description><![CDATA[<ul>
+<li>John's new Museum of Mediocre Reading Devices.</li>
+<li>The confusing <a href="http://support.apple.com/kb/HT4858">Photo Stream limits</a>, and <a href="http://support.apple.com/kb/HT4486">all</a> of <a href="https://twitter.com/philwkim/status/398923614960881665">these</a> <a href="https://twitter.com/okoroezenwa/status/398928995120840704">links</a> in the <a href="https://twitter.com/jdhwi/status/398930616982700032">show</a> <a href="https://twitter.com/theJingster/status/398934674799484928">notes</a>.</li>
+<li><a href="http://www.bloomberg.com/news/2013-11-08/microsoft-ceo-candidate-elop-said-to-mull-windows-shift.html">Stephen Elop's If-I-Were-CEO Plan</a>.</li>
+<li>A story about enterprise software.</li>
+<li>The four big assumptions about using enterprise software, why it's usually so terrible, and why big companies buy it.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: A private cloud storage drive that you own and control. Use code <strong>ATP</strong> for 10% off any Transporter.</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP11</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>John's new Kindles, Photo Stream confusion, Elop's plan, and a story about enterprise software.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:527d0d25e4b0091349dd30d5</guid><pubDate>Fri, 08 Nov 2013 16:11:04 +0000</pubDate><title>38: Auto-Update My Parents</title><itunes:title>Auto-Update My Parents</itunes:title><itunes:episode>38</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:14:18</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp38.mp3" length="35746939" type="audio/mpeg"/><link>https://atp.fm/38</link><description><![CDATA[<ul>
+<li>Thanks to <a href="http://hatandsuitcase.com/">Jim Pierce</a> for extending John's dog. (Also mentioned: <a href="http://adva-soft.com/products/anticrop/">AntiCrop</a>, <a href="http://createglide.com">Glide</a>)</li>
+<li><a href="http://blog.everpix.com/post/66102960115/we-gave-it-our-all">Everpix's failure and impending shutdown</a>:
+<ul><li><a href="http://www.theverge.com/2013/11/5/5039216/everpix-life-and-death-inside-the-worlds-best-photo-startup">The Verge's profile of the failure</a></li>
+<li><a href="https://support.everpix.com/entries/22586374">Shutdown FAQ</a></li>
+<li><a href="https://twitter.com/sameersundresh/status/397831224716042240">Staff tweet about compression and average usage</a></li>
+<li><a href="https://twitter.com/wwayneee/status/398169891275943936">Staff tweet about "3x userbase" needed</a></li>
+<li>Somewhat similar services: <a href="https://www.loom.com/">Loom</a>, <a href="https://picturelife.com/">Picturelife</a>, <a href="http://www.adoberevel.com/">Adobe Revel</a></li></ul></li>
+<li>Everpix's critical strategic error, and how tech business and funding strategies should resemble <a href="http://en.wikipedia.org/wiki/Puerto_Rico_%28board_game%29">Puerto Rico game</a> strategies).</li>
+<li>Revisiting the challenges of online photo storage and why Apple isn't offering something like Everpix with iCloud.</li>
+<li>Answers to the last listener questions about <a href="http://arstechnica.com/apple/2013/10/os-x-10-9/">John's Mavericks review</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://www.f-sim.com/">F-Sim Space Shuttle</a>: A highly-realistic simulator of the space shuttle’s approach and landing in unprecedented detail and accuracy.</li>
+</ul>]]></description><itunes:subtitle>Why Everpix failed, photo storage woes, and final Mavericks scraps.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5273aa7de4b0edf55c9697a0</guid><pubDate>Fri, 01 Nov 2013 13:28:53 +0000</pubDate><title>37: A 3,000-Word Digression</title><itunes:title>A 3,000-Word Digression</itunes:title><itunes:episode>37</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:49:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp37.mp3" length="52691007" type="audio/mpeg"/><link>https://atp.fm/37</link><description><![CDATA[<ul>
+<li>Some light Mac Pro waffling and the <a href="http://www.sothebys.com/en/auctions/ecatalogue/2013/null-n09014/lot.27.html">red one</a>.</li>
+<li>iOS 7.0.3's new crossfade animations in "Reduce Motion" mode.</li>
+<li>Little tidbits and windows into the life of John Siracusa buried in his <a href="http://arstechnica.com/apple/2013/10/os-x-10-9/">OS X Mavericks review</a>.</li>
+<li>Noodling John with random questions.</li>
+<li><a href="http://shinyplasticbag.com/dragondrop/">Dragon Drop</a> and <a href="http://cocoapods.org">Cocoapods</a> don't suck.</li>
+<li>The big potential section of the Mavericks review that John omitted.</li>
+<li>Choosing high-level and low-level details to include in the review.</li>
+<li>Tags and the filesystem.</li>
+<li>Publishing the review ebooks, and relative sales between iBooks and Kindle.</li>
+<li>Marco's postmortem on his past Kindle efforts. (<a href="http://instagram.com/p/Kjawtqw5Jv">Museum of Mediocre Reading Devices</a>, <a href="http://en.wikipedia.org/wiki/CueCat">CueCat</a>)</li>
+<li>Mavericks' theme and the Mac's constant battle between power users and ease of use.</li>
+<li>Will John keep doing OS X reviews?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://remobjects.com/oxygene">Oxygene by RemObjects</a>: Build native apps for all major platforms in one great language. Use code <strong>ATP13</strong> for 20% off.</li>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like. Free for up to 10 people, and affordable for your entire company.</li>
+</ul>]]></description><itunes:subtitle>Red Mac Pro, iOS 7.0.3, and more on John Siracusa's Mavericks review.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52698b78e4b0825dbf5e01e8</guid><pubDate>Thu, 24 Oct 2013 21:15:49 +0000</pubDate><title>36: A Weird One</title><itunes:title>A Weird One</itunes:title><itunes:episode>36</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:26:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp36.mp3" length="41785613" type="audio/mpeg"/><link>https://atp.fm/36</link><description><![CDATA[<ul>
+<li><a href="http://arstechnica.com/apple/2013/10/os-x-10-9/">The John Siracusa Mavericks review is up</a>!</li>
+<li>Apple's event, the presenters' pacing and enthusiasm, Casey's bag of hearts, and yet another showing of <a href="http://www.youtube.com/watch?v=VpZmIiIXuZ0">the dots video</a>.</li>
+<li>The Retina MacBook Pro update.</li>
+<li>The Mac Pro base price, <a href="http://en.wikipedia.org/wiki/List_of_Intel_Xeon_microprocessors#.22Ivy_Bridge-EP.22_.2822_nm.29_Efficient_Performance">CPU options</a>, and speculation on SSD pricing.</li>
+<li>The iPad Air, Retina iPad Mini, iPad 2 (LOL), and iPod Classic.</li>
+<li>Apple's <a href="http://www.youtube.com/watch?v=SK7guNbQwFw">prod</a> of free software.</li>
+<li>John's high-level summary of Mavericks and recommendation on upgrading.</li>
+<li>Listener homework: <a href="http://arstechnica.com/apple/2013/10/os-x-10-9/">Read the review</a> before next week's episode.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP10</strong> for 10% off.</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>John Siracusa's Mavericks review, Apple's event, and the Mac and iPad updates.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52617688e4b083dca4fd3bd3</guid><pubDate>Fri, 18 Oct 2013 17:57:15 +0000</pubDate><title>35: Sea-Level Executives</title><itunes:title>Sea-Level Executives</itunes:title><itunes:episode>35</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:22:16</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp35.mp3" length="39616325" type="audio/mpeg"/><link>https://atp.fm/35</link><description><![CDATA[<ul>
+<li>Ebook-publishing woes and trying to coordinate a specific release date.</li>
+<li>Apple hiring the CEO of Burberry to head their retail division, and the <a href="http://voices.yahoo.com/louis-vuitton-history-behind-purse-53285.html?cat=46">Louis Vuitton logo</a>.</li>
+<li>The challenges of retail leadership.</li>
+<li>Touch ID impressions after a weekend of heavy use, and whether you should keep your phone secure for <em>other</em> people's benefit.</li>
+<li>How Touch ID could be used in Macs, and whether ARM MacBooks would be worth the transition costs.</li>
+<li>Speculation on next week's product announcements.</li>
+<li>Where <a href="http://www.macrumors.com/2013/10/13/apple-predicted-to-release-ultra-slim-12-inch-macbook-with-retina-display-in-mid-2014/">a potential 12" Retina MacBook Pro</a> could fit in the lineup.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: Your own private cloud-storage drive. Get $50 off with discount code <strong>ATP50</strong> through November 11.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP10</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Ebook-publishing woes, stealing Burberry's CEO, ARM MacBooks, and speculation on next week's announcement.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5256fd72e4b04e2e81593cae</guid><pubDate>Thu, 10 Oct 2013 19:17:57 +0000</pubDate><title>34: Made The Dot Smaller</title><itunes:title>Made The Dot Smaller</itunes:title><itunes:episode>34</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:07:00</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp34.mp3" length="32243074" type="audio/mpeg"/><link>https://atp.fm/34</link><description><![CDATA[<ul>
+<li>Siri expectations and unreliability in popular culture.</li>
+<li>Can Apple ever dramatically improve their web services, and how much pressure do they feel to do so?</li>
+<li>The sorry state of online payment processing before <a href="https://stripe.com/">Stripe</a>, and improving the current sorry state of money transfers (especially in the U.S.) with services such as <a href="https://www.dwolla.com/">Dwolla</a> and <a href="https://square.com/cash">Square Cash</a>.</li>
+<li>The Mavericks GM.</li>
+<li>Drawbacks of a Readability-like model for paying podcast producers in Overcast, and <a href="http://vemedio.com/blog/posts/instacast-hd-rejected-over-flattr-integration">Instacast's 2012 rejection for Flattr integration</a>.</li>
+<li>Different priorities for podcast playback and management.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP10</strong> for 10% off.</li>
+<li><a href="http://www.audiblepodcast.com/atp">Audible</a>: Over 150,000 downloadable audiobooks. Get a free audiobook with a 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>Siri expectations, the future of Apple web services, payment-processing and money-transfer services, Mavericks GM, and a Readability-like payment model for podcasts.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:524ee91fe4b055fcea8ebc95</guid><pubDate>Fri, 04 Oct 2013 16:13:05 +0000</pubDate><title>33: A 30-Minute Skip Button</title><itunes:title>A 30-Minute Skip Button</itunes:title><itunes:episode>33</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:12:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp33.mp3" length="34989862" type="audio/mpeg"/><link>https://atp.fm/33</link><description><![CDATA[<ul>
+<li>When we expected the Mavericks GM (recorded two hours before <a href="http://www.macrumors.com/2013/10/03/os-x-mavericks-released-for-all-mac-developers-as-golden-master-seed/">this</a>).</li>
+<li><a href="http://browser.primatelabs.com/geekbench3/compare/86294?baseline=96082">Apparent new E5-1680 Mac Pro in Geekbench</a> and what CPU tradeoffs to expect in the new Mac Pro.</li>
+<li>Speculating on the new Mac Pro's fan noise, rotating cable management, and intended desk location.</li>
+<li>FU on John's podcast-scrubber idea. (Spoiler: he knows about the vertical speed-scaling that's been in Apple's scrubber for years, and it's not what he wants.)</li>
+<li>Experimenting with new UI controls and behaviors: some end up being cool and useful in practice, but <a href="http://www.youtube.com/watch?v=Cfnomy9iIYE">many don't</a>.</li>
+<li>Marco's brief adventure in designing a custom binary sync protocol.</li>
+<li>The potential conflict of interest of avoiding automatic ad-skipping features in Overcast since Marco gets income from ads on this podcast, and the ethics of publishing all podcasts' subscriber stats on the site.</li>
+<li>iPhone 5S cases.</li>
+<li><a href="http://www.wired.com/gadgetlab/2013/09/laptop-battery/?cid=12494134">Laptop battery health</a> and <a href="http://www.macworld.com/article/2040832/a-new-mac-pro-what-wed-like-to-see.html">potential automatic battery conditioning</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like. Free for up to 10 people, and affordable for your entire company.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use coupon code <strong>ATP10</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>More Mac Pro speculation, podcast scrubbers and ad-skipping features, iPhone 5S cases, and automatic battery conditioning.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5245991ee4b03fec13fd976e</guid><pubDate>Fri, 27 Sep 2013 14:41:15 +0000</pubDate><title>32: It Doesn't Bother Me</title><itunes:title>It Doesn't Bother Me</itunes:title><itunes:episode>32</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:15</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp32.mp3" length="49648068" type="audio/mpeg"/><link>https://atp.fm/32</link><description><![CDATA[<ul>
+<li>Casey's exclusive new iPhone 5S.</li>
+<li>Low stock levels of the gold 5S and Apple's potential motivations.</li>
+<li>How good the iPhone 5 (and therefore the 5C) still is today.</li>
+<li>John's <a href="http://www.youtube.com/watch?v=JTpXVv-DaBQ">review of iOS 7</a>.</li>
+<li>Locking your kitchen.</li>
+<li>Marco's upcoming podcast app, <a href="http://www.marco.org/2013/09/23/overcast-coming-soon">Overcast</a>, as announced at <a href="http://2013.xoxofest.com/">XOXO 2013</a>, and why he preannounced it.</li>
+<li>The parallels between Portland and the <a href="http://en.wikipedia.org/wiki/Hofbr%C3%A4uhaus">Hofbräuhaus</a>.</li>
+<li>John's logarithmic-scrubber idea. (and <a href="http://www.marco.org/2010/03/28/more-ideas-than-time-logarithmic-calendar-view">Marco's logarithmic calendar</a>)</li>
+<li><a href="http://www.leancrew.com/all-this/2013/09/layers-2/">Dr. Drang on parallax</a>.</li>
+<li>Post-show Neutral: <a href="http://f80.bimmerpost.com/forums/showthread.php?t=892746">the F80 M3/M4 specs</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use coupon code <strong>ATP9</strong> for 20% off in September!</li>
+<li><a href="https://ding.io/atp">Ding</a>: Dead-simple time tracking for freelancers and small teams. Use promo code <strong>ATP</strong> for a 90-day free trial.</li>
+</ul>]]></description><itunes:subtitle>Casey's exclusive new iPhone 5S, John's review of iOS 7, and Marco's new podcast app.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:523b3dcce4b095355a6b6c47</guid><pubDate>Thu, 19 Sep 2013 18:09:00 +0000</pubDate><title>31: Swimming In 16 GB Gold</title><itunes:title>Swimming In 16 GB Gold</itunes:title><itunes:episode>31</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:21:36</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp31.mp3" length="39254731" type="audio/mpeg"/><link>https://atp.fm/31</link><description><![CDATA[<ul>
+<li>Casey goes to an Apple Store.</li>
+<li>FU on <a href="http://www.snappycam.com/">SnappyCam</a>, Synology and ZFS, and <a href="http://www.imore.com/debug-20-ryan-nielsen-apple-and-os-x">the likelihood of a new Mac filesystem</a>.</li>
+<li>The 16/32/64 GB iPhone capacities may be overstaying their welcome.</li>
+<li>Each host's planned iPhone upgrades.</li>
+<li>How to get an iPhone on launch day.</li>
+<li>Long Island <a href="http://www.clublexus.com/forums/sc-400-300/554523-gold-emblems-2.html">Lexus</a> <a href="http://www.thecarstarz.com/vehicledetails.aspx?VID=143961612">trim</a>.</li>
+<li>Who's fabbing the A7? <a href="http://seekingalpha.com/article/1694892-intel-and-apple-an-interesting-tidbit">Intel</a>? <a href="http://www.anandtech.com/show/7335/the-iphone-5s-review">Probably not</a>.</li>
+<li>iOS 7 adoption stats so far from <a href="https://mixpanel.com/trends/#report/ios_7">Mixpanel</a> and <a href="http://david-smith.org/iosversionstats/">_DavidSmith</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use promo code <strong>ATP</strong> for 10% off for the life of your account.</li>
+<li><a href="http://www.squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use coupon code <strong>ATP9</strong> for 20% off in September!</li>
+</ul>]]></description><itunes:subtitle>Casey goes to the Apple Store, filesystem FU, iPhone capacities and upgrades, Long Island Lexuses, A7 fabbing, and iOS 7 adoption so far.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52335628e4b00c95cdaa5746</guid><pubDate>Fri, 13 Sep 2013 18:14:51 +0000</pubDate><title>30: Full Frontal Thumb</title><itunes:title>Full Frontal Thumb</itunes:title><itunes:episode>30</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:23:24</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp30.mp3" length="40120695" type="audio/mpeg"/><link>https://atp.fm/30</link><description><![CDATA[<ul>
+<li><a href="http://www.apple.com/iphone-5c/">iPhone 5c</a> and <a href="http://www.apple.com/iphone-5s/">iPhone 5s</a>.</li>
+<li>The possible Sherlocking of <a href="http://www.snappycam.com/">SnappyCam</a> and the 5s' two-tone flash in practice.</li>
+<li><a href="http://www.anandtech.com/show/7308/apple-iphone-5s-hands-on-video">AnandTech's Touch ID hands-on video</a>.</li>
+<li>Economics of iPhone cases.</li>
+<li>64-bit in practice.</li>
+<li>Speculation on what the M7 does and its potential.</li>
+<li>White iOS devices.</li>
+<li>Apple secrecy.</li>
+<li>After-show: "<a href="http://images.apple.com/iphone-5c/design/images/cases_gallery_white_white.png">non</a>" vs. "<a href="http://images.apple.com/iphone-5c/design/images/band_cases_device_back.png">hon</a>" and the <a href="http://www.androidbeat.com/2013/09/say-hello-hideous-new-usb-3-0-cable-new-smartphone-tablet-will-come/">Micro-USB 3.0 connector</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use coupon code <strong>ATP9</strong> for 20% off in September!</li>
+<li><a href="http://mailroute.net/atp">MailRoute</a>: Hosted spam and virus protection for email. Use promo code <strong>ATP</strong> for 10% off for the life of your account.</li>
+</ul>]]></description><itunes:subtitle>iPhone 5c and 5s, SnappyCam, Touch ID, 64-bit in practice, M7 speculation, and white iPhones.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:522a3f05e4b02163b5a30ab1</guid><pubDate>Fri, 06 Sep 2013 20:45:43 +0000</pubDate><title>29: Computerized Garden Gnome</title><itunes:title>Computerized Garden Gnome</itunes:title><itunes:episode>29</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:37:39</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp29.mp3" length="46955836" type="audio/mpeg"/><link>https://atp.fm/29</link><description><![CDATA[<ul>
+<li>John's Mavericks review progress.</li>
+<li>iPhone event predictions.</li>
+<li>Design and security tradeoffs of a theoretical iPhone fingerprint lock.</li>
+<li><a href="http://www.macrumors.com/2013/08/29/new-videos-depict-champagne-and-graphite-iphone-5s-casings/">iPhone 5S colors</a>.</li>
+<li>Will the 5C be the mainstream, best-selling model?</li>
+<li>Cell towers near rich people.</li>
+<li><a href="http://gigaom.com/2013/09/03/apple-tv-likely-on-its-way-for-a-september-10-launch/">The Apple TV shipment rumor</a>.</li>
+<li>Tim Cook's "new product categories" statement earlier this year: What might that be that could plausibly come this fall "and into 2014"?</li>
+<li>Our <a href="http://www.synology.com/us/index.php">Synology</a> experiences and disk-layout strategies so far.</li>
+<li><a href="http://www.omnigroup.com/blog/entry/update-no-upgrade-pricing-for-mac-app-store-purchases">The OmniKeyMaster Mac App Store saga</a>.</li>
+<li>Microsoft and Nokia: <a href="http://stratechery.com/2013/the-deal-that-makes-no-sense/">Stratechery 1</a>, <a href="http://stratechery.com/2013/another-nokia-explanation-the-same-conclusion/">Stratechery 2</a>, <a href="http://www.asymco.com/2013/09/03/whos-buying-whom/">Asymco: Who's buying whom?</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use coupon code <strong>ATP9</strong> for 20% off in September!</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>iPhone event predictions, fingerprint security, new product categories, using our Synology NASes, and what Nokia does for Microsoft.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5220b68ae4b08d1090c15c7f</guid><pubDate>Fri, 30 Aug 2013 15:13:00 +0000</pubDate><title>28: The Pit Of Irrelevance</title><itunes:title>The Pit Of Irrelevance</itunes:title><itunes:episode>28</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:37:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp28.mp3" length="47041915" type="audio/mpeg"/><link>https://atp.fm/28</link><description><![CDATA[<ul>
+<li>Follow-up: <a href="http://soitscometothis.net/post/time-capsule-back-up-vs.-siracusa">Time Capsule vs. Siracusa</a>. Casey was right!</li>
+<li>The state of Microsoft: How much was Ballmer's fault?</li>
+<li><a href="http://stratechery.com/2013/if-steve-ballmer-ran-apple/">Ben Thompson on Steve Ballmer</a>.</li>
+<li>Microsoft's enterprise business.</li>
+<li>Should Microsoft pull an IBM and/or spin off its consumer business?</li>
+<li>What could Microsoft do to regain momentum and marketshare in phones and tablets?</li>
+<li>John on the <a href="http://kotaku.com/introducing-the-nintendo-2ds-no-thats-not-a-typo-1214807721">Nintendo 2DS announcement</a>. (<a href="http://medialib.officialnintendomagazine.co.uk/screens/dir_603/image_60348_thumb_wide610.jpg">Side-by-side with 3DS, 3DS XL</a>, the <a href="http://www.joystiq.com/2012/03/19/kid-icarus-uprisings-3ds-stand-holds-up-to-scrutiny/">Kid Icarus: Uprising stand</a>).</li>
+<li>After-show: <a href="http://www.codinghorror.com/blog/2013/08/the-code-keyboard.html">Jeff Atwood's CODE Keyboard</a>, <a href="http://www.trulyergonomic.com">Truly-Ergonomic</a>, and Marco's initial thoughts on the <a href="http://www.marco.org/2013/08/13/ms-sculpt-ergo">Microsoft Sculpt Ergonomic Desktop</a> keyboard vs. the <a href="http://www.kinesis-ergo.com/freestyle2_mac.htm">Kinesis Freestyle 2 for Mac</a> and the <a href="http://articles.marco.org/171">Microsoft Natural Ergonomic Keyboard 4000</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://notograph.net/atp">Notograph</a>: Store, organize, and share photos of things you want to remember but don't want cluttering up your Camera Roll.</li>
+<li><a href="http://www.wordboxapp.com/">Wordbox</a>: A beautiful, simple, yet powerful text and Markdown editor for iOS.</li>
+</ul>]]></description><itunes:subtitle>Steve Ballmer, Microsoft's predicament and potential future directions, the Nintendo 2DS, and ergonomic keyboards.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5216c32be4b04422e03eaf00</guid><pubDate>Fri, 23 Aug 2013 02:04:03 +0000</pubDate><title>27: Overflow Gallery In The Bathroom</title><itunes:title>Overflow Gallery In The Bathroom</itunes:title><itunes:episode>27</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:33:23</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp27.mp3" length="44907614" type="audio/mpeg"/><link>https://atp.fm/27</link><description><![CDATA[<ul>
+<li>Querying Florida.</li>
+<li>Photo storage follow-up: whether people even want long-term photo storage anymore, using web services as backups, and Ogg-encoded tinfoil hattery.</li>
+<li>The Time Capsule's tough sell.</li>
+<li><a href="http://theoatmeal.com/comics/who_vs_whom">Casey's helpful fans</a>.</li>
+<li><a href="http://techcrunch.com/2013/08/21/nearly-a-year-later-twitter-triggers-return-to-ifttt-with-official-support/">IFTTT and Twitter</a>.</li>
+<li>The gold/"champagne" iPhone, not getting a larger iPhone this year, and the future of the Lightning connector.</li>
+<li><a href="http://www.theverge.com/2013/8/20/4638390/tivo-roamio-pro-review">The new TiVo</a>.</li>
+<li>After-show: John's ebook-testing setup, the awful <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&amp;docId=1000765261">Kindle Previewer</a>, and technical ebook woes. (See also: <a href="http://vimeo.com/55205932">Serenity Caldwell at Cingleton 2012</a>.)</li>
+<li>Plus, a very special after-after-show Neutral loosely about <a href="http://www.autoblog.com/2013/08/21/bmw-m4-to-debut-in-detroit-lose-manual-transmission/">the M4</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP8</strong> for 10% off.</li>
+<li><a href="http://www.audiblepodcast.com/atp">Audible</a>: Over 150,000 downloadable audiobooks. Get a free audiobook with a 30-day trial.</li>
+</ul>]]></description><itunes:subtitle>More on photo storage, whomever sent Casey the Oatmeal comic, IFTTT and Twitter, gold iPhones, and the new TiVo.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:520d267ae4b07b02dc60dbf1</guid><pubDate>Thu, 15 Aug 2013 19:03:24 +0000</pubDate><title>26: Three Phones Ago</title><itunes:title>Three Phones Ago</itunes:title><itunes:episode>26</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:23</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp26.mp3" length="49712696" type="audio/mpeg"/><link>https://atp.fm/26</link><description><![CDATA[<ul>
+<li><a href="http://blog.instapaper.com/post/57817543037">Instapaper's web redesign beta</a>.</li>
+<li><a href="http://www.joelonsoftware.com/articles/fog0000000069.html">Rewriting a codebase from scratch</a>.</li>
+<li>Understandable code and <a href="http://prog21.dadgum.com/177.html">writing for maintainability</a>.</li>
+<li>The balance between easy-to-write but unimpressive apps and implementing cutting-edge features that require messy hacks.</li>
+<li>The horrible mess of <a href="http://chambersdaily.com/bradleychambers/2013/8/3/regular-people-have-no-idea-how-to-manage-photos-their-iphone">smartphone photo management and backup</a>.</li>
+<li>How much should Apple protect people from hardware failures or carelessness? (See also: <a href="http://arstechnica.com/staff/2005/11/1737/">John's old two-hard-drives article</a>.)</li>
+<li>Technical and economic challenges of Apple automatically backing up <em>all</em> of your photos and videos.</li>
+<li>Non-nerd backups.</li>
+<li>After-show: <a href="http://www.studoesdesign.co.uk/work/osxivericks/">OS X Ivericks</a>, <a href="http://daringfireball.net/2013/06/wwdc_2013_expectations">Gruber on interface familiarity</a>, <a href="http://edgecasesshow.com/059-if-youre-a-file-system-geek.html">Edge Cases on filesystems</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.warbyparker.com/">Warby Parker</a>: Boutique-quality, vintage-inspired eyewear at a revolutionary price. (Spot featuring guest host <a href="https://twitter.com/tiffanyarment">@tiffanyarment</a>!) Use coupon code <strong>ATP</strong> for free 3-day shipping.</li>
+<li><a href="http://igloosoftware.com/atp">Igloo</a>: An intranet you'll actually like. Free for up to 10 people, and affordable for your entire company.</li>
+</ul>]]></description><itunes:subtitle>Instapaper's web redesign, rewriting code, code maintainability, the mess of smartphone photo management, and backup challenges for non-nerds.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:52051a3de4b0b43f796c5156</guid><pubDate>Fri, 09 Aug 2013 16:34:56 +0000</pubDate><title>25: Thrustmaster Joystick</title><itunes:title>Thrustmaster Joystick</itunes:title><itunes:episode>25</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:34:34</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp25.mp3" length="45481964" type="audio/mpeg"/><link>https://atp.fm/25</link><description><![CDATA[<ul>
+<li>Marco's new-new-new app for aligning double-ender podcast tracks.</li>
+<li>Economic considerations and options for releasing an app that's extremely helpful to a very small number of people.</li>
+<li>Why Marco has been procrastinating from the big app by making small apps.</li>
+<li>Good app names as motivation.</li>
+<li>Desktop Twitter distraction and measuring desktop productivity with <a href="https://www.rescuetime.com/">RescueTime</a>.</li>
+<li>Casey's sales of <a href="https://itunes.apple.com/us/app/fast-text/id376634510?mt=8">Fast Text</a> since last week's promotion, Marco's <a href="http://www.marco.org/2013/07/31/the-app-store-problem-is-not-price">sales of Bugshot</a>, and the potential economic upside of promotion for niche apps.</li>
+<li>The fashion longevity of iOS 7's default UI.</li>
+<li><a href="http://www.theguardian.com/technology/2013/aug/07/google-chrome-password-security-flaw">Chrome's controversial plaintext-password feature</a> and Chrome security leader <a href="https://news.ycombinator.com/item?id=6166731">Justin Schuh's defense of the design</a>.</li>
+<li>Lakes.</li>
+<li>An epic, half-hour Siracusa rant on the state of finding and installing Minecraft mods.</li>
+<li><a href="http://en.wikipedia.org/wiki/Kali_%28software%29">Kali</a>.</li>
+<li><a href="http://caseyrumors.com/">caseyrumors</a>: Is this the future of Fast Text?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://23andme.com/atp">23andMe</a>: Order your 23andMe DNA kit today for just $99.</li>
+<li><a href="http://www.squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP8</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Marco's new-new-new app and distractions, measuring desktop productivity, Fast Text and Bugshot sales, iOS 7's UI longevity, Chrome's plaintext passwords, lakes, and an epic rant on Minecraft mods.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51faa972e4b002b80b1d9bb8</guid><pubDate>Thu, 01 Aug 2013 18:31:01 +0000</pubDate><title>24: Double Meta</title><itunes:title>Double Meta</itunes:title><itunes:episode>24</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:40:13</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp24.mp3" length="48191703" type="audio/mpeg"/><link>https://atp.fm/24</link><description><![CDATA[<ul>
+<li>Non-developers might want to skip the first 35 minutes: a technical discussion of <a href="https://github.com/ccgus/fmdb">FMDB</a>, SQLite, and implementing your own generic "model" class. Plus: Casey finally gets to talk about .NET. (Note from Marco: The day after recording, I rewrote my model class to rely on KVC instead of runtime tricks and reflection. Please email Casey.)</li>
+<li>The types of programmers who can and should write their own low-level classes.</li>
+<li><a href="https://itunes.apple.com/us/app/fast-text/id376634510?mt=8">Casey's app, Fast Text</a>, and why he wrote it in 2010.</li>
+<li>John's unfulfilled app idea and <a href="http://en.wikipedia.org/wiki/The_Wizard_%28Seinfeld%29">name</a>.</li>
+<li>Getting yourself moving on an iOS app.</li>
+<li><a href="http://www.joelonsoftware.com/items/2013/07/22.html">Victory Lap for Ask Patents</a>.</li>
+<li>A 29-minute after-show extravaganza about lazy input sanitization and parameterization, extremely difficult games, eggs, and beaches.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/atp/">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+<li><a href="http://23andme.com/atp">23andMe</a>: Order your 23andMe DNA kit today for just $99.</li>
+</ul>]]></description><itunes:subtitle>Writing your own model class, Casey's app, John's app idea, Ask Patents, difficult games, eggs, and beaches.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51f151a7e4b06cb3c5d39c76</guid><pubDate>Thu, 25 Jul 2013 16:21:16 +0000</pubDate><title>23: The X Or The X</title><itunes:title>The X Or The X</itunes:title><itunes:episode>23</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:17:32</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp23.mp3" length="37302260" type="audio/mpeg"/><link>https://atp.fm/23</link><description><![CDATA[<ul>
+<li>FU: iSCSI and network Time Machine.</li>
+<li><a href="http://www.ifixit.com/Teardown/AirPort+Extreme+A1521+Teardown/15044/1">iFixit teardown of the new AirPort Extreme</a>.</li>
+<li>Apple's extended Developer Center downtime. (Note: we recorded this before we knew <em>why</em> it was down.)</li>
+<li><a href="http://david-smith.org/blog/2013/07/16/apples-answer-on-upgrade-pricing/">_DavidSmith on Logic X's pricing</a> and what this might indicate for future App Store upgrades.</li>
+<li>Whether upgrade pricing is best for consumers, and the upgrade-pricing train.</li>
+<li>iOS developers acting like the RIAA in 2002.</li>
+<li>The complexity of modern software business models.</li>
+<li>The Wal-Martization of app pricing and how <a href="http://www.youtube.com/watch?v=EtN3-hRV3n4">Marble Madness</a> formed the modern Marco.</li>
+<li>Are Apple's policies really at fault for falling app prices?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://agiletortoise.com/drafts/">Drafts</a>: Where text starts on your iPhone or iPad.</li>
+<li><a href="http://www.squarespace.com/atp">Squarespace</a>: Everything you need to create an exceptional website. Use promo code <strong>ATP7</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>iSCSI FU, the Developer Center downtime, Logic X and App Store upgrade pricing, iOS developers acting like the RIAA, and the effects of falling prices for apps and games.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51e812b4e4b0fd2e3268c44b</guid><pubDate>Thu, 18 Jul 2013 16:07:03 +0000</pubDate><title>22: Full Brichter</title><itunes:title>Full Brichter</itunes:title><itunes:episode>22</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:32:52</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp22.mp3" length="44662508" type="audio/mpeg"/><link>https://atp.fm/22</link><description><![CDATA[<ul>
+<li>Marco's new-new app, <a href="http://www.marco.org/bugshot">Bugshot</a>, and some of its design decisions.</li>
+<li>Cutting features from 1.0 and trying to keep Bugshot from taking too much time.</li>
+<li>Bugshot gets the John Siracusa treatment.</li>
+<li>Exploring NAS options and initial impressions of the <a href="http://www.synology.com/products/spec.php?product_name=DS1813%2B&amp;lang=us">Synology DS1813+</a>.</li>
+<li>Economics of <a href="http://www.freenas.org">FreeNAS</a> or Mac Mini alternatives.</li>
+<li>iSCSI on Macs: the <strike>free</strike> $89 <a href="http://www.studionetworksolutions.com/globalsan-iscsi-initiator/">globalSAN initiator</a> and the $195 <a href="http://www.attotech.com/products/product.php?scat=17&amp;sku=INIT-MAC0-001">ATTO initiator</a>, which comes recommended by <a href="http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html">storage expert Dave Nanian</a>.</li>
+<li>NAS backup options, since <a href="http://www.backblaze.com/atp.html">Backblaze</a> doesn't do network drives: <a href="http://www.crashplan.com">CrashPlan</a> (with widespread upload-speed issues), or <a href="http://www.haystacksoftware.com/arq/">Arq</a> (with potentially expensive Amazon Glacier or S3 costs).</li>
+<li><a href="http://blog.plasticsfuture.org/2006/03/05/the-state-of-backup-and-cloning-tools-under-mac-os-x/">Backing up Mac filesystem metadata</a>, <a href="https://github.com/n8gray/Backup-Bouncer">Backup Bouncer</a>, and <a href="http://skowron.biz/artikel/backup-services/">current scores of online backup apps</a>.</li>
+<li>Data hoarding and falling into John's backup vortex.</li>
+<li>The <a href="https://itunes.apple.com/us/podcast/apple-keynotes-hd/id470664050">Apple Keynotes podcast feed</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mindblitzapp.com/atp">Mind Blitz</a>: An action-puzzle twist on the classic memory matching game.</li>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: Private cloud storage. Use coupon code <strong>atp</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Bugshot, its omitted and future features, and exploring NAS options: Synology vs. homebrew, NAS backup considerations, and hoarding terabytes of Apple videos.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51df652be4b01d6e75fb3d9e</guid><pubDate>Fri, 12 Jul 2013 12:09:25 +0000</pubDate><title>21: The Transitive Property of Nerdiness</title><itunes:title>The Transitive Property of Nerdiness</itunes:title><itunes:episode>21</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:33:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp21.mp3" length="45172021" type="audio/mpeg"/><link>https://atp.fm/21</link><description><![CDATA[<ul>
+<li>iWatch follow-up.</li>
+<li>Alex Eckermann on <a href="https://alexeckermann.squarespace.com/blog/2013/7/10/an-accidental-article-talking-about-bluetooth-and-the-iwatch">Bluetooth Low Energy and iWatch</a>.</li>
+<li>Eric Welander's <a href="http://welander.tv/blog/2013/7/9/the-s-in-iwatch-is-for-siri">thoughts on Siri for iWatch</a>.</li>
+<li>iWatch as a <a href="https://alpha.app.net/jaste/post/7417570">means of identity</a>.</li>
+<li>How regular people use iOS devices, as witnessed by John.</li>
+<li>Multitasking-switcher implications in iOS 7.</li>
+<li>iCloud's priority within Apple.</li>
+<li><a href="https://www.dropbox.com/developers/datastore">Dropbox Datastore API</a>, including its <a href="https://www.dropbox.com/developers/datastore/docs/js">JavaScript API</a>.</li>
+<li>Does the Datastore API obviate the need for a web service?</li>
+<li>Nerd-targeted products.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: Private cloud storage. Use coupon code <strong>atp</strong> for 10% off.</li>
+<li><a href="http://audiblepodcast.com/atp">Audible</a>: The leading provider of downloadable audiobooks.</li>
+</ul>]]></description><itunes:subtitle>iWatch as identity, Bluetooth Low Energy and Siri in a watch, how regular people use iOS devices, iCloud and the Dropbox Datastore API, and targeting nerds.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51d701fae4b07e30233cc630</guid><pubDate>Fri, 05 Jul 2013 17:27:11 +0000</pubDate><title>20: A Box and a Strap</title><itunes:title>A Box and a Strap</itunes:title><itunes:episode>20</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:15:59</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp20.mp3" length="36557392" type="audio/mpeg"/><link>https://atp.fm/20</link><description><![CDATA[<ul>
+<li><a href="http://www.reuters.com/article/2013/07/02/us-apple-hire-idUSBRE9611BP20130702">Apple's Yves Saint Laurent hire</a> and the difficulty in predicting an "iWatch". </li>
+<li><a href="http://hypercritical.co/2013/04/07/technological-conservatism">Technological Conservatism</a>.</li>
+<li><a href="http://www.panic.com/blog/2013/03/the-lightning-digital-av-adapter-surprise/">Panic's Lightning-to-HDMI-cable discovery</a>.</li>
+<li><a href="http://codeintolight.tumblr.com/post/54345993747/clarity-i-decided-to-see-how-the-ios7-interface">Chris Harris on iOS 7 icons</a>.</li>
+<li>"Free-to-play" games.</li>
+<li>Coding for practice, and learning new APIs or languages.</li>
+<li>Overly specialized apps.</li>
+<li><a href="http://www.glympse.com/">Glympse</a> (Casey's road-trip-tracking app).</li>
+<li><a href="http://www.feedwrangler.net/">Feed Wrangler</a> by _DavidSmith as a Google Reader replacement that's compatible with <a href="http://reederapp.com">Reeder for iPhone</a>.</li>
+<li><a href="http://www.macworld.com/article/2043053/bye-bye-google-reader-alternative-rss-solutions-for-mac-and-ios-users.html">Lex Friedman's RSS-sync roundup</a>.</li>
+<li><a href="http://readkitapp.com/">ReadKit for Mac</a> as a potential <a href="http://netnewswireapp.com/">NetNewsWire</a> replacement.</li>
+<li><a href="http://www.leancrew.com/all-this/2012/10/last-post-on-subscriber-counting/">Dr. Drang's branch of Marco's RSS-subscriber-count script</a>.</li>
+<li>Why is OS X version adoption slower than iOS, and could Mavericks be free?</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://itunes.apple.com/us/app/optia/id347996243?mt=8">Optia</a>: A beautiful, intuitive iOS puzzle game about reflecting light.</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Smartwatch hardware considerations, free-to-play, practice coding, and our Google Reader replacements.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51cc6189e4b071b5e7ebe595</guid><pubDate>Thu, 27 Jun 2013 16:03:30 +0000</pubDate><title>19: Designed by App in Cal</title><itunes:title>Designed by App in Cal</itunes:title><itunes:episode>19</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:28:26</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp19.mp3" length="42538637" type="audio/mpeg"/><link>https://atp.fm/19</link><description><![CDATA[<ul>
+<li>John's review progress and show-duration predictors.</li>
+<li>The <a href="http://www.youtube.com/watch?v=VpZmIiIXuZ0">WWDC 2013 intro video</a>. (<a href="http://www.youtube.com/watch?v=8OXI5qtges0">Siri's WWDC 2012 intro</a>)</li>
+<li>Apple's "<a href="http://www.apple.com/ios/videos/">Making a Difference, One App at a Time</a>" video.</li>
+<li>"Designed by Apple in California".</li>
+<li><a href="http://www.youtube.com/watch?v=SH1jKZwcS9Y">"Jobs" (Ashton Kutcher) trailer</a>.</li>
+<li>Why developers should (or shouldn't) <em>require</em> iOS 7 this fall.</li>
+<li><a href="http://en.wikipedia.org/wiki/The_Transporter_%28franchise%29">"The Transporter" series</a>.</li>
+<li><a href="http://appleinsider.com/articles/13/06/17/inside-ios-7-calendar-app-comes-with-sterilized-ui-few-feature-changes">iOS 7 Calendar app UI</a>.</li>
+<li>Cool-looking vs. well-designed.</li>
+<li>Our iTunes reviews.</li>
+<li>"Better" and "worse" programming languages.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://audiblepodcast.com/atp">Audible</a>: Download a free audiobook and start your 30-day trial.</li>
+<li><a href="http://filetransporter.com/atp">Transporter</a>: Private cloud storage. Use coupon code <strong>atp</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>The WWDC intro video, Apple's California pride, whether developers should require iOS 7, the new Calendar UI, and cool vs. usable designs.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51c37ee9e4b03003ea9d28f0</guid><pubDate>Thu, 20 Jun 2013 22:14:53 +0000</pubDate><title>18: Aluminum-Colored Aluminum</title><itunes:title>Aluminum-Colored Aluminum</itunes:title><itunes:episode>18</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:14:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp18.mp3" length="35854863" type="audio/mpeg"/><link>https://atp.fm/18</link><description><![CDATA[<ul>
+<li>Casey's fans at WWDC.</li>
+<li>Mac Pro followup. (<a href="http://hypercritical.co/2013/03/08/the-case-for-a-true-mac-pro-successor">John's halo-car post</a>)</li>
+<li>The Xbox 180.</li>
+<li>Revisiting the potential for a larger-screen iPhone after having seen iOS 7.</li>
+<li>Predicting iOS 7 adoption.</li>
+<li><a href="http://mrgan.tumblr.com/post/53308781143/wrong">Neven Mrgan on iOS 7's icon grid</a> and <a href="https://medium.com/design-ux/3c4f01573adc">a rebuttal</a>.</li>
+<li><a href="http://www.macrumors.com/2013/06/19/apples-new-mac-pro-begins-showing-up-in-benchmarks/">New Mac Pro appears in Geekbench</a></li>
+<li><a href="http://www.marco.org/2008/05/31/parallelize-shell-utility-to-execute-command-batches">parallelize.c</a>/<a href="http://matpalm.com/blog/2009/11/06/xargs-parallel-execution/">xargs parallel processing</a></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: The all-in-one platform that makes it easy to create your own website. Use coupon code <strong>ATP6</strong> for 10% off.</li>
+<li><a href="http://aneventapart.com/atpfm">An Event Apart</a>: The design conference for people who make websites.</li>
+</ul>]]></description><itunes:subtitle>Casey's fans at WWDC, Mac Pro followup, Xbox 180, revisiting larger-screen iPhones, predicting iOS 7 adoption, and pushing the boundaries of graphic design.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51b6cc47e4b0d33894932558</guid><pubDate>Tue, 11 Jun 2013 07:05:31 +0000</pubDate><title>17: Can't Innovate Anymore</title><itunes:title>Can't Innovate Anymore</itunes:title><itunes:episode>17</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:12:27</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp17.mp3" length="34858915" type="audio/mpeg"/><link>https://atp.fm/17</link><description><![CDATA[<p>Special early WWDC episode this week:</p>
+
+<ul>
+<li>Reactions to the keynote.</li>
+<li>New Mac Pro</li>
+<li>Initial iOS 7 design impressions.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/atp">Backblaze</a>: Easy, unlimited online backup for just $5 per month.</li>
+<li><a href="http://www.windowsazure.com/ios">Windows Azure Mobile Services</a>: Build a cloud-connected iOS app faster and easier.</li>
+</ul>]]></description><itunes:subtitle>Special early WWDC-week episode: Reactions to the keynote, new Mac Pro, and iOS 7.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51b1e3b9e4b0bd92c83c6318</guid><pubDate>Fri, 07 Jun 2013 13:44:08 +0000</pubDate><title>16: John, We Don't Play Games</title><itunes:title>John, We Don't Play Games</itunes:title><itunes:episode>16</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:43:43</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp16.mp3" length="49917039" type="audio/mpeg"/><link>https://atp.fm/16</link><description><![CDATA[<ul>
+<li><a href="https://soundcloud.com/la-king/accidentially-podcasted">Opening theme by Larry King</a> (<a href="http://twitter.com/laking">@laking</a>).</li>
+<li>The case for a modernized AppKit in OS X 10.9 a la <a href="http://chameleonproject.org/">Chameleon</a>/<a href="https://github.com/twitter/twui">TwUI</a>.</li>
+<li>The lack of official Apple Objective-C wrappers around old C APIs such as Keychain and Address Book.
+<ul><li><a href="http://springboardshow.com/episodes/10">Springboard #10</a> </li>
+<li><a href="http://en.wikipedia.org/wiki/Small_matter_of_programming">SMOP</a></li>
+<li><a href="http://david-smith.org">Underscore</a></li></ul></li>
+<li>Should Apple add <a href="http://en.wikipedia.org/wiki/Type_inference">type inference</a> to Objective-C?</li>
+<li>Haswell Retina MacBook Pro predictions and the possibility of having only the integrated GPU in the 15".
+<ul><li><a href="http://gfx.io">gfxCardStatus</a></li>
+<li><a href="http://www.everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-2-duo-2.53-aluminum-15-mid-2009-sd-unibody-specs.html">The only 15" with integrated-only GPU</a></li>
+<li><a href="http://www.everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-i5-2.4-aluminum-15-mid-2010-unibody-specs.html">The first unibody 15" with high-res, matte LCD</a></li>
+<li><a href="http://www.anandtech.com/show/6993/intel-iris-pro-5200-graphics-review-core-i74950hq-tested">Haswell integrated GPU explained</a></li></ul></li>
+<li>Mac Pro speculation.
+<ul><li><a href="http://www.imore.com/ad-hoc-03-xbox-one-and-state-living-room">John on Ad Hoc</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Larrabee_%28microarchitecture%29">Larrabee</a></li>
+<li><a href="http://www.anandtech.com/show/2420/2">Intel's custom CPU for the first MacBook Air</a></li>
+<li><a href="http://www.anandtech.com/show/6001/apple-confirms-email-to-mac-pro-users-about-something-really-great-in-2013">Thunderbolt problems on Xeon boards</a></li>
+<li><a href="http://www.marco.org/2013/06/05/future-mac-pro-rumor">Marco's Mac Pro post this week</a></li>
+<li><a href="http://www.marco.org/2011/11/02/scaling-down-the-mac-pro">Scaling down the Mac Pro/"xMac" challenges</a></li>
+<li><a href="http://www.anandtech.com/show/7026/intel-announces-thunderbolt-2-at-computex-20gbps-bidirectional-bandwidth-per-channel">Thunderbolt 2</a></li>
+<li><a href="http://www.theverge.com/2013/6/4/4394294/asus-4k-monitor-price-release-date-and-retina-compatibility">Asus' 4K monitor</a></li>
+<li><a href="http://www.marco.org/2009/10/25/the-more-i-think-and-learn-about-the-curious">The first 27" iMac's panel economics</a></li></ul></li>
+<li>Major iOS 7 API wishes: better inter-app communication mechanisms, "default app" associations, and periodic background updates.</li>
+<li>Quick WWDC tips.
+<ul><li><a href="http://tumblr.caseyliss.com/post/52182719665">Casey's WWDC predictions</a></li>
+<li><a href="http://tumblr.caseyliss.com/post/23099192614/wwdc-2012-tips">Casey's WWDC tips from last year</a></li></ul></li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://tonx.org/atp">Tonx</a>: Freshly roasted coffee delivered straight to your door. New customers can get a free AeroPress by signing up for a Standard subscription by June 17.</li>
+<li><a href="http://squarespace.com/atp">Squarespace</a>: The all-in-one platform that makes it easy to create your own website. Use coupon code <strong>ATP6</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Modernizing AppKit, wrapping old C APIs, type inference, Haswell and 15\" Retina GPUs, Mac Pro speculation, WWDC predictions, and iOS 7 wishes.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51a7da6ae4b02f35a70bf8d8</guid><pubDate>Fri, 31 May 2013 13:36:17 +0000</pubDate><title>15: Cat, Modifier Cat</title><itunes:title>Cat, Modifier Cat</itunes:title><itunes:episode>15</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:56</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp15.mp3" length="42337519" type="audio/mpeg"/><link>https://atp.fm/15</link><description><![CDATA[<ul>
+<li>Why Marco <a href="http://www.marco.org/2013/05/29/sold-the-magazine">sold The Magazine</a>.</li>
+<li>Teasing apps before they're out, building hype, and <a href="http://carpeaqua.com/2013/05/29/pit-pass/">Pit Pass</a>.</li>
+<li><a href="http://allthingsd.com/20130529/apples-tim-cook-the-full-d11-interview-video/">Tim Cook at AllThingsD</a>.</li>
+<li>Cook's presence and speaking style.</li>
+<li>What Cook implicitly said about future Apple products.</li>
+<li>WWDC predictions for OS X.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.remobjects.com/oxygene/">Oxygene for Cocoa</a>: Use coupon code ATP13 for 20% off.</li>
+<li><a href="http://acqualia.com/soulver/">Soulver</a>: The essential calculator-spreadsheet-notepad hybrid.</li>
+</ul>]]></description><itunes:subtitle>Why Marco sold The Magazine, teasing apps before launch, Tim Cook at AllThingsD, and WWDC predictions for OS X.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:519feea8e4b0fecfac722f23</guid><pubDate>Fri, 24 May 2013 22:50:04 +0000</pubDate><title>14: Pouring Champagne Onto Rap Stars</title><itunes:title>Pouring Champagne Onto Rap Stars</itunes:title><itunes:episode>14</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:32:29</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp14.mp3" length="44521355" type="audio/mpeg"/><link>https://atp.fm/14</link><description><![CDATA[<ul>
+<li>Marco visits Siracusa's house and <a href="http://neutral.fm/episodes/2-turbo-buttons">the car-assaulting tree</a>.</li>
+<li><a href="http://scripting.com/davenet/2000/10/19/transcendentalMoney.html">Transcendental Money</a>.</li>
+<li><a href="https://square.com/cash">Square Cash</a>.</li>
+<li><a href="http://5by5.tv/b2w/120">B2W 120 on financial "safety nets"</a>.</li>
+<li>Tumblr, Yahoo, and not screwing it up.</li>
+<li>Cloud hosting and moving up the stack.</li>
+<li>The modern game console's role. the Xbox One's <a href="http://www.anandtech.com/show/6972/xbox-one-hardware-compared-to-playstation-4">hardware design</a>, and the messy world of TV-connected boxes.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.squarespace.com/atp">Squarespace</a>: Use coupon code <strong>ATP5</strong> for 10% off.</li>
+<li><a href="http://www.windowsazure.com/ios">Windows Azure Mobile Services</a>: Get started today for free.</li>
+</ul>]]></description><itunes:subtitle>Money and happiness, Tumblr and Yahoo, the Xbox One, and the messy world of TV-connected boxes.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51963782e4b0fe8d016086db</guid><pubDate>Fri, 17 May 2013 13:58:14 +0000</pubDate><title>13: Animated Kale</title><itunes:title>Animated Kale</itunes:title><itunes:episode>13</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:27:55</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp13.mp3" length="42328217" type="audio/mpeg"/><link>https://atp.fm/13</link><description><![CDATA[<ul>
+<li>Our theme song by <a href="http://jonathanmann.net/">Jonathan Mann</a> -- follow his <a href="http://www.youtube.com/songadaymann">Song A Day on YouTube</a>, and check out <a href="http://jonathanmann.net/">his site</a> if you or your company would like a catchy, fun song. Thanks for the ATP theme song, Jonathan!</li>
+<li>Casey and Marco get deluged with to-do app recommendations.</li>
+<li>The difficulty in getting people to change to a new app, but conversely, the potential success for slightly differentiated apps in an otherwise crowded market.</li>
+<li>Google I/O keynote reactions.</li>
+<li>Localizing apps to different languages.</li>
+<li>The sad state of iTunes Connect.</li>
+<li>Staged rollouts, purchase analytics, beta testing, and the different developer attitudes of Apple and Google.</li>
+<li>Why Google is consistently able to kick Apple's butt in services (and engineering?).</li>
+<li><a href="https://twitter.com/lautenbach/status/334714660047691777">Google Play Music All Access</a>, Hangouts, and the new Google Maps.</li>
+<li><a href="http://www.steamclock.com/blog/2013/05/apple-objective-c-javascript-bridge/">Apple's Objective-C to Javascript bridge</a>.</li>
+<li>The App Store UI.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://aneventapart.com/atpfm">An Event Apart</a>: The design conference for people who make websites.</li>
+<li><a href="http://cocoaconf.com/">CocoaConf</a>: A conference for iPhone, iPad, and Mac developers. Use coupon code <strong>ATP</strong> for 20% off any ticket.</li>
+</ul>]]></description><itunes:subtitle>Our theme song, too many to-do apps, Google I/O keynote reactions, localization, Google kicking Apple's butt in services, Google Play Music All Access Glass Map Hangouts, and Apple's quietly updated Javascript bridge.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:518d2a4ae4b07ceb48563034</guid><pubDate>Fri, 10 May 2013 17:11:19 +0000</pubDate><title>12: Accidental Server Hardware</title><itunes:title>Accidental Server Hardware</itunes:title><itunes:episode>12</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:33:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp12.mp3" length="45145852" type="audio/mpeg"/><link>https://atp.fm/12</link><description><![CDATA[<ul>
+<li>FU on Apple's <a href="http://pablin.org/2013/05/06/apples-tick-tock-strategy/">tick-tock pattern</a>.</li>
+<li>Marco's PHP framework and sponsor-tracking web app, and why both exist.</li>
+<li>Usability and security implications of passwordless login systems.</li>
+<li>The Mac Mini's seemingly accidental success.</li>
+<li>Podcasters who <a href="http://theeastwing.net/episodes/53">hate the word "podcast"</a>, its quality connotation, efforts to <a href="http://nextmarket.co/blogs/conversations/7801787-leo-laporte-talks-podcasting">invent alternative names</a>, and barriers to entry.</li>
+<li>Brent Simmons' <a href="http://inessential.com/2013/05/07/30_minutes_to_sync">30 Minutes To Sync</a> proposal.</li>
+<li>Building web services on Apple's infrastructure.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://macminivault.com/try">Mac Mini Vault</a>: Colocate or rent your own Mac Mini. Use promo code <strong>ATP50</strong> for 50% off your first three months.</li>
+<li><a href="http://hover.com/atp">Hover</a>: High-quality, no-hassle domain registration. Use promo code <strong>ATP</strong> for 10% off.</li>
+</ul>]]></description><itunes:subtitle>Tick-tock in iOS, PHP framework theory, passwordless logins, the Mac Mini's accidental success, the word "podcast", and Apple providing a sync platform for developers. </itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5182e38be4b0580e0003f130</guid><pubDate>Fri, 03 May 2013 13:21:06 +0000</pubDate><title>11: A Particularly Exuberant Adolescence</title><itunes:title>A Particularly Exuberant Adolescence</itunes:title><itunes:episode>11</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:19:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp11.mp3" length="38190972" type="audio/mpeg"/><link>https://atp.fm/11</link><description><![CDATA[<ul>
+<li>The WWDC <a href="http://hypercritical.co/2013/04/26/the-lottery">ticket lottery</a> and <a href="http://www.marco.org/2013/04/26/replacing-wwdc">potential solutions</a>, or a <a href="http://www.therussiansusedapencil.com/post/49279203585/wwdc-ticket-distribution">merit system</a>.</li>
+<li>Why Marco <a href="http://www.marco.org/2013/04/25/instapaper-next-generation">sold Instapaper</a>. (<a href="http://5by5.tv/quit/21">See also</a>.)</li>
+<li>Prospects for replacing Instapaper's income.</li>
+<li>Speculating on today's app market.</li>
+<li><a href="https://the-magazine.org/">The Magazine</a>'s app and Newsstand quality.</li>
+<li>Motivation, development, and homework.</li>
+<li>iOS 7's rumored visual overhaul and other speculation.</li>
+<li>The transition away from Steve Jobs' influence.</li>
+<li>What's left for iOS 7 to add?</li>
+</ul>
+
+<p>Sponsored by <a href="http://www.squarespace.com/atp">Squarespace</a>: Use discount code <strong>ATP5</strong> at checkout for 10% off.</p>]]></description><itunes:subtitle>The WWDC ticket lottery, why Marco sold Instapaper, future app prospects, developer motivation, and iOS 7 speculation.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:517a89fde4b0ab81ac8d3f75</guid><pubDate>Fri, 26 Apr 2013 14:06:42 +0000</pubDate><title>10: Gradual Ramp Up To Nothing</title><itunes:title>Gradual Ramp Up To Nothing</itunes:title><itunes:episode>10</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:23:57</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp10.mp3" length="40436034" type="audio/mpeg"/><link>https://atp.fm/10</link><description><![CDATA[<ul>
+<li>Laptops in school.</li>
+<li>Getting a tech job with and without a college degree.</li>
+<li>Running mail servers in today's spam environment.</li>
+<li>Steve Jobs' unauthorized talking points.</li>
+<li>The WWDC announcement and trying to get tickets.</li>
+<li>Going to WWDC vs. a ticketless trip vs. watching the videos at home.</li>
+<li>Apple's Q2 earnings and hints dropped during the call.</li>
+<li>The tech industry's holding pattern with bored consumers.</li>
+<li>Marco's mom buys her first smartphone, ignoring Marco's advice. Which one did she get?</li>
+</ul>
+
+<p>Sponsored by <a href="http://mailroute.net/">MailRoute</a> and <a href="http://www.hover.com/atp">Hover</a>.</p>]]></description><itunes:subtitle>Laptops in school, getting tech jobs, mail servers and spam, Steve Jobs' direct commentary, WWDC tickets, going ticketless or watching WWDC videos at home, Cook's hints on the earnings call, bored consumers, and Marco's mom's first smartphone. </itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51717faee4b0093bc6806e50</guid><pubDate>Fri, 19 Apr 2013 17:32:19 +0000</pubDate><title>9: Fish Bicycle Scenario</title><itunes:title>Fish Bicycle Scenario</itunes:title><itunes:episode>9</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:05:02</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp9.mp3" length="31345433" type="audio/mpeg"/><link>https://atp.fm/9</link><description><![CDATA[<ul>
+<li>Why are PC sales down?</li>
+<li>Why and when people have bought new PCs in the past.</li>
+<li>Forgoing or neglecting PCs today.</li>
+<li>PCs in businesses.</li>
+<li>Apple and IT departments.</li>
+<li>Last decade's Tablet PCs.</li>
+<li>The outlook for Windows 8 tablets in businesses.</li>
+<li>What will change if Microsoft Office is released for iOS?</li>
+<li>What AirPrint and black CD-Rs have in common.</li>
+<li>Still using (and abusing) <a href="http://www.youtube.com/user/songadaymann">Jonathan Mann's awesome ending song</a>. Follow him and check out his other songs on YouTube.</li>
+</ul>
+
+<p>Sponsored by <a href="http://squarespace.com/atp">Squarespace</a>: Use code <strong>ATP4</strong> at checkout for 10% off.</p>]]></description><itunes:subtitle>The PC-sales downturn, PCs in business, Apple and IT departments, past and future Tablet PCs, and predictions for Microsoft Office for iOS. </itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51686253e4b02d08633449e9</guid><pubDate>Fri, 12 Apr 2013 19:36:41 +0000</pubDate><title>8: Hold Me!</title><itunes:title>Hold Me!</itunes:title><itunes:episode>8</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:25:01</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp8.mp3" length="40941516" type="audio/mpeg"/><link>https://atp.fm/8</link><description><![CDATA[<ul>
+<li>Giving Dave Morin the benefit of the doubt on <a href="http://www.vanityfair.com/culture/my-phone/2013/03/dave-morin-path-facebook-apple">that Vanity Fair trainwreck</a>.</li>
+<li>Who <a href="http://techcrunch.com/2013/04/04/facebook-home-launch/">Facebook Home</a> is for and why Facebook made it.</li>
+<li>Whether Facebook, Amazon, Samsung, etc. could or should make their own OS or maintain completely diverged Android forks.</li>
+<li>Google <a href="http://blog.chromium.org/2013/04/blink-rendering-engine-for-chromium.html">forking WebKit</a>, Chrome vs. Safari, and the fork's likely implications for Apple and web developers.</li>
+<li><a href="http://www.imore.com/debug-11-don-melton-and-safari">Debug #11: Don Melton and Safari</a></li>
+<li><a href="http://bitergia.com/public/reports/webkit/2013_01/">WebKit contributors by company</a></li>
+<li>Panic's new <a href="http://panic.com/statusboard/">Status Board app</a> (and <a href="https://twitter.com/rustyshelf/status/321773898070908928">IAP reaction</a>).</li>
+<li>We included <a href="http://www.youtube.com/user/songadaymann">Jonathan Mann's</a> ending theme song again. Thanks, Jonathan!</li>
+</ul>
+
+<p>Sponsored by <a href="http://www.igloosoftware.com/campaigns/atp">Igloo Software</a>.</p>]]></description><itunes:subtitle>Giving Dave Morin the benefit of the doubt, Facebook Home, tech giants maintaining their own OSes, Google forking WebKit, and Panic's Status Board.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:5154b240e4b073a07f4e7d3d</guid><pubDate>Fri, 29 Mar 2013 14:41:59 +0000</pubDate><title>7: The Forecast For iCloud</title><itunes:title>The Forecast For iCloud</itunes:title><itunes:episode>7</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:34:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp7.mp3" length="45779461" type="audio/mpeg"/><link>https://atp.fm/7</link><description><![CDATA[<ul>
+<li>Summly's acquisition by Yahoo, and what could have justified its price. (<a href="http://www.marco.org/2013/03/26/summly">Marco</a>, <a href="http://blogs.wsj.com/tech-europe/2013/03/26/what-does-30-million-buy-you/">WSJ</a>)</li>
+<li>The quality of speech recognition.</li>
+<li>Challenges of big tech companies such as Apple hiring and retaining great talent.</li>
+<li>Why iCloud sync <a href="http://www.theverge.com/2013/3/26/4148628/why-doesnt-icloud-just-work">works so badly for developers</a> and whether it's fixable.</li>
+<li><a href="http://inessential.com/2013/03/27/why_developers_shouldnt_use_icloud_sy">Why developers shouldn't use iCloud</a> even if it worked.</li>
+<li><a href="http://www.youtube.com/watch?v=iCXItGrjqrw">Jonathan Mann's ATP Ending Theme Song</a> and the <a href="https://soundcloud.com/jonathanmann/atp-ending-theme-more-bleeps">More Bleeps version</a>.</li>
+</ul>
+
+<p>Sponsored by <a href="http://squarespace.com/atp">Squarespace</a>: Use code <strong>ATP3</strong> at checkout for 10% off.</p>]]></description><itunes:subtitle>Summly and Yahoo, retaining good tech talent, why iCloud sync doesn't work well, whether it's fixable, and whether you should use it even if it gets fixed.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:514c97cce4b0b45af33e05d3</guid><pubDate>Fri, 22 Mar 2013 17:41:19 +0000</pubDate><title>6: Live Like Other People</title><itunes:title>Live Like Other People</itunes:title><itunes:episode>6</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:41:50</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp6.mp3" length="48883878" type="audio/mpeg"/><link>https://atp.fm/6</link><description><![CDATA[<ul>
+<li>How Marco buys a TV (unlike <a href="http://5by5.tv/hypercritical/1">how John does</a>).</li>
+<li>Regular people noticing and caring about high-DPI screens.</li>
+<li>The amazing Mac lineup that few care about.</li>
+<li>Which Mac would we tell people to buy?</li>
+<li>Marco revisits the <a href="http://www.marco.org/2012/10/26/an-alternate-universe">Microsoft Store</a>.</li>
+<li>The Surface Pro's uniqueness.</li>
+<li>Why GarageBand's adoption of <a href="http://audiob.us">Audiobus</a> is so interesting.</li>
+<li>How exposed filesystems <em>and</em> iCloud's document model both fail users.</li>
+</ul>
+
+<p>Sponsored by <a href="http://squarespace.com/atp">Squarespace</a>: Use code <strong>ATP3</strong> at checkout for 10% off.</p>]]></description><itunes:subtitle>Buying a TV, regular people and high-DPI screens, the amazing Mac lineup that we barely care about, revisiting the Microsoft Store, and why Garageband's support of Audiobus is so interesting. </itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:51433e3de4b02e28c1b8aa5e</guid><pubDate>Fri, 15 Mar 2013 15:28:30 +0000</pubDate><title>5: Negativity, Skepticism, and Doubt</title><itunes:title>Negativity, Skepticism, and Doubt</itunes:title><itunes:episode>5</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:25:31</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp5.mp3" length="43891365" type="audio/mpeg"/><link>https://atp.fm/5</link><description><![CDATA[<ul>
+<li>The upcoming Google Reader shutdown.</li>
+<li>The market for RSS today, and the way forward.</li>
+<li>Client-side vs. server-side feed crawling.</li>
+<li>Addressing excessive demand for WWDC and Google I/O tickets.</li>
+<li>Apple pessimism is at an all-time high, even in the mainstream.</li>
+<li>What could Apple do to turn the pessimism around?</li>
+<li>Apple and web services.</li>
+<li>The Apple TV's interesting new A5.</li>
+<li>Diversifying the iPhone line.</li>
+</ul>]]></description><itunes:subtitle>Google Reader shutting down, the RSS market and client architecture, demand for Google I/O and WWDC tickets, Apple pessimism, and diversifying the iPhone line. </itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:513bf05ce4b0b5df0ebe4355</guid><pubDate>Mon, 11 Mar 2013 21:11:17 +0000</pubDate><title>4: The Bridges</title><itunes:title>The Bridges</itunes:title><itunes:episode>4</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>01:18:47</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp4.mp3" length="40674929" type="audio/mpeg"/><link>https://atp.fm/4</link><description><![CDATA[<ul>
+<li>The role of the Mac Pro today.</li>
+<li>How Apple might manage the launch of a bigger iPhone.</li>
+<li>App design and auto-layout if the iPhone moves to multiple sizes <em>and</em> resolutions.</li>
+<li>Visual Studio's learning curve vs. Xcode and Interface Builder.</li>
+<li>The future of Objective C and the challenge of migrating a platform's API to a new language.</li>
+</ul>]]></description><itunes:subtitle>The Mac Pro's future, launch and app considerations for a bigger iPhone, Visual Studio's ease of use, the future of Objective C, and migrating a platform's API to a new language.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:513ad13ee4b0cc0702f611ab</guid><pubDate>Sat, 09 Mar 2013 06:05:40 +0000</pubDate><title>3: Conditions Led To Freecell</title><itunes:title>Conditions Led To Freecell</itunes:title><itunes:episode>3</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>00:58:49</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp3.mp3" length="29446031" type="audio/mpeg"/><link>https://atp.fm/3</link><description><![CDATA[<ul>
+<li>The Nifty MiniDrive</li>
+<li>The challenges of small-camera design</li>
+<li>Sony RX1 and Sony's camera-business revival</li>
+<li>Apple in the gaming market and the evolution of casual gaming</li>
+<li>Solitaire, Minesweeper, and the first time anyone has mentioned FreeCell in 2013</li>
+<li>The bad old days of Game Boys, lead-acid "portable" computers, and mouse-pointer trails</li>
+<li>iOS' refusal to let you pick default browser, email client, calendar app, etc.</li>
+<li>Mini-web-browsers inside of iOS apps</li>
+<li>How iOS could adopt Contracts or Intents, and the problems that might arise</li>
+</ul>]]></description><itunes:subtitle>Small-camera design, Sony RX1, Apple and casual gaming, Solitaire and Minesweeper, original Game Boys, iOS default mail/browser/calendar apps.</itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:513acf75e4b0cc0702f60eda</guid><pubDate>Thu, 28 Feb 2013 05:58:00 +0000</pubDate><title>2: The 7th Guest</title><itunes:title>The 7th Guest</itunes:title><itunes:episode>2</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>00:57:17</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp2.mp3" length="29055434" type="audio/mpeg"/><link>https://atp.fm/2</link><description><![CDATA[<p>The PS4 announcement, the Xbox 1, old LAN gaming, Transport Tycoon, early CD-ROM adventure games, dumping old games onto iOS, dial-up modems, and the annoyance of gaming occasionally on a modern console.</p>]]></description><itunes:subtitle>The PS4 announcement, the Xbox 1, old LAN gaming, Transport Tycoon, early CD-ROM adventure games, dumping old games onto iOS, dial-up modems, and the annoyance of gaming occasionally on a modern console. </itunes:subtitle></item><item><guid isPermaLink="false">513abd71e4b0fe58c655c105:513abd71e4b0fe58c655c111:513acac7e4b0009a8de57223</guid><pubDate>Thu, 07 Feb 2013 05:37:00 +0000</pubDate><title>1: iPhone Plus</title><itunes:title>iPhone Plus</itunes:title><itunes:episode>1</itunes:episode><itunes:author>ATP</itunes:author><itunes:duration>00:14:35</itunes:duration><enclosure url="https://traffic.libsyn.com/atpfm/atp1.mp3" length="7172216" type="audio/mpeg"/><link>https://atp.fm/1</link><description><![CDATA[<p>Speculation on what a bigger iPhone's screen might be and why.</p><p></p>]]></description><itunes:subtitle>Speculation on what a bigger iPhone's screen might be and why.</itunes:subtitle></item></channel></rss>
diff --git a/schema/testdata/pc-daringfireball.xml b/schema/testdata/pc-daringfireball.xml
new file mode 100644
index 0000000..7079225
--- /dev/null
+++ b/schema/testdata/pc-daringfireball.xml
@@ -0,0 +1,11296 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://www.rssboard.org/media-rss">
+ <channel>
+ <title>The Talk Show With John Gruber</title>
+ <description>The director’s commentary track for Daring Fireball. Long digressions on Apple, technology, design, movies, and more.</description>
+ <link>https://daringfireball.net/thetalkshow</link>
+ <language>en</language>
+ <lastBuildDate>Wed, 23 Nov 2022 21:13:20 EDT</lastBuildDate>
+ <itunes:new-feed-url>https://daringfireball.net/thetalkshow/rss</itunes:new-feed-url>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:owner>
+ <itunes:name>John Gruber</itunes:name>
+ <itunes:email>comments@daringfireball.net</itunes:email>
+ </itunes:owner>
+ <itunes:category text="Technology" />
+ <copyright>Copyright 2022 John Gruber</copyright>
+<!-- Latest -->
+ <item>
+ <title>363: ‘Deliberately Churned’, With Christina Warren</title>
+ <link>https://daringfireball.net/thetalkshow/2022/11/23/ep-363</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/11/23/ep-363</guid>
+ <pubDate>Wed, 23 Nov 2022 21:06:16 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-363-christina-warren.mp3" length="65091083" type="audio/mpeg" />
+ <itunes:duration>02:15:03</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Christina Warren returns to the show to talk about the drama at Disney, tumult at Twitter, and how the hell to score Taylor Swift tickets.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Christina Warren returns to the show to talk about the drama at Disney, tumult at Twitter, and how the hell to score Taylor Swift tickets.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="http://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://www.backblaze.com/thetalkshow">Backblaze</a>: Backblaze makes backing up and accessing your data astonishingly easy.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/film_girl">Christina Warren on Twitter</a>, a website that still exists at this writing.</li>
+<li><a href="https://www.vanityfair.com/hollywood/2022/11/the-disney-saga-did-you-honestly-think-bob-iger-would-stay-away">Bob Iger returns to Disney as CEO</a>.</li>
+<li>Yours truly: “<a href="https://daringfireball.net/2022/11/twitter_tumult">Twitter Tumult</a>”.</li>
+<li><a href="https://slate.com/technology/2022/11/elon-musk-twitter-code-fixation.html">Elon Musk asks engineers for weekly emails with code screenshots</a>.</li>
+<li>Vice: “<a href="https://www.vice.com/en/article/n7z5px/twitter-employees-on-visas-cant-just-quit">Twitter Employees on Visas Can’t Just Quit</a>”.</li>
+<li>Disney books:
+<ul><li><a href="https://www.amazon.com/DisneyWar-James-B-Stewart/dp/0743267095/?tag=df-amzn-20"><em>Disney War</em>, by James B. Stewart</a> — “The dramatic inside story of the downfall of Michael Eisner—Disney Chairman and CEO—and the scandals that drove America’s best-known entertainment company to civil war.”</li>
+<li><a href="https://www.amazon.com/Walt-Disney-Neal-Gabler-ebook/dp/B000MAH7N6//?tag=df-amzn-20"><em>Walt Disney</em>, by Neal Gabler</a> — “The definitive portrait of one of the most important cultural figures in American history.”</li></ul></li>
+<li>Speaking of James B. Stewart, his recent epic story on AT&amp;T’s Time Warner acquisition for The New York Times: “<a href="https://www.nytimes.com/2022/11/19/business/media/att-time-warner-deal.html">Was This $100 Billion Deal the Worst Merger Ever?</a>”.</li>
+<li><a href="https://puck.news/">Puck</a> — excellent new subscription Hollywood/media/Silicon Valley news site.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+
+<!-- /Latest -->
+ <item>
+ <title>362: ‘Grand Scale Foot-Shooting’, With Anil Dash</title>
+ <link>https://daringfireball.net/thetalkshow/2022/11/18/ep-362</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/11/18/ep-362</guid>
+ <pubDate>Fri, 18 Nov 2022 20:31:21 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-362-anil-dash.mp3" length="64816081" type="audio/mpeg" />
+ <itunes:duration>02:14:29</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest: Anil Dash. A little about last week’s U.S. midterm elections, and a lot about what’s going on at Twitter under Elon Musk.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest: Anil Dash. A little about last week’s U.S. midterm elections, and a lot about what’s going on at Twitter under Elon Musk.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="http://kolide.com/thetalkshow">Kolide</a>: The cross-platform endpoint security solution for teams that value privacy and transparency.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>“<a href="https://daringfireball.net/2022/11/twitter_tumult">Twitter Tumult</a>” — me, on what’s going on at Twitter.</li>
+<li><a href="https://twitterisgoinggreat.com">Twitter Is Going Great</a> — A rundown of everything during Twitter’s saga under Elon Musk.</li>
+<li><a href="https://glitch.com/~fedifinder">Fedifinder</a> — “Search Twitter names, bios, locations, URLs, and pinned Tweets for fediverse handles and URLs.” Nifty tool for anyone moving from Twitter to Mastodon or just trying Mastodon out.</li>
+<li><a href="https://glitch.com/@glitch/fediverse-of-madness">Fediverse of Madness</a> — a collection of Glitch apps related to the fediverse.</li>
+<li><a href="https://glitch.com/">Glitch</a>.</li>
+<li><a href="https://www.obama.org/democracy-forum-2022/">The Obama Foundation Democracy Forum</a>.</li>
+<li><a href="https://mastodon.cloud/@anildash/108085146713739440">Anil’s prescient Twitter prediction from back in April</a>.</li>
+<li><a href="https://anildash.com/">Anil’s blog</a>.</li>
+<li><a href="https://www.dahlialithwick.com/">Dahlia Lithwick</a>, SCOTUS columnist extraordinaire.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>361: ‘A Fit of Pique’, With Federico Viticci</title>
+ <link>https://daringfireball.net/thetalkshow/2022/10/31/ep-361</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/10/31/ep-361</guid>
+ <pubDate>Mon, 31 Oct 2022 21:40:33 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-361-federico-viticci.mp3" length="72211293" type="audio/mpeg" />
+ <itunes:duration>02:29:53</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Federico Viticci returns to the show to talk about iPads, Stage Manager, and Apple’s ill-considered foray into expanding ads in the App Store.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Federico Viticci returns to the show to talk about iPads, Stage Manager, and Apple’s ill-considered foray into expanding ads in the App Store.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="http://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="http://kolide.com/thetalkshow">Kolide</a>: Cross-platform endpoint security solution for teams that value privacy and transparency. <a href="https://honest.security">Check out our manifesto</a>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Tell us what you really think, Federico: “<a href="https://www.macstories.net/stories/stage-manager-ipados-16-1-review/">Stage Manager in iPadOS 16: At the Intersection of Bugs, Missing Features, and Flawed Design</a>”.</li>
+<li><a href="https://www.youtube.com/watch?v=CeElzJecWaA">Chris Lawley on Stage Manager</a>.</li>
+<li><a href="https://www.macstories.net/reviews/ipad-and-ipad-pro-review-2022/">Federico on the new iPads</a>.</li>
+<li><a href="https://daringfireball.net/2022/10/the_2022_ipad">Yours truly on the same new iPads</a>.</li>
+<li><a href="https://www.macstories.net/stories/thoughts-on-apples-march-9th-event/">Federico on attending his first Apple media event in person, back in 2015</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>360: ‘Neither Fish Nor Fowl’, With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2022/10/25/ep-360</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/10/25/ep-360</guid>
+ <pubDate>Tue, 25 Oct 2022 13:20:19 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-360-jason-snell.mp3" length="73166981" type="audio/mpeg" />
+ <itunes:duration>02:31:28</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show to talk about the new 10th-gen iPad and M2 iPads Pro.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show to talk about the new 10th-gen iPad and M2 iPads Pro.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get $100 credit.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Made for you. Promo code: <strong>thetalkshow</strong>.</li>
+<li><a href="https://www.backblaze.com/thetalkshow">Backblaze</a>: Backblaze makes backing up and accessing your data astonishingly easy.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/10/2022-ipad-and-ipad-pro-review-mixed-feelings/">Jason’s review of the new iPads</a>.</li>
+<li>Jason’s take on the iPad announcements: “<a href="https://sixcolors.com/post/2022/10/the-ipads-erratic-odyssey-continues/">The iPad’s Erratic Odyssey Continues</a>”.</li>
+<li>Yours truly’s take on the announcements last week: “<a href="https://daringfireball.net/2022/10/the_ipad_lineup_is_like_growing_out_its_bangs_or_something">The iPad Lineup Is, Like, Growing Out Its Bangs or Something and Looks a Little Weird Right Now, but Apple TV Has Been Going to the Gym and Looks Great</a>”.</li>
+<li><a href="https://www.apple.com/shop/product/HQ6Q2VC/A/logitech-crayon-for-ipad">New $70 Logitech Crayon</a>.</li>
+<li><a href="https://www.apple.com/shop/product/MQLU3AM/A/usb-c-to-apple-pencil-adapter">Apple’s $9 USB-C to Apple Pencil Adapter</a>.</li>
+<li><a href="https://www.apple.com/ipad-keyboards/">Apple’s growing array of iPad keyboards</a>.</li>
+<li><a href="https://www.macrumors.com/2022/04/29/emac-turns-20/">Apple’s eMac</a> — an iMac-like Mac with a CRT display for education that was introduced in 2002.</li>
+<li><a href="http://joe-steel.com/2022-10-21-With-or-Without-WiFi-and-Ethernet.html">Joe Rosensteel on the new Apple TV 4K hardware</a>.</li>
+<li><a href="https://www.theverge.com/23390726/matter-smart-home-faq-questions-answers">Good explainer on Matter from The Verge</a>.</li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1583463830004588544">Steven Troughton-Smith’s ideas for improving Stage Manager on iPadOS</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>359: ‘Big Booger Came After You’, With Merlin Mann</title>
+ <link>https://daringfireball.net/thetalkshow/2022/10/12/ep-359</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/10/12/ep-359</guid>
+ <pubDate>Wed, 12 Oct 2022 20:21:11 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-359-merlin-mann.mp3" length="47353676" type="audio/mpeg" />
+ <itunes:duration>01:37:43</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Merlin Mann returns to the show to talk about AI image generation (along with a few asides).</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Merlin Mann returns to the show to talk about AI image generation (along with a few asides).</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://alexweinstein.com/thetalkshow">Alex Weinstein</a>: Handmade music for picture.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/talkshow65">Hello Fresh</a>: America’s #1 meal kit.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://stability.ai/">Stable Diffusion</a>.
+<ul><li><a href="https://diffusionbee.com/">Diffusion Bee</a>: easily install and run on a Mac.</li></ul></li>
+<li><a href="https://www.midjourney.com/">Midjourney</a>.</li>
+<li><a href="https://github.com/merlinmann/wisdom/blob/master/wisdom.md">Merlin’s Wisdom Project</a>.</li>
+<li><em><a href="https://www.netflix.com/title/81287562">Monster: The Jeffrey Dahmer Story</a></em> on Netflix.</li>
+<li><em><a href="https://www.paramountplus.com/shows/the-offer/">The Offer</a></em> on Paramount+.</li>
+<li><a href="https://dobyfriday.com/">Do By Friday</a> — Merlin’s weekly challenge podcast with Alex Cox.</li>
+<li><a href="https://www.relay.fm/rd">Reconcilable Differences</a> — Merlin’s podcast with John Siracusa.</li>
+<li><a href="https://smile.amazon.com/gp/product/B000F35R00//?tag=df-amzn-20">Seki Edge Nail Clippers, made in Japan</a>. </li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>358: ‘Double-Digit Domains’, With Paul Kafasis</title>
+ <link>https://daringfireball.net/thetalkshow/2022/09/30/ep-358</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/09/30/ep-358</guid>
+ <pubDate>Fri, 30 Sep 2022 20:26:13 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-358-paul-kafasis.mp3" length="72590085" type="audio/mpeg" />
+ <itunes:duration>02:30:40</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Paul Kafasis returns to the show to talk about the iPhone 14 Pro, Apple Watch Ultra, AirPods Pro, and Rogue Amoeba’s 20th anniversary.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Paul Kafasis returns to the show to talk about the iPhone 14 Pro, Apple Watch Ultra, AirPods Pro, and Rogue Amoeba's 20th anniversary.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://retool.com/">Retool</a>: Build internal tools 10× faster.</li>
+<li><a href="http://indochino.com/">Indochino</a>: Made for you. Use promo code <strong>thetalkshow</strong> for $50 any purchase of $399 or more.</li>
+<li><a href="squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://shipstation.com/">ShipStation</a>: Shipping software for wherever you sell, however you ship. Promo code: <strong>thetalkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://weblog.rogueamoeba.com/2022/09/18/celebrate-rogue-amoebas-20th-anniversary/">Celebrate Rogue Amoeba’s 20th Anniversary</a>.
+<ul><li><a href="https://daringfireball.net/linked/2022/09/27/rogue-amoeba-turns-20">My link</a>.</li></ul></li>
+<li><a href="https://weblog.rogueamoeba.com/2022/09/09/the-design-of-audio-hijack-4/">The Design of Audio Hijack 4</a>.
+<ul><li><a href="https://daringfireball.net/linked/2022/09/27/the-design-of-audio-hijack-4">My link</a>.</li></ul></li>
+<li>Rogue Amoeba: “<a href="https://rogueamoeba.com/support/knowledgebase/?showArticle=MiscUpgradePolicy">Our Upgrade Philosophy</a>”.</li>
+<li><a href="https://daringfireball.net/linked/2022/09/29/airpods-pro-case-engravings">Custom-engraved AirPods Pro cases show up with the engraving on-screen in iOS</a>.</li>
+<li><a href="https://daringfireball.net/2022/09/apple_watch_ultra">Yours truly’s Apple Watch Ultra review</a>.</li>
+<li><a href="https://archive.jsonline.com/blogs/sports/207818001.html">Remembering “SportsCenter’s Dick Trickle”</a></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>357: ‘Fluent Cupertinoese’, With Nilay Patel</title>
+ <link>https://daringfireball.net/thetalkshow/2022/09/20/ep-357</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/09/20/ep-357</guid>
+ <pubDate>Tue, 20 Sep 2022 20:27:46 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-357-nilay-patel.mp3" length="93476112" type="audio/mpeg" />
+ <itunes:duration>03:14:11</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Nilay Patel returns to the show to talk about Apple’s “Far Out” event, the iPhones 14, and The Verge’s redesign.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Nilay Patel returns to the show to talk about Apple’s “Far Out” event, the iPhones 14, and The Verge’s redesign.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hullopillow.com/thetalkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="https://www.backblaze.com/thetalkshow">Backblaze</a>: Backblaze makes backing up and accessing your data astonishingly easy.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.theverge.com/23351948/apple-iphone-14-pro-review">Nilay's iPhone 14 Pro review for The Verge</a>.</li>
+<li><a href="https://daringfireball.net/2022/09/the_iphones_14_pro">Yours truly's iPhone 14 Pro review</a>.</li>
+<li>Nilay: "<a href="https://www.theverge.com/2022/9/13/23349876/the-verge-website-redesign-new-newsfeed-blogs-logo">Welcome to the New Verge</a>".</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>356: ‘An Unranted Rant’, With Rosemary Orchard</title>
+ <link>https://daringfireball.net/thetalkshow/2022/08/31/ep-356</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/08/31/ep-356</guid>
+ <pubDate>Wed, 31 Aug 2022 22:28:13 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-356-rosemary-orchard.mp3" length="63173036" type="audio/mpeg" />
+ <itunes:duration>02:11:03</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Rosemary Orchard joins the show to talk about her new book, “Take Control of Shortcuts”, and the state of automation on iOS and MacOS.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Rosemary Orchard joins the show to talk about her new book, <em><a href="https://www.takecontrolbooks.com/shortcuts/">Take Control of Shortcuts</a></em>, and the state of automation on iOS and MacOS.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://indochino.com/">Indochino</a>: Made for you. Promo code: <strong>thetalkshow</strong> for $50 off any purchase of $399 or more.</li>
+<li><a href="https://l.kolide.co/3mZ9TyO">Kolide</a>: An endpoint security solution for teams that want to meet their compliance goals without sacrificing privacy.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://rosemaryorchard.com/">Rosemary’s blog</a>.</li>
+<li><a href="https://www.relay.fm/automators">Automators</a> — Rosemary’s podcast cohosted with David Sparks.</li>
+<li><a href="https://nestedfolderspodcast.com">Nested Folders</a> — Rosemary’s productivity podcast, cohosted with Scotty Jackson.</li>
+<li><a href="https://twit.tv/shows/ios-today">iOS Today at TWiT</a>.</li>
+<li><a href="http://www.dannyg.com/">Author Danny Goodman</a>, whose <em>Complete HyperCard Handbook</em> sold 650,000 copies in the late 1980s.</li>
+<li>“<a href="https://www.youtube.com/watch?v=S3RNqcc0xWw">The Right Way to Pop Your AirPods Out of the Case</a>” — yours truly YouTubing back in 2017.</li>
+<li>“<a href="https://www.youtube.com/watch?v=oijEsqT2QKQ">Life finds a way</a>” — Ian Malcom in <em>Jurassic Park</em>.</li>
+<li><a href="https://www.pushcut.io/">Pushcut</a> — “Triggers, notifications, and widgets for Shortcuts, Home, and online automation”.</li>
+<li><a href="https://widgetpack.app/">WidgetPack</a> — “Create your own widgets with Shortcuts.”</li>
+<li><a href="https://matthewcassinelli.com/">Matthew Cassenelli</a>, Shortcuts expert and author.</li>
+<li><a href="https://www.youtube.com/channel/UC8raOG7HXJoCUygx219fU4A">Chris Lawley’s YouTube productivity tips channel</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>355: ‘The Creaturest of Habits’, With Daniel Jalkut</title>
+ <link>https://daringfireball.net/thetalkshow/2022/08/26/ep-355</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/08/26/ep-355</guid>
+ <pubDate>Fri, 26 Aug 2022 13:47:50 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-355-daniel-jalkut.mp3" length="72313031" type="audio/mpeg" />
+ <itunes:duration>02:30:06</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Daniel Jalkut returns to the show. Topics include a serious discussion about CSAM detection at major cloud storage providers and messaging services. Also, a deep dive regarding the new iOS-UI-style rewrite of System Settings on the still-in-beta MacOS 13 Ventura, and thoughts on SwiftUI in general.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Daniel Jalkut returns to the show. Topics include a serious discussion about CSAM detection at major cloud storage providers and messaging services. Also, a deep dive regarding the new iOS-UI-style rewrite of System Settings on the still-in-beta MacOS 13 Ventura, and thoughts on SwiftUI in general.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://www.revenuecat.com">RevenueCat</a>: In-app subscriptions made easy.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Kashmir Hill's report for the NYT: "<a href="https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html">A Dad Took Photos of His Naked Toddler for the Doctor. Google Flagged Him as a Criminal.</a>"
+<ul><li><a href="https://daringfireball.net/linked/2022/08/22/hill-csam">My take on the implications of that story</a>.</li></ul></li>
+<li>System Settings in MacOS 13 Ventura:
+<ul><li>Me, at DF: "<a href="https://daringfireball.net/linked/2022/08/15/ventura-system-settings-tonsky">The Fit and Finish of the All-New System Settings on MacOS 13 Ventura</a>".</li>
+<li>Jalkut, at his Bitsplitting blog: "<a href="https://bitsplitting.org/2022/08/16/disciplined-innovation/">Disciplined Innovation</a>".</li></ul></li>
+<li><a href="https://twitter.com/danielpunkass/status/1561432665500356610">MarsEdit 5 will support Markdown syntax coloring</a>. Finally.</li>
+<li><a href="https://redsweater.com/">Red Sweater Software</a>.</li>
+<li><a href="https://coreint.org/">Core Intuition</a>, the podcast Jalkut cohosts with Manton Reece.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>354: ‘Get Me to the Fainting Couch’, With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2022/08/18/ep-354</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/08/18/ep-354</guid>
+ <pubDate>Thu, 18 Aug 2022 12:13:34 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-354-john-moltz.mp3" length="72727878" type="audio/mpeg" ></enclosure>
+ <itunes:duration>02:30:58</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest John Moltz returns to the show to talk about Center Stage, Stage Manager, and all the other stages.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest John Moltz returns to the show to talk about Center Stage, Stage Manager, and all the other stages.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation</li>
+<li><a href="https://ShipStation.com/">ShipStation</a>: Shipping software for wherever you sell, however you ship.</li>
+</ul>
+
+<p>Links:</p>
+
+
+<ul>
+<li><a href="https://twitter.com/nikitonsky/status/1557357661171204098">Niki Tonsky on Twitter on MacOS 13 Settings</a>.</li>
+<li><a href="https://youtu.be/WfnvsepVJC0?t=2740">Craig Federighi on Stage Manager at this year's The Talk Show Live From WWDC</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+
+ <item>
+ <title>353: ‘Shop Different’, With Michael Steeber</title>
+ <link>https://daringfireball.net/thetalkshow/2022/07/31/ep-353</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/07/31/ep-353</guid>
+ <pubDate>Sun, 31 Jul 2022 23:40:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-353-michael-steeber.mp3" length="59850812" type="audio/mpeg" />
+ <itunes:duration>02:04:08</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Michael Steeber joins the show to discuss his new project, The Apple Store Time Machine — an intricately-detailed explorable walkthrough of four of Apple’s original retail stores.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Michael Steeber joins the show to discuss his new project, The Apple Store Time Machine — an intricately-detailed explorable walkthrough of four of Apple’s original retail stores.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://retool.com/">Retool</a>: Build internal tools 10× faster.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://hellofresh.com/talkshow16">Hello Fresh</a>: America’s #1 meal kit.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://departmentmap.store/">Michael Steeber’s homepage</a>.</li>
+<li><a href="https://michaelsteeber.com/timemachine">The App Store Time Machine</a>.</li>
+<li><a href="https://9to5mac.com/2021/05/19/20-years-apple-retail-stores-tysons-corner-augmented-reality/">Steeber’s first crack at the idea of recreating original Apple Stores virtually</a>, this one using ARKit last year.</li>
+<li><a href="https://www.getrevue.co/profile/michaelsteeber">Tabletops</a>, Steeber’s newsletter.</li>
+<li>Steeber’s <a href="https://departmentmap.store/glossary">Apple Store Glossary</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=z7IaRomah6k">A 4-minute video from the grand opening of the Glendale Galleria Apple Store on 19 May 2001</a>. Apple opened its first two stores that day — in Glendale, California and Tysons, Virginia. Customers waited for three hours to enter the store and were happy to do so.</li>
+<li><a href="https://commons.wikimedia.org/wiki/File:Apple_Store_sign_in_Garamond_%2838223069771%29.jpg">Signage outside the Lincoln Park Apple Store in Chicago</a>, with “Apple Store” anachronistically set in Apple Garamond.</li>
+<li><a href="https://www.apple.com/sg/retail/marinabaysands/">Apple Marina Bay Sands</a>, in Singapore. Just gorgeous.</li>
+<li><a href="https://www.apple.com/retail/carnegielibrary/">Apple Carnegie Library</a>, in Washington, DC.</li>
+<li><a href="https://www.apple.com/retail/towertheatre/">Apple Tower Theatre</a>, in Los Angeles.</li>
+<li><a href="https://www.apple.com/retail/walnutstreet/">Apple Walnut Street</a>, in always-sunny Philadelphia.
+<ul><li><a href="https://nypost.com/2020/06/02/video-shows-looters-ransacking-storefronts-in-philadelphia/">Walnut Street ransacked</a> and <a href="https://www.youtube.com/watch?v=dJ4_EYTGwUM">burned</a> during the George Floyd riots on 30 May 2020.</li>
+<li><a href="https://www.instagram.com/p/CBZMfOeFKnW/?igshid=YmMyMTA2M2Y=">My Instagram photo of the employee-painted mural coming to life</a> on the boarded-up Walnut Street Apple Store, 13 June 2020. (<a href="https://daringfireball.net/misc/2020/06/apple-store-walnut-mural-progress.jpeg">Original JPEG</a>, for posterity after Facebook collapses.)</li>
+<li><a href="https://daringfireball.net/misc/2020/06/apple-store-walnut-mural-finished.jpeg">The finished mural</a>.</li></ul></li>
+<li><a href="https://www.computerworld.com/article/2534312/the--640k--quote-won-t-go-away----but-did-gates-really-say-it-.html">Bill Gates’s apparently apocryphal quote that “640K ought to be enough for anybody.”</a></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>352: ‘I’ve Kissed That Mouse’, With Marco Arment</title>
+ <link>https://daringfireball.net/thetalkshow/2022/07/25/ep-352</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/07/25/ep-352</guid>
+ <pubDate>Mon, 25 Jul 2022 21:00:38 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-352-marco-arment.mp3" length="91855725" type="audio/mpeg" />
+ <itunes:duration>03:08:48</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Marco Arment returns to the show to talk about the new M2 MacBook Air and stuff.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Marco Arment returns to the show to talk about the new M2 MacBook Air and stuff.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="https://shipstation.com">ShipStation</a>: Shipping software for wherever you sell, however you ship. 60-day free trial with code <strong>thetalkshow</strong>.</li>
+<li><a href="http://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://hopwtr.com/">Hop Wtr</a>.</li>
+<li><a href="https://hoplark.com/">Hoplark</a>.</li>
+<li><a href="https://daringfireball.net/2022/07/the_2022_13-inch_macbook_air">My review of the new M2 MacBook Air</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>351: ‘Here You Go, Cheapskate’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2022/06/30/ep-351</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/06/30/ep-351</guid>
+ <pubDate>Thu, 30 Jun 2022 23:30:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-351-rene-ritchie.mp3" length="59056708" type="audio/mpeg" />
+ <itunes:duration>02:02:29</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show for more on Apple’s announcements from WWDC 2022, locking devices out of Face ID and Touch ID, passkeys, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show for more on Apple’s announcements from WWDC 2022, locking devices out of Face ID and Touch ID, passkeys, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://kolide.com/thetalkshow">Kolide</a>: Endpoint security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=TLbMWMrawnQ">Rene’s review of the new M2 13-inch MacBook Pro</a>.</li>
+<li><a href="https://www.macrumors.com/2022/06/27/m2-macbook-pro-256gb-ssd-real-world-tests/">The M2 MacBook Pro with 256 GB SSD has slower read and write performance than any M1 Mac</a>, but only the 256 GB config.</li>
+<li>Daring Fireball: “<a href="https://daringfireball.net/2022/06/require_a_passcode_to_unlock_your_iphone">How to Temporarily Disable Face ID or Touch ID, and Require a Passcode to Unlock Your iPhone or iPad</a>”.</li>
+<li><a href="https://www.youtube.com/watch?v=p-8l98O9lhw">Rene’s deep dive on Passkeys</a>.</li>
+<li><a href="https://tidbits.com/2022/06/27/why-passkeys-will-be-simpler-and-more-secure-than-passwords/">Glenn Fleishman’s comprehensive piece on Passkeys for TidBITS</a>.</li>
+<li><a href="http://atulgawande.com/book/the-checklist-manifesto/">Atul Gawande’s <em>The Checklist Manifesto</em></a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>350: ‘Your Sack of Meat With Teeth’, With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2022/06/27/ep-350</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/06/27/ep-350</guid>
+ <pubDate>Mon, 27 Jun 2022 22:25:46 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-350-jason-snell.mp3" length="74162669" type="audio/mpeg" />
+ <itunes:duration>02:33:57</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show to discuss the biggest threads from WWDC 2022 — in particular, Stage Manager and the M2 MacBook Air and 13-inch MacBook “Pro”. No sports talk (unless you count soccer).</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show to discuss the biggest threads from WWDC 2022 — in particular, Stage Manager and the M2 MacBook Air and 13-inch MacBook “Pro”. No sports talk (unless you count soccer).</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.revenuecat.com">RevenueCat</a>: In-app subscriptions made easy.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://kolide.com/thetalkshow">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2022/06/the_talk_show_live_from_wwdc_2022">The Talk Show Live From WWDC 2022</a>. Like and subscribe, baby.</li>
+<li><a href="https://twitter.com/gruber/status/1539774646396063744">Twitter thread</a> pondering whether reaction to iPadOS’s M1-or-better requirement for Stage Manager would have gotten a different reaction from owners of older iPads if the feature had debuted with the M1 iPad Pros last year.</li>
+<li><a href="https://sixcolors.com/post/2022/06/13-inch-m2-macbook-pro-review-the-future-wrapped-in-the-past/">Jason’s review of the new M2 13-inch MacBook Pro</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2022/06/apple-and-mls-to-present-all-mls-matches-for-10-years-beginning-in-2023/">Apple’s announcement of its 10-year Major League Soccer streaming deal</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>349: ‘Live From WWDC 2022’, With Craig Federighi and Greg Joswiak</title>
+ <link>https://daringfireball.net/thetalkshow/2022/06/13/ep-349</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/06/13/ep-349</guid>
+ <pubDate>Tue, 7 Jun 2022 15:30:00 PDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-349-live-from-wwdc-2022.mp3" length="41417403" type="audio/mpeg" />
+ <itunes:duration>01:25:12</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guests Craig Federighi and Greg Joswiak join me to discuss the news from WWDC 2022, in front of a live audience at the new Apple Developer Center at Apple Park.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guests Craig Federighi and Greg Joswiak join me to discuss the news from WWDC 2022, in front of a live audience at the new Apple Developer Center at Apple Park.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://macstadium.com/thetalkshow">MacStadium</a>: Private Mac clouds built by developers, for developers.</li>
+<li><a href="https://atoms.com/df">Atoms</a>: The ideal everyday shoe.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://youtu.be/WfnvsepVJC0">This episode, in video, on YouTube</a>.</li>
+<li><a href="https://www.apple.com/apple-events/">The WWDC 2022 Keynote</a>.</li>
+<li><a href="https://poshmark.com/listing/Vintage-early-90s-computers-are-fun-and-useful-6163c9e17ec30cfd9b60b150">“Computers Are Fun and Useful”</a></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+
+ </content:encoded>
+ </item>
+ <item>
+ <title>348: ‘Joe Biden’s Gum’’, With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2022/05/31/ep-348</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/05/31/ep-348</guid>
+ <pubDate>Tue, 31 May 2022 21:21:39 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/forcedn/daringfireball/thetalkshow-348-john-moltz.mp3" length="4839" type="audio/mpeg"></enclosure>
+ <itunes:duration>01:20:38</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest: John Moltz. Very special topics: flat Apple Watches, USB-C iPhones, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest: John Moltz. Very special topics: flat Apple Watches, USB-C iPhones, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://alexweinstein.com/thetalkshow">Alex Weinstein</a>: We’re all storytellers. And as a storyteller, you know that music is one of your essential tools.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://kolide.com/thetalkshow">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+<li><a href="https://mackweldon.com/thetalkshowpod">Mack Weldon</a>: Radically-efficient wardrobing.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+ ]]>
+
+ </content:encoded>
+ </item>
+ <item>
+ <title>347: ‘After Steve’, With Tripp Mickle</title>
+ <link>https://daringfireball.net/thetalkshow/2022/05/15/ep-347</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/05/15/ep-347</guid>
+ <pubDate>Sun, 15 May 2022 15:05:03 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-347-tripp-mickle.mp3" length="61120911" type="audio/mpeg" />
+ <itunes:duration>02:06:47</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Tripp Mickle joins the show to talk about his new book, *After Steve*, reporting on the last decade at Apple.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Tripp Mickle joins the show to talk about his new book, <em>After Steve</em>, reporting on the last decade at Apple.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://kolide.com/thetalkshow">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><em><a href="https://www.harpercollins.com/products/after-steve-tripp-mickle?variant=39651232972834">After Steve</a></em>.
+<ul><li><a href="https://amzn.to/3FQGzn2">Amazon</a>.</li>
+<li><a href="https://bookshop.org/books/after-steve-how-apple-became-a-trillion-dollar-company-and-lost-its-soul/9780063009813">Bookshop</a>.</li>
+<li><a href="https://books.apple.com/us/book/after-steve/id1579306914">Apple Books</a>.</li></ul></li>
+<li>“<a href="https://www.nytimes.com/2022/05/01/technology/jony-ive-apple-design.html">How Technocrats Triumphed at Apple</a>” — excerpt from <em>After Steve</em> that ran in The New York Times on May 1.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>346: ‘Like Neo Dodging Bullets’, With Zach Gage</title>
+ <link>https://daringfireball.net/thetalkshow/2022/05/09/ep-346</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/05/09/ep-346</guid>
+ <pubDate>Mon, 9 May 2022 15:50:44 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-346-zach-gage.mp3" length="71470639" type="audio/mpeg" />
+ <itunes:duration>02:28:20</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Zach Gage joins the show to talk about game design and creativity, including his new game Knotwords.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Zach Gage joins the show to talk about game design and creativity, including his new game <a href="https://playknotwords.com/">Knotwords</a>.</p>
+
+<p><a href="https://daringfireball.net/thetalkshow/2022/05/09/ep-346#transcript">Transcript</a>.</p>
+
+<h2 id="sponsors">Sponsors</h2>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://kolide.com/thetalkshow">Kolide</a>: Endpoint Security for teams that Slack. Try Kolide for free today; no credit card required.</li>
+</ul>
+
+<h2 id="links">Links</h2>
+
+<ul>
+<li><a href="https://playknotwords.com/">Knotwords</a>.</li>
+<li><a href="http://stfj.net/">Zach Gage’s portfolio website</a>, with <a href="http://stfj.net/index2.php">a full list of games</a>.</li>
+<li><a href="http://www.reallybadchess.com/">Really Bad Chess</a>, which is actually, of course, really good.</li>
+<li><a href="http://apps.stfj.net/synthPond/">SynthPod, Zach’s first iPhone app</a>.</li>
+<li><a href="https://www.mackiev.com/hyperstudio/">HyperStudio</a> — a classic developer tool like HyperCard, but with color support.</li>
+<li><a href="https://en.wikipedia.org/wiki/Stagecast_Creator">Apple’s original “Cocoa” — Stagecast Creator/KidSim</a>.</li>
+<li><a href="https://www.printmag.com/information-design/open-frameworks/">Zach Lieberman’s OpenFrameworks project from 2010</a>.</li>
+<li><a href="https://www.macrumors.com/2007/08/13/lights-off-first-native-iphone-game/">Lights Off</a> — the first native iPhone game, nearly a year before the App Store. (I mistakenly called it “Lights Out” during the show.)</li>
+<li><a href="https://blog.iconfactory.com">CandyBar</a> — Mac utility for customizing icons, including, back in the day, the icons for the system itself.</li>
+<li><a href="https://daringfireball.net/linked/2014/02/10/threes">Threes</a>, a great puzzle game of iOS from 2014. (<a href="https://apps.apple.com/us/app/threes/id779157948">App Store link</a>.)</li>
+<li><a href="https://apps.apple.com/us/app/2048/id840919914">2048</a>, a free Threes knockoff.</li>
+<li><a href="https://www.amazon.com/Texas-Instruments-TI-83-Graphing-Calculator/dp/B00001N2QU">Texas Instruments TI-83 Graphing Calculator</a>, and <a href="https://www.ticalc.org/pub/83plus/basic/games/">games written for it</a>.</li>
+<li><a href="https://www.lexaloffle.com/pico-8.php">PICO-8 fantasy console</a>.</li>
+<li><a href="https://play.date/pulp/">Playdate Pulp</a>, and <a href="https://bitsy.org/">Bitsy</a>, Pulp’s inspiration.</li>
+<li><a href="https://www.nga.gov/learn/teachers/lessons-activities/new-angles/sol-lewitt.html">Sol LeWitt, conceptual artist</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>345: ‘A Fake Crank on the Web’, With Michael Simmons</title>
+ <link>https://daringfireball.net/thetalkshow/2022/04/30/ep-345</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/04/30/ep-345</guid>
+ <pubDate>Sat, 30 Apr 2022 23:53:36 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-345-michael-simmons.mp3" length="51779596" type="audio/mpeg" />
+ <itunes:duration>01:47:19</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Michael Simmons returns to the show to talk about the Studio Display's camera (and this week's beta firmware update to tweak its quality), how things have gone two years into Flexibits' move to subscription pricing for Fantastical and Cardhop, and Panic's now-shipping Playdate.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Michael Simmons returns to the show to talk about the Studio Display’s camera (and this week’s beta firmware update to tweak its quality), how things have gone two years into Flexibits’ move to subscription pricing for Fantastical and Cardhop, and Panic’s now-shipping Playdate.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://retool.com">Retool</a>: Build internal tools 10x faster.</li>
+<li><a href="https://iodyne.com">Iodyne</a>: Introducing the all-new Pro Data.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Flexibits:
+<ul><li><a href="https://flexibits.com/fantastical">Fantastical</a>.</li>
+<li><a href="https://flexibits.com/cardhop">Cardhop</a>.</li>
+<li><a href="https://daringfireball.net/linked/2022/02/15/fantastical-snell">Daring Fireball: “Fantastical Adds Web-Based Scheduling Features”</a>.</li>
+<li><a href="https://sixcolors.com/post/2022/02/fantastical-update-adds-cloud-based-scheduling-features/">Jason Snell: “Fantastical Update Adds Cloud-Based Scheduling Features”</a>.</li></ul></li>
+<li><a href="https://play.date/">Playdate</a>:
+<ul><li><a href="https://play.date/pulp/">Playdate Pulp — fun and surprisingly powerful web-based game IDE</a>.</li>
+<li><a href="https://play.date/dev/">Playdate C and Lua SDKs</a>.</li></ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Pinball_Construction_Set">Pinball Construction Set</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>344: ‘Devastation, Pessimism, and Rage’, With Glenn Fleishman</title>
+ <link>https://daringfireball.net/thetalkshow/2022/04/26/ep-344</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/04/26/ep-344</guid>
+ <pubDate>Tue, 26 Apr 2022 18:53:01 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-344-glenn-fleishman.mp3" length="48920838" type="audio/mpeg" />
+ <itunes:duration>01:41:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Glenn Fleishman returns to the show to talk about Elon Musk’s impending acquisition of Twitter, Apple’s credibility problem when arguing against being required to allow sideloading on iOS, and Glenn’s new (and much-needed) book, “Take Control of Untangling Connections”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Glenn Fleishman returns to the show to talk about Elon Musk's impending acquisition of Twitter, Apple's credibility problem when arguing against being required to allow sideloading on iOS, and Glenn's new (and much-needed) book, <em><a href="https://www.takecontrolbooks.com/untangling/">Take Control of Untangling Connections</a></em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://hellofresh.com/talkshow16">Hello Fresh</a>: America’s #1 meal kit.</li>
+<li><a href="https://mackweldon.com/thetalkshowpod">Mack Weldon</a>: Radically-efficient wardrobing.</li>
+</ul>
+
+<p>Links:</p>
+
+
+<ul>
+<li>“<a href="https://www.takecontrolbooks.com/untangling/">Take Control of Untangling Connections</a>” — Glenn’s new $10 book that explains everything there is to know about USB-C connectors and ports and adapters.
+<ul><li><a href="http://glenn.fun/">Glenn’s personal website</a>, with a fun new URL.</li></ul></li>
+<li><a href="https://www.techmeme.com/220425/p17#a220425p17">Elon Musk is <em>probably</em> going to buy Twitter and take it private</a>.</li>
+<li><a href="https://www.bloomberg.com/opinion/articles/2022-04-26/elon-got-his-deal">Matt Levine’s excellent Money Stuff column/newsletter for Bloomberg</a>.</li>
+<li><a href="https://www.garbageday.email/">Ryan Broderick’s Garbage Day, another outstanding email newsletter/column</a>.</li>
+<li>Apple Newsroom: “Apple TV+ Partners With Idris Elba on New Thriller ‘Hijack’”.
+<ul><li><a href="https://daringfireball.net/linked/2022/04/26/elba-tv-plus-hijack">My quip</a>.</li></ul></li>
+<li><a href="https://www.macrumors.com/2022/04/12/tim-cook-global-privacy-summit/">Tim Cook’s speech stating Apple’s opposition to mandatory sideloading</a>.
+<ul><li><a href="https://twitter.com/samfbiddle/status/1513953159730786304">Sam Biddle (of The Intercept)’s response</a>.</li>
+<li><a href="https://twitter.com/matthewstoller/status/1513941334666665986">Matt Stoller’s response, which is even more deeply cynical than Biddle’s</a>.</li></ul></li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>343: ‘Fussy Typography Improvements’, With Paul Kafasis</title>
+ <link>https://daringfireball.net/thetalkshow/2022/04/15/ep-343</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/04/15/ep-343</guid>
+ <pubDate>Fri, 15 Apr 2022 18:30:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-343-paul-kafasis.mp3" length="79561616" type="audio/mpeg" />
+ <itunes:duration>02:45:12</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Paul Kafasis returns to the show to talk about Friday Night Baseball, Rogue Amoeba’s new Audio Hijack 4 release, and a bit of speculation on WWDC.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Paul Kafasis returns to the show to talk about Friday Night Baseball, Rogue Amoeba’s new Audio Hijack 4 release, and a bit of speculation on WWDC.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://getdrafts.com/thetalkshow">Drafts</a>: Where text starts. Special 10th anniversary offer: get Drafts Pro for just $4.99 for the first year. The whole year. Seriously.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://weblog.rogueamoeba.com/2022/03/31/audio-hijack-4-has-arrived/">Audio Hijack 4</a>.</li>
+<li><a href="https://rogueamoeba.com/support/knowledgebase/?showArticle=AH-Scripting-Center">Audio Hijack 4 Scripting Center — documentation, how-tos, and examples</a>.</li>
+<li><a href="https://sixcolors.com/post/2022/04/apples-friday-night-baseball-debuts/">Jason Snell’s first impressions of “Friday Night Baseball”</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Chris_Young_(outfielder)#Sign_stealing_accusations">“Friday Night Baseball” commentator Chris Young’s Wikipedia page</a>, with details on the sign-stealing-via-Apple-Watch scheme he devised while playing for the Yankees and Red Sox.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>342: ‘Doggy Lake’, With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2022/03/31/ep-342</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/03/31/ep-342</guid>
+ <pubDate>Thu, 31 Mar 2022 22:50:35 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-342-matthew-panzarino.mp3" length="59678245" type="audio/mpeg" />
+ <itunes:duration>02:03:46</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show to talk about Apple's new Mac Studio and Studio Display.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show to talk about Apple's new Mac Studio and Studio Display.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://www.backblaze.com/thetalkshow">Backblaze</a>: Backblaze makes backing up and accessing your data astonishingly easy.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://techcrunch.com/2022/03/17/apple-execs-on-developing-mac-studio-and-studio-display-for-the-other-pros/">Panzarino’s interview with Apple execs Tom Boger, Shelly Goldberg, and Xander Soren, on the thinking behind the Mac Studio and Studio Display</a>.</li>
+<li><a href="https://www.techmeme.com/220317/p11#a220317p11">TechMeme roundup of Studio Display and Mac Studio Reviews</a>.</li>
+<li><a href="https://letterboxd.com/film/xxx/">Vin Diesel’s masterpiece, “xXx”</a>.
+<ul><li><a href="https://memes.getyarn.io/yarn-clip/1bb36acb-1f89-49e4-b1b4-a1c7aa135f43">“I want all that, in here.”</a></li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>341: ‘A Cold Glass in Hell’, With Casey Liss</title>
+ <link>https://daringfireball.net/thetalkshow/2022/03/26/ep-341</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/03/26/ep-341</guid>
+ <pubDate>Sat, 26 Mar 2022 22:39:43 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-341-casey-liss.mp3" length="69075504" type="audio/mpeg" />
+ <itunes:duration>02:23:21</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Casey Liss joins the show to talk about Apple's new Studio Display and what makes a good martini.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Casey Liss joins the show to talk about Apple's new Studio Display and what makes a good martini.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://remote.com/thetalkshow">Remote</a>: Global HR solutions for distributed teams.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Studio Display:
+<ul><li><a href="https://www.caseyliss.com/2021/12/7/monitor-liss">Casey’s summary of the state of external retina displays in December 2021</a>.</li>
+<li><a href="https://daringfireball.net/2022/03/the_apple_studio_display">My Review of the Apple Studio Display</a>.</li>
+<li><a href="https://techcrunch.com/2022/03/17/apple-execs-on-developing-mac-studio-and-studio-display-for-the-other-pros/">Matthew Panzarino: “Apple Execs on Developing Mac Studio and Studio Display for the Other Pros”</a>.</li>
+<li><a href="https://www.techmeme.com/220317/p11#a220317p11">TechMeme roundup of Studio Display and Mac Studio Reviews</a>.</li></ul></li>
+<li>Apple’s <a href="https://www.apple.com/shop/product/MQ4H2AM/A/thunderbolt-3-usb%E2%80%91c-cable-08-m">$40 0.8m Thunderbolt 3 cable</a> and <a href="https://www.apple.com/shop/product/MWP02AM/A/thunderbolt-4-pro-cable-3-m">$160 3m Thunderbolt 4 cable</a>.</li>
+<li>MaskerAid:
+<ul><li><a href="https://www.caseyliss.com/2022/3/3/maskeraid">Announcing MaskerAid</a>.</li>
+<li><a href="https://www.caseyliss.com/2022/3/4/maskeraid-follow-up">MaskerAid Follow-Up</a>.</li>
+<li><a href="https://apps.apple.com/us/app/maskeraid/id1590163828">MaskerAid on the App Store</a>.</li></ul></li>
+<li><a href="http://www.rdwarf.com/users/mink/martinifaq.html">The Martini FAQ, by Brad Gadberry</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>340: ‘Billionaires Have Beefs’, With Tom Watson and Daniel Agee</title>
+ <link>https://daringfireball.net/thetalkshow/2022/03/09/ep-340</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/03/09/ep-340</guid>
+ <pubDate>Wed, 9 Mar 2022 16:35:24 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-340-glass.mp3" length="57401669" type="audio/mpeg" />
+ <itunes:duration>01:59:02</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guests Tom Watson and Daniel Agee join the show to talk about Glass, their upstart photo sharing app and community.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guests Tom Watson and Daniel Agee join the show to talk about Glass, their upstart photo sharing app and community.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/thetalkshowpod">Mack Weldon</a>: Radically-efficient wardrobing.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://glass.photo/">Glass on the web</a>.</li>
+<li><a href="https://glass.photo/app/">Glass on the App Store</a>: “No ads, no algorithms.”
+<ul><li><a href="https://apps.apple.com/redeem/?ctx=offercodes&amp;id=1528446339&amp;code=TALKSHOW">Special link, just for listeners of the show, for one free month on a yearly subscription</a>.</li></ul></li>
+<li><a href="https://twitter.com/mosseri/status/1498046814288633857">Tweet thread between Marques Brownlee and Adam Mosseri</a> on the lack of an iPad app for Instagram.</li>
+<li><a href="https://twitter.com/aljvd1/status/1494988438168383493">Image viewing comparison between Glass and Instagram</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>339: ‘2006: Hard Work’, With Ken Kocienda</title>
+ <link>https://daringfireball.net/thetalkshow/2022/02/28/ep-339</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/02/28/ep-339</guid>
+ <pubDate>Mon, 28 Feb 2022 23:53:14 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-339-ken-kocienda.mp3" length="69015814" type="audio/mpeg" />
+ <itunes:duration>02:23:28</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ken Kocienda joins the show to talk about his years at Apple and the creation of the original iPhone.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ken Kocienda, author of <em><a href="http://creativeselection.io/">Creative Selection</a></em>, joins the show to talk about his years at Apple and the creation of the original iPhone.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://remote.com/thetalkshow">Remote</a>: Global HR Solutions for distributed teams.</li>
+<li><a href="https://retool.com/">Retool</a>: Build internal tools 10× faster.</li>
+<li><a href="squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/up-spell-by-up-games/id1531758067">Up Spell</a> — Ken’s iOS word game.</li>
+<li><a href="https://twitter.com/kocienda/status/880451736049139712">“Wallaby” iPhone prototype hardware</a>.</li>
+<li><a href="https://photos5.appleinsider.com/gallery/22813-28064-SJquote-xl.jpg">Steve Jobs’s quote on the wall</a> outside Town Hall at Infinite Loop: “If you do something and it turns out pretty good, then you should go do something else wonderful, not dwell on for it too long. Just figure out what’s next.”</li>
+<li><a href="https://kimmalonescott.com/">Kim Scott’s books</a>: <em>Radical Candor</em> and <em>Just Work</em>.</li>
+<li><a href="https://daringfireball.net/2017/08/df_15">DF’s 15-year anniversary post</a>, with word counts.</li>
+<li><a href="https://bookshop.org/a/56320/9781982159375">Stephen King’s <em>On Writing</em></a>.</li>
+<li>Andy Hertzfeld’s history of the original Mac:
+<ul><li><a href="https://www.folklore.org/">Folklore.org</a></li>
+<li><a href="https://bookshop.org/a/56320/9781449316242"><em>Revolution in the Valley</em></a></li></ul></li>
+<li><a href="https://hu.ma.ne/">Humane</a> — The totally secret startup where Ken is now working.</li>
+<li><a href="https://hu.ma.ne/jobs">Job openings at Humane</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>338: ‘That’ll Pivot His Tables’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2022/02/25/ep-338</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/02/25/ep-338</guid>
+ <pubDate>Fri, 25 Feb 2022 22:27:35 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-338-rene-ritchie.mp3" length="58831615" type="audio/mpeg" />
+ <itunes:duration>02:02:01</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show to talk about unwanted AirTag tracking, and what we expect from Apple’s rumored March product event.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show to talk about unwanted AirTag tracking, and what we expect from Apple’s rumored March product event.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://support.apple.com/en-us/HT207705">Apple Support: “Set up home theater audio with HomePod mini or HomePod and Apple TV 4K”</a>.</li>
+<li>AirTags and Stalking:
+<ul><li><a href="https://www.nytimes.com/2022/02/11/technology/airtags-gps-surveillance.html">Kashmir Hill’s NYT story on tracker accuracy, based on using three brands of trackers to follow her husband</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2022/02/an-update-on-airtag-and-unwanted-tracking">Apple Newsroom: “An Update on AirTag and Unwanted Tracking”</a>.</li>
+<li><a href="https://daringfireball.net/linked/2022/02/10/apple-airtags-update">My take</a>.</li>
+<li><a href="https://reneritchie.net/surprise-new-airtag-anti-stalking-features/">Rene’s take</a>.</li></ul></li>
+<li><a href="https://www.cultofmac.com/414720/how-to-keep-stalkers-from-tracking-you-on-instagram/">2016 Cult of Mac story on stalking via location embedded in Instagram photos</a>.</li>
+<li><a href="https://www.cultofmac.com/766117/apple-spills-realityos-again/">Apple leaks “realityOS” name, again</a>.</li>
+<li><a href="https://www.macrumors.com/2021/06/24/reliable-leaker-kang-hit-with-warning/">MacRumors: “Reliable Leaker Known as ‘Kang’ Hit With Warning From Apple”</a>.</li>
+<li><a href="https://www.bloomberg.com/news/newsletters/2022-02-20/when-will-apple-aapl-launch-a-new-macbook-air-macbook-pro-imac-pro-in-2022-kzvdtgri">Mark Gurman’s February 20 “Power On” column on Apple’s purported March 8 event</a>.</li>
+<li><a href="https://reneritchie.net/m2-macbook-pro-wtf-leaks/">Rene on M2 MacBook rumors</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>337: ‘See Me After Class’, With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2022/02/14/ep-337</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/02/14/ep-337</guid>
+ <pubDate>Mon, 14 Feb 2022 21:45:32 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-337-jason-snell.mp3" length="80092882" type="audio/mpeg" />
+ <itunes:duration>02:46:18</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show to dissect the Six Colors 2021 Apple Report Card. Also: the care and feeding of mechanical keyboards.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show to dissect the Six Colors 2021 Apple Report Card. Also: the care and feeding of mechanical keyboards.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://remote.com/thetalkshow">Remote</a>: Global HR solutions for distributed teams.</li>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2022/02/apple-in-2021-the-six-colors-report-card/">Apple in 2021: The Six Colors Report Card</a>.
+<ul><li><a href="https://sixcolors.com/post/2022/02/fun-with-charts-a-2021-report-card-breakdown/">Breaking down the results with charts and graphs</a>, thanks to Kieran Healy.</li>
+<li>“<a href="https://www.amazon.com/Data-Visualization-Introduction-Kieran-Healy/dp/0691181616/?tag=df-amzn-20">Data Visualization: A Practical Introduction</a>” — Healy’s outstanding introduction to the R programming language and ggplot visualization library.</li>
+<li><a href="https://kieranhealy.org/">Healy’s also-excellent website</a>.</li>
+<li><a href="https://daringfireball.net/2022/02/my_2021_apple_report_card">My personal 2021 Apple report card</a>.</li></ul></li>
+<li><a href="https://www.keychron.com/products/keychron-q2-qmk-custom-mechanical-keyboard?variant=39610695647321">Keychron Q2 mechanical USB keyboard</a>. My son bought this and swapped out the switches for a set of <a href="https://zealpc.net/products/zealio?variant=6502846147">Zealio V2 62g switches</a>.</li>
+<li>Rogue Amoeba’s <a href="https://rogueamoeba.com/soundsource">SoundSource</a> and <a href="https://rogueamoeba.com/audiohijack/">Audio Hijack</a> — two great Mac utilities that can’t exist on iPadOS.</li>
+<li>Clipboard managers (which also can’t exist on iPadOS):
+<ul><li><a href="https://tapbots.com/pastebot/">Pastebot</a>.</li>
+<li><a href="https://www.keyboardmaestro.com/">Keyboard Maestro</a>.</li>
+<li><a href="http://www.obdev.com/products/launchbar/">LaunchBar</a>.</li></ul></li>
+<li>Jason Snell: “<a href="https://sixcolors.com/post/2021/02/why-does-the-apple-tv-still-exist/">Why Does the Apple TV Still Exist?</a>”</li>
+<li><a href="https://www.relay.fm/upgrade">Upgrade</a>: One of Jason’s plethora of podcasts, this one co-hosted with Myke Hurley.
+<ul><li><a href="https://www.relay.fm/upgrade/393">Last week’s Upgrade, discussing the 2021 Report Card</a>.</li></ul></li>
+<li><a href="https://www.bigmessowires.com/floppy-emu/">Floppy Emu</a>: “a floppy and hard disk emulator for classic Apple II, Macintosh, and Lisa computers. It uses an SD memory card and custom hardware to mimic an Apple floppy disk and drive, or an Apple hard drive.” Amazing work from Steve Chamberlin.</li>
+<li><a href="https://cottonbureau.com/products/it-will-not-be-back#/7478926/tee-men-standard-tee-vintage-black-tri-blend-l">Moltz’s “The Terminator” t-shirt design</a>. (It will not be back.)</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>336: ‘He Looked Like a Fred’, With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2022/01/31/ep-336</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/01/31/ep-336</guid>
+ <pubDate>Mon, 31 Jan 2022 21:24:42 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-336-john-moltz.mp3" length="44603759" type="audio/mpeg" />
+ <itunes:duration>01:32:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest: John Moltz. Special topics: Apple’s record-breaking but somehow yawn-inducing quarterly results, new features in the upcoming releases of MacOS 12.3 and iOS 15.4, the Neil Young–Joe Rogan Spotify saga, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest: John Moltz. Special topics: Apple’s record-breaking but somehow yawn-inducing quarterly results, new features in the upcoming releases of MacOS 12.3 and iOS 15.4, the Neil Young–Joe Rogan Spotify saga, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://mackweldon.com/thetalkshow">Mack Weldon</a>: Radically-efficient wardrobing (with lots of warm options for winter).</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Apple Quarterly Results:
+<ul><li><a href="https://www.apple.com/newsroom/2022/01/apple-reports-first-quarter-results/">Apple Newsroom</a>.</li>
+<li><a href="https://daringfireball.net/linked/2022/01/27/aapl-q1-2022-results">My two cents</a>.</li>
+<li>“<a href="https://sixcolors.com/post/2022/01/this-is-tim-apple-q1-2022-conference-call-transcript/">This Is Tim</a>.”</li></ul></li>
+<li>MacOS 12.3 is dropping kernel extension APIs used by Dropbox and Microsoft OneDrive:
+<ul><li><a href="https://512pixels.net/2022/01/the-curious-case-of-dropbox-and-macos-12-3/">Stephen Hackett</a>.</li>
+<li><a href="https://help.dropbox.com/installs-integrations/desktop/macos-12-monterey-support">Dropbox passing the buck</a>.</li>
+<li><a href="https://techcommunity.microsoft.com/t5/microsoft-onedrive-blog/inside-the-new-files-on-demand-experience-on-macos/bc-p/3066588">Microsoft says OneDrive will soon be ready</a>.</li>
+<li><a href="https://blog.box.com/get-more-secure-seamless-box-drive-experience-across-macs">Box has been ready since October</a>.</li></ul></li>
+<li><a href="https://blog.emojipedia.org/first-look-new-emojis-in-ios-15-4/">New emojis in iOS 15.4 and MacOS 12.3</a>.</li>
+<li><a href="https://www.macrumors.com/2022/01/27/hands-on-universal-control/">MacRumors: "Hands-On With Universal Control in iPadOS 15.4 and macOS Monterey 12.3"</a>.</li>
+<li><a href="https://www.macrumors.com/2022/01/27/ios-15-4-features/">Other new features in iOS 15.3 and MacOS 12.3</a>, including Face ID while wearing a mask. </li>
+<li><a href="https://www.forbes.com/sites/timworstall/2011/10/06/steve-jobs-obituary-the-backdated-options-scandal/?sh=26447ea87632">Steve Jobs's backdated stock options</a>.</li>
+<li><a href="https://apple.fandom.com/wiki/Fred_Anderson">Former Apple CFO Fred Anderson</a>.</li>
+<li><a href="https://www.britannica.com/topic/East-India-Company">East India Company</a>.
+<ul><li>They are, in fact, <a href="https://www.theeastindiacompany.com">still a concern</a>.</li></ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Joe_Isuzu">Joe Isuzu</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>335: ‘Blofeld-69-420’, With Guy English</title>
+ <link>https://daringfireball.net/thetalkshow/2022/01/26/ep-335</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/01/26/ep-335</guid>
+ <pubDate>Wed, 26 Jan 2022 20:50:24 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-335-guy-english.mp3" length="60693449" type="audio/mpeg" />
+ <itunes:duration>02:05:53</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Guy English returns to the show to talk about video games, the cold, the *Heat*, and the state of streaming video services.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Guy English returns to the show to talk about video games, the cold, the <em>Heat</em>, and the state of streaming video services.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.drinktrade.com/thetalkshow">Trade Coffee</a>: Incredible coffee delivered fresh from the best roasters in the nation.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>“Heat 2”:
+<ul><li>“<a href="https://letterboxd.com/film/heat-1995/">Heat</a>”.</li>
+<li><a href="https://twitter.com/MichaelMann/status/1483848098698858498">Michael Mann’s tweet announcing “Heat 2”</a>.</li>
+<li><a href="https://daringfireball.net/linked/2022/01/20/heat-2">I almost plotzed</a>.</li>
+<li><a href="https://www.theringer.com/2021/11/2/22758064/the-three-heat-with-bill-simmons-chris-ryan-and-michael-mann">Michael Mann on The Rewatchables in November 2021</a>, talking about “Heat”.</li></ul></li>
+<li><a href="https://www.google.com/search?q=roger+ebert+video+games+art">Roger Ebert in 2010: “Video Games Can Never Be Art”</a>.
+<ul><li>Me, in 2014: “<a href="https://daringfireball.net/linked/2016/03/18/firewatch-one-month-later">I really wish [Ebert] had lived to see ‘Firewatch’</a>.”</li></ul></li>
+<li>“<a href="https://youtu.be/ZhCKs7DDePM">The Making of N64 Goldeneye: A 90s Video Game Masterpiece</a>”.</li>
+<li><a href="https://rogueamoeba.com/audiohijack/">Rogue Amoeba: Audio Hijack</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=ufKFStaFsZs">Yours truly speaking at XOXO 2014</a>, on how Google Reader shutting down gave me the idea that has funded Daring Fireball ever since.</li>
+<li><a href="https://guidebookgallery.org/screenshots/beos5">BeOS screenshots</a> — were those just-wide-enough-for-the-title window title bars a good idea or a gimmick?</li>
+<li><a href="https://daringfireball.net/linked/2022/01/21/netflix-sky-is-falling">Netflix Chicken Littles</a>.</li>
+<li><a href="https://www.theincomparable.com/biff/">“Biff” podcast on The Incomparable</a> — “Dan Moren, John Moltz, and Guy English discuss superhero TV shows and movies in the inimitable style that their loyal readers have come to love.”</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>334: ‘High-Margin Candy Bar’, With Dieter Bohn</title>
+ <link>https://daringfireball.net/thetalkshow/2022/01/08/ep-334</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/01/08/ep-334</guid>
+ <pubDate>Sat, 8 Jan 2022 15:36:19 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-334-dieter-bohn.mp3" length="48085030" type="audio/mpeg" />
+ <itunes:duration>01:39:05</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Dieter Bohn joins the show to talk about his excellent new documentary, *Springboard: The Secret History of the First Real Smartphone* — a history of Handspring and the creators of the original PalmPilot.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Dieter Bohn joins the show to talk about his excellent new documentary, <a href="https://www.theverge.com/2021/12/7/22820571/springboard-handspring-documentary-youtube"><em>Springboard: The Secret History of the First Real Smartphone</em></a> -- a history of Handspring and the creators of the original PalmPilot.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/talkshow16">Hello Fresh</a>: America’s #1 meal kit.</li>
+<li><a href="https://earnest.com/thetalkshow">Earnest</a>: Freedom of choice meets student loans.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>“<a href="https://www.theverge.com/2021/12/7/22820571/springboard-handspring-documentary-youtube">Springboard: The Secret History of the First Real Smartphone</a>” — the full 30-minute documentary.
+<ul><li>(That same link has Dieter’s bonus material, too, including his corrected version of Ed Colligan’s infamous December 2006 quip about the then-imminent iPhone.)</li></ul></li>
+<li>“<a href="http://files.catwell.info/misc/mirror/ZenOfPalm.pdf">The Zen of Palm</a>” (PDF) — Palm’s HIG and design philosophy.</li>
+<li><a href="https://en.wikipedia.org/wiki/Graffiti_%28Palm_OS%29">Palm OS’s Graffiti handwriting system</a>, including an illustrated cheatsheet of the gestures.</li>
+<li>PalmOS devices:
+<ul><li><a href="https://www.computerhistory.org/revolution/mobile-computing/18/321">PalmPilot</a>
+<ul><li><a href="https://www.computerhistory.org/revolution/mobile-computing/18/321/1648">Jeff Hawkins’s wooden prototype</a> for getting the size right</li></ul></li>
+<li><a href="https://duckduckgo.com/?q=handspring+visor">Handspring Visor</a></li>
+<li><a href="https://en.wikipedia.org/wiki/CLIÉ">Sony Clié</a></li>
+<li><a href="https://www.fastcompany.com/90246716/palms-progress-the-rise-fall-and-rebirth-of-a-legendary-brand">Harry McCracken’s look back at Palm devices for Fast Company in 2018</a></li></ul></li>
+<li><a href="https://www.engadget.com/2009-01-08-the-palm-pre.html">The Palm Pre</a> — Palm’s answer to the iPhone in 2009.</li>
+<li><a href="https://www.treocentral.com/">TreoCentral</a> and <a href="https://www.visorcentral.com/">VisorCentral</a> — both sites long defunct, but still available online.</li>
+<li><a href="https://daringfireball.net/linked/2011/08/18/tablets-before-after">BlackBerry-esque prototype Android devices from before Google saw the iPhone</a>.</li>
+<li><a href="https://www.engadget.com/2008-10-16-t-mobile-g1-review.html">HTC’s G1</a> — The first commercial Android phone (a real turd).</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>333: ‘Schrödinger’s Feature’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2022/12/31/ep-333</link>
+ <guid>https://daringfireball.net/thetalkshow/2022/12/31/ep-333</guid>
+ <pubDate>Fri, 31 Dec 2021 14:21:54 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-333-rene-ritchie.mp3" length="79477343" type="audio/mpeg" />
+ <itunes:duration>02:45:01</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Apple’s 2021 year in review, with special guest Rene Ritchie.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Apple’s 2021 year in review, with special guest Rene Ritchie.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>January:
+<ul><li><a href="https://www.apple.com/newsroom/2021/01/dan-riccio-begins-a-new-chapter-at-apple/">John Ternus becomes SVP of hardware; Dan Riccio takes over VR/AR</a>.</li></ul></li>
+<li>February:
+<ul><li>iOS 14.5 and unlocking with Apple Watch while wearing a mask.</li></ul></li>
+<li>March:
+<ul><li><a href="https://techcrunch.com/2021/03/12/apple-discontinues-original-homepod-will-focus-on-mini/">HomePod canceled</a>. </li>
+<li>“<a href="https://daringfireball.net/2021/03/intel_goes_long">Intel Goes Long</a>”.</li></ul></li>
+<li>April:
+<ul><li><a href="https://daringfireball.net/2021/04/spring_loaded_thoughts_and_observations">“Spring Loaded” event</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2021/04/apple-leads-the-next-chapter-of-podcasting-with-apple-podcasts-subscriptions/">Apple Podcasts changes</a>.</li></ul></li>
+<li>May:
+<ul><li>Epic v. Apple court case.</li>
+<li><a href="https://daringfireball.net/2021/06/app_store_the_schiller_cut">App Store: The Schiller Cut</a>.</li>
+<li><a href="https://daringfireball.net/2021/05/the_new_siri_remote_etc">New Apple TV 4K and Siri Remote</a>.</li>
+<li><a href="https://daringfireball.net/2021/05/the_2021_m1_ipad_pros">M1 iPad Pros</a>.</li>
+<li><a href="https://daringfireball.net/2021/05/the_24_inch_m1_imac">24-inch M1 iMacs</a>.</li></ul></li>
+<li>June:
+<ul><li><a href="https://daringfireball.net/2021/06/the_talk_show_wwdc_2021">WWDC 2021</a>.</li>
+<li><a href="https://daringfireball.net/search/safari+tabs+2021">Safari tabs saga</a>.</li></ul></li>
+<li>August:
+<ul><li><a href="https://daringfireball.net/2021/08/apple_child_safety_initiatives_slippery_slope">Child safety initiatives</a>.</li></ul></li>
+<li>September:
+<ul><li><a href="https://daringfireball.net/2021/09/california_streaming_thoughts_and_observations">“California Streaming” event</a>.</li>
+<li>iPhones 13
+<ul><li><a href="https://www.youtube.com/watch?v=Gi6FMPlNHfc">Rene’s review</a>.</li>
+<li><a href="https://daringfireball.net/2021/09/the_iphones_13">My review</a>.</li></ul></li>
+<li>iPad Mini
+<ul><li><a href="https://www.youtube.com/watch?v=bm9fS9QDfjA&amp;t=509s">Rene’s review</a>.</li>
+<li><a href="https://daringfireball.net/2021/09/the_2021_ipad_mini">My review</a>.</li></ul></li>
+<li>iOS 15 and WatchOS 8.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-09-09/apple-s-watch-software-chief-takes-over-self-driving-car-project?sref=ExbtjcSG">Kevin Lynch takes over “TitanOS”</a>.</li></ul></li>
+<li>October:
+<ul><li>Apple Watch Series 7
+<ul><li><a href="https://www.youtube.com/watch?v=ZuIWVj5gcZ8">Rene’s review</a>.</li>
+<li><a href="https://daringfireball.net/2021/10/apple_watch_series_7">My review</a>.</li></ul></li>
+<li>M1 Pro/Max MacBook Pros
+<ul><li><a href="https://www.youtube.com/watch?v=DV-zTUANV5w">Rene’s review</a>.</li>
+<li><a href="https://daringfireball.net/2021/10/the_2021_14-inch_macbook_pro">My review</a>.</li></ul></li>
+<li>MacOS 12 Monterey</li>
+<li><a href="https://www.macstories.net/stories/the-curious-case-of-apples-missing-app-integrations-for-shortcuts/">Shortcuts</a>.</li></ul></li>
+<li>November:
+<ul><li><a href="https://daringfireball.net/2021/11/federighi_sideloading_keynote_at_web_summit">Federighi’s anti-sideloading keynote at Web Summit in Lisbon</a>.</li></ul></li>
+<li>December:
+<ul><li><a href="https://www.youtube.com/watch?v=WU0gvPcc3jQ">The Matrix Awakens: An Unreal Engine 5 Experience</a>.</li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>332: ‘The Post-Doom Era’, With Joanna Stern</title>
+ <link>https://daringfireball.net/thetalkshow/2021/12/23/ep-332</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/12/23/ep-332</guid>
+ <pubDate>Thu, 23 Dec 2021 20:48:55 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-332-joanna-stern.mp3" length="57633974" type="audio/mpeg" />
+ <itunes:duration>01:59:09</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Emmy Award-winning Joanna Stern returns to the show. Topics include: Apple's new iCloud "legacy contact" feature, the current state and future of VR headsets, Elon Musk, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Emmy Award-winning Joanna Stern returns to the show. Topics include: Apple’s new iCloud “legacy contact” feature, the current state and future of VR headsets, Elon Musk, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.revenuecat.com">RevenueCat</a>: In-app subscriptions made easy.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://youtu.be/BC2e19FXMnw">Joanna on The Tonight Show with Jimmy Fallon last week</a>. (Really fun!)</li>
+<li><a href="https://shop.piaggiofastforward.com/gitamini">Gita Mini by Piaggio</a> — the follow-along robot demoed on The Tonight Show.</li>
+<li>“<a href="https://www.wsj.com/articles/metaverse-experience-facebook-microsoft-11636671113">Stuck in the Metaverse for 24 hours</a>” — Joanna spends 24 hours alone in a hotel room wearing an Oculus Quest 2.</li>
+<li>“<a href="https://www.youtube.com/watch?v=aRwJEiI1T2M">E-Ternal: A Tech Quest to Live Forever</a>” — Joanna’s Emmy-winning documentary.</li>
+<li><a href="https://www.instagram.com/p/CXzxtRGLTMu/">Joanna’s “new roommate”</a>.</li>
+<li><a href="https://www.macrumors.com/guide/legacy-contact/">iOS 15.2’s “Legacy Contact” feature</a>.</li>
+<li>“<a href="https://www.youtube.com/watch?v=b9_Vh9h3Ohw">Springboard: The Secret History of the First Real Smartphone</a>”.</li>
+<li>“<a href="https://www.generalmagicthemovie.com">General Magic: The Movie</a>.”</li>
+<li><a href="https://www.wsj.com/articles/elon-musk-on-ev-subsidies-corporate-titles-and-china-the-full-transcript-11639012832">Joanna Stern interviews Elon Musk at the WSJ CEO Council Summit</a> — video and transcript.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>331: ‘John Was the Problem’, With Merlin Mann</title>
+ <link>https://daringfireball.net/thetalkshow/2021/12/11/ep-331</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/12/11/ep-331</guid>
+ <pubDate>Sat, 11 Dec 2021 15:50:52 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-331-merlin-mann.mp3" length="91769687" type="audio/mpeg" />
+ <itunes:duration>03:09:47</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Merlin Mann returns to the show to discuss two brief topics (with a few asides): my dream of opening a steakhouse, and Peter Jackson’s Beatles documentary “Get Back”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Merlin Mann returns to the show to discuss two brief topics (with a few asides): my dream of opening a steakhouse, and Peter Jackson’s Beatles documentary <em>Get Back</em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/thetalkshow">Mack Weldon</a>: Radically-efficient wardrobing</li>
+<li><a href="https://linkedin.com/thetalkshow">LinkedIn Talent</a></li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.nme.com/features/get-back-beatles-doc-whos-who-glyn-johns-mal-evans-3106956">Who’s who in “Get Back”? A guide to the non-Beatles in Peter Jackson’s documentary</a>.
+<ul><li><a href="https://music.apple.com/us/album/and-your-bird-can-sing-take-2/1441145575?i=1441146277">“And Your Bird Can Sing” (Take 2) April 20, 1966</a>.</li></ul></li>
+<li><a href="https://www.amazon.com/iSi-Sodamaker-Classic-Siphon-Bottle/dp/B01MAVUI17/?tag=df-amzn-20">Amazon.com: iSi Classic MeshSodamaker for Making Carbonating Beverages, 1 Quart, Stainless Steel: Industrial &amp; Scientific</a>.</li>
+<li><a href="https://www.american-giant.com/">American Giant</a>.
+<ul><li><a href="https://slate.com/technology/2012/12/american-giant-hoodie-this-is-the-greatest-sweatshirt-known-to-man.html">Farhad Manjoo: “This Is The Greatest Hoodie Ever Made”</a>.</li>
+<li><a href="https://daringfireball.net/linked/2021/03/12/ykk-zippers">YKK Zippers</a>.</li></ul></li>
+<li><a href="https://bernssteakhouse.com/what-to-expect/#can-i-request-a-favorite-server">Bern’s Steak House in Tampa</a>.</li>
+<li><a href="https://www.jwz.org/">Jamie Zawinski</a>.
+<ul><li><a href="https://www.dnalounge.com/">DNA Lounge</a>.</li>
+<li><a href="http://regex.info/blog/2006-09-15/247">“Now you have two problems.”</a></li></ul></li>
+<li><a href="https://www.sharperimage.com/view/product/The+Bacon+Express+Toaster/207656">The Sharper Image’s Bacon Express Toaster</a>.</li>
+<li>Helen Rosner in The New Yorker: “<a href="https://www.newyorker.com/culture/annals-of-gastronomy/pellet-ice-is-the-good-ice">Pellet Ice Is the Good Ice</a>”.</li>
+<li><a href="https://www.halsnewyork.com/online-retailers/">Hal’s New York Seltzer Water</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=0NCczct2ZIM">“What makes Ringo a Great Drummer”</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=wJTjjAXDZSY">“World’s Great Drummers Salute Ringo Starr”</a>.</li>
+<li><a href="https://letterboxd.com/davidlsims/">‎David Sims, Letterboxd one-sentence reviewer extraordinaire</a>.
+<ul><li><a href="https://letterboxd.com/davidlsims/film/mrs-parker-and-the-vicious-circle/">“Mrs. Parker and the Vicious Circle”</a>.</li>
+<li><a href="https://letterboxd.com/davidlsims/film/free-solo/">“Free Solo”</a>.</li>
+<li><a href="https://letterboxd.com/davidlsims/film/a-quiet-place-2018/">“A Quiet Place”</a>.</li></ul></li>
+<li><a href="https://overcast.fm/+FnAh2CKBI">RoboCop: Blank Check with Griffin &amp; David</a>.</li>
+<li>Amanda Hess in the NYT: <a href="https://www.nytimes.com/2021/12/08/arts/music/yoko-ono-beatles-get-back.html">“The Sublime Spectacle of Yoko Ono Disrupting the Beatles”</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=1kuKRqzCHiA">“Futura and Wes Anderson: A Love Story”</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=wjE5eHLICzc">Atkinson Hyperlegible</a> — an accessibility typeface.</li>
+<li>Hop Sing Laundromat:
+<ul><li><a href="https://twitter.com/hopsinglaundry">Hop Sing on Twitter</a>.</li>
+<li><a href="https://twitter.com/merchandise7x">Lê on Twitter</a>.</li>
+<li><a href="https://daringfireball.net/2019/09/the_iphone_11_and_iphones_11_pro">Rare photos from inside</a>.</li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>330: ‘Headline Goes Here’, With Jim Dalrymple</title>
+ <link>https://daringfireball.net/thetalkshow/2021/11/30/ep-330</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/11/30/ep-330</guid>
+ <pubDate>Tue, 30 Nov 2021 22:13:22 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-330-jim-dalrymple.mp3" length="36803556" type="audio/mpeg" />
+ <itunes:duration>01:16:21</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jim Dalrymple returns to the show to discuss the past and future of Apple-centric reporting.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jim Dalrymple returns to the show to discuss the past and future of Apple-centric reporting.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/thetalkshow">Mack Weldon</a>: Radically-efficient wardrobing.</li>
+<li><a href="https://linkedin.com/thetalkshow">LinkedIn Talent</a>.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://web.archive.org/web/19961109210124/http://www.maccentral.com/">MacCentral circa November 1996, as cached by the Internet Archive</a>. Among the news of the week: the release of <a href="https://web.archive.org/web/19961109210124/http://www.maccentral.com/news/1196/nov08.html#More%20Info%20on%20BBEdit%204.0.2">BBEdit 4.0.2</a> and <a href="https://web.archive.org/web/19961109210124/http://www.maccentral.com/news/1196/nov08.html#Cyberdog%201.2%20Beta%202%20Released">Cyberdog 1.2 beta 2</a>. One of those had a longer shelf life than the other.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>329: ‘The Scotland Board of Tourism’, With David Smith</title>
+ <link>https://daringfireball.net/thetalkshow/2021/11/24/ep-329</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/11/24/ep-329</guid>
+ <pubDate>Wed, 24 Nov 2021 22:41:08 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-329-david-smith.mp3" length="42928003" type="audio/mpeg" />
+ <itunes:duration>01:29:07</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest David Smith returns to the show to talk about Apple Watch Series 7 and the state of WatchOS, Apple suing NSO Group, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest David Smith returns to the show to talk about Apple Watch Series 7 and the state of WatchOS, Apple suing NSO Group, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://hullopillow.com/thetalkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://david-smith.org/blog/2021/11/22/glencoe/">David's post about wildcamping in Scotland with Apple Watch Series 7</a>.</li>
+<li><a href="https://david-smith.org/apps/">David's excellent apps</a>: <a href="https://apps.apple.com/us/app/widgetsmith/id1523682319">Widgetsmith</a>, <a href="https://apps.apple.com/us/app/watchsmith/id1483088503?ls=1">Watchsmith</a>, <a href="https://itunes.apple.com/us/app/pedometer++/id712286167?mt=8&amp;at=10l3KS&amp;ct=blog">Pedometer++</a>, <a href="https://itunes.apple.com/us/app/sleep++/id1038440371?at=10l3KS&amp;ct=apps&amp;ls=1&amp;mt=8">Sleep++</a>, and more.</li>
+<li>Problematic Forbes story: "<a href="https://www.forbes.com/sites/johnkoetsier/2021/11/12/apple-quietly-buying-ads-via-google-for-high-value-subscription-apps-to-capture-app-publisher-revenue/?sh=41e542ad1b52">Apple Quietly Buying Ads Via Google For High-Value Subscription Apps To Capture App Publisher Revenue</a>".</li>
+<li><a href="https://daringfireball.net/linked/2021/11/23/">Apple sues NSO Group</a>.</li>
+<li><a href="https://www.nytimes.com/2021/11/23/technology/apple-nso-group-lawsuit.html">NYT: "Apple Sues Israeli Spyware Maker, Seeking to Block Its Access to iPhones"</a>.</li>
+<li><a href="https://goo.gl/maps/u3wrEgf5T29K39Rk6">Skyfall Road Pin on Google Maps</a>.</li>
+<li><a href="https://www.relay.fm/radar">Under the Radar</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>328: ‘The Warden’s Dilemma’, With Ben Thompson</title>
+ <link>https://daringfireball.net/thetalkshow/2021/11/13/ep-328</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/11/13/ep-328</guid>
+ <pubDate>Sat, 13 Nov 2021 12:09:54 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-328-ben-thompson.mp3" length="56823338" type="audio/mpeg" />
+ <itunes:duration>01:58:03</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Dithering CEO Ben Thompson returns to the show to go deep on the concept of the metaverse.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Dithering CEO Ben Thompson returns to the show to go deep on the concept of the metaverse.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://rows.com/?utm_source=podcast&amp;utm_medium=link&amp;utm_campaign=dfireball-nov2021">Rows</a>: The spreadsheet with superpowers. Get started today.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/talkshow14">Hello Fresh</a>: America’s #1 meal kit.</li>
+<li><a href="https://linkedin.com/talk">LinkedIn Talent</a>: Find and hire the right person. Your first job post is free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://stratechery.com/2021/microsoft-and-the-metaverse/">Ben’s piece at Stratechery on the metaverse and the enterprise</a>.</li>
+<li><a href="https://stratechery.com/2021/an-interview-with-mark-zuckerberg-about-the-metaverse/">Ben’s interview with Mark Zuckerberg</a>.</li>
+<li><a href="https://daringfireball.net/linked/2021/10/29/facebook-connect-keynote">Facebook’s 2021 Connect keynote</a>.</li>
+<li>Steven Levy’s interview with Niantic Labs founder and CEO John Hanke: “<a href="https://www.wired.com/story/john-hanke-niantic-augmented-reality-real-metaverse/">AR Is Where the Real Metaverse Is Going to Happen</a>”.</li>
+<li><a href="https://www.youtube.com/watch?v=h1BQPV-iCkU"><em>WALL-E</em>’s dystopian vision of compulsive VR/AR addiction</a>.</li>
+<li><a href="https://dithering.fm/">Dithering</a>: Two episodes per week, 15 minutes per episode. Not a minute less, not a minute more.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>327: ‘Giddy With Mac-Ness’, With Daniel Jalkut</title>
+ <link>https://daringfireball.net/thetalkshow/2021/10/31/ep-327</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/10/31/ep-327</guid>
+ <pubDate>Sun, 31 Oct 2021 20:52:06 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-327-daniel-jalkut.mp3" length="50070842" type="audio/mpeg" />
+ <itunes:duration>01:44:00</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Daniel Jalkut returns to the show to talk about the new MacBook Pros.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Daniel Jalkut returns to the show to talk about the new MacBook Pros.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.sanity.io/thetalkshow">sanity.io</a>: The platform for structured content that lets you build better digital experiences.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/thetalkshow">Mack Weldon</a>: Radically-efficient wardrobing.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://coreint.org/">Core Intuition</a>.</li>
+<li><a href="https://redsweater.com/">Red Sweater Software</a>.</li>
+<li><a href="https://www.docker.com/">Docker</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>326: ‘A Very Large Nap’, With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2021/10/29/ep-326</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/10/29/ep-326</guid>
+ <pubDate>Fri, 29 Oct 2021 16:20:18 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-326-john-moltz.mp3" length="47666735" type="audio/mpeg" />
+ <itunes:duration>01:38:52</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest John Moltz returns to the show to discuss the products Apple has released this week.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest John Moltz returns to the show to discuss the products Apple has released this week.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://earnest.com/thetalkshow">Earnest</a>: Freedom of choice meets student loans.</li>
+<li><a href="https://LinkedIn.com/talk">LinkedIn Talent</a>: Find and hire the right person. Your first job post is free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/shop/product/MM6F3AM/A/polishing-cloth">Apple's $19 polishing cloth</a>.</li>
+<li><a href="https://whoosh.com/">Whoosh</a>.</li>
+<li><a href="https://www.amazon.com/gp/product/B07XD4YS8F/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&amp;psc=1/?tag=df-amzn-20">The bizarro 16-pack of SIM card removal tools I bought at Amazon for $7</a>.</li>
+<li><a href="https://www.paprikaapp.com/">Paprika</a>.</li>
+<li><a href="https://textsniper.app/">Text Sniper</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>325: ‘The Negative Version of Icing on the Cake’, With Nilay Patel</title>
+ <link>https://daringfireball.net/thetalkshow/2021/10/16/ep-325</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/10/16/ep-325</guid>
+ <pubDate>Sat, 16 Oct 2021 12:23:52 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-325-nilay-patel.mp3" length="71168721" type="audio/mpeg" />
+ <itunes:duration>02:27:57</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest: Nilay Patel. Special topics: the iPhones 13, Apple Watch Series 7, kids today and the file system, the Lightning / USB-C debate, and, of course, our speculation about next week’s “Unleashed” Apple event.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest: Nilay Patel. Special topics: the iPhones 13, Apple Watch Series 7, kids today and the file system, the Lightning / USB-C debate, and, of course, our speculation about next week’s “Unleashed” Apple event.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.backblaze.com/thetalkshow">Backblaze</a>: Get peace of mind knowing your files are backed up securely in the cloud with Backblaze.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.businessinsider.com/apple-health-employees-backlash-misled-executives-2021-9">Business Insider feature suggesting Apple’s health initiatives are unfocused</a>. (<a href="https://apple.news/AeHrk-TK4Qq2dyO9AXYaLqw">News+ link</a>.)</li>
+<li><a href="https://www.theverge.com/22684730/students-file-folder-directory-structure-education-gen-z">Monica Chin at The Verge: “File Not Found”</a> — how kids today don’t understand computer file systems.</li>
+<li><em><a href="https://daringfireball.net/linked/2021/09/24/float">Float</a></em> — Aundre Larrow’s beautiful short film, shot using iPhone 13’s Cinematic Mode.</li>
+<li><a href="https://www.theverge.com/decoder-podcast-with-nilay-patel">Nilay’s excellent interview podcast, Decoder</a>.</li>
+<li><a href="https://daringfireball.net/2021/10/apple_watch_series_7">My review of the Apple Watch Series 7</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>324: ‘A Pretty Generic Thing You Stick in a Hole’, With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2021/09/30/ep-324</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/09/30/ep-324</guid>
+ <pubDate>Thu, 30 Sep 2021 23:55:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-324-jason-snell.mp3" length="68245197" type="audio/mpeg" />
+ <itunes:duration>02:20:05</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show to talk about the new iPhones 13, new iPad Mini, Safari 15’s craptacular new tab UI, and the insightful questions posed to Kevin Durant on the Brooklyn Nets’ media day from Basketball Digest’s best NBA reporter.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show to talk about the new iPhones 13, new iPad Mini, Safari 15’s craptacular new tab UI, and the insightful questions posed to Kevin Durant on the Brooklyn Nets’ media day from Basketball Digest’s best NBA reporter.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.sanity.io/thetalkshow">Sanity.io</a>: The platform for structured content that lets you build better digital experiences</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://earnest.com/thetalkshow">Earnest</a>: Freedom of choice meets student loans. Use this link for a $100 bonus.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.garmin.com/en-US/c/outdoor-recreation/adventure-smartwatches/">Garmin Adventure Watches</a>.</li>
+<li><a href="https://daringfireball.net/2021/09/why_still_lightning">Daring Fireball: “Why Does the iPhone Still Use Lightning?”</a></li>
+<li><a href="https://sixcolors.com/post/2021/09/ipad-mini-2021-review-small-packages/">Jason's iPad Mini review</a>.</li>
+<li><a href="https://daringfireball.net/2021/09/the_2021_ipad_mini">My iPad Mini review</a>.</li>
+<li><a href="https://www.amazon.com/Dont-Make-Me-Think-Usability/dp/0321344758/?tag=df-amzn-20">Steve Krug’s “Don’t Make Me Think”</a>.</li>
+<li><a href="https://www.amazon.com/Design-Everyday-Things-Revised-Expanded/dp/0465050654/?tag=df-amzn-20">Don Norman’s “The Design of Everyday Things”</a>, which I conflated with Krug’s “Don’t Make Me Think” during the show, but about which Jason promptly corrected me.</li>
+<li><a href="https://sixcolors.com/link/2021/09/welcome-to-downstream/">“Downstream” — Jason’s new podcast with Julia Alexander</a>.</li>
+<li><a href="https://www.huffpost.com/entry/david-letterman-kevin-durant-media-day_n_6151e10fe4b06beda4727b6a">“This is Dave from Basketball Digest.”</a></li>
+<li><a href="https://www.netflix.com/title/80209096">“My Next Guest Needs no Introduction”</a>.</li>
+<li><a href="https://podcasts.apple.com/us/podcast/the-poscast-with-joe-posnanski-michael-schur/id757346885">“The PosCast” with Joe Posnanski and Michael Schur</a>.</li>
+<li><a href="https://www.espn.com/nba/story/_/id/8878315/new-orleans-hornets-announce-name-change-pelicans">New Orleans Pelicans</a>.</li>
+<li><a href="https://www.espn.com/nba/story/_/id/10958580/charlotte-bobcats-officially-change-nickname-hornets">Charlotte Hornets</a>.</li>
+<li><a href="https://www.nba.com/jazz/features/1011_historyofthenamelogo.html">Utah Jazz</a>.</li>
+<li><a href="https://www.mlb.com/cut4/why-did-the-dodgers-and-giants-move-to-california-c303090362">Giants and Dodgers</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>323: ‘Skeptical Not Cynical’, With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2021/09/28/ep-323</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/09/28/ep-323</guid>
+ <pubDate>Tue, 28 Sep 2021 23:30:08 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-323-matthew-panzarino.mp3" length="47924740" type="audio/mpeg" />
+ <itunes:duration>01:39:31</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show to talk about the new iPhones 13 and their camera systems.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show to talk about the new iPhones 13 and their camera systems.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership. Start your free trial today.</li>
+<li><a href="https://linkedin.com/talk">LinkedIn Jobs</a>: Find and hire the right person. Your first job post is free.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Radically-efficient wardrobing.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/linked/2021/09/21/panzarino-iphone-13-disneyland">Panzarino’s iPhone 13 review</a>.</li>
+<li><a href="https://daringfireball.net/2021/09/the_iphones_13">My iPhone 13 review</a>.</li>
+<li><a href="https://techcrunch.com/2021/09/23/how-apple-built-the-iphone-13-pros-cinematic-mode/">Panzarino’s follow-up feature on Cinematic mode</a>, interviewing Apple’s Kaiann Drance and Johnnie Manzari, and <a href="https://daringfireball.net/linked/2021/09/23/panzarino-cinematic-mode">my comments thereupon</a>.</li>
+<li>A typical good dedicated macro lens: <a href="https://www.usa.canon.com/internet/portal/us/home/products/details/lenses/ef/macro/ef-100mm-f-2-8l-macro-is-usm">Canon’s $1,300 100mm ƒ/2.8 USM</a>.</li>
+<li>‘<a href="https://www.youtube.com/watch?v=H8qFTgcRV6w">Float</a>’ — Aundre Larrow’s beautiful short film, shot on an iPhone 13 Pro using Cinematic mode.</li>
+<li><a href="https://austinmann.com/trek/iphone-13-pro-camera-review-tanzania">Austin Mann’s iPhone 13 Pro camera review</a>, from a safari in Tanzania, and <a href="https://daringfireball.net/linked/2021/09/23/mann-mckay-iphone-13-tanzania">my comments</a>, from my home office in Philadelphia.</li>
+<li>From the DF Archive 2007: “<a href="https://daringfireball.net/2007/06/iphone_first_impressions">iPhone First Impressions</a>”.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>322: ‘It Was More Arial Than Helvetica’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2021/09/18/ep-322</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/09/18/ep-322</guid>
+ <pubDate>Sat, 18 Sep 2021 14:06:16 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-322-rene-ritchie.mp3" length="59910341" type="audio/mpeg" />
+ <itunes:duration>02:04:29</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show for a recap of this week’s “California Streaming” Apple Event: the iPhones 13, Apple Watch Series 7, and new iPads. Also, last week’s decision in the Apple v. Epic lawsuit.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show for a recap of this week’s “California Streaming” Apple Event: the iPhones 13, Apple Watch Series 7, and new iPads. Also, last week’s decision in the Apple v. Epic lawsuit.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/talkshow14">Hello Fresh</a>: America’s #1 meal kit.</li>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Designed to last for life.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/september-2021/">Apple’s event page for “California Streaming”</a>.</li>
+<li><a href="https://daringfireball.net/2021/09/california_streaming_thoughts_and_observations">Yours truly’s thoughts and observations</a>.</li>
+<li><a href="https://daringfireball.net/linked/2021/09/10/judgment-in-epic-v-apple">Judge Yvonne Gonzalez Rogers’s decision in the Apple v. Epic case</a>.</li>
+<li><a href="https://twitter.com/StephenWarwick9/status/1436421603206778883">Stephen Warwick’s humorous summary of the decision</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>321: ‘Just a Standard Bird’, With MG Siegler</title>
+ <link>https://daringfireball.net/thetalkshow/2021/08/31/ep-321</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/08/31/ep-321</guid>
+ <pubDate>Tue, 31 Aug 2021 23:56:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-321-mg-siegler.mp3" length="57404073" type="audio/mpeg" />
+ <itunes:duration>01:57:58</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>MG Siegler returns to the show to talk about last week’s surprise announcement from Apple settling a class action lawsuit filed on behalf of U.S. App Store developers, and the various reactions to it. Also, a bit on App Store payment processing, and some speculation on who might succeed Tim Cook.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>MG Siegler returns to the show to talk about last week’s surprise announcement from Apple settling a class action lawsuit filed on behalf of U.S. App Store developers, and the various reactions to it. Also, a bit on App Store payment processing, and some speculation on who might succeed Tim Cook.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://madeincookware.com/thetalkshow">Made In</a>: Better cookware for better meals. Get 15% off your first order with code <strong>THETALKSHOW</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/newsroom/2021/08/apple-us-developers-agree-to-app-store-updates/">Apple’s masterful press release that got them just the headlines they were hoping to get</a>.</li>
+<li><a href="https://www.techmeme.com/210826/p38#a210826p38">Techmeme’s roundup of Big Press headlines regarding Apple’s settlement proposal for the class action lawsuit regarding the App Store in the U.S</a>.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-08-27/apple-settlement-lets-app-developers-advertise-outside-payments">Bloomberg got it right: “Apple Settles With App Developers Without Making Major Concessions”</a>.</li>
+<li><a href="https://twitter.com/rjonesy/status/1431080067942207488">Ryan Jones’s excellent Twitter thread that accurately depicts the actual nature of Apple’s settlement proposal</a>.</li>
+<li><a href="https://www.nytimes.com/2021/08/27/technology/apple-app-settlement-explained.html">Jack Nicas’s column for the NYT: “Why Apple Won Its Legal Settlement With Developers”</a>.</li>
+<li><a href="https://500ish.com/thank-you-apple-may-we-have-another-115b91ad1773">MG on Apple’s press release: “Thank You, Apple! May We Have Another?”</a>.</li>
+<li><a href="https://500ish.com/apple-accentuates-the-positive-837b6673ea56">And MG’s follow-up, “Apple Accentuates the Positive”</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2021/08/apple-introduces-the-news-partner-program/">Apple’s earlier-on-Thursday announcement regarding the News Partner Program</a>.</li>
+<li><a href="https://daringfireball.net/2021/06/app_store_the_schiller_cut">Phil Schiller’s 2011 memo asking “Do we think our 70/30 split will last forever?”</a>.</li>
+<li><a href="https://www.bloomberg.com/news/newsletters/2021-08-29/who-will-replace-tim-cook-as-the-next-ceo-of-apple-aapl-ksxiq29z">Mark Gurman’s latest column, speculating on who might succeed Tim Cook as CEO</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Peter_principle">The Peter Principle</a> — “a concept in management developed by Laurence J. Peter, which observes that people in a hierarchy tend to rise to their ‘maximum level of incompetence’”. (I blew it and said “<a href="https://en.wikipedia.org/wiki/Pareto_principle">Pareto Principle</a>” on air, which is an entirely different thing, but also interesting.)</li>
+<li><a href="https://www.youtube.com/watch?v=9sIiajEEETw">Randy Johnson hits a bird with a pitch during a 2001 preseason MLB game</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>320: ‘Paper Floor Mats’, With Christina Warren</title>
+ <link>https://daringfireball.net/thetalkshow/2021/08/23/ep-320</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/08/23/ep-320</guid>
+ <pubDate>Mon, 23 Aug 2021 15:25:03 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-320-christina-warren.mp3" length="61850204" type="audio/mpeg" />
+ <itunes:duration>02:08:32</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Christina Warren returns to the show to discuss Apple’s controversial child safety initiatives, the tumultuous summer of Safari 15 beta UI designs, and a bit more on MagSafe battery packs.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Christina Warren returns to the show to discuss Apple’s controversial child safety initiatives, the tumultuous summer of Safari 15 beta UI designs, and a bit more on MagSafe battery packs.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership.</li>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Because this season, everyone wants to get Away.</li>
+<li><a href="https://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.monotype.com/fonts/helvetica-now-variable">Monotype Helvetica Now Variable</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=cVT-8mBuGok">Quinn Nelson's skewering of Apple's MagSafe Battery Pack</a>.</li>
+<li><a href="https://us.anker.com/collections/portable-power/products/a1619">Anker's superior $55 MagSafe-compatible battery pack</a>.</li>
+<li><a href="https://daringfireball.net/2021/08/apple_child_safety_initiatives_slippery_slope">Yours truly on Apple's child safety initiatives</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>319: ‘You Called Him Pixel Mature’, With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2021/07/30/ep-319</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/07/30/ep-319</guid>
+ <pubDate>Fri, 30 Jul 2021 16:41:24 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-319-john-moltz.mp3" length="51413397" type="audio/mpeg" />
+ <itunes:duration>01:46:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest: John Moltz. Special topics: Playdate preorders, MagSafe battery packs, iPad keyboard covers, Facebook and NSO Group, Safari 15 betas, and “Loki”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest: John Moltz. Special topics: Playdate preorders, MagSafe battery packs, iPad keyboard covers, Facebook and NSO Group, Safari 15 betas, and <em>Loki</em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linkedin.com/talk">LinkedIn Jobs</a>: Find and hire the right person. Your first job post is free.</li>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Because this season, everyone wants to get Away.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Everything you need to grow online. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/newsroom/2021/08/apple-us-developers-agree-to-app-store-updates/">Apple’s masterful press release that got them just the headlines they were hoping to get</a>.</li>
+<li><a href="https://www.techmeme.com/210826/p38#a210826p38">Techmeme’s roundup of Big Press headlines regarding Apple’s settlement proposal for the class action lawsuit regarding the App Store in the U.S</a>.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2021-08-27/apple-settlement-lets-app-developers-advertise-outside-payments">Bloomberg got it right: “Apple Settles With App Developers Without Making Major Concessions”</a>.</li>
+<li><a href="https://twitter.com/rjonesy/status/1431080067942207488">Ryan Jones’s excellent Twitter thread that accurately depicts the actual nature of Apple’s settlement proposal</a>.</li>
+<li><a href="https://www.nytimes.com/2021/08/27/technology/apple-app-settlement-explained.html">Jack Nicas’s column for the NYT: “Why Apple Won Its Legal Settlement With Developers”</a>.</li>
+<li><a href="https://500ish.com/thank-you-apple-may-we-have-another-115b91ad1773">MG on Apple’s press release: “Thank You, Apple! May We Have Another?”</a>.</li>
+<li><a href="https://500ish.com/apple-accentuates-the-positive-837b6673ea56">And MG’s follow-up, “Apple Accentuates the Positive”</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2021/08/apple-introduces-the-news-partner-program/">Apple’s earlier-on-Thursday announcement regarding the News Partner Program</a>.</li>
+<li><a href="https://daringfireball.net/2021/06/app_store_the_schiller_cut">Phil Schiller’s 2011 memo asking “Do we think our 70/30 split will last forever?”</a>.</li>
+<li><a href="https://www.bloomberg.com/news/newsletters/2021-08-29/who-will-replace-tim-cook-as-the-next-ceo-of-apple-aapl-ksxiq29z">Mark Gurman’s latest column, speculating on who might succeed Tim Cook as CEO</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Peter_principle">The Peter Principle</a> — “a concept in management developed by Laurence J. Peter, which observes that people in a hierarchy tend to rise to their ‘maximum level of incompetence’”. (I blew it and said “<a href="https://en.wikipedia.org/wiki/Pareto_principle">Pareto Principle</a>” on air, which is an entirely different thing, but also interesting.)</li>
+<li>Another post-show correction: there <em>is</em> one MLB team <a href="https://daringfireball.net/misc/2021/08/the-oriole-bird.jpeg">with a friendly bird mascot</a>. (I mistakenly thought they had been relegated to AAA, and regret the error.)</li>
+<li><a href="https://www.youtube.com/watch?v=9sIiajEEETw">Randy Johnson hits a bird with a pitch during a 2001 preseason MLB game</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>318: ‘Holes in the Blast Door’, With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2021/07/21/ep-318</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/07/21/ep-318</guid>
+ <pubDate>Thu, 22 Jul 2021 00:38:33 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-318-matthew-panzarino.mp3" length="60975081" type="audio/mpeg" />
+ <itunes:duration>02:06:29</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show. Topics include: Apple’s new MagSafe Battery Pack, the Amnesty-International-Led exposé of NSO Group’s state-sponsored phone hacking, Safari 15’s controversial new UI and Apple’s response, and a look back at year one of Apple silicon for Macs. Also: pizza.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show. Topics include: Apple’s new MagSafe Battery Pack, the Amnesty-International-Led exposé of NSO Group’s state-sponsored phone hacking, Safari 15’s controversial new UI and Apple’s response, and a look back at year one of Apple silicon for Macs. Also: pizza.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://hellofresh.com/talkshow14">Hello Fresh</a>: America’s #1 Meal Kit</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Everything you need to grow online. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/talkshow">Memberful</a>: Monetize your passion with membership.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $100 credit.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Battery Packs:
+<ul><li><a href="https://store.apple.com/xc/product/MJWY3AM/A">Apple’s $99 MagSafe Battery Pack</a></li>
+<li><a href="https://us.anker.com/products/a1619">Anker’s $46 PowerCore Magnetic 5K MagSafe-compatible battery pack</a></li>
+<li><a href="https://www.youtube.com/watch?v=2ntiUyPbcO4">Rene Ritchie’s first-look at Apple’s new battery pack</a></li></ul></li>
+<li>The Amnesty-International-led exposé of NSO Group’s Pegasus phone-hacking capabilities and abuse:
+<ul><li><a href="https://www.amnesty.org/en/latest/research/2021/07/forensic-methodology-report-how-to-catch-nso-groups-pegasus/">Amnesty’s report</a></li>
+<li><a href="https://twitter.com/billmarczak/status/1416801439402262529">Tweet thread from Citizen Lab’s Bill Marczak</a></li>
+<li><a href="https://www.washingtonpost.com/technology/2021/07/19/apple-iphone-nso/">The Washington Post’s report with a clickbait headline</a></li>
+<li><a href="https://www.theguardian.com/news/2021/jul/19/how-does-apple-technology-hold-up-against-nso-spyware">The Guardian’s report</a></li>
+<li><a href="https://googleprojectzero.blogspot.com/2021/01/a-look-at-imessage-in-ios-14.html">Google’s Project Zero on Apple’s “BlastDoor” sandboxing protection for iMessage introduced in iOS 14</a></li></ul></li>
+<li>Safari 15’s much-criticized new UIs and Apple’s seeming “we’re listening” reaction:
+<ul><li><a href="https://daringfireball.net/2021/07/safari_15_public_betas_for_mac_and_ios">My take on Safari 15 for iOS and Mac</a></li>
+<li><a href="https://daringfireball.net/linked/2021/07/19/kirvin-safari-15-defense">And a follow-up</a></li>
+<li><a href="https://reneritchie.net/ios-15-safari-apples-fixing-it-feat-gruber/">Me, on Rene Ritchie’s YouTube show</a></li>
+<li><a href="https://www.macworld.com/article/351604/ios-15-safari-redesign-toolbat-tab-bar-tab-groups-reload-button-labels.html">Jason Snell’s take for Macworld: “a self-inflicted wound but first aid may be on the way”</a></li></ul></li>
+<li>Miscellaneous:
+<ul><li><a href="https://store.steampowered.com/steamdeck">Valve’s upcoming Steam Deck, a Switch-inspired handheld gaming PC</a></li>
+<li><a href="https://techcrunch.com/2021/07/15/valve-launches-steam-deck-a-400-pc-gaming-portable/">Brian Heater on Steam Deck for TechCrunch</a></li>
+<li><a href="https://www.moft.us/pages/moft-snap-on-phone-stand-wallet-magsafe-compatible">Moft’s $29 MagSafe credit-card-sized foldable iPhone stand</a></li>
+<li><a href="https://ooni.com/">Ooni gas pizza ovens</a></li>
+<li><a href="https://www.sfchronicle.com/restaurants/article/Goodbye-to-Una-Pizza-Napoletana-where-the-little-12450752.php">Una Pizza Napoletana — the heavenly formerly-in-San-Francisco pizza restaurant where every single pie was made by owner Anthony Mangieri</a></li>
+<li><a href="https://www.unapizza.com/">Una Pizza is now in New Jersey</a> and <a href="https://www.grubstreet.com/2020/01/una-pizza-napoletana-now-serving-pepperoni-pies.html">Mangieri now makes pepperoni pies</a> that sound amazing</li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>317: ‘The NOC List’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2021/06/27/ep-317</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/06/27/ep-317</guid>
+ <pubDate>Sun, 27 Jun 2021 10:55:11 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-317-rene-ritchie.mp3" length="57195005" type="audio/mpeg" />
+ <itunes:duration>01:58:50</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Rene Ritchie returns to the show to talk about the nuances of sideloading, Apple’s antitrust pressures, and a look back at the announcements from WWDC 2021.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Rene Ritchie returns to the show to talk about the nuances of sideloading, Apple’s antitrust pressures, and a look back at the announcements from WWDC 2021.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linkedin.com/talk">LinkedIn Jobs</a>: Find and hire the right person. Your first job post is free.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Everything you need to grow online. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://memberful.com/?utm_source=The%20Talk%20Show&amp;utm_medium=Podcast%20Ad&amp;utm_campaign=H2%202021">Memberful</a>: Monetize your passion with membership.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://missionimpossiblefanon.fandom.com/wiki/NOC_List">The NOC List</a> (Mission Impossible).</li>
+<li><a href="https://www.youtube.com/watch?v=MEi0wlWYW_M">Rene’s WWDC interview with Kevin Lynch and Deidre Caldbeck from Apple</a>.</li>
+<li><a href="https://daringfireball.net/thetalkshow/2021/06/11/ep-316">The Talk Show Remote From WWDC 2021, with Craig Federighi and Greg Joswiak</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=9jsTIICrtFU">Rene on sideloading</a>.</li>
+<li><a href="https://daringfireball.net/2021/06/annotating_apples_anti-sideloading_white_paper">Yours truly on sideloading</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>316: Remote From WWDC 2021 With Craig Federighi and Greg Joswiak</title>
+ <link>https://daringfireball.net/thetalkshow/2021/06/11/ep-316</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/06/11/ep-316</guid>
+ <pubDate>Fri, 11 Jun 2021 23:00:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-316-wwdc-2021.mp3" length="40883539" type="audio/mpeg" />
+ <itunes:duration>01:24:45</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guests Craig Federighi and Greg Joswiak join me to discuss the news from WWDC 2021: the all-new multitasking interface in iPadOS 15, on-device Siri, new privacy controls in Safari and Mail, MacOS 12 Monterey, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guests Craig Federighi and Greg Joswiak join me to discuss the news from WWDC 2021: the all-new multitasking interface in iPadOS 15, on-device Siri, new privacy controls in Safari and Mail, MacOS 12 Monterey, and more.</p>
+
+<p>This episode of The Talk Show is available to watch on YouTube: <a href="https://youtu.be/-SzbucgATjA">https://youtu.be/-SzbucgATjA</a>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li>MacPaw — Get started with the free version of <a href="http://bit.ly/CleanMyMacX_WWDC2021">CleanMyMac X</a> and install <a href="http://stpp.co/JohnGruber">Setapp to get 200+ curated Mac apps for free</a>. </li>
+<li><a href="https://flatfile.com/df">Flatfile</a> — The data onboarding platform for any company that relies on migrating data from point A to point B, as intuitively as possible. </li>
+<li><a href="https://linode.com/thetalkshow">Linode</a> — voted the Top Infrastructure as a Service Provider by both G2 and TrustRadius. Use this link and get $100 in credit when you create a free account.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Previous episodes of The Talk Show Live (or Remote) From WWDC: <a href="https://daringfireball.net/thetalkshow/2020/06/24/ep-286">2020</a>, <a href="https://daringfireball.net/thetalkshow/2019/06/04/ep-254">2019</a>, <a href="https://daringfireball.net/thetalkshow/2018/06/08/ep-223">2018</a>, <a href="https://daringfireball.net/thetalkshow/2017/06/08/ep-193">2017</a>, <a href="https://daringfireball.net/thetalkshow/2016/06/17/ep-158">2016</a>, <a href="https://daringfireball.net/thetalkshow/2015/06/09/ep-123">2015</a>.</li>
+<li>Apple’s <a href="https://www.apple.com/apple-events/june-2021/">WWDC 2021 keynote</a> and <a href="https://developer.apple.com/videos/play/wwdc2021-102">Platforms State of the Union</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2021/06/ios-15-brings-powerful-new-features-to-stay-connected-focus-explore-and-more/">iOS 15</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/06/apple-previews-new-ipad-productivity-features-with-ipados-15/">iPadOS 15</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/06/macos-monterey-introduces-powerful-features-to-get-more-done/">MacOS 12 Monterey</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/06/watchos-8-brings-new-access-connectivity-and-mindfulness-features-to-apple-watch/">WatchOS 8</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/06/apple-advances-personal-health-by-introducing-secure-sharing-and-new-insights/">Shared Health data</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/06/apple-advances-its-privacy-leadership-with-ios-15-ipados-15-macos-monterey-and-watchos-8/">Privacy</a></li>
+<li><a href="https://www.apple.com/newsroom/2021/06/apple-introduces-new-developer-tools-and-technologies-to-create-even-better-apps/">Developer tools</a></li>
+</ul>
+
+<p><em>The audio for this episode of The Talk Show was edited by Caleb Sexton. The video was produced and edited by <a href="https://sandwich.co/">Sandwich</a>.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>315: ‘I Don’t Know How to Read’, With Joanna Stern</title>
+ <link>https://daringfireball.net/thetalkshow/2021/05/29/ep-315</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/05/29/ep-315</guid>
+ <pubDate>Sat, 29 May 2021 18:56:02 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-315-joanna-stern.mp3" length="56847452" type="audio/mpeg" />
+ <itunes:duration>01:57:27</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest: the one and only Joanna Stern. Topics: new iMacs, Touch ID vs. Face ID, remote controls, surveillance advertising, and people who want to make everything a video call when a good old-fashioned voice call would do.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest: the one and only Joanna Stern. Topics: new iMacs, Touch ID vs. Face ID, remote controls, surveillance advertising, and people who want to make everything a video call when a good old-fashioned voice call would do.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://apple.co/-SongPopParty">SongPop Party</a>: Exclusively on Apple Arcade, play the world’s favorite music trivia game.</li>
+<li><a href="https://memberful.com/?utm_source=The%20Talk%20Show&amp;utm_medium=Podcast%20Ad&amp;utm_campaign=H2%202021">Memberful</a>: Monetize your passion with membership.</li>
+<li><a href="https://linkedin.com/talk">LinkedIn Jobs</a>: Find and hire the right person. Your first job post is free.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Everything you need to grow online. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.amazon.com/Function101-Button-Secondary-Replacement-Infrared/dp/B08M85C13W">Function101 Remote Control for Apple TV</a>.</li>
+<li><a href="https://twitter.com/RobertGReeve/status/1397032784703655938">Robert G. Reeves's tweet thread about getting Twitter ads for the brand of toothpaste his mother uses after spending a week at her house</a>.</li>
+<li><a href="https://twitter.com/JoannaStern/status/1394664084122087426">"Apple declined to comment on if this is just an elaborate troll at this point."</a>.</li>
+<li><a href="https://www.wsj.com/articles/stop-with-the-video-chats-already-just-make-a-voice-call-11622034001">Joanna's latest: "Stop With the Video Chats Already. Just Make a Voice Call."</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=G05nEgsXgoI">Joanna Stern Interviews Craig Federighi About ATT and 'Superman'</a>.</li>
+<li><a href="https://www.wsj.com/articles/apple-airtags-vs-tile-the-best-tool-for-finding-your-lost-stuff-11620565201">Joanna on AirTags vs. Tile</a>.</li>
+<li><a href="https://www.wsj.com/articles/apples-new-ipad-pro-vs-macbook-air-the-best-m1-device-for-you-11621429204">Nicole Nguyen for the WSJ: "Apple’s New iPad Pro vs. MacBook Air"</a>.</li>
+<li><a href="https://support.apple.com/guide/security/secure-intent-connections-enclave-sec7a94f7d1e/1/web/">Apple Platform Security Guide: "Secure Intent and Connections to the Secure Enclave"</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>314: ‘Obviously Tier One’, With Marco Arment</title>
+ <link>https://daringfireball.net/thetalkshow/2021/05/25/ep-314</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/05/25/ep-314</guid>
+ <pubDate>Tue, 25 May 2021 19:18:46 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-314-marco-arment.mp3" length="64936200" type="audio/mpeg" />
+ <itunes:duration>02:14:58</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Marco Arment returns to the show to talk about the new Apple TV remote control. (Also, the new M1 iMacs and iPad Pros.)</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Marco Arment returns to the show to talk about the new Apple TV remote control. (Also, the new M1 iMacs and iPad Pros.)</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/talkshow12">Hello Fresh</a>: America’s #1 Meal Kit.</li>
+<li><a href="https://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://atp.fm/">Accidental Tech Podcast</a>.</li>
+<li><a href="https://www.caseyliss.com/about">Casey Liss</a>, who really does do a good job as de facto host of ATP, and to whom I probably owe a beer now.</li>
+<li><a href="https://overcast.fm/">Overcast</a> — the app you’re probably using to listen to this show.</li>
+<li>My reviews of the new <a href="https://daringfireball.net/2021/05/the_24_inch_m1_imac">24-inch M1 iMac</a>, <a href="https://daringfireball.net/2021/05/the_2021_m1_ipad_pros">M1 iPad Pro</a>, and <a href="https://daringfireball.net/2021/05/the_new_siri_remote_etc">Apple TV remote and the hardware set-top box it optionally comes with</a>.</li>
+<li>Marco’s <a href="https://ratiocoffee.com/">Ratio coffee maker</a>.</li>
+<li>“<a href="https://en.wikipedia.org/wiki/Star_Wars:_Shadows_of_the_Empire_(video_game)">Star Wars: Shadows of the Empire</a>” — excellent 1996 video game for Nintendo 64.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>313: ‘The Sour Grapes Commission’, With Glenn Fleishman</title>
+ <link>https://daringfireball.net/thetalkshow/2021/04/30/ep-313</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/04/30/ep-313</guid>
+ <pubDate>Fri, 30 Apr 2021 20:18:26 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-313-glenn-fleishman.mp3" length="86063406" type="audio/mpeg" />
+ <itunes:duration>02:58:59</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Glenn Fleishman returns to the show to talk about last week’s “Spring Loaded” product announcements from Apple: subscription podcasts, AirTags, Apple TV, colorful Apple Silicon iMacs, and the M1 iPad Pros.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Glenn Fleishman returns to the show to talk about last week’s “Spring Loaded” product announcements from Apple: subscription podcasts, AirTags, Apple TV, colorful Apple Silicon iMacs, and the M1 iPad Pros.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://yesplz.coffee/">Yes Plz</a>: Banish bad coffee from your kitchen and give Yes Plz a try today. Use promo code <strong>FIREBALL</strong> to take 5 bucks off your first shipment.</li>
+<li><a href="https://alexweinstein.com/thetalkshow">Alex Weinstein</a>: Want to tell a better story? Start with better music.</li>
+<li><a href="https://www.backblaze.com/daringfireball">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day trial today.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2021/04/spring_loaded_thoughts_and_observations">My roundup of the “Spring Loaded” Apple event</a>.</li>
+<li><a href="https://www.thepodswap.com/pages/our-story">Podswap</a>: independent repair shop that offers to swap out AirPods for refurbished buds with fresh batteries for $60.</li>
+<li><a href="https://tidbits.com/2021/04/16/refresh-your-old-airpods-with-a-podswap/">Jeff Carlson on Podswap for TidBITS</a>.</li>
+<li><a href="https://apps.apple.com/us/app/battery-monitor/id413678017?mt=12">Battery Monitor</a>: Battery diagnostic utility for the Mac. $5, cheap!</li>
+<li><a href="http://joe-steel.com/2017-05-26-WWDC-2017-Wish-List-tvOS.html#the-siri-remote">Joe Steel on the Siri Remote</a>: “This remote was an abomination that should have never made it out of the design lab it was drafted in.” </li>
+<li><a href="https://support.apple.com/guide/mac-help/what-is-content-caching-on-mac-mchl9388ba1b/mac">MacOS User Guide: Content Caching on MacOS</a> and <a href="https://support.apple.com/en-us/HT204675">the list of supported content types</a>.</li>
+<li><a href="https://support.apple.com/guide/security/welcome/web">Apple Platform Security Guide</a>.</li>
+<li>Glenn’s “<a href="https://www.takecontrolbooks.com/m-series/">Take Control of Your M-Series Mac</a>” book.</li>
+<li>“<a href="https://www.takecontrolbooks.com/securing-mac/">Take Control of Securing Your Mac</a>”, also by Glenn.</li>
+<li><a href="https://tinytypemuseum.com/">Tiny Type Museum</a> — only a few remaining!</li>
+<li><a href="https://eclecticlight.co/">Howard Oakley’s excellent The Eclectic Light Company</a> — a copiously detailed resource for Mac and iOS platform troubleshooting.</li>
+<li>“<a href="https://www.nytimes.com/2005/06/13/technology/some-cafe-owners-pull-the-plug-on-lingering-wifi-users.html">Some Cafe Owners Pull the Plug on Lingering Wi-Fi Users</a>” — Glenn’s June 2005 story for The New York Times, which he believes to be the first story of its kind.</li>
+<li><a href="https://twitter.com/tvaziri/status/1389059819831578624?s=20">That scene from “The Naked Gun”</a>, exquisitely synced to my remarks about it, thanks to Todd Vaziri.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>312: ‘Not to Get Zealotrous’, With Craig Mod</title>
+ <link>https://daringfireball.net/thetalkshow/2021/04/11/ep-312</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/04/11/ep-312</guid>
+ <pubDate>Sun, 11 Apr 2021 15:45:39 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-312-craig-mod.mp3" length="75799287" type="audio/mpeg" />
+ <itunes:duration>02:36:36</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Craig Mod joins the show to talk about writing, designing, filmmaking, what makes for good software, and building a successful membership program to support independent art. And: pizza toast.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Craig Mod joins the show to talk about writing, designing, filmmaking, what makes for good software, and building a successful membership program to support independent art. And: pizza toast.</p>
+
+<p><strong>Sponsored by:</strong></p>
+
+<ul>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://get.flatfile.io/tts?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=neat-fm-thetalkshow-podcast_q2-2021-portal-promotion-episode-1&amp;utm_content=top-logo&amp;utm_term=podcast-1-minute-ad-read">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+</ul>
+
+<p><strong>Links:</strong></p>
+
+<ul>
+<li><p>Craig’s annual essays about running a subscription:</p>
+
+<ul><li><a href="https://craigmod.com/essays/membership_programs/">Year one</a>.</li>
+<li><a href="https://craigmod.com/essays/successful_memberships/">Year two</a>.</li></ul></li>
+<li><p>“<a href="https://shop.specialprojects.jp/products/kissa-by-kissa-2nd-ed">Kissa by Kissa</a>” — Craig’s book documenting, in words and photos, “walking 1,000+km of the countryside of Japan along the ancient Nakasendō highway, the culture of toast (toast!), and mid-twentieth century Japanese cafés called <em>kissaten</em>.”</p></li>
+<li><p>“<a href="https://www.youtube.com/watch?v=i5SLi-GZ0Z4">Pizza Toast &amp; Coffee</a>” — Craig’s new short film.</p></li>
+<li><p><a href="https://github.com/cmod/craigstarter/">Craigstarter</a> — Craig’s open source project to host your own Kickstarter-like projects.</p></li>
+<li><p><a href="https://www.wired.com/story/healing-power-javascript-code-programming/">Craig’s recent essay for Wired on the pleasure of programming</a>, or as he calls it, “coding”.</p></li>
+<li><p>“<a href="https://craigmod.com/essays/fast_software/">Fast Software, the Best Software</a>” — Craig’s 2019 essay on the <em>feel</em> of software tools.</p></li>
+<li><p><a href="https://kk.org/thetechnium/1000-true-fans/">Kevin Kelly’s seminal “1,000 True Fans” essay</a>.</p></li>
+<li><p>Author <a href="https://en.wikipedia.org/wiki/Karl_Ove_Knausg%C3%A5rd">Karl Ove Knausgård</a>, who calls his editors each day to read that day’s work to them.</p></li>
+<li><p>Software tools mentioned:</p>
+
+<ul><li><a href="https://ulysses.app/">Ulyssses</a>.</li>
+<li><a href="https://www.apple.com/final-cut-pro/">Final Cut Pro</a>, which no longer has an “X”.</li>
+<li><a href="https://www.adobe.com/products/photoshop-lightroom-classic.html">Lightroom Classic</a>, the “Classic” part of which feels ominous.</li>
+<li><a href="https://gist.github.com/robinsloan/3688616">Robin Sloan’s tweet deleting script</a>.</li>
+<li><a href="https://plausible.io/">Plausible Analytics</a>.</li>
+<li><a href="https://usefathom.com/">Fathom Analytics</a>.</li>
+<li><a href="https://github.com/junegunn/fzf">fzf</a> — Command-line fuzzy finder search tool.</li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>311: ‘Toaster Fridgey’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2021/03/31/ep-311</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/03/31/ep-311</guid>
+ <pubDate>Wed, 31 Mar 2021 22:14:26 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-311-rene-ritchie.mp3" length="55392487" type="audio/mpeg" />
+ <itunes:duration>01:55:05</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show to speculate about pending Apple product announcements and events. Lots of guessing, no wagering.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show to speculate about pending Apple product announcements and events. Lots of guessing, no wagering.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://info.sourcegraph.com/daringfireball">Sourcegraph</a>: Find and fix code fast with Sourcegraph universal code search.</li>
+<li><a href="https://get.flatfile.io/tts?utm_source=partner&amp;utm_medium=podcast&amp;utm_campaign=neat-fm-thetalkshow-podcast_q2-2021-portal-promotion-episode-1&amp;utm_content=top-logo&amp;utm_term=podcast-1-minute-ad-read">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/linked/2021/03/30/wwdc-2021">WWDC starts June 7</a>.</li>
+<li><a href="https://daringfireball.net/linked/2021/03/27/gurman-rugged-apple-watch">Gurman rumor of a rugged Apple Watch</a>.</li>
+<li><a href="https://www.youtube.com/reneritchie">Rene’s YouTube channel</a>.</li>
+<li><a href="https://twitter.com/reneritchie/status/1377447082580193281">Rene’s first year as an indie video maker, by the numbers</a>.</li>
+<li><a href="https://twit.tv/shows/macbreak-weekly">MacBreak Weekly, which Rene now co-hosts.</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>310: ‘Russian Nesting Doll Code’, With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2021/03/23/ep-310</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/03/23/ep-310</guid>
+ <pubDate>Tue, 23 Mar 2021 20:41:38 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-310-jason-snell.mp3" length="73194994" type="audio/mpeg" />
+ <itunes:duration>02:31:56</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell joins the show to reminisce over 20 years of Mac OS X. I mean OS X. Sorry, MacOS. Also: HomePod, Apple TV, and Intel’s awkward new ad campaign.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell joins the show to reminisce over 20 years of Mac OS X. I mean OS X. Sorry, MacOS. Also: HomePod, Apple TV, and Intel’s awkward new ad campaign.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+<li><a href="https://get.flatfile.io/tts?utm_source=partner&utm_medium=podcast&utm_campaign=neat-fm-thetalkshow-podcast_q2-2021-portal-promotion-episode-1&utm_content=top-logo&utm_term=podcast-1-minute-ad-read">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+<li><a href="https://hellofresh.com/talkshow12">Hello Fresh</a>: America’s #1 meal kit. Use this link for 12 free meals, including free shipping.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.relay.fm/20macs">The 20 Macs for 2020 podcast project</a>, now with all three bonus content episodes with yours truly.</li>
+<li>[Apple’s March 21, 2001 press release announcing Mac OS X 10.0’s release, including where to buy it (it came in a box and cost $129)](. https://www.apple.com/newsroom/2001/03/21Mac-OS-X-Hits-Stores-This-Weekend/).</li>
+<li>Jason in August 2000: “<a href="https://www.macworld.com/article/1014500/12xpreview.html">Mac OS X: The Full Story</a>”. </li>
+<li><a href="https://www.macworld.com/article/199938/osx-10-1.html">Jason’s 10.1 story for Macworld</a>.</li>
+<li>Steve Jobs claiming in 2005 — announcing the Mac’s Intel transition — <a href="https://twitter.com/bramus/status/1373069358897979397">that Mac OS X had set up Apple “for the next 20 years”</a>.</li>
+<li>Jason: “<a href="https://sixcolors.com/link/2021/03/can-apple-explain-its-home-strategy/">Can Apple Explain Its Home Strategy?</a>”.</li>
+<li><a href="https://9to5mac.com/2021/03/06/apple-discontinues-imac-pro-apple-store-says-buy-while-supplies-last/">iMac Pro canceled in Friday night announcement</a>.</li>
+<li><a href="https://techcrunch.com/2021/03/12/apple-discontinues-original-homepod-will-focus-on-mini/">HomePod canceled the next Friday night</a>.</li>
+<li><a href="https://www.macworld.com/article/179028/ipodhifireview.html">Dan Frakes’s review of the iPod Hi-Fi in 2006</a>.</li>
+<li>Yours truly on Intel’s new “Go PC” campaign with Justin Long: “<a href="https://daringfireball.net/2021/03/intel_goes_long">Intel Goes Long</a>” and “<a href="https://daringfireball.net/2021/03/going_longer">Going Longer</a>”.</li>
+<li><a href="https://www.macworld.com/article/1059464/stickergate.html">Stickergate</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>309: ‘Pinkies on the Semicolon’, With John Siracusa</title>
+ <link>https://daringfireball.net/thetalkshow/2021/02/27/ep-309</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/02/27/ep-309</guid>
+ <pubDate>Sat, 27 Feb 2021 16:44:02 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-309-john-siracusa.mp3" length="83679630" type="audio/mpeg" />
+ <itunes:duration>02:53:47</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>The state of the Mac, with special guest John Siracusa.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>The state of the Mac, with special guest John Siracusa.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+<li><a href="https://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://flatfile.io/">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Siracusa’s Mac OS X reviews:</li>
+<li><a href="https://arstechnica.com/gadgets/2014/10/os-x-10-10/">OS X 10.10 Yosemite</a></li>
+<li><a href="https://arstechnica.com/gadgets/2013/10/os-x-10-9/">OS X 10.9 Mavericks</a></li>
+<li><a href="https://arstechnica.com/gadgets/2012/07/os-x-10-8/">OS X 10.8 Mountain Lion</a></li>
+<li><a href="https://arstechnica.com/gadgets/2011/07/mac-os-x-10-7/">Mac OS X 10.7 Lion</a></li>
+<li><a href="https://arstechnica.com/gadgets/2009/08/mac-os-x-10-6/">Mac OS X 10.6 Snow Leopard</a></li>
+<li><a href="https://arstechnica.com/gadgets/2007/10/mac-os-x-10-5/">Mac OS X 10.5 Leopard</a></li>
+<li><a href="https://arstechnica.com/gadgets/2005/04/macosx-10-4/">Mac OS X 10.4 Tiger</a></li>
+<li><a href="https://arstechnica.com/gadgets/2003/11/macosx-10-3/">Mac OS X 10.3 Panther</a></li>
+<li><a href="https://arstechnica.com/gadgets/2002/09/macosx-10-2/">Mac OS X 10.2 Jaguar</a></li>
+<li><a href="https://arstechnica.com/gadgets/2001/10/macosx-10-1/">Mac OS X 10.1</a></li>
+<li><a href="https://arstechnica.com/gadgets/2001/04/macos-x/">Mac OS X 10.0</a></li>
+<li><a href="https://arstechnica.com/gadgets/2000/05/mac-os-x-dp4/">Mac OS X DP4</a></li>
+<li><a href="https://arstechnica.com/gadgets/2000/02/mac-os-x-dp3/">Mac OS X DP3</a></li>
+<li><a href="https://arstechnica.com/gadgets/1999/12/macos-x-dp2/">Mac OS X DP2</a></li>
+<li><a href="https://arstechnica.com/author/john-siracusa/page/4/">Siracusa’s entire archive at Ars Technica</a></li>
+<li><a href="http://hypercritical.co">Hypercritical — Siracusa’s seldom-updated website</a></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>308: ‘Peak Hubris’, With Christina Warren</title>
+ <link>https://daringfireball.net/thetalkshow/2021/02/19/ep-308</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/02/19/ep-308</guid>
+ <pubDate>Fri, 19 Feb 2021 23:54:35 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-308-christina-warren.mp3" length="70778866" type="audio/mpeg" />
+ <itunes:duration>02:26:54</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Christina Warren returns to the show to talk about Apple Car, Apple TV, Clubhouse, and Bloomberg hamfistedly revisiting “The Big Hack”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Christina Warren returns to the show to talk about Apple Car, Apple TV, Clubhouse, and Bloomberg hamfistedly revisiting “The Big Hack”.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts can get $100 credit.</li>
+<li><a href="https://flatfile.io/">Flatfile</a>: Spend less time formatting spreadsheet data, and more time using it.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/linked/2021/02/12/">Daring Fireball posts on Bloomberg’s “Big Hack” update</a>.</li>
+<li>“<a href="https://www.amazon.com/Hard-News-Scandals-Meaning-American/dp/1400062446/?tag=df-amzn-20">Hard News: The Scandals at The New York Times and Their Meaning for American Media</a>” by Seth Mnookin.</li>
+<li>Zeynep Tucekci: “<a href="https://zeynep.substack.com/p/critical-thinking-isnt-just-a-process">Critical Thinking Isn’t Just a Process</a>” — interesting post about reading through the lines of authoritarian doublespeak.</li>
+<li><a href="https://www.ablogtowatch.com/10-interesting-facts-marc-newson-watch-design-work-ikepod/">Marc Newson’s Ikepod watches</a>, ideas which carried through to Apple Watch.</li>
+<li><a href="https://www.relay.fm/rocket">Rocket</a> — Christina’s podcast with Brianna Wu and Simone De Rochefort.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>307: ‘Soviet Toilet Paper’, With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2021/01/31/ep-307</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/01/31/ep-307</guid>
+ <pubDate>Sun, 31 Jan 2021 21:00:40 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-307-john-moltz.mp3" length="75739423" type="audio/mpeg" />
+ <itunes:duration>02:37:03</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Moltz returns to the show to give stock market investment advice.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Moltz returns to the show to give stock market investment advice.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://podcasts.apple.com/us/podcast/techmeme-ride-home/id1355212895">Techmeme Ride Home</a>: The one podcast anyone who’s anyone in Silicon Valley listens to every single day. Subscribe in your favorite podcast app, <a href="https://overcast.fm/itunes1355212895/techmeme-ride-home">including Overcast</a>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.techmeme.com/210115/p2#a210115p2">Ming-Chi Kuo and Mark Gurman reports on 2021 Macs</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Mimeograph">Mimeographs</a>.</li>
+<li><a href="https://www.nytimes.com/2021/01/30/business/gamestop-stock-profit.html">San Antonio 10 year old who got 10 shares of GameStop stock as a gift from his mom and made $3000</a>.</li>
+<li><a href="https://www.imore.com/titanium-powerbook-g4-power-and-sex">Titanium G4 PowerBook</a>.</li>
+<li><a href="https://www.nytimes.com/2021/01/30/business/robinhood-wall-street-gamestop.html">Robinhood overview by NYT</a>.</li>
+<li><a href="https://twitter.com/felixsalmon/status/1355578442025197572?s=20">Robinhood summary from Felix Salmon</a>.</li>
+<li><a href="https://www.npr.org/sections/health-shots/2021/01/29/962143659/in-philadelphia-a-scandal-erupts-over-vaccination-start-up-led-by-22-year-old">Philly COVID vaccination fiasco</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>306: ‘A Total Landscaping’, With Mike Monteiro</title>
+ <link>https://daringfireball.net/thetalkshow/2021/01/16/ep-306</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/01/16/ep-306</guid>
+ <pubDate>Sat, 16 Jan 2021 18:47:23 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-306-mike-monteiro.mp3" length="51198655" type="audio/mpeg" />
+ <itunes:duration>01:45:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Mike Monteiro returns to the show to talk about the Capitol insurrection and riot, Twitter and Facebook permanently banning Donald Trump, the shutdown of Parler, the fate of liberal democracy, and Mike’s new book, “The Collected Angers”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Mike Monteiro returns to the show to talk about the Capitol insurrection and riot, Twitter and Facebook permanently banning Donald Trump, the shutdown of Parler, the fate of liberal democracy, and Mike’s new book, <em><a href="https://bookshop.org/books/the-collected-angers-essays-about-design-for-an-unwilling-audience/9780578825915">The Collected Angers</a></em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://podcasts.apple.com/us/podcast/techmeme-ride-home/id1355212895">Techmeme Ride Home</a>: The one podcast anyone who’s anyone in Silicon Valley listens to every single day. Subscribe in your favorite podcast app, <a href="https://overcast.fm/itunes1355212895/techmeme-ride-home">including Overcast</a>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/10talkshow">Hello Fresh</a>: Get fresh, pre-measured ingredients and mouthwatering seasonal recipes delivered right to your door with HelloFresh, America’s #1 meal kit.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/jack/status/1349510769268850690">Jack Dorsey’s strange, rambling thread on Twitter’s decision to permanently ban Donald Trump</a>.</li>
+<li><a href="https://www.techdirt.com/articles/20210113/17592046050/sheryl-sandberg-makes-disingenuous-push-to-argue-that-only-facebook-has-power-to-stop-bad-people-online.shtml">Sheryl Sandberg says Capitol riot planning didn’t happen on Facebook</a>.</li>
+<li>Washington Post story on the travails of Ivanka Trump and Jared Kushner’s Secret Service trying to find a toilet.</li>
+<li>Sarah Kendzior’s “<a href="https://bookshop.org/books/hiding-in-plain-sight-the-invention-of-donald-trump-and-the-erosion-of-america-9781250779403/9781250210715">Hiding in Plain Sight: The Invention of Donald Trump and the Erosion of America</a>”.</li>
+<li>“<a href="https://bookshop.org/books/the-collected-angers-essays-about-design-for-an-unwilling-audience/9780578825915">The Collected Angers</a>” — Mike’s new book of essays.</li>
+<li><a href="https://www.vocaltype.co/history-of/bayard">Bayard</a> — the wonderful pitch-perfect typeface on the cover of “The Collected Angers”, from Vocal Type.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>305: ‘Star Wars: The Mandalorian’ Holiday Spectacular, With Special Guests Guy English and John Siracusa’</title>
+ <link>https://daringfireball.net/thetalkshow/2021/12/31/ep-305</link>
+ <guid>https://daringfireball.net/thetalkshow/2021/12/31/ep-305</guid>
+ <pubDate>Thu, 31 Dec 2020 22:04:38 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-305-mandalorian-spectacular.mp3" length="87167967" type="audio/mpeg" />
+ <itunes:duration>03:00:41</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>As per holiday tradition at The Talk Show, a brief chat about *Star Wars: The Mandalorian*, with a cavalcade of special guests, including, but not necessarily limited to, Guy English and John Siracusa.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+As per holiday tradition at The Talk Show, a brief chat about *Star Wars: The Mandalorian*, with a cavalcade of special guests, including, but not necessarily limited to, Guy English and John Siracusa.
+
+
+Sponsored by:
+
++ [Feals](https://feals.com/talkshow): Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.
++ [Squarespace](https://squarespace.com/talkshow): Make your next move. Use code __talkshow__ for 10% off your first order.
+
+
+Links:
+
++ [2014's "Star Wars" Holiday Spectacular](https://daringfireball.net/thetalkshow/2014/12/31/ep-106)
++ [2015’s "Star Wars: The Force Awakens" Holiday Spectacular](https://daringfireball.net/thetalkshow/2015/12/31/ep-141).
++ [2017's "Star Wars: The Last Jedi" Holiday Spectacular](https://daringfireball.net/thetalkshow/2017/12/31/ep-211)
+
+
+*This episode of The Talk Show was edited by Caleb Sexton.*
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>304: ‘2020 Year in Review’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2020/12/24/ep-304</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/12/24/ep-304</guid>
+ <pubDate>Thu, 24 Dec 2020 16:05:54 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-304-rene-ritchie.mp3" length="81501951" type="audio/mpeg" />
+ <itunes:duration>02:49:28</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>A look back at one hell of a year.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>A look back at one hell of a year.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://culturedcode.com/things/">Things</a>: The award-winning personal task manager that helps you achieve your goals.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts can get $100 credit.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.reuters.com/article/uk-apple-autos-exclusive-idUSKBN28V2PU">Reuters ignites long simmering Project Titan talk</a>.</li>
+<li><a href="https://daringfireball.net/linked/2020/12/21/reuters-apple-car">My take on this Apple car rumor</a>.</li>
+<li><a href="https://twitter.com/elonmusk/status/1341485211209637889">Elon Musk off-handedly quips that he tried to sell Tesla to Apple a few years ago and Tim Cook wouldn’t take the meeting</a>.</li>
+<li><a href="https://chromeisbad.com/">Loren Brichter’s “Chome Is Bad” single-serving website</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=t23ZEKqGHzs&amp;feature=emb_title">Pitch Meeting: “Tenet” (the best review of “Tenet” you’ll see)</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=MK06ntS4vB4">Rene and yours truly debating whether Macs will and/or should support touchscreens on Rene’s YouTube channel</a>, with <a href="https://watchnebula.com/videos/reneritchie-touch-screen-macs-the-great-debate-feat-john-gruber-full">the full-length version available on Nebula</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+
+ <item>
+ <title>303: ‘Half of the Bikini Emoji’, With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2020/12/11/ep-303</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/12/11/ep-303</guid>
+ <pubDate>Fri, 11 Dec 2020 23:53:19 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-303-matthew-panzarino.mp3" length="58407296" type="audio/mpeg" />
+ <itunes:duration>02:01:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino joins the show to talk about Apple's new AirPods Max headphones and the future of the Mac on Apple Silicon.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino joins the show to talk about Apple's new AirPods Max headphones and the future of the Mac on Apple Silicon.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://honest.security/">Honest Security</a>: A free guide from Kolide, with everything they’ve learned over the last year working on their own product.</li>
+<li><a href="https://awaytravel.com/talkshow20">Away</a>: Gift someone something to look forward to this holiday season.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Panzarino: “<a href="https://techcrunch.com/2020/12/10/this-is-not-a-review-of-apples-new-airpod-max-headphones/">This Is Not a Review of Apple’s New AirPods Max Headphones</a>”. </li>
+<li>Yours truly: “<a href="https://daringfireball.net/2020/12/heavy_is_the_head_that_wears_the_airpods_max">Heavy Is the Head That Wears the AirPods Max</a>”.</li>
+<li><a href="https://techcrunch.com/2020/11/17/yeah-apples-m1-macbook-pro-is-powerful-but-its-the-battery-life-that-will-blow-you-away/">Panzarino’s M1 MacBook Pro review</a>, with jaw-dropping speed and battery life results from Xcode.</li>
+<li><a href="https://collider.com/indiana-jones-5-filming-date-harrison-ford/">James Mangold to direct fifth Indiana Jones movie</a>.</li>
+<li>Todd Vaziri on a fun audio Easter egg in <a href="https://twitter.com/tvaziri/status/1335092533760643075"><em>Raiders of the Lost Ark</em></a>.</li>
+<li><a href="https://www.reddit.com/r/mildlyinteresting/comments/6slhln/i_once_asked_steve_martin_for_his_autograph_and/">Steve Martin’s “autograph” cards</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>302: ‘Camera Beer Belly’, With Nilay Patel</title>
+ <link>https://daringfireball.net/thetalkshow/2020/11/30/ep-302</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/11/30/ep-302</guid>
+ <pubDate>Mon, 30 Nov 2020 23:58:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-302-nilay-patel.mp3" length="59518889" type="audio/mpeg" />
+ <itunes:duration>02:03:40</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Nilay Patel returns to the show and we have nothing to talk about. You know, other than the M1 Macs and entire iPhone 12 lineup.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Nilay Patel returns to the show and we have nothing to talk about. You know, other than the M1 Macs and entire iPhone 12 lineup.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts can get $100 credit.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mintmobile.com/talkshow">Mint Mobile</a>: Get your new wireless plan for just $15/month with free shipping.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://podcasts.apple.com/us/podcast/decoder-with-nilay-patel/id1011668648">Decoder</a> — new/relaunched interview podcast hosted by Nilay. (<a href="https://overcast.fm/itunes1011668648/decoder-with-nilay-patel">Overcast link</a>.)</li>
+<li>“<a href="https://www.nytimes.com/2020/11/25/business/nilay-patel-the-verge.html">The Pandemic Work Diary of a Podcasting Tech Editor</a>” — nice feature in the NYT on Nilay’s workday.</li>
+<li>The Verge’s reviews for the M1 <a href="https://www.theverge.com/21570497/apple-macbook-pro-2020-m1-review">MacBook Pro</a>, <a href="https://www.theverge.com/21569603/apple-macbook-air-m1-review-price-specs-features-arm-silicon">MacBook Air</a>, and <a href="https://www.theverge.com/2020/11/17/21570046/apple-mac-mini-2020-m1-review">Mac Mini</a>.</li>
+<li><a href="https://daringfireball.net/2020/11/the_m1_macs">Yours truly’s review of the M1 MacBook Pro</a>.</li>
+<li><a href="https://www.forbes.com/sites/patrickmoorhead/2020/11/21/apple-macbook-pro-13-m1-reviewwhy-you-might-want-to-pass/">Patrick Moorhead’s “last honest man” style review of the M1 MacBook Air</a> for Forbes, which, just one week later, is not aging well.</li>
+<li>The Verge’s reviews for the <a href="https://www.theverge.com/21555901/iphone-12-pro-max-review">iPhone 12 Pro Max</a> and <a href="https://www.theverge.com/21555295/iphone-12-mini-review">iPhone 12 Mini</a>. And from a few weeks prior: the <a href="https://www.theverge.com/21522988/iphone-12-review">iPhone 12</a> and <a href="https://www.theverge.com/21524288/apple-iphone-12-pro-review">12 Pro</a>.</li>
+<li>Yours truly’s reviews of the <a href="https://daringfireball.net/2020/10/the_iphone_12_and_iphone_12_pro">iPhone 12/12 Pro</a> and <a href="https://daringfireball.net/2020/11/the_iphone_12_mini_and_iphone_12_pro_max">12 Mini/12 Pro Max</a>.</li>
+<li>“<a href="https://www.theverge.com/circuitbreaker/2018/8/14/17441686/verizon-at-t-phone-case-designer-selection-next-gen-store">Verizon and AT&amp;T Have Vastly Different Ideas About Phone Cases</a>” — Ashley Carman’s 2018 profile for The Verge of Helena Elicerio, Verizon’s phone case product manager.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>301: ‘A Craptastic Craptacular’, With Joanna Stern</title>
+ <link>https://daringfireball.net/thetalkshow/2020/11/23/ep-301</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/11/23/ep-301</guid>
+ <pubDate>Mon, 23 Nov 2020 22:07:46 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-301-joanna-stern.mp3" length="57816917" type="audio/mpeg" />
+ <itunes:duration>02:00:08</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Joanna Stern returns to the show to talk about the new M1 MacBook Air and 13-inch MacBook Pro.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Joanna Stern returns to the show to talk about the new M1 MacBook Air and 13-inch MacBook Pro.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Joanna Stern in the WSJ: “<a href="https://www.wsj.com/video/series/joanna-stern-personal-technology/goodbye-laptop-fan-noise-apple-m1-macbooks-run-fast-and-cool/28C9C872-EFA6-4599-8A53-5810872251CD">Apple’s M1 MacBook Air and MacBook Pro Review: The Laptop’s Biggest Leap in Years</a>”.</li>
+<li>And on YouTube: “<a href="https://youtu.be/RT8B1zlsAc0">Goodbye, Fan Noise</a>”.</li>
+<li><a href="https://daringfireball.net/2020/11/the_m1_macs">My review of the M1 MacBook Pro</a>.</li>
+<li><a href="https://twitter.com/SquawkAlley/status/1329112836484771846">Joanna’s and my joint appearance on CNBC’s Squawk Alley</a>, which started the <a href="https://www.loopinsight.com/2020/11/19/joanna-stern-and-john-gruber-on-cnbcs-squawk-alley-whose-webcam-is-better/">webcam-gate scandal</a>.</li>
+<li><a href="https://www.wsj.com/articles/the-best-chargers-for-your-iphone-12-tablet-laptop-and-other-usb-c-devices-11602689252">Joanna’s epic breakdown of the best available USB-C chargers</a>.</li>
+<li><a href="https://www.amazon.com/gp/product/B08FR2GRLY/?tag=df-amzn-20">Aukey’s adorable $50 90-watt 3-port charger</a>, and their even smaller <a href="https://www.amazon.com/gp/product/B0841VBW8H/?tag=df-amzn-20">$45 65-watt 2-port charger</a>.</li>
+<li>Joanna, back in July: “<a href="https://www.wsj.com/articles/quit-chrome-safari-and-edge-are-just-better-browsers-for-you-and-your-computer-11594558801">Quit Chrome. Safari and Edge Are Just Better Browsers for You and Your Computer.</a>”</li>
+<li><a href="https://reincubate.com/camo/">Camo</a> — excellent app that lets you use your iPhone or iPad as a Mac webcam.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>300: ‘Holiday Party 2020’, With Merlin Mann</title>
+ <link>https://daringfireball.net/thetalkshow/2020/11/07/ep-300</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/11/07/ep-300</guid>
+ <pubDate>Sat, 7 Nov 2020 13:23:34 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-300-merlin-mann.mp3" length="44109767" type="audio/mpeg" />
+ <itunes:duration>01:31:34</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Another election. A different result. Let’s talk around it.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Another election. A different result. Let’s talk around it.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+<li><a href="https://atoms.com/df">Atoms</a>: Say hello to your dream shoes. Free face mask with promo code <strong>DF</strong> at checkout.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2016/11/09/ep-172">Holiday Party (2016)</a>.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>299: ‘Sounds Like a Good Red Sauce Place’, With Special Guest Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2020/10/31/ep-299</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/10/31/ep-299</guid>
+ <pubDate>Sat, 31 Oct 2020 21:50:56 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-299-jason-snell.mp3" length="72980560" type="audio/mpeg" />
+ <itunes:duration>02:31:43</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show to talk about the iPhone 12 and 12 Pro, the new iPad-Pro-style iPad Air, the remarkable state of the Mac, and David Letterman’s battery-shopping trip to CVS.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show to talk about the iPhone 12 and 12 Pro, the new iPad-Pro-style iPad Air, the remarkable state of the Mac, and David Letterman’s battery-shopping trip to CVS.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://stitchfix.com/talkshow">Stitch Fix</a>: A personal styling company that makes getting the clothes you love effortless. Save 25% when you keep everything in your Fix.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.relay.fm/20macs">The 20 Macs for 2020 podcast project</a>.</li>
+<li><a href="https://sixcolors.com/post/2020/07/fun-with-charts-entirely-speculative-charts-about-apple-silicon/">Jason’s chart-based speculation on what we might expect from Apple Silicon Macs</a>.</li>
+<li><a href="https://daringfireball.net/2020/10/the_2020_ipad_air">My review of the new iPad Air</a>.</li>
+<li><a href="https://sixcolors.com/post/2020/10/almost-pro-2020-ipad-air-review/">Jason’s review of the new iPad Air</a>.</li>
+<li><a href="https://sixcolors.com/post/2020/10/iphone-12-iphone-12-pro-review-family-resemblance/">Jason’s review of the iPhone 12 and 12 Pro</a>.</li>
+<li><a href="https://daringfireball.net/2020/10/the_iphone_12_and_iphone_12_pro">My iPhone 12 review</a>, and <a href="https://daringfireball.net/2020/10/thoughts_and_observations_on_apples_hi_speed_iphone_12_event">my event wrap-up</a> with analysis of pricing.</li>
+<li><a href="https://www.nytimes.com/2020/10/19/arts/television/david-letterman-netflix.html">Dave Itzkoff’s profile of David Letterman for The New York Times</a>, regarding season 3 of <a href="https://www.netflix.com/title/80209096">his Netflix show “My Next Guest Needs No Introduction”</a>.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>298: ‘I’m Expecting Led Zeppelin IV’, With Special Guest MG Siegler</title>
+ <link>https://daringfireball.net/thetalkshow/2020/10/09/ep-298</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/10/09/ep-298</guid>
+ <pubDate>Fri, 9 Oct 2020 15:52:41 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-298-mg-siegler.mp3" length="69572214" type="audio/mpeg" />
+ <itunes:duration>02:24:37</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>MG Siegler returns to the show to talk about Apple Watch, the future of premium TV and movies, and a preview of next week’s “Hi, Speed” Apple event.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>MG Siegler returns to the show to talk about Apple Watch, the future of premium TV and movies, and a preview of next week’s “Hi, Speed” Apple event.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://nestpayroll.com/">Nest Payroll</a>: Easily pay your nanny, caregiver, or housekeeper quickly and legally. Use promocode <strong>talkshow30</strong> to get your first 30 days free.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://500ish.com/kind-of-blue-eb506140f5e7">MG on Apple Watch Series 6, and why he swapped Graphite stainless steel for blue aluminum</a>.</li>
+<li><a href="https://500ish.com/the-magic-of-ios-app-clip-demos-b7032075ae76">MG on App Clips</a> and <a href="https://firigames.com/phoenix2">the Clip demo of the game Phoenix 2</a>.</li>
+<li>“<a href="https://www.hodinkee.com/magazine/jony-ive-apple">Apple, Influence, and Ive</a>” — Ben Clymer’s 2018 profile of Jony Ive for Hodinkee.</li>
+<li><a href="https://www.nytimes.com/2018/07/08/business/media/hbo-att-merger.html">The seminal 2018 town hall meeting led by John Stankey</a>, the longtime AT&amp;T executive who now oversees HBO, that foreshadowed HBO’s decline.</li>
+<li><a href="https://daringfireball.net/linked/2018/04/02/2001-50th-anniversary">Christopher Nolan’s work on the 2018 50th anniversary “unrestored” print of Kubrick’s <em>2001: A Space Odyssey</em></a>.</li>
+<li><a href="https://news.yahoo.com/tenet-tops-300-million-globally-184435377.html">Nolan’s ill-advised decision to force <em>Tenet</em> into theaters amidst the COVID pandemic</a>.</li>
+<li><a href="https://www.imdb.com/title/tt1229238/"><em>Mission Impossible: Ghost Protocol</em></a> — perhaps the best film in a great series, directed by Brad Bird.</li>
+<li><a href="https://www.imdb.com/name/nm1560977/">Cary Joji Fukunaga</a> — director of the astounding first season of <em>True Detective</em> and the upcoming <em>No Time to Die</em> James Bond film.</li>
+<li><a href="https://www.imdb.com/title/tt0465538/"><em>Michael Clayton</em></a> — quietly great movie by Tony Gilroy, starring George Clooney.</li>
+<li><a href="https://billypenn.com/2019/12/22/whatever-happened-with-the-disney-hole-why-a-prime-center-city-site-is-still-sitting-empty/">DisneyQuest</a>, the aborted urban entertainment center in Philly that Disney never built in the late 1990s.</li>
+<li><a href="https://en.wikipedia.org/wiki/United_States_v._Paramount_Pictures,_Inc.">United States v. Paramount Pictures, Inc.</a> — 1948 Supreme Court antitrust case that resulted in movie studios being banned from owning theaters.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>297: ‘Subscribed to a Hamburger’, With David Smith</title>
+ <link>https://daringfireball.net/thetalkshow/2020/09/30/ep-297</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/09/30/ep-297</guid>
+ <pubDate>Wed, 30 Sep 2020 16:44:33 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-297-underscore-david-smith.mp3" length="80234295" type="audio/mpeg" />
+ <itunes:duration>02:46:50</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest “Underscore” David Smith joins the show to talk about iOS 14 widgets, WatchOS complications, sleep tracking, and his App Store chart-topping hit Widgetsmith.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest <a href="https://twitter.com/_davidsmith">“Underscore” David Smith</a> joins the show to talk about iOS 14 widgets, WatchOS complications, sleep tracking, and his App Store chart-topping hit <a href="https://apps.apple.com/us/app/id1523682319">Widgetsmith</a>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: We’re asking a lot of our Wi-Fi. Eero can help yours do more. Enter code <strong>thetalkshow</strong> at checkout to get free next-day shipping.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mintmobile.com/talkshow">Mint Mobile</a>: Get your new wireless plan for just $15/month with free shipping.</li>
+</ul>
+
+<p>Underscore’s apps:</p>
+
+<ul>
+<li><a href="https://apps.apple.com/us/app/widgetsmith/id1523682319">Widgetsmith</a></li>
+<li><a href="https://apps.apple.com/us/app/watchsmith/id1483088503?ls=1">Watchsmith</a></li>
+<li><a href="https://itunes.apple.com/us/app/sleep++/id1038440371?at=10l3KS&amp;ct=apps&amp;ls=1&amp;mt=8">Sleep++</a></li>
+<li><a href="https://itunes.apple.com/us/app/pedometer++/id712286167?mt=8&amp;at=10l3KS&amp;ct=blog">Pedometer++</a></li>
+<li>And <a href="https://david-smith.org/apps/">a lot more</a>. Seriously, he makes a lot of apps.</li>
+</ul>
+
+<p>Other links:</p>
+
+<ul>
+<li><a href="https://www.relay.fm/radar">Under the Radar</a> — Underscore’s weekly podcast with Marco Arment.</li>
+<li>Daring Fireball: “‎<a href="https://daringfireball.net/2020/09/widgetsmith_bunco_squad">Widgetsmith and The Case of the Missing App Store Bunco Squad</a>”.</li>
+<li><a href="https://www.weather.gov/">National Weather Service</a>.</li>
+<li><a href="http://weatherlineapp.com/">Weatherline</a>.</li>
+<li>Michael Ward’s classic 2004 piece for McSweeney’s: “<a href="https://www.mcsweeneys.net/articles/e-mail-addresses-it-would-be-really-annoying-to-give-out-over-the-phone">E-Mail Addresses It Would Be Really Annoying to Give Out Over the Phone</a>”.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>296: ‘Cameras Every Single Where’, With Michael Simmons</title>
+ <link>https://daringfireball.net/thetalkshow/2020/09/26/ep-296</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/09/26/ep-296</guid>
+ <pubDate>Sat, 26 Sep 2020 17:39:24 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-296-michael-simmons.mp3" length="67670204" type="audio/mpeg" />
+ <itunes:duration>02:20:39</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Michael Simmons joins the show. Topics include the release of iOS 14, widgets and home screen customization, pricing models for indie apps in the App Store era, and, of course, flying robot cameras.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest <a href="https://twitter.com/macguitar">Michael Simmons</a> joins the show. Topics include the release of iOS 14, widgets and home screen customization, pricing models for indie apps in the App Store era, and, of course, flying robot cameras.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>talkshow20</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://flexibits.com/blog/2020/09/fantastical-3-2-is-here-with-12-all-new-widgets-scribble-for-ipad-and-more/">Fantastical’s iOS 14 update with customizable widgets galore</a>.</li>
+<li><a href="https://mjtsai.com/blog/2020/09/15/ios-14-shipping-tomorrow/">Apple gave developers less than 24 hours notice</a> that iOS 14 was about to ship, despite spending all summer encouraging developers to be ready with iOS 14 features at launch.</li>
+<li><a href="https://nova.app/">Nova</a> — Panic’s new code editor/IDE for Mac.</li>
+<li><a href="https://www.sketch.com/">Sketch</a> — excellent Mac design and prototyping tool.</li>
+<li><a href="https://www.agenda.com/">Agenda</a> — excellent notes/planning app for Mac and iOS.</li>
+<li><a href="https://twitter.com/mcharo/status/1309924959964332037">@mcharo on Twitter customized all his apps with icons of their company CEOs</a> (or indie creators).</li>
+<li>IEEE Spectrum: “<a href="https://spectrum.ieee.org/automaton/robotics/drones/ring-indoor-security-drone">Why You Should Be Very Skeptical of Ring’s Indoor Security Drone</a>”.</li>
+</ul>
+
+<p>Mac desktop customization memory lane with Greg Landweber’s utilities:</p>
+
+<ul>
+<li><a href="https://macintoshgarden.org/apps/gregs-browser">Greg’s Browser</a> — NeXT-style column view file manager for classic Mac, worked wonderfully alongside the classic Finder.</li>
+<li><a href="https://macintoshgarden.org/apps/gregs-buttons">Greg’s Buttons</a> — Control Panel to customize the interface of System 7, turned flat black-and-white buttons into cool 3D buttons. Now we’ve turned all our cool 3D buttons into boring monochromatic flat buttons.</li>
+<li><a href="https://macintoshgarden.org/apps/aaron-161">Aaron</a> — brought the then-future Platinum appearance to System 7.</li>
+<li><a href="https://macintoshgarden.org/apps/beview">BeView</a> — made your Mac look like BeOS.</li>
+<li><a href="https://web.archive.org/web/20050216050114/http://www.kaleidoscope.net/What_is_Kaleidoscope.html">Kaleidoscope</a> — the masterpiece of the genre, from Landweber and Arlo Rose. A full-on custom theme engine for an OS that was not designed with system-wide theming as a feature. The golden age of interface customization hacks.</li>
+<li><a href="https://en.wikipedia.org/wiki/Appearance_Manager">Appearance Manager</a> — Apple’s officially supported theming engine that wound up shipping with just one theme.</li>
+<li><a href="https://macintoshgarden.org/apps/appearance-addons-appearance-manager">Info on Apple’s Hi-Tech, Gizmo, and Drawing Board themes</a>.</li>
+<li><a href="http://www.atpm.com/6.08/gui-junkie.shtml">August 2000 ATPM story by Christopher Turner on Kaleidoscope and Appearance Manager</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>295: ‘Signing Up to Take Some Vitamins’, With Peter Kafka</title>
+ <link>https://daringfireball.net/thetalkshow/2020/09/17/ep-295</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/09/17/ep-295</guid>
+ <pubDate>Thu, 17 Sep 2020 14:55:16 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-295-peter-kafka.mp3" length="38334962" type="audio/mpeg" />
+ <itunes:duration>01:19:32</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Peter Kafka returns to the show to discuss the news from Apple’s “Time Flies” event — new Apple Watches, new non-Pro iPads, and particularly the Apple One services bundle.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Peter Kafka returns to the show to discuss the news from Apple's "Time Flies" event -- new Apple Watches, new non-Pro iPads, and particularly the Apple One services bundle.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>talkshow20</strong>.</li>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>“<a href="https://www.newyorker.com/magazine/1993/04/05/secrets-of-the-magus">Ricky Jay’s Magical Secrets</a>” — Mark Singer’s wondrous profile for The New Yorker in 1993. I just burst out laughing when I re-read <a href="https://daringfireball.net/linked/2018/11/24/ricky-jay">this snippet I quoted</a> from that piece for DF.</li>
+<li><a href="https://daringfireball.net/s/ricky+jay">The complete Ricky Jay archives at DF</a>.</li>
+<li><a href="https://twitter.com/pkafka/status/1305935414851768320">Spotify’s statement griping that Apple One constitutes anticompetive behavior</a>.</li>
+<li><a href="https://podcasts.apple.com/us/podcast/recode-media/id1080467174#episodeGuid=1f076a6c-f837-11ea-8c43-5fd5003dfef9">The latest episode of Peter’s own podcast, Recode Media, with special guest Ben Thompson</a>.</li>
+<li><a href="https://www.apple.com/apple-events/september-2020/">Apple’s “Time Flies” event video</a>.</li>
+<li><a href="https://daringfireball.net/2020/09/brief_thoughts_and_observations_time_flies_apple_event">My thoughts and observations on the event and announcements</a>.</li>
+<li>“<a href="https://www.youtube.com/watch?v=bQlpDiXPZHQ">I’ve fallen and I can’t get up!</a>” — Apple’s new retro style commercial for Apple Watch Family Setup.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>294: ‘DOS Rot’, With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2020/08/31/ep-294</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/08/31/ep-294</guid>
+ <pubDate>Mon, 31 Aug 2020 23:01:37 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-294-john-moltz.mp3" length="45214927" type="audio/mpeg" />
+ <itunes:duration>01:33:53</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Moltz returns to the show. Poodles are great dogs. Windows stinks worse than ever. Everyone should watch “Ted Lasso”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Moltz returns to the show. Poodles are great dogs. Windows stinks worse than ever. Everyone should watch <em>Ted Lasso</em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://hellofresh.com/talkshow60">Hello Fresh</a>: Get fresh, pre-measured ingredients and mouthwatering seasonal recipes delivered right to your door with Hello Fresh, America’s #1 meal kit.</li>
+<li><a href="https://www.backblaze.com/daringfireball">Backblaze</a>: Unlimited cloud backup for just $6/month. Start a free 15-day free trial today.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.crazywebstudio.co.th/2019/how-to-solve-code-43-nvidia-gtx10xx-or-rtx20xx-gpu-problem/">How to Solve the “Code 43” Nvidia GTX10xx or RTX20xx GPU Problem</a>.</li>
+<li><a href="https://daringfireball.net/2020/08/apple_one_subscription_bundle">Me on pricing the “Apple One” services bundle</a>.</li>
+<li><a href="https://deadline.com/2020/08/ted-lasso-renewed-season-2-apple-jason-sudeikis-bill-lawrence-1203017470/">“Ted Lasso” renewed for second season</a>.</li>
+<li><a href="https://twitter.com/cabel/status/1295892688995147776">Cabel Sasser’s tweet on kids and software pricing</a>.</li>
+<li><a href="https://www.easyuefi.com/wintousb/index.html">WinToUSB — $30 utility for installing Windows on an external USB drive</a>.</li>
+<li><a href="https://www.avery.com/">Avery</a> — the printer label company whose name I couldn’t think of.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>293: ‘I’m More of a Porkins Guy’, With Anil Dash</title>
+ <link>https://daringfireball.net/thetalkshow/2020/08/27/ep-293</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/08/27/ep-293</guid>
+ <pubDate>Thu, 27 Aug 2020 23:40:43 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-293-anil-dash.mp3" length="69254613" type="audio/mpeg" />
+ <itunes:duration>02:23:57</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Anil Dash joins the show. Topics include the 25th anniversary of Windows 95, and the parallels between the cyber era of computing and today’s App Store controversies.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Anil Dash joins the show. Topics include the 25th anniversary of Windows 95, and the parallels between the cyber era of computing and today’s App Store controversies.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.honeybadger.io/">Honeybadger</a>: The web developer's <em>secret weapon</em>. It only takes a few minutes to set up Honeybadger’s total monitoring suite. Try it free for 15 days.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: We’re asking a lot of our Wi-Fi. Eero can help yours do more. Use code <strong>thetalkshow</strong> at checkout for <em>free</em> next day shipping.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>talkshow20</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://anildash.com/2020/08/25/what-windows-95-changed/">Anil on Windows 95</a>.</li>
+<li><a href="https://sixcolors.com/post/2020/08/25-years-of-so-what/">Jason Snell with the Mac user’s (and MacUser’s) take on Windows 95</a>.</li>
+<li><a href="https://daringfireball.net/linked/2020/08/27/snell-win95">My take on Snell’s take</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=BNzWyQPIpVg&amp;feature=emb_title">Microsoft’s Windows 95 “Start Me Up” commercial</a>.</li>
+<li><a href="https://twitter.com/tolmasky/status/1297199788316692480">Francisco Tolmasky’s observation on Apple’s control over iOS stifling innovation</a>.</li>
+<li><a href="https://glitch.com/">Glitch</a>.</li>
+<li><a href="https://www.boscovs.com/wcsstore/boscovs/images/static/about_boscov/boscovs_history.html">Boscov’s</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/E.T._the_Extra-Terrestrial_(video_game)">How 728,000 “E.T.: The Extra Terrestrial” Atari 2600 cartridges wound up in a landfill</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Vectrex">Vectrex, the vector-display home video game system I nearly pissed my pants to play</a>.</li>
+<li>Classic Mac OS’s curiously-named built-in text editor <a href="https://en.wikipedia.org/wiki/TeachText">TeachText</a> and its successor, <a href="https://en.wikipedia.org/wiki/SimpleText">SimpleText</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/OS/2">OS/2 Warp</a>.</li>
+<li><a href="http://web.mit.edu/os2/www/flc.html">OS/2 Frequently Launched Criticisms</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=LtRunIKuxfw">Michael Sippey demoing TypePad for iPhone at WWDC 2008</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>292: ‘Not the Batman We Want or Need’, With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2020/08/20/ep-292</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/08/20/ep-292</guid>
+ <pubDate>Thu, 20 Aug 2020 23:52:32 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-292-rene-ritchie.mp3" length="76822567" type="audio/mpeg" />
+ <itunes:duration>02:39:43</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show. Topics include Phil Schiller advancing to Apple Fellow, Microsoft’s simmering spat with Apple over Xbox Game Pass and the App Store’s ban on game streaming services, and Epic’s sizzling spat with Apple over, well, the entire concept of iOS as we know it.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show. Topics include Phil Schiller advancing to Apple Fellow, Microsoft’s simmering spat with Apple over Xbox Game Pass and the App Store’s ban on game streaming services, and Epic’s sizzling spat with Apple over, well, the entire concept of iOS as we know it.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://buyraycon.com/talkshow">Raycon</a>: The next wave in wireless audio. Save 15% with this URL and code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/linked/2020/08/20/beats-go-on">Beats 1 is now Apple Music 1 (and the Beats brand is probably not long for this world)</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2020/08/phil-schiller-advances-to-apple-fellow/">Apple Newsroom: Phil Schiller advances to Apple Fellow</a>.</li>
+<li><a href="https://youtu.be/_ui0eoqPsdU">The Curious Editing of 'Artemis Fowl'</a>.</li>
+<li><a href="https://johnaugust.com/arlo-finch">John August’s <em>Arlo Finch</em> series, which is unrelated to <em>Artemis Fowl</em> but very cool nonetheless</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=BbHGpbNsGiM">Rene on Apple’s decision not to allow Xbox game streaming on iOS</a>.</li>
+<li><a href="https://daringfireball.net/2020/08/epic_app_store_war">Epic goes to war with Apple over the App Store</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>291: ‘Algorithms, How Do They Work?’, With Nilay Patel</title>
+ <link>https://daringfireball.net/thetalkshow/2020/07/31/ep-291</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/07/31/ep-291</guid>
+ <pubDate>Fri, 31 Jul 2020 23:21:11 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-291-nilay-patel.mp3" length="68013670" type="audio/mpeg" />
+ <itunes:duration>02:21:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Nilay Patel returns to the show to discuss this week’s House antitrust hearing featuring testimony from Tim Cook, Jeff Bezos, Sundar Pichai, and Mark Zuckerberg.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Nilay Patel returns to the show to discuss this week’s House antitrust hearing featuring testimony from Tim Cook, Jeff Bezos, Sundar Pichai, and Mark Zuckerberg.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>talkshow20</strong>.</li>
+<li><a href="https://mintmobile.com/talkshow">Mint Mobile</a>: Cut your wireless bill to $15 a month and get your new plan shipped to your door <em>free</em>.</li>
+<li><a href="https://stitchfix.com/talkshow">Stitch Fix</a>: A personal styling company that makes getting the clothes you love effortless. Save 25% when you keep everything in your Fix.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=WBFDQvIrWYM&amp;feature=emb_title">Full 5.5-hour video of the hearing</a>.</li>
+<li>Casey Newton at The Verge: “<a href="https://www.youtube.com/watch?v=gROe-7EQncU">Overdue, messy, and unsatisfying — but also a necessary part of a hugely important conversation</a>”.</li>
+<li><a href="https://twitter.com/gruber/status/1288537290697068547">Rep. James Sensenbrenner</a> (R-WI) and famed character actor <a href="https://www.imdb.com/name/nm0001826/">M. Emmet Walsh</a>, who was born to play him.</li>
+<li><a href="https://techcrunch.com/2020/07/29/bezos-cant-guarantee-no-anti-competitive-activity-as-congress-catches-him-flat-footed/">Rep. Pramila Jayapal (D-WA) grilling Jeff Bezos on anti-competitive business practices at Amazon</a>.</li>
+<li>Lina M. Khan: “<a href="https://www.yalelawjournal.org/note/amazons-antitrust-paradox">Amazon’s Antitrust Paradox</a>”. Seminal paper published in The Yale Law Journal in 2017.</li>
+<li><a href="https://www.theverge.com/2020/7/30/21348130/apple-documents-steve-jobs-email-books-amazon-apps-antitrust-investigation-schiller">The Verge on the 2010 emails between Phil Schiller, Eddy Cue, and Steve Jobs that set the rules that keep Amazon from selling Kindle books in their iOS app</a>.</li>
+<li><a href="https://www.amazon.com/Curse-Bigness-Antitrust-New-Gilded/dp/0999745468/?tag=df-amzn-20">Tim Wu’s <em>The Curse of Bigness</em></a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>290: ‘The Least Worst’, With Christina Warren</title>
+ <link>https://daringfireball.net/thetalkshow/2020/07/28/ep-290</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/07/28/ep-290</guid>
+ <pubDate>Tue, 28 Jul 2020 16:07:54 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-290-christina-warren.mp3" length="75802936" type="audio/mpeg" />
+ <itunes:duration>02:37:36</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Christina Warren joins the show. Topics include the App Store and antitrust, the general crumminess of video streaming service UIs, and historical examples of when Apple gets something wrong.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Christina Warren joins the show. Topics include the App Store and antitrust, the general crumminess of video streaming service UIs, and historical examples of when Apple gets something wrong.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mackweldon.com/talkshow">Mack Weldon</a>: Reinventing men’s basics with smart design, premium fabrics, and simple shopping. Get 20% off your first order with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://buyraycon.com/talkshow">Raycon</a>: The next wave in wireless audio. Save 15% with this URL and code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.wired.com/story/20-years-ago-steve-jobs-built-the-coolest-computer-ever-it-bombed/">Steven Levy on the G4 Cube’s 20th anniversary</a>.</li>
+<li><a href="https://daringfireball.net/linked/2020/07/24/levy-jobs-cube">Me on the Cube and lessons learned</a>.</li>
+<li><a href="https://daringfireball.net/linked/2020/07/22/app-store-economists">Report commissioned by Apple comparing the App Store to other “digital marketplaces”</a>.</li>
+<li>Rolling Stone TV Critic Alan Sepinwall: “<a href="https://www.rollingstone.com/tv/tv-features/streaming-wars-user-experience-sepinwall-1031729/">Who Loses Big in the Great Streaming Wars? The User</a>”.</li>
+<li><a href="https://sixcolors.com/link/2020/07/user-interface-is-a-casualty-of-the-streaming-wars/">Jason Snell pointing out</a> that even the playback UIs stink for a lot of streaming apps.</li>
+<li><a href="https://medium.com/@songadaymann/steve-jobs-danced-to-my-song-9e805c0f482d">Jonathan Mann on Apple (Steve Jobs) deciding to use his “Antennagate Song”</a> to open their emergency press conference.</li>
+<li>From the DF Archive: “<a href="https://daringfireball.net/2010/07/antennagate_bottom_line">Antennagate Bottom Line</a>”.</li>
+<li>“<a href="https://www.netflix.com/title/80214563">The Innocence Files</a>” — outstanding series on Netflix documenting the work of the Innocence Project, which works to free those convicted of crimes they didn’t commit.</li>
+<li><a href="https://www.relay.fm/rocket">Rocket</a> — Weekly podcast hosted by Christina, Simone de Rochefort, and Brianna Wu.</li>
+<li><a href="https://twitter.com/film_girl">Christina on Twitter</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>289: ‘I’m Batman. America. Freedom.’ With Adam Lisagor</title>
+ <link>https://daringfireball.net/thetalkshow/2020/07/23/ep-289</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/07/23/ep-289</guid>
+ <pubDate>Thu, 23 Jul 2020 17:48:14 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-289-adam-lisagor.mp3" length="76901650" type="audio/mpeg" />
+ <itunes:duration>02:39:53</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Adam Lisagor returns to the show. Topics include the cinematic and presentation style of Apple’s WWDC keynote, some post-production details on The Talk Show’s WWDC episode, the tribulations of producing professional videos during COVID-19, and the new sounds of MacOS 11 Big Sur.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Adam Lisagor returns to the show. Topics include the cinematic and presentation style of Apple’s WWDC keynote, some post-production details on The Talk Show’s WWDC episode, the tribulations of producing professional videos during COVID-19, and the new sounds of MacOS 11 Big Sur.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://atoms.com/dfm">Atoms Everyday Face Mask</a>: Multiple sizes, multiple colors. Breathable, washable, and reusable. </li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>talkshow20</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=XqjifWtmQqQ">Big Sur alerts</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=2wf_XPdJi4k">Big Sur system sounds</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=Mt1bgsvsWms&amp;feature=youtu.be">Prank with a loud computer startup chime in a crowded library</a>.</li>
+<li><a href="https://sandwich.co/lunchbox">Sandwich’s conceived/shot/produced in quarantine video for Slack</a> — working from home to make a video about working from home.</li>
+<li><a href="https://daringfireball.net/thetalkshow/2020/06/24/ep-286">The Talk Show Remote From WWDC 2020</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=jijhJj_rNDI">Apple’s video with Craig Federighi introducing the iPad Magic Keyboard</a> back in March, a precursor to the WWDC video style.</li>
+<li><a href="https://twitter.com/gruber/status/1274918806817734656">My eve-of-keynote guess that WWDC’s keynote would look like that Magic Keyboard intro video</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=NBPp-h3uNs8">Apple’s old iTunes “Rip Mix Burn” commercial set in an empty theater</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=D0NbGbZBPL0">Steve Jobs introducing the G4 Cube at Macworld New York in 2000</a>.</li>
+<li><a href="https://twitter.com/adamlisagor/status/1279874030967742464">Adam’s delightfully thoughtful thread on face masks</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=0b_eHBZLM6U">John Oliver’s Last Week Tonight on coronavirus conspiracy theories</a>.</li>
+<li><a href="https://www.wired.com/2012/08/apple-amazon-mat-honan-hacking/">Mat Honan back in 2012 on how and why he got hacked</a>.</li>
+<li><a href="https://www.californiaking.org/">California King</a> — the reboot of You Look Nice Today.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>288: ‘It Shouldn’t Be Hard to Get a Smoothie’ With Dan Frommer</title>
+ <link>https://daringfireball.net/thetalkshow/2020/06/30/ep-288</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/06/30/ep-288</guid>
+ <pubDate>Tue, 30 Jun 2020 23:53:54 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-288-dan-frommer.mp3" length="40654335" type="audio/mpeg" />
+ <itunes:duration>01:24:04</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Dan Frommer returns to the show for more analysis of WWDC 2020, including App Clips and the Mac's transition to Apple silicon.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Dan Frommer returns to the show for more analysis of WWDC 2020, including App Clips and the Mac’s transition to Apple silicon.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. New accounts get a $20 credit with code <strong>talkshow20</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Dan at The New Consumer: “<a href="https://newconsumer.com/2020/06/apple-app-clips-wwdc-keynote/">Why Apple’s New ‘App Clips’ Matter</a>”.</li>
+<li><a href="https://developer.apple.com/news/?id=dsd023qd">WWDC 2020 sessions on App Clips</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>287: ‘Patina of Usefulness’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2020/06/26/ep-287</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/06/26/ep-287</guid>
+ <pubDate>Fri, 26 Jun 2020 23:24:52 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-287-matthew-panzarino.mp3" length="38394200" type="audio/mpeg" />
+ <itunes:duration>01:19:40</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Matthew Panzarino joins the show to talk about WWDC 2020.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Matthew Panzarino joins the show to talk about WWDC 2020.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hellofresh.com/talkshow10">Hello Fresh</a>: With America’s #1 meal kit, get easy, seasonal recipes and pre-measured ingredients delivered right to your door. All you have to do is cook and enjoy.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>
+<a href="https://techcrunch.com/2020/06/18/interview-apples-schiller-says-position-on-hey-app-is-unchanged-and-no-rules-changes-are-imminent/">Panzarino's interview with Phil Schiller on Hey's rejection from the App Store</a>.</li>
+<li>“<a href="https://daringfireball.net/2020/06/the_talk_show_wwdc_2020">The Talk Show Remote From WWDC 2020, With Craig Federighi and Greg Joswiak</a>”.</li>
+<li><a href="https://www.apple.com/apple-events/june-2020/">Apple’s WWDC 2020 keynote</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>286: Remote From WWDC 2020 With Craig Federighi and Greg Joswiak</title>
+ <link>https://daringfireball.net/thetalkshow/2020/06/24/ep-286</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/06/24/ep-286</guid>
+ <pubDate>Wed, 24 Jun 2020 23:59:00 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-286-wwdc-2020.mp3" length="46421475" type="audio/mpeg" />
+ <itunes:duration>01:35:48</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Gruber is joined by Craig Federighi and Greg Joswiak to discuss the news from WWDC 2020: the Mac’s transition to Apple silicon, MacOS 11 Big Sur, iOS and iPadOS 14, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Gruber is joined by Craig Federighi and Greg Joswiak to discuss the news from WWDC 2020: the Mac’s transition to Apple silicon, MacOS 11 Big Sur, iOS and iPadOS 14, and more.</p>
+
+<p><a href="https://youtu.be/Hg9F1Qjv3iU">Video of this show is available on YouTube.</a></p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://flexibits.com/talkshow">Fantastical Premium</a>: Your new work from home companion. 14-day free trial and 20% off your first purchase (up to a one-year subscription).</li>
+<li><a href="https://www.kolide.com/mdm/">Kolide</a>: For fast growing companies that want to secure Mac, Windows, and Linux devices. Coming soon: MDM completely rethought, that puts the user first. Sign up now.</li>
+<li><a href="https://scrumcenter.com/">ScrumCenter</a>: Focus, innovate, and deliver -- take the next step on your Agile journey. Save 20% on all courses with promo code “TTS”.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/june-2020/">The WWDC 2020 Keynote</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2020/06/apple-announces-mac-transition-to-apple-silicon/">Apple announces Mac transition to Apple silicon</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2020/06/apple-introduces-macos-big-sur-with-a-beautiful-new-design/">MacOS 11 Big Sur</a> — new UI and all-new Catalyst-based version of Messages.</li>
+<li><a href="https://www.apple.com/newsroom/2020/06/apple-reimagines-the-iphone-experience-with-ios-14/">iOS 14</a> — home screen widgets and app clips. And, finally, incoming phone call notifications don’t take over your entire screen.</li>
+<li><a href="https://www.apple.com/newsroom/2020/06/ipados-14-introduces-new-features-designed-specifically-for-ipad/">iPadOS 14</a> — new handwriting features with Apple Pencil.</li>
+<li><a href="https://www.apple.com/newsroom/2020/06/watchos-7-adds-significant-personalization-health-and-fitness-features-to-apple-watch/">WatchOS 7</a> — watch face sharing, sleep tracking, and hand-washing detection.</li>
+</ul>
+
+<p><em>The audio version of this episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>285: ‘Fahrenheit Truthers’ With Ben Thompson</title>
+ <link>https://daringfireball.net/thetalkshow/2020/05/22/ep-285</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/05/22/ep-285</guid>
+ <pubDate>Fri, 22 May 2020 22:43:04 EDT</pubDate>
+ <enclosure url="https://traffic.libsyn.com/secure/daringfireball/thetalkshow-285-ben-thompson.mp3" length="69506264" type="audio/mpeg" />
+ <itunes:duration>02:24:12</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Ben Thompson returns to the show and there’s no sports talk because there’s no sports. Instead: temperature scales, Joe Rogan and Spotify, and Dithering.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Ben Thompson returns to the show and there’s no sports talk because there’s no sports. Instead: temperature scales, Joe Rogan and Spotify, and Dithering.</p>
+
+<p>Sponsored by:</p>
+
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Use code <strong>talkshow20</strong> and get $20 credit toward your next project.</li>
+<li><a href="https://yesplz.coffee/?promo=fireball5&amp;utm_source=rss&amp;utm_medium=referral&amp;utm_campaign=daringfireball">Yes Plz</a>: Brew yourself the best coffee. Try Yes Plz today and save $5 with code <strong>fireball5</strong>.</li>
+</ul>
+
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://dithering.fm/">Dithering</a>.</li>
+<li>Ben at Stratechery: “<a href="https://stratechery.com/2020/dithering-and-the-open-web/">Dithering and Open Versus Free</a>.”</li>
+<li>Me at DF: “<a href="https://daringfireball.net/2020/05/dithering">Dithering</a>” and “<a href="https://daringfireball.net/2020/05/more_on_dithering">More on Dithering</a>”.</li>
+<li>Me at Macworld back in 2010: “<a href="https://www.macworld.com/article/1156153/macofthefuturegruber.html">It’s the heaviness of the Mac that allows iOS to remain light.</a>”</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>284: ‘30 Years of TidBITS’ With Adam Engst</title>
+ <link>https://daringfireball.net/thetalkshow/2020/05/08/ep-284</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/05/08/ep-284</guid>
+ <pubDate>Fri, 8 May 2020 20:02:48 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-284-adam-engst.mp3" length="54922222" type="audio/mpeg" />
+ <itunes:duration>01:54:06</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Adam Engst joins the show to celebrate 30 years of TidBITS — the only publication going strong today that started as a weekly HyperCard stack.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Adam Engst joins the show to celebrate 30 years of TidBITS -- the only publication going strong today that started as a weekly HyperCard stack.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Adam Engst: “<a href="https://tidbits.com/2020/04/13/tidbits-marks-its-30th-anniversary-in-a-time-of-pandemic/">TidBITS Marks Its 30th Anniversary in a Time of Pandemic</a>”.</li>
+<li>“<a href="https://www.info-mac.org/">Info-Mac</a> is a discussion forum for Apple users as well as an archive of online content dating back to 1984.”</li>
+<li>The Mac compression wars: Raymond Lau’s <a href="https://en.wikipedia.org/wiki/StuffIt">StuffIt</a> vs. Bill Goodman’s <a href="https://en.wikipedia.org/wiki/Compact_Pro">Compact Pro</a>. I was a Compact Pro man, myself.</li>
+<li><a href="http://www.cyclos.com/compactpro.htm">The official Compact Pro website</a> is, amazingly, still up.</li>
+<li><a href="https://tidbits.com/issues/42/">TidBITS issue 42, 11 February 1991: “Compression Wars”</a>. That’s right, 1991.</li>
+<li><a href="https://tidbits.com/page/2/?s=machack">TidBITS’s coverage of MacHack over the years</a>.</li>
+<li><a href="https://twitter.com/skowal/status/1259145150665818117">My 1994 letter to Andy Ihnatko’s Help Desk column in MacUser magazine</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>283: ‘Some Kind of Sandwich’ With Dieter Bohn</title>
+ <link>https://daringfireball.net/thetalkshow/2020/04/30/ep-283</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/04/30/ep-283</guid>
+ <pubDate>Thu, 30 Apr 2020 23:54:41 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-283-dieter-bohn.mp3" length="52994074" type="audio/mpeg" />
+ <itunes:duration>01:50:05</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Dieter Bohn joins the show to talk about the iPad Magic Keyboard, the new iPhone SE, and the state of Android flagship phones.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Dieter Bohn joins the show to talk about the iPad Magic Keyboard, the new iPhone SE, and the state of Android flagship phones.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.theverge.com/2020/4/20/21227345/magic-keyboard-ipad-pro-tablet-laptop-review-price-specs-features">Dieter’s review of the iPad Magic Keyboard</a>.</li>
+<li><a href="https://daringfireball.net/2020/04/the_ipad_magic_keyboard">My review of the iPad Magic Keyboard</a>.</li>
+<li><a href="https://www.theverge.com/2020/4/22/21230308/apple-iphone-se-2-2020-review-features-specs-camera-price">Dieter’s review of the iPhone SE</a>.</li>
+<li><a href="https://daringfireball.net/2020/04/the_2020_iphone_se">My review of the new iPhone SE</a>.</li>
+<li><a href="https://www.theverge.com/2020/4/14/21219861/oneplus-8-pro-review-specs-features-price-camera-battery-photos-video">Dieter’s review of the OnePlus 8 Pro</a>.</li>
+<li>Samsung <a href="https://www.theverge.com/2020/3/11/21172039/samsung-galaxy-s20-plus-review-camera-5g-screen-android">Galaxy S20</a> and <a href="https://www.theverge.com/2020/2/27/21155012/samsung-galaxy-s20-ultra-review-5g-screen-camera-space-zoom-price">S20 Ultra</a> reviews.</li>
+<li><a href="https://www.icloud.com/shortcuts/04e678a485f348359ad62c9b3ef2579b">Federico Vittici’s Shortcuts shortcut for jumping to the Hardware Keyboard section of Settings</a>.</li>
+<li><a href="https://leancrew.com/all-this/2020/04/weighing-in-as-an-apple-pundit/">Dr. Drang’s pre-shipping estimates of the iPad Magic Keyboard weights</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>282: ‘Everybody Is an Expert’ With Joanna Stern</title>
+ <link>https://daringfireball.net/thetalkshow/2020/04/14/ep-282</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/04/14/ep-282</guid>
+ <pubDate>Tue, 14 Apr 2020 18:09:43 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-282-joanna-stern.mp3" length="63235060" type="audio/mpeg" />
+ <itunes:duration>02:11:25</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Joanna Stern returns to the show to talk about working from home, the utter suckitude of laptop webcams, the new MacBook Air, and Face ID in our new world of face-mask-wearing.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Joanna Stern returns to the show to talk about working from home, the utter suckitude of laptop webcams, the new MacBook Air, and Face ID in our new world of face-mask-wearing.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: The Wi-Fi your home deserves. Use code <strong>thetalkshow</strong> for free overnight shipping with this link.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=qmL9wUzRFio">Joanna’s “How to Make an iPad Stand” video</a>.</li>
+<li>Joanna’s <a href="https://www.wsj.com/articles/a-macbook-air-review-at-the-worst-possible-time-11586005201">review of the new Macbook Air</a>, and <a href="https://www.wsj.com/video/series/joanna-stern-personal-technology/laptop-webcam-showdown-macbook-air-dell-xps-theyre-pretty-bad/415D393C-4320-442B-974D-1887E20C057F">her video on the state of laptop webcams</a>.</li>
+<li><a href="https://daringfireball.net/2020/03/the_2020_macbook_air">My review of the new MacBook Air</a>.</li>
+<li>Joanna’s column (and video) on <a href="https://www.wsj.com/articles/iphone-cant-recognize-you-with-a-mask-on-heres-what-to-do-about-it-11586362256">Face ID’s inability to recognize us while wearing face masks</a>.</li>
+<li>Joanna’s iPhone X review from 2017, <a href="https://www.wsj.com/video/series/joanna-stern-personal-technology/iphone-x-review-testing-and-tricking-faceid/B569BC9B-3175-4513-83CE-A17EB6843B62">wherein she tried to fool Face ID with 3D-printed faces</a>.</li>
+<li>Yours truly back in August 2017: “<a href="https://daringfireball.net/2017/08/safari_should_display_favicons_in_its_tabs">Safari Should Display Favicons in Its Tabs</a>”.</li>
+<li>WWDC 2018: <a href="https://www.macrumors.com/2018/06/05/safari-12-favicons/">Apple announces favicons in Safari tabs</a>.</li>
+<li><a href="https://twitter.com/waltmossberg/status/1244350804561141766?s=20">Walt Mossberg on Chrome as a resource hog on MacOS</a>.</li>
+<li>The Verge: “<a href="https://www.theverge.com/2020/4/9/21199521/webcam-shortage-price-raise-logitech-razer-amazon-best-buy-ebay">Webcams Have Become Impossible to Find, and Prices Are Skyrocketing</a>”.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>281: ‘A Kryptonian Baby’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2020/03/31/ep-281</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/03/31/ep-281</guid>
+ <pubDate>Tue, 31 Mar 2020 23:55:26 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-281-rene-ritchie.mp3" length="68116343" type="audio/mpeg" />
+ <itunes:duration>02:20:37</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show to talk about going independent after 11 years at iMore. Topics include the new MacBook Air and iPad Pros, and we answer questions sent by listeners.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show to talk about going independent after 11 years at iMore. Topics include the new MacBook Air and iPad Pros, and we answer questions sent by listeners.</p>
+
+<p>Sponsors:</p>
+
+<ul>
+<li><a href="https://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.youtube.com/reneritchie">Rene’s new YouTube channel</a>.</li>
+<li><a href="https://reneritchie.net/">And his new website</a>. (Great logo.)</li>
+<li>“<a href="https://www.ben-evans.com/benedictevans/2016/4/20/the-best-is-the-last">The Best Is Last</a>”: 2016 piece by Benedict Evans arguing that “a technology often produces its best results just when it’s ready to be replaced — it’s the best it’s ever been, but it’s also the best it could ever be”, using the specific example of propeller-based passenger planes.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>280: ‘The Subtle Difference Between Hand Sanitizer and Vodka’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2020/03/26/ep-280</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/03/26/ep-280</guid>
+ <pubDate>Thu, 26 Mar 2020 23:56:03 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-280-matthew-panzarino.mp3" length="70369306" type="audio/mpeg" />
+ <itunes:duration>02:26:17</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show. Topics include the brand new MacBook Air and iPad Pros, and, you know, global pandemics in the internet age.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show. Topics include the brand new MacBook Air and iPad Pros, and, you know, global pandemics in the internet age.</p>
+
+<p>Sponsors:</p>
+
+<ul>
+<li><a href="https://yesplz.coffee/?promo=fireball5&amp;utm_source=rss&amp;utm_medium=referral&amp;utm_campaign=daringfireball">Yes Plz</a>: Brew yourself the best coffee. Try YES PLZ today and save $5 with code <strong>fireball5</strong>.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Wi-Fi done right. Get free overnight shipping with promo code <strong>thetalkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/gruber/status/1632656843">My dumb handwashing tweet from back in 2009</a>.</li>
+<li><a href="https://www.punkitup.com/twitpop/a-bunch-of-fucking-pigs/">Daniel Jalkut’s beautiful song inspired by that dumb tweet</a>.</li>
+<li><a href="https://www.netflix.com/title/81070659">Ronny Chieng’s hilarious Netflix standup special</a>.</li>
+<li><a href="https://daringfireball.net/2020/03/the_2020_macbook_air">My take on the new MacBook Air</a>.</li>
+<li><a href="https://daringfireball.net/2020/03/the_2020_ipad_pros">My take on the new iPad Pros</a>.</li>
+<li><a href="https://techcrunch.com/2020/03/24/review-100000-miles-and-one-week-with-an-ipad-pro/">Panzarino’s take on the new iPad Pros and relying on one as his only travel computer for the last 18 months</a>.</li>
+<li>Also from Panzarino: “<a href="https://techcrunch.com/2020/03/23/half-lifealyx-delivers-the-watershed-moment-vr-gaming-needs/"><em>Half-Life: Alyx</em> Delivers the Watershed Moment VR Gaming Needs</a>”.</li>
+<li><a href="https://twitter.com/titosvodka/status/1241854314538287110">“Do Not Drink”</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>279: ‘Chain of Precision’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2020/03/17/ep-279</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/03/17/ep-279</guid>
+ <pubDate>Tue, 17 Mar 2020 23:54:46 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-279-jason-snell.mp3" length="66872666" type="audio/mpeg" />
+ <itunes:duration>02:19:00</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show. Life during the COVID-19 pandemic, WWDC going online-only, Apple's in-person on-campus workplace culture, speculation on upcoming Apple product releases, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show. Life during the COVID-19 pandemic, WWDC going online-only, Apple's in-person on-campus workplace culture, speculation on upcoming Apple product releases, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/bugcounter/status/1239672367917514754">Don Schaffner’s thread on the safety of takeout</a>.</li>
+<li><a href="https://daringfireball.net/2004/06/dashboard_vs_konfabulator">From the DF archive back in 2004: “Dashboard vs. Konfabulator”</a>.</li>
+<li><a href="https://fortune.com/2018/09/29/google-apple-safari-search-engine/">Google pays Apple a fortune to remain the default search engine in Safari</a>.</li>
+<li><a href="https://www.macrumors.com/2020/03/14/apple-secrecy-poses-challenge-to-working-from-home/">MacRumors: Some Apple Employees Say Company’s Culture of Secrecy Makes Working From Home Challenging</a>.</li>
+<li><a href="https://twitter.com/SkyNews/status/1238504143104421888">“Be fast, have no regrets” — pandemic response advice from Dr. Michael J Ryan</a>.</li>
+<li><a href="https://panic.com/extras/audionstory/">Panic’s Audion Story</a></li>
+<li><a href="https://podcast.panic.com/#episode004">Panic Podcast: “Audion and On”</a></li>
+<li><a href="https://www.theincomparable.com/theincomparable/506b/">The Incomparable’s Star Wars listen-along commentary special</a></li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>278: ‘Dot Net Party’ With Federico Viticci</title>
+ <link>https://daringfireball.net/thetalkshow/2020/02/29/ep-278</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/02/29/ep-278</guid>
+ <pubDate>Sat, 29 Feb 2020 16:35:51 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-278-federico-viticci.mp3" length="63208797" type="audio/mpeg" />
+ <itunes:duration>02:11:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>First-time guest Federico Viticci joins the show. Topics include how the coronavirus outbreak might affect WWDC, speculation on a possible March Apple event, the state of iPad keyboard (and trackpad) support, and iPadOS multitasking.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>First-time guest Federico Viticci joins the show. Topics include how the coronavirus outbreak might affect WWDC, speculation on a possible March Apple event, the state of iPad keyboard (and trackpad) support, and iPadOS multitasking.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+<li><a href="https://linode.com/thetalkshow?utm_source=thetalkshow&amp;utm_medium=podcast&amp;utm_content=20%20dollar&amp;utm_campaign=talkshow2020">Linode</a>: Get an SSD server running in seconds with your choice of Linux distro, resources, and choice of 11 node locations. Save $20 with promo code <strong>talkshow2020</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>The Information: “<a href="https://www.theinformation.com/articles/apple-planning-ipad-keyboard-with-trackpad">Apple Planning iPad Keyboard with Trackpad</a>”.</li>
+<li>Jason Snell: “<a href="https://sixcolors.com/post/2020/02/questions-about-an-ipad-smart-keyboard-with-trackpad/">Nine Questions About the Rumored iPad Smart Keyboard With Trackpad</a>”.</li>
+<li><a href="https://www.brydge.com/products/brydge-pro-plus-for-ipad-pro">Brydge Pro+</a> — upcoming iPad Pro keyboard with integrated trackpad.</li>
+<li><a href="https://www.macstories.net/stories/ios-10-wishes/">MacStories-commissioned “iOS 10: Wishes and Concept Video” back in 2016</a>.</li>
+<li><a href="https://www.macstories.net/stories/a-fix-for-ipad-multitasking/">Ryan Christoffel’s contextual-menu-based proposal for iPad multitasking</a>.</li>
+<li><a href="https://twitter.com/rutherling/status/1232062925570891779">Tommy Walton’s deceptively simple concept for a direct manipulation-based iPad multitasking UI</a>.</li>
+<li>iPad apps with excellent keyboard navigation: <a href="https://agenda.com/">Agenda</a>, <a href="https://apps.apple.com/us/app/things-3-for-ipad/id904244226">Things</a>, and <a href="https://apps.apple.com/us/app/unread-2/id1363637349">Unread 2</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>277: ‘Polish Stink Eye’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2020/02/24/ep-277</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/02/24/ep-277</guid>
+ <pubDate>Mon, 24 Feb 2020 17:19:37 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-277-john-moltz.mp3" length="78445012" type="audio/mpeg" />
+ <itunes:duration>02:43:06</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show. Topics include Larry Tesler and his “no modes” mantra for UI design, the state of malware on the Mac, third-party default apps on iOS, Apple and the coronavirus outbreak, and a record number of tips and tricks.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show. Topics include Larry Tesler and his “no modes” mantra for UI design, the state of malware on the Mac, third-party default apps on iOS, Apple and the coronavirus outbreak, and a record number of tips and tricks.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://kolide.com/?utm_source=TTS&amp;utm_medium=podcast&amp;utm_campaign=TalkShow">Kolide</a>: User-focused security for teams that Slack.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://awaytravel.com/talkshow20">Away</a>: Because this season, everyone wants to get Away.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Larry Tesler:
+<ul><li><a href="http://www.nomodes.com/">Tesler’s website</a>.</li>
+<li><a href="https://twitter.com/cdespinosa/status/1230366729412333568">Chris Espinosa on Tesler’s heuristic for smart paste</a>.</li>
+<li><a href="https://www.nytimes.com/2020/02/20/technology/lawrence-tesler-dead.html">John Markoff’s NYT obituary</a>.</li></ul></li>
+<li>Malwarebytes’s “<a href="https://blog.malwarebytes.com/reports/2020/02/malwarebytes-labs-releases-2020-state-of-malware-report/">State of Mac Malware in 2020</a>” report:
+<ul><li><a href="https://mjtsai.com/blog/2020/02/13/2020-state-of-mac-malware/">Michael Tsai</a>.</li>
+<li><a href="https://sixcolors.com/post/2020/02/more-adware-targets-the-mac-but-apple-swings-the-hammer/">Jason Snell</a>.</li>
+<li><a href="https://arstechnica.com/information-technology/2020/01/mac-users-are-getting-bombarded-by-laughably-unsophisticated-malware/">Dan Goodin’s report last month for Ars Technica on scam “Adobe Flash” installers</a>.</li></ul></li>
+<li><a href="https://daringfireball.net/linked/2020/02/21/gurman-default-apps">Mark Gurman claims Apple is considering third-party default apps for iOS 14</a>.</li>
+<li><a href="https://twitter.com/DylanMcD8/status/1230962794188722180">How to enable the startup chime on new Mac hardware</a>.</li>
+<li><a href="https://daringfireball.net/linked/2020/02/17/apple-store-employee-bag-checks">On Apple’s attempts to stiff retail employees for time spent waiting in bag-check lines</a>.</li>
+<li><a href="https://www.keychron.com/products/keychron-k2-wireless-mechanical-keyboard">The Keychron K2 mechanical Bluetooth keyboard</a> Jason Snell convinced me to buy. (I got brown switches.)</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>276: ‘Bring It On, Haters’ With Ben Thompson</title>
+ <link>https://daringfireball.net/thetalkshow/2020/01/31/ep-276</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/01/31/ep-276</guid>
+ <pubDate>Fri, 31 Jan 2020 23:57:26 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-276-ben-thompson.mp3" length="80936978" type="audio/mpeg" />
+ <itunes:duration>02:47:59</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ben Thompson returns to the show to celebrate the 10th anniversary of the iPad.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ben Thompson returns to the show to celebrate the 10th anniversary of the iPad.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Get 50% off your first order with free shipping.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Get an SSD server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations. $20 credit with promo code <strong>talkshow2020</strong>.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Get your best rest, one night at a time. Save $100 on select mattresses using code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2020/01/the_ipad_awkwardly_turns_10">DF: “The iPad Awkwardly Turns 10”</a>.</li>
+<li><a href="https://stratechery.com/2020/the-ipad-at-10-the-ipad-disappointment-ipads-missing-ecosystem/">Ben: “The Tragic iPad”</a>.</li>
+<li><a href="https://www.engadget.com/2010/09/01/twitter-for-ipad-review/">Tweetie for iPad: Loren Brichter’s iPad masterpiece from 2010</a>.</li>
+<li><a href="https://stratechery.com/2013/clayton-christensen-got-wrong/">Ben in 2013: “What Clayton Christensen Got Wrong”</a>.</li>
+<li><a href="https://twitter.com/jacknicas/status/1218197925391630340">Average times to brute-force crack iOS device passcodes</a>.</li>
+<li><a href="https://gizmodo.com/paul-manafort-learns-that-encrypting-messages-doesnt-ma-1826561511">The feds got Paul Manafort’s encrypted WhatsApp texts from his iCloud backup</a>.</li>
+<li><a href="https://linea-app.com/">Ben’s and my favorite iPad drawing app: The Iconfactory’s Linea</a>.</li>
+<li><a href="http://signstealingscandal.com/">Obsessive Astros fan upset by scandal logged 8,200 pitches from 2017</a>.</li>
+<li><a href="https://twitter.com/PitchingNinja/status/1222503108191956997">Randy Johnson tipped his pitches his entire career</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=DYXTV51GdUs">Randy Johnson faces John Kruk in the 1993 All-Star game and Kruk wants nothing to do with him</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=Pj9p1X6py0M&amp;feature=youtu.be">Kobe scores 62 in 3 quarters in 2005</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=FeXZY4eVLlo">Kobe scores 81 in 2006</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=y64OsZNYhp0">Kobe scores 60 in his final game in 2016</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>275: ‘Fake Faces’ With Glenn Fleishman</title>
+ <link>https://daringfireball.net/thetalkshow/2020/01/23/ep-275</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/01/23/ep-275</guid>
+ <pubDate>Thu, 23 Jan 2020 19:03:35 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-275-glenn-fleishman.mp3" length="130448494" type="audio/mpeg" />
+ <itunes:duration>03:00:57</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Glenn Fleishman returns to the show. Topics include iPhone encryption, the privacy implications of widely-available reverse image search for faces, deep-learning-powered algorithmically-generated faces, and Jeopardy’s “Greatest of All Time” tournament.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Glenn Fleishman returns to the show. Topics include iPhone encryption, the privacy implications of widely-available reverse image search for faces, deep-learning-powered algorithmically-generated faces, and Jeopardy’s “Greatest of All Time” tournament.</p>
+
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://clearme.com/talkshow">Clear</a>: Get through security even faster. Get your first 2 months free with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hover.com/talkshow">Hover</a>: Find a domain name for your passion. Get 10% off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<p><em>This is Jeopardy</em>:</p>
+
+<ul>
+<li><a href="https://www.jeopardy.com/jbuzz/news-events/who-greatest-jeopardy-player-all-time">Jeopardy’s Greatest of All Time Tournament</a>.</li>
+<li><a href="https://www.vice.com/en_us/article/y3md8w/breaking-brad-why-brad-rutter-is-losing-jeopardys-goat-tournament">Glenn’s analysis of matches 1–3 for Motherboard</a>.</li>
+<li><a href="https://glog.glennf.com/blog/2020/1/2/put-yourself-in-jeopardy">Glenn’s archive of articles regarding Jeopardy</a>.</li>
+<li><a href="https://www.amazon.com/Prisoner-Trebekistan-Jeopardy-Bob-Harris/dp/0307339564"><em>Prisoner of Trebekistan</em>, by Bob Harris</a>.</li>
+<li><a href="https://twitter.com/kenjennings">Ken Jennings’s excellent Twitter account</a>.</li>
+</ul>
+
+<p><em>iPhone encryption</em>:</p>
+
+<ul>
+<li><a href="https://www.nytimes.com/2020/01/17/technology/fbi-iphones.html">Jack Nicas’s New York Times column on how iPhone encryption works</a>.</li>
+<li><a href="https://daringfireball.net/linked/2020/01/20/how-modern-iphone-encryption-works">My link to Nicas’s column, with a few additional thoughts</a>.</li>
+</ul>
+
+<p><em>Algorithmically-generated faces</em>:</p>
+
+<ul>
+<li><a href="https://www.washingtonpost.com/technology/2020/01/07/dating-apps-need-women-advertisers-need-diversity-ai-companies-offer-solution-fake-people/">The Washington Post: “Dating Apps Need Women. Advertisers Need Diversity. AI Companies Offer a Solution: Fake People”</a>.</li>
+<li><a href="https://www.fastcompany.com/90332538/how-to-spot-the-creepy-fake-faces-who-may-be-lurking-in-your-timelines-deepfaces">Glenn on deep fake faces, last year for Fast Company </a>.</li>
+<li><a href="https://www.cnet.com/news/facebook-removed-fake-accounts-that-used-ai-to-create-fake-profile-pictures/">Facebook removes profiles with fake pics</a>.</li>
+</ul>
+
+<p><em>Facial recognition search</em>:</p>
+
+<ul>
+<li><a href="https://www.nytimes.com/2020/01/18/technology/clearview-privacy-facial-recognition.html">Kashmir Hill’s stunning report for The Times on Clearview AI, a Peter-Thiel-backed company that supplies law enforcement with facial recognition search, built using a library of billions of photos uploaded to the web</a>.</li>
+<li><a href="https://nelsonslog.wordpress.com/2020/01/07/facial-recognition-for-the-public-yandex/">Nelson Minar on Yandex’s reverse image search for faces, which is startlingly accurate, and available to anyone</a>.</li>
+<li><a href="https://daringfireball.net/misc/2020/01/yandex-face-search-results-gruber.png">Screenshot of Yandex search results for my own face</a>.</li>
+</ul>
+
+<p><em>Miscellaneous</em>:</p>
+
+<ul>
+<li><a href="https://tinytypemuseum.com/">Tiny Type Museum</a>.</li>
+<li><a href="https://www.ridehome.info/podcast/election-ride-home/">Election Ride Home podcast</a>.</li>
+<li><a href="https://www.espn.com/espn/story/_/id/27593253/why-grandmasters-magnus-carlsen-fabiano-caruana-lose-weight-playing-chess">The intense concentration required by grandmaster-level chess burns thousands of calories per day</a>.</li>
+<li><a href="https://www.yubico.com/product/yubikey-5ci">YubiKey 5Ci — 2FA dongle with Lightning and USB-C jacks ($70 though)</a>.</li>
+<li><a href="https://www.usatoday.com/story/sports/ncaab/2015/03/05/loyola-marymount-hank-gathers-death-25-years-bo-kimble-paul-westhead/24447175/">Loyola Maramount’s 1990 high-scoring men’s basketball team</a>.</li>
+<li><a href="https://haveibeenpwned.com/">Have I Been Pwned?</a> — Fantastic resource where you can search to see if you have an account that was compromised in a data breach. Spoiler: you probably do.</li>
+<li>Kashmir Hill, writing for Gizmodo last year: “<a href="https://gizmodo.com/i-cut-the-big-five-tech-giants-from-my-life-it-was-hel-1831304194">I Cut the ‘Big Five’ Tech Giants From My Life. It Was Hell</a>”.</li>
+<li>The New York Times: “<a href="https://www.nytimes.com/interactive/2019/12/19/opinion/location-tracking-cell-phone.html">One Nation, Tracked</a>”.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>274: ‘Sport Mode’ With Merlin Mann</title>
+ <link>https://daringfireball.net/thetalkshow/2020/01/18/ep-274</link>
+ <guid>https://daringfireball.net/thetalkshow/2020/01/18/ep-274</guid>
+ <pubDate>Sat, 18 Jan 2020 01:17:20 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-274-v2-merlin-mann.mp3" length="87687644" type="audio/mpeg" />
+ <itunes:duration>02:01:34</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Merlin Mann returns to the show. Topics include the renewal of U.S. law enforcement officials' disingenuous campaign against iPhone encryption, the Houston Astros cheating scandal, how that cheating scandal relates to the Trump impeachment saga, and Catalyst and the art of Mac software design. But mostly we talk about finding a good pair of slippers.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Merlin Mann returns to the show. Topics include the renewal of U.S. law enforcement officials' disingenuous campaign against iPhone encryption, the Houston Astros cheating scandal, how that cheating scandal relates to the Trump impeachment saga, and Catalyst and the art of Mac software design. But mostly we talk about finding a good pair of slippers.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://news.techmeme.com/180306/podcast">Techmeme Ride Home</a>: 20-minutes of today’s top tech news, every day around 5p ET. A terrific podcast that you should subscribe to.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/realDonaldTrump/status/1217228960964038658">Trump’s tweet (what else) excoriating Apple for “refus[ing] to unlock phones used by killers, drug dealers and other violent criminal elements”</a>.</li>
+<li><a href="https://daringfireball.net/linked/2020/01/09/scaring-people-into-supporting-backdoors">Scaring people into supporting backdoors</a>.</li>
+<li><a href="https://www.wired.com/story/encrypted-messaging-isnt-magic/">Wired: “Encrypted Messaging Is Essential, But It Isn’t Magic”</a>.</li>
+<li><a href="https://overcast.fm/+BFHuaIGd0/13:24">Merlin on Back to Work, speculating on how many Apple employees today have grown up more on iOS than MacOS, and how that might be starting to shape MacOS:</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=VPBH1eW28mo">Great video from the always-great CGP Grey: “Should all locks have keys? Phones, Castles, Encryption, and You.”</a>.</li>
+<li><a href="https://mackweldon.com/products/one-mile-slipper">Mack Weldon’s One-Mile Slipper</a>.</li>
+<li><a href="https://www.crocs.com/c/work-shoes/medical">Professional-Grade Crocs</a>.</li>
+<li><a href="https://www.amazon.com/westmark-24442261-Coffee-Filter-Black/dp/B000VZGCME/">Something pretty similar to the coffee filter cone I’ve been using for 20 years</a> (but I only paid like $4-5 for mine).</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>273: ‘My Cousin Hans’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2019/12/31/ep-273</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/12/31/ep-273</guid>
+ <pubDate>Tue, 31 Dec 2019 23:55:31 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-273-rene-ritchie.mp3" length="102927001" type="audio/mpeg" />
+ <itunes:duration>01:59:04</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>It’s the last show of the decade. Special guest: Rene Ritchie.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>It’s the last show of the decade. Special guest: Rene Ritchie.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://awaytravel.com/talkshow20">Away</a>: Because this season, everyone wants to get Away.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Protect your online activity today with the VPN service rated #1 by TechRadar and get 3 months free with a 1-year package.</li>
+<li><a href="https://helloFresh.com/talkshow10">Hello Fresh</a>: With HelloFresh, America’s #1 meal kit, get easy, seasonal recipes and pre-measured ingredients delivered right to your door.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.imore.com/apple-watch-gadget-decade">Rene's gadget of the decade: Apple Watch</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>272: ‘The Save Twitch’ With Rich Siegel</title>
+ <link>https://daringfireball.net/thetalkshow/2019/12/24/ep-272</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/12/24/ep-272</guid>
+ <pubDate>Tue, 24 Dec 2019 17:53:46 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-272-rich-siegel.mp3" length="85880704" type="audio/mpeg" />
+ <itunes:duration>01:59:04</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>For your holiday listening enjoyment, very special guest Rich Siegel joins the show to talk about BBEdit's past, present, and future, the state of developing for the Mac, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>For your holiday listening enjoyment, very special guest Rich Siegel joins the show to talk about BBEdit’s past, present, and future, the state of developing for the Mac, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Wi-Fi done right. Get free overnight shipping with promo code <strong>thetalkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Casper is a sleep brand that makes expertly designed products to help you get your best rest, one night at a time.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://usesthis.com/interviews/john.gruber/">My “Uses This” interview from 10 years ago</a>.</li>
+<li><a href="https://usesthis.com/interviews/andy.baio/">Andy Baio’s ten-years-delayed “Uses This” interview</a>.</li>
+<li><a href="https://twitter.com/siegel">Rich Siegel on Twitter</a>.</li>
+<li><a href="https://groups.google.com/forum/#!msg/comp.sys.mac.announce/gvPGyuX3UCs/qGmV47P_2RoJ">BBEdit’s public debut in April 1992</a>.</li>
+<li><a href="https://www.macworld.com/article/1166306/mac_text_editor_bbedit_celebrates_20th_anniversary.html">BBEdit’s 20th anniversary — nine years ago</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>271: ‘A Perfect Wheel’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2019/12/12/ep-271</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/12/12/ep-271</guid>
+ <pubDate>Thu, 12 Dec 2019 23:42:06 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-271-jason-snell.mp3" length="119661283" type="audio/mpeg" />
+ <itunes:duration>02:45:59</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell returns to the show for a brief chat about the new Mac Pro and Pro Display XDR, which are both — dare I say — *finally* available for ordering. Also: Ming Chi Kuo’s intriguing rumors on the 2020 and 2021 iPhone lineups.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell returns to the show for a brief chat about the new Mac Pro and Pro Display XDR, which are both — dare I say — <em>finally</em> available for ordering. Also: Ming Chi Kuo’s intriguing rumors on the 2020 and 2021 iPhone lineups.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Protect your online activity today with the VPN service rated #1 by TechRadar and get 3 months free with a 1-year package.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+<li><a href="https://clearbanc.com/talkshow">Clearbanc</a>: Find out how you can receive Clearbanc capital by getting your 20 minute term sheet.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Jason at Macworld: “<a href="https://www.macworld.com/article/3487723/the-mac-pro-is-an-important-symbol-but-you-probably-shouldnt-buy-it.html">The Mac Pro Is an Important Symbol, but You Probably Shouldn’t Buy It</a>”.</li>
+<li>Greg Joswiak and Craig Federighi on stage at this year’s The Talk Show Live From WWDC, <a href="https://youtu.be/5ygYSdL42Zw?t=967">on the price of the Mac Pro’s optional wheels</a>.</li>
+<li><a href="https://ww.9to5mac.com/2019/12/10/mac-pro-silver-black-magic-keyboard-mouse-exclusive/">The new Mac Pro has unique keyboard, trackpad, and mouse</a> — black keys/glass and silver aluminum bottoms. It even comes with a black USB-C to Lightning cable and black power cable.</li>
+<li><a href="https://www.youtube.com/watch?v=DOPswcaSsu8">Marques Brownlee’s Mac Pro review on YouTube</a>. Also: <a href="https://www.youtube.com/watch?v=fLRRStkhcuQ">Pro Display XDR</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=TqjwSNRDrO8">Justine Ezarik’s Mac Pro review on YouTube</a>. Also: <a href="https://www.youtube.com/watch?v=6n7mPKEevIE">Behind the scenes</a>.</li>
+<li><a href="https://www.macstories.net/news/mac-pro-and-pro-display-xdr-unboxings-and-impressions/">MacStories’ roundup of other Mac Pro / Pro Display XDR reviews and first impressions</a>.</li>
+<li><a href="https://ww.9to5mac.com/2019/12/05/kuo-iphone-2020-and-2021/">Ming Chi Kuo’s 2020 iPhone roadmap</a>.</li>
+<li><a href="https://www.macrumors.com/roundup/iphone-9/">New iPhone “SE” to be called iPhone 9</a>?</li>
+<li><a href="https://www.relay.fm/upgrade/275">Upgrade 275: “Remove All of the Holes”</a>.</li>
+<li><a href="https://lowendmac.com/1990/macintosh-iifx/">The Mac IIfx</a> debuted in March 1990 at a price of $9,900. Inflation adjusted, that’s $19,400 — give or take — in today’s dollars.</li>
+<li><a href="https://en.wikipedia.org/wiki/Spectre_(video_game)">Spectre</a>, the greatest Mac game of all time (come at me).</li>
+<li>The language formerly known as “<a href="https://en.wikipedia.org/wiki/Raku_(programming_language)">Perl 6</a>” — first announced in July 2000 (!) — is now <a href="https://raku.org/">Raku</a>. And Perl 5 — the one true Perl — is up to <a href="https://perldoc.perl.org/5.30.0/perldelta.html">version 30</a>.</li>
+<li>“<a href="https://daringfireball.net/linked/2018/06/19/kotoba">Kotoba: The Best iOS Dictionary App You’ve Never Heard Of</a>”.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>270: ‘Talking About Crimes’ With Matthew Yglesias</title>
+ <link>https://daringfireball.net/thetalkshow/2019/11/27/ep-270</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/11/27/ep-270</guid>
+ <pubDate>Wed, 27 Nov 2019 22:54:00 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-270-matthew-yglesias.mp3" length="85930289" type="audio/mpeg" />
+ <itunes:duration>01:59:08</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest Matthew Yglesias joins the show to talk about Tim Cook cozying up to Trump for tariff relief and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest Matthew Yglesias joins the show to talk about Tim Cook cozying up to Trump for tariff relief and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://hullopillow.com/talkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://clearbanc.com/talkshow">Clearbanc</a>: Find out how you can receive Clearbanc capital by getting your 20 minute term sheet.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Protect your online activity today with the VPN services rated #1 by TechRadar and get 3 months free with a 1-year package.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.nbcnews.com/video/exclusive-brian-williams-interviews-apple-ceo-11421251878">Tim Cook interview with Brian Williams in 2012 announcing Mac Pro would be assembled in USA</a>.</li>
+<li><a href="https://www.tesla.com/cybertruck">Tesla Cybertruck</a>.</li>
+<li><a href="https://www.apple.com/shop/iphone/iphone-accessories/cases-protection?page=1#!&amp;f=batterycase&amp;fh=458b%2B45bf">New iPhone 11 battery cases</a>.</li>
+<li><a href="https://www.vox.com/the-weeds">Weeds Podcast</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>269: ‘Maximally Thin’ With Casey Johnston</title>
+ <link>https://daringfireball.net/thetalkshow/2019/11/19/ep-269</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/11/19/ep-269</guid>
+ <pubDate>Tue, 19 Nov 2019 12:34:55 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-269-casey-johnston.mp3" length="79690019" type="audio/mpeg" />
+ <itunes:duration>01:50:28</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest Casey Johnston joins the show to talk about the butterfly MacBook keyboard saga and the just-released 16-inch MacBook Pro, with its all new scissor-switch keyboard design.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest Casey Johnston joins the show to talk about the butterfly MacBook keyboard saga and the just-released 16-inch MacBook Pro, with its all new scissor-switch keyboard design.</p>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/caseyjohnston">Casey Johnston on Twitter</a>.</li>
+<li>“<a href="https://www.caseyjohnston.net/ask-a-swole-woman/">Ask a Swole Woman</a>” — Casey’s column for women on fitness and health, <a href="https://www.vice.com/en_us/topic/ask-a-swole-woman">now at Vice</a>.</li>
+<li><a href="https://marco.org/2019/11/13/mbp16">Marco Arment’s first-look review of the 16-inch MacBook Pro</a>, with a nifty graph illustrating the differences in key travel and spacing of various keyboards.</li>
+<li><a href="https://leancrew.com/all-this/2019/11/a-little-chart-adjustment/">Dr. Drang’s gentle improvement of Marco’s graph</a>.</li>
+</ul>
+
+<p>The saga of Casey’s writing regarding MacBook keyboards:</p>
+
+<ul>
+<li><a href="https://theoutline.com/post/2402/the-new-macbook-keyboard-is-ruining-my-life">Oct 2017: “The New MacBook Keyboard Is Ruining My Life”</a>.</li>
+<li><a href="https://theoutline.com/post/4277/dont-buy-the-new-macbook-pros-even-on-sale-in-my-opinion">Apr 2018: “Don’t Buy the MacBook Pros Even on Sale, in My Opinion” — Casey sold her MacBook back to Apple</a>.
+<ul><li><a href="https://daringfireball.net/linked/2018/04/25/johnston-mbp-keyboard">(My link to that article.)</a></li></ul></li>
+<li><a href="https://theoutline.com/post/4532/lawsuit-alleges-apple-knew-its-computers-were-defective-sold-them-anyway">May 2018: “Apple Knew Its Computers Were “Defective,” Sold Them Anyway, Suit Alleges”</a>.</li>
+<li><a href="https://theoutline.com/post/5052/apple-admits-its-computers-are-broken?zd=1&amp;zi=k32feud6">June 2018: “Apple Admits Its Computers Are Broken” — the beginning of the Keyboard Service Program</a>.
+<ul><li><a href="https://support.apple.com/keyboard-service-program-for-mac-notebooks">Apple’s Keyboard Service Program</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/06/23/johnston-keyboards">My quip: “I can’t recall any Apple related story that one writer has owned the way Johnston has owned this MacBook keyboard story.”</a>.</li></ul></li>
+<li><a href="https://www.wsj.com/graphics/apple-still-hasnt-fixed-its-macbook-keyboard-problem/">March 2019: Joanna Stern: “Appl Still Hasn’t Fixd Its MacBook Kyboad Problm”</a>.</li>
+<li><a href="https://theoutline.com/post/7315/apple-keyboards-still-suck-insanely-bad">April 2019: “Apple Owes Everyone an Apology and It Should Start With Me, Specifically” — Casey bought a 2018 MacBook Air</a>.</li>
+<li><a href="https://daringfireball.net/2019/05/good_old_fashioned_macbook_pro_speed_bumps">May 2019: third-generation butterfly design with “material” change</a>.</li>
+<li><a href="https://support.apple.com/en-us/HT205662">Apple’s support document on how to use compressed air to maybe hopefully fix a butterfly-switch MacBook keyboard</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>268: ‘With Ham I’d Be Better’ With Dave Mark</title>
+ <link>https://daringfireball.net/thetalkshow/2019/10/31/ep-268</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/10/31/ep-268</guid>
+ <pubDate>Thu, 31 Oct 2019 23:49:50 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-268-dave-mark.mp3" length="101247863" type="audio/mpeg" />
+ <itunes:duration>02:20:24</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Dave Mark joins the show, for a discussion mostly about AirPods Pro and partly about the 2019 World Series.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Dave Mark joins the show for a discussion mostly about AirPods Pro and partly about the 2019 World Series.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Protect your online activity today with the VPN services rated #1 by TechRadar and get 3 months free with a 1-year package.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+<li><a href="https://hellofresh.com/">Hello Fresh</a>: A meal kit delivery service that shops, plans, and delivers your favorite step-by-step recipes and pre-measured ingredients so you can just cook, eat, and enjoy.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2019/10/airpods_pro_first_impressions">My first impressions using AirPods Pro</a>.</li>
+<li><a href="https://www.ifixit.com/Teardown/AirPods+Pro+Teardown/127551">iFixit’s AirPods Pro teardown</a>.</li>
+<li><a href="https://www.loopinsight.com/2019/10/30/4-99-month-apple-music-student-subscription-now-bundles-apple-tv-for-free/">$4.99/month Apple Music student subscription now bundles Apple TV+ for free</a>.</li>
+<li><a href="https://www.cbssports.com/mlb/news/world-series-what-mlb-rulebook-says-about-bizarre-interference-call-against-nationals-trea-turner/">Bullshit interference call against Trea Turner of the Nationals</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>267: ‘Just the Tips’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2019/10/29/ep-267</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/10/29/ep-267</guid>
+ <pubDate>Tue, 29 Oct 2019 22:40:55 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-267-john-moltz.mp3" length="84488610" type="audio/mpeg" />
+ <itunes:duration>01:56:53</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show. Topics include the just-released AirPods Pro (and the pluralization thereof), the history of remote controls, the impending launch of Apple TV+, and the undisputed highlight of the 2019 World Series.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show. Topics include the just-released AirPods Pro (and the pluralization thereof), the history of remote controls, the impending launch of Apple TV+, and the undisputed highlight of the 2019 World Series.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://fracture.me/">Fracture</a>: Your photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: A sleep brand that makes expertly designed products to help you get your best rest, one night at a time.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/airpods-pro/">AirPods Pro</a>.</li>
+<li><a href="https://www.google.com/search?q=wired+tv+remote+control&amp;client=safari&amp;tbm=isch&amp;source=iu&amp;ictx=1&amp;fir=mC3hZWKTF_UNLM%253A%252C11pXOLtsOlgAVM%252C_&amp;vet=1&amp;usg=AI4_-kS_572l1v0KofDFgsrqcKKEBwv6QA&amp;sa=X&amp;ved=2ahUKEwjd4tCk98LlAhWlwVkKHYkVCL0Q9QEwAXoECAUQJA#imgrc=mC3hZWKTF_UNLM:">Old-school wired remote controls</a>.</li>
+<li><a href="https://www.macrumors.com/2019/10/28/apple-tv-plus-show-reviews/">Initial reviews of the first batch of TV+ shows: lukewarm at best</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/UHF_television_broadcasting">UHF TV stations</a>.</li>
+<li><a href="https://everymac.com/systems/apple/ipod/specs/ipod-3rd-generation-fat-nano-specs.html">The Fat Nano</a>.</li>
+<li><a href="https://www.imdb.com/title/tt0644877/">“A Purple Heart for Gruber”</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]> </content:encoded>
+ </item>
+
+<!-- /Latest -->
+ <item>
+ <title>266: ‘iPhone-Colored Glasses’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2019/10/24/ep-266</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/10/24/ep-266</guid>
+ <pubDate>Thu, 24 Oct 2019 19:58:06 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-266-rene-ritchie.mp3" length="101810450" type="audio/mpeg" />
+ <itunes:duration>02:21:11</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Rene Ritchie returns to the show. Topics include Google's new Pixel 4 phones, Apple's travails in Hong Kong and China, whether there will be another Apple event this year, and MacOS 10.15 Catalina.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Rene Ritchie returns to the show. Topics include Google's new Pixel 4 phones, Apple's travails in Hong Kong and China, whether there will be another Apple event this year, and MacOS 10.15 Catalina.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://awaytravel.com/talkshow20">Away</a>: Because this season, everyone wants to get Away.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Free overnight shipping with promo code <strong>thetalkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.theverge.com/2019/10/21/20923660/google-pixel-4-xl-review-camera-radar-face-unlock-90hz-display-telephoto">Dieter Bohn’s Pixel 4 review</a>.</li>
+<li><a href="https://www.wsj.com/articles/google-pixel-4-review-the-smartest-smartphone-you-probably-wont-buy-11571662801">Joanna Stern’s Pixel 4 review</a>.</li>
+<li><a href="https://daringfireball.net/2019/10/gurman_on_catalysts_shaky_debut">Catalyst’s shaky debut</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>265: ‘Thompson’s Razor’ With Ben Thompson</title>
+ <link>https://daringfireball.net/thetalkshow/2019/10/08/ep-265</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/10/08/ep-265</guid>
+ <pubDate>Tue, 8 Oct 2019 22:27:38 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-265-ben-thompson.mp3" length="105099611" type="audio/mpeg" />
+ <itunes:duration>02:25:08</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ben Thompson returns to the show. Topics include the latest Surface hardware announcements from Microsoft, the state of the iPhone, and bulk purchases of charcoal.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ben Thompson returns to the show. Topics include the latest Surface hardware announcements from Microsoft, the state of the iPhone, and bulk purchases of charcoal.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://yesplz.coffee/">Yes Plz</a>: Upgrade your morning coffee routine with fresh beans delivered to your home. Use code <strong>TALKSHOW25</strong> to get 25% off your first box.</li>
+<li><a href="https://feals.com/talkshow">Feals</a>: Premium CBD delivered directly to your doorstep. Use this link for 50% off your first order and free shipping.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>TALKSHOW</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Protect your online activity today with the VPN services rated #1 by TechRadar and get 3 months free with a 1-year package.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.seattletimes.com/business/boeing-aerospace/boeing-whistleblowers-complaint-says-737-max-safety-upgrades-were-rejected-over-cost/">The Seattle Times: “Whistleblower: Boeing Rejected 737 Max Safety Upgrades Before Fatal Crashes”</a>.</li>
+<li><a href="https://mattstoller.substack.com/p/the-coming-boeing-bailout">Matt Stoller on the disastrous leadership at Boeing after merging with McDonnell-Douglas</a>.</li>
+<li><a href="https://www.theverge.com/2019/10/2/20885196/microsoft-surface-event-news-products-announcements-updates-highlights-windows-10">The biggest announcements from Microsoft’s 2019 Surface event</a>.</li>
+<li><a href="https://daringfireball.net/2019/10/apple_hong_kong_map">Yours Truly: “Apple and Hong Kong”</a>.</li>
+<li><a href="https://stratechery.com/2019/the-china-cultural-clash/">Ben Thompson: “The China Cultural Clash”</a>.</li>
+<li><a href="https://marco.org/2013/08/30/sculpt-ergonomic-keyboard-review">Microsoft’s Sculpt Ergonomic Keyboard</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Microsoft_Courier">The old Microsoft Courier prototype</a>.</li>
+<li><a href="https://9to5mac.com/2019/10/03/kuo-iphone-se-2/">iPhone “8S” rumors (a.k.a. the new iPhone SE)</a>.</li>
+<li><a href="https://lunadisplay.com/">Luna Display — use your iPad as a second Mac display without upgrading to MacOS 10.15 Catalina</a>.</li>
+<li><a href="https://www.macworld.com/article/2994479/report-apple-will-replace-retina-macbook-pro-screens-with-bad-coating.html">MacBook Pro displays, circa 2015, with bad anti-reflective coating</a>.</li>
+<li><a href="https://www.mac-history.net/apple-history-tv/2008-07-19/macworld-boston-1997-steve-jobs-returns-bill-gates-appeares-on-screen">Steve Jobs making peace with Bill Gates and Microsoft at Macworld Expo New York 1997: “We have to let go of this notion that for Apple to win Microsoft has to lose.”</a>.</li>
+<li><a href="https://www.businessinsider.com/microsoft-iphone-funeral-2010-9">Microsoft’s 2010 “funeral” for the iPhone on the streets of Redmond</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>264: ‘Apple Is Not a 4-Star Company’ With Joanna Stern</title>
+ <link>https://daringfireball.net/thetalkshow/2019/09/25/ep-264</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/09/25/ep-264</guid>
+ <pubDate>Wed, 25 Sep 2019 21:35:04 EDT</pubDate>
+ <enclosure url="http://traffic.libsyn.com/daringfireball/thetalkshow-264-joanna-stern.mp3" length="104401678" type="audio/mpeg" />
+ <itunes:duration>02:24:38</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest Joanna Stern returns to the show. Topics include Apple’s event earlier this month, the iPhone 11 and 11 Pro, iOS 13, and how we go about writing (and shooting) our product reviews.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest Joanna Stern returns to the show. Topics include Apple’s event earlier this month, the iPhone 11 and 11 Pro, iOS 13, and how we go about writing (and shooting) our product reviews.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://fracture.me/">Fracture</a>: Your photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow/?utm_source=talkshow&amp;utm_medium=podcast&amp;utm_content=20%20dollar&amp;utm_campaign=talkshow20">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. $20 credit -- good for 4 months -- with promo code <strong>talkshow2019</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.wsj.com/articles/iphone-11-11-pro-and-11-pro-max-review-the-battery-life-weve-been-dying-for-11568714400?mod=hp_lead_pos7">Joanna’s review of the iPhones 11</a>.</li>
+<li>Joanna’s second review: “<a href="https://www.wsj.com/articles/an-iphone-11-review-for-owners-of-aging-iphones-11568714402">An iPhone 11 Review for Owners of Aging iPhones</a>”.</li>
+<li>My reviews of the <a href="https://daringfireball.net/2019/09/the_iphone_11_and_iphones_11_pro">iPhones 11</a> and <a href="https://daringfireball.net/2019/09/apple_watch_series_5">Apple Watch Series 5</a></li>
+<li><a href="https://www.youtube.com/watch?v=h6cIeZmFdPs">Steve Jobs on stage in 2010, angrily demanding the press turn off their mobile Wi-Fi hotspots</a>.</li>
+<li><a href="https://daringfireball.net/linked/2019/09/13/game-demo-live-on-stage">What it’s like to demo a game live on stage at an Apple event</a>.</li>
+<li>“<a href="https://www.wsj.com/graphics/apple-still-hasnt-fixed-its-macbook-keyboard-problem/">Appl Still Hasn’t Fixd Its MacBook Kyboad Problm</a>” — Joanna’s incredible column on the MacBook butterfly keyboard saga.</li>
+<li><a href="https://www.youtube.com/watch?v=bQlpDiXPZHQ">“I’ve fallen and I can’t get up!”</a> — classic commercial for LifeCall.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>263: ‘The Dumbest Thing Possible’ With Dan Frommer</title>
+ <link>https://daringfireball.net/thetalkshow/2019/09/09/ep-263</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/09/09/ep-263</guid>
+ <pubDate>Mon, 9 Sep 2019 20:51:19 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/678817131-thetalkshow-263-dan-frommer.mp3" length="92170054"/>
+ <itunes:duration>02:07:48</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Dan Frommer returns to the show for a preview of this week’s Apple event.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Dan Frommer returns to the show for a preview of this week’s Apple event.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Free overnight shipping with code "thetalkshow".</li>
+<li><a href="https://hullopillow.com/talkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://clearbanc.com/talkshow">Clearbanc</a>: Find out how you can receive Clearbanc capital by getting your 20 minute term sheet.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://newconsumer.com/">The New Consumer</a> — Dan’s new subscription newsletter.</li>
+<li><a href="https://medium.com/mycrypto/what-to-do-when-sim-swapping-happens-to-you-1367f296ef4d">“What to Do When SIM-Swapping Happens to You”</a>.</li>
+<li><a href="https://daringfireball.net/2009/03/obsession_times_voice">Gruber and Merlin: Obsession Times Voice at SXSW 2009</a>.</li>
+<li><a href="https://theathletic.com/">The Athletic</a> — great subscription site for sports fans.</li>
+<li><a href="https://theaircurrent.com/">Jon Ostrower’s The Air Current</a>.</li>
+<li><a href="https://thepointsguy.com/">The Points Guy</a>.</li>
+<li><a href="https://stratechery.com/">Ben Thompson’s Stratechery</a>.</li>
+<li><a href="https://www.aboveavalon.com/">Neil Cybart’s Above Avalon</a>.</li>
+<li><a href="https://www.macrumors.com/2013/01/20/apple-rumored-to-debut-4-8-inch-iphone-math-in-june/">The “iPhone Math” rumor</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>262: ‘Freakishly Snappy’ With Brent Simmons</title>
+ <link>https://daringfireball.net/thetalkshow/2019/08/31/ep-262</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/08/31/ep-262</guid>
+ <pubDate>Sat, 31 Aug 2019 21:18:30 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/673913966-thetalkshow-262-brent-simmons.mp3" length="79659513"/>
+ <itunes:duration>01:50:26</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Brent Simmons returns to</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Brent Simmons returns to the show to talk about NetNewsWire 5.0, the state of the Mac, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: The #1-rated VPN service by TechRadar and comes with a 30-day money back guarantee.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://ranchero.com/netnewswire/">NetNewsWire 5.0</a>.</li>
+<li><a href="https://twitter.com/tcarewe/status/1167116430698926081">Using Apple Cash to pay your Apple Card balance</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=OmQrmiqr7Fg">Don West selling baseball cards on Home Shopping Network</a>.</li>
+<li><a href="http://www.nbc.com/saturday-night-live/cast/will-ferrell-15141/impersonation/don-west-92211">Will Ferrell as Don West on SNL</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>261: ‘Contact Heineken’ With Jim Dalrymple</title>
+ <link>https://daringfireball.net/thetalkshow/2019/08/28/ep-261</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/08/28/ep-261</guid>
+ <pubDate>Wed, 28 Aug 2019 18:39:51 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/672411518-thetalkshow-261-jim-dalrymple.mp3" length="133282058"/>
+ <itunes:duration>03:04:55</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jim Dalrymple returns to the show. Topics include Apple Card and the latest rumors on Apple’s upcoming product announcements.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jim Dalrymple returns to the show. Topics include Apple Card and the latest rumors on Apple’s upcoming product announcements.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://fracture.me/">Fracture</a>: Your photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Casper is a sleep brand that makes expertly designed products to help you get your best rest, one night at a time.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.snapkitchen.com/menu/product/red-pepper-egg-bites/4250459">Snap Kitchen Red Pepper Egg Bites</a>.</li>
+<li><a href="https://inessential.com/2019/08/26/netnewswire_5_0_now_available">NetNewsWire 5</a>.</li>
+<li><a href="https://finance.yahoo.com/news/apple-readies-camera-focused-pro-100005637.html">Mark Gurman on Apple’s fall products</a>.</li>
+<li><a href="https://www.theregister.co.uk/2005/09/23/ipod_nano_scratching/">2005 iPod Nano that scratched easily</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>260: ‘A Clear Eyed Look at Dishwashers’ With John Siracusa</title>
+ <link>https://daringfireball.net/thetalkshow/2019/08/10/ep-260</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/08/10/ep-260</guid>
+ <pubDate>Sat, 10 Aug 2019 14:55:33 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/663860489-thetalkshow-260-john-siracusa.mp3" length="103593205"/>
+ <itunes:duration>02:23:40</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Siracusa finally returns to the show. Topics include the Siri voice recording fiasco, Siracusa’s epic Mac OS X reviews, and making good ice.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Siracusa finally returns to the show. Topics include the Siri voice recording fiasco, Siracusa’s epic Mac OS X reviews, and making good ice.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://awaytravel.com/talkshow20">Away</a>: Because this season, everyone wants to get Away.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Use promo code <strong>thetalkshow</strong> at checkout to get <em>free</em> overnight shipping with your order.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2017/12/31/ep-211">“Star Wars: The Last Jedi” Holiday Spectacular, With Special Guests Guy English and John Siracusa</a>.</li>
+<li><a href="https://www.theguardian.com/technology/2019/jul/26/apple-contractors-regularly-hear-confidential-details-on-siri-recordings">The Guardian: “Apple Contractors ‘Regularly Hear Confidential Details’ on Siri Recordings”</a>.</li>
+<li><a href="https://techcrunch.com/2019/08/01/apple-suspends-siri-response-grading-in-response-to-privacy-concerns/">TechCrunch: “Apple Suspends Siri Response Grading in Response to Privacy Concerns”</a>.</li>
+<li><a href="https://www.theverge.com/2019/8/2/20751270/apple-stops-contractors-siri-voice-recordings-privacy-opt-out">The Verge: “Apple Stops Letting Contractors Listen to Siri Voice Recordings and Will Offer Opt-Out Later”</a>.</li>
+<li><a href="https://www.amazon.com/gp/help/customer/display.html/ref=kinw_myk_alxa_faq_us?ie=UTF8&amp;nodeId=201602230&amp;pop-up=1">Amazon’s Alexa FAQ</a>.</li>
+<li><a href="https://www.wsj.com/video/d8-steve-jobs-onstage-full-length-video/70F7CC1D-FFBF-4BE0-BFF1-08C300E31E11.html">Steve Jobs on privacy at the D8 conference in 2010</a>.</li>
+<li><a href="https://mjtsai.com/blog/2019/08/08/apple-is-locking-batteries-to-specific-iphones/">Apple is now cryptographically verifying battery replacements</a>.</li>
+<li><a href="https://www.cnbc.com/2019/08/07/apple-asmr-videos-for-relaxing.html">Apple posts ASMR videos to YouTube</a>.</li>
+<li><a href="https://www.nytimes.com/2019/08/08/technology/easter-eggs-tesla-google.html?smid=nytcore-ios-share">David Pogue column on software Easter eggs</a>.</li>
+<li><a href="https://www.relay.fm/rd/103">John talks to Merlin Mann about buying a new refrigerator on their podcast, Reconcilable Differences</a>.</li>
+<li><a href="https://www.swiss-miss.com/2012/06/quarkxpress-easter-egg.html">QuarkXPress Easter egg</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=fAaqSr-yShc">James Thompson’s Easter egg talk</a>.</li>
+<li><a href="https://www.tovolo.com/product/king-cube-ice-tray-2/">Tovolo King Cube ice cube tray</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>259: ‘Start a Bakin’ Timer’ With Marco Arment</title>
+ <link>https://daringfireball.net/thetalkshow/2019/07/31/ep-259</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/07/31/ep-259</guid>
+ <pubDate>Wed, 31 Jul 2019 18:17:53 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/659261369-thetalkshow-259-start-a-bakin-timer.mp3" length="51873545"/>
+ <itunes:duration>01:47:31</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Marco Arment returns to the show. Topics include MacBook Pro rumors, breakfast cereal, Siri frustrations, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Marco Arment returns to the show. Topics include MacBook Pro rumors, breakfast cereal, Siri frustrations, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.macworld.com/article/3411136/how-a-16-inch-macbook-pro-sets-the-table-for-arm-macbooks.html">Jason Snell on the rumored 16-inch MacBook Pro</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Mr._T_Cereal">Mr. T breakfast cereal</a>.</li>
+<li>Craig Mod: ‘<a href="https://craigmod.com/essays/fast_software/">Fast Software, the Best Software</a>’.</li>
+<li><a href="https://www.amazon.com/dp/B001GMXFW6/?tag=marcoorg-20">Rolls MS111 silence switch</a>.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2019-07-16/apple-plans-to-bankroll-original-podcasts-to-fend-off-rivals">Bloomberg report on Apple getting into subscription-based original podcasts</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Marco Arment.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>258: ‘Pousse-Café’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2019/07/29/ep-258</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/07/29/ep-258</guid>
+ <pubDate>Mon, 29 Jul 2019 17:41:53 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/658232360-thetalkshow-258-john-moltz.mp3" length="98578002"/>
+ <itunes:duration>02:16:42</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show for a mid-summer Q&amp;A episode, answering actual questions from actual listeners.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show for a mid-summer Q&amp;A episode, answering actual questions from actual listeners.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://jamf.com/thetalkshow">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Save $100 off the ‘Eero base unit and 2 beacons package’, and 1 year of Eero Plus.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Rated #1 VPN service by TechRadar and comes with a 30-day money back guarantee.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/linked/2017/01/09/mann-snell-mwsf">Merlin Mann interviewing Jason Snell and yours truly from Macworld Expo 2007</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>257: ‘A Beautiful Sandwich’ With Daniel Jalkut</title>
+ <link>https://daringfireball.net/thetalkshow/2019/07/23/ep-257</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/07/23/ep-257</guid>
+ <pubDate>Tue, 23 Jul 2019 19:31:36 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/655481159-thetalkshow-257-daniel-jalkut.mp3" length="91592871"/>
+ <itunes:duration>02:07:00</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Daniel Jalkut returns to the show. Topics include app notarization, nonconsensual technology (including Zoom, Dropbox, and Superhuman), and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Daniel Jalkut returns to the show. Topics include app notarization, nonconsensual technology (including Zoom, Dropbox, and Superhuman), and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Yours truly: <a href="https://daringfireball.net/2019/07/superhuman_and_email_privacy">“Superhuman and Email Privacy”</a>.</li>
+<li>Jalkut: <a href="https://bitsplitting.org/2019/07/22/a-real-gatekeeper/">“A Real Gatekeeper”</a>.</li>
+<li><a href="https://coreint.org/">Core Intuition</a> — Jalkut’s podcast with Manton Reese.</li>
+<li><a href="https://www.red-sweater.com/marsedit/">MarsEdit</a>.</li>
+<li><a href="https://red-sweater.com/blackink/">Black Ink</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>256: ‘A Bit Too Thin’ With Ben Thompson</title>
+ <link>https://daringfireball.net/thetalkshow/2019/06/30/ep-256</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/06/30/ep-256</guid>
+ <pubDate>Sun, 30 Jun 2019 22:04:43 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/644464017-thetalkshow-256-ben-thompson.mp3" length="83927642"/>
+ <itunes:duration>01:56:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ben Thompson returns to the show to talk about Jony Ive’s departure from Apple.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ben Thompson returns to the show to talk about Jony Ive’s departure from Apple.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Casper is a sleep brand that makes expertly designed products to help you get your best rest, one night at a time.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Rated #1 VPN service by TechRadar and comes with a 30-day money back guarantee.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2019/06/jony_ive_leaves_apple">Yours truly on Ive’s departure</a>.</li>
+<li><a href="https://stratechery.com/2019/jony-ive-leaves-apple-ives-legacy-the-post-ive-apple/">Thompson’s take on Ive’s departure</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>255: ‘Zap the PRAM’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2019/06/25/ep-255</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/06/25/ep-255</guid>
+ <pubDate>Tue, 25 Jun 2019 19:34:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/641983362-thetalkshow-255-jason-snell.mp3" length="120058003"/>
+ <itunes:duration>02:46:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell returns to the show. Topics include everything announced at WWDC: SwiftUI, Catalyst, and all the new features in iOS, iPadOS, MacOS, WatchOS, and tvOS.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell returns to the show. Topics include everything announced at WWDC: SwiftUI, Catalyst, and all the new features in iOS, iPadOS, MacOS, WatchOS, and tvOS.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://awaytravel.com/talkshow20">Away</a>: Use promo code <strong>talkshow20</strong> for $20 off a suitcase.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of Eero Plus with code <strong>thetalkshow</strong>.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: High quality men’s essentials. Save 20 percent off your first order with promo code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>The Talk Show Live
+<ul><li><a href="https://www.youtube.com/watch?v=5ygYSdL42Zw">The Talk Show: Live From WWDC 2019 With Craig Federighi and Greg Joswiak</a></li>
+<li><a href="https://www.zeit.de/digital/2019-06/podcasts-apple-nerds-macbook-defekt">“The Nerds Apple Listens To”</a></li></ul></li>
+<li>SwiftUI and Catalyst
+<ul><li><a href="https://www.relay.fm/upgrade/249">Jason’s interview with Apple’s Wiley Hodges and Josh Shaffer regarding Catalyst and SwiftUI</a></li>
+<li><a href="https://www.macworld.com/article/3402057/swiftui-and-catalyst-apple-executes-its-invisible-transition-strategy.html">Jason in Macworld: “Apple executes its invisible transition strategy”</a>.</li>
+<li><a href="https://twitter.com/wooji/status/1136603922704031745">Ferrite developer thread on how porting via Catalyst won’t be all that easy or quick</a>.</li>
+<li><a href="https://www.cnet.com/news/apples-first-4-ios-apps-for-mac-are-getting-an-upgrade-and-apple-news-needs-it-the-most/">Federighi on CNET, claiming Apple’s own Catalyst apps will improve</a>.</li></ul></li>
+<li><a href="https://en.wikipedia.org/wiki/Spectre_(video_game)">Spectre</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>254: Live From WWDC 2019 With Craig Federighi and Greg Joswiak</title>
+ <link>https://daringfireball.net/thetalkshow/2019/06/04/ep-254</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/06/04/ep-254</guid>
+ <pubDate>Fri, 7 Jun 2019 19:00:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/633345669-thetalkshow-254-live-from-wwdc-2019.mp3" length="77516261"/>
+ <itunes:duration>01:46:52</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Recorded in front of a live audience at The California Theater in San Jose on Tuesday, 4 June 2019, John Gruber is joined by Craig Federighi and Greg Joswiak to discuss the news from WWDC 2019: the new Mac Pro and Pro Display XDR, MacOS 10.15 Catalina, iOS 13, iPadOS, SwiftUI and Catalyst, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Recorded in front of a live audience at The California Theater in San Jose on Tuesday, 4 June 2019, John Gruber is joined by Craig Federighi and Greg Joswiak to discuss the news from WWDC 2019: the new Mac Pro and Pro Display XDR, MacOS 10.15 Catalina, iOS 13, iPadOS, SwiftUI and Catalyst, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://macstadium.com/df">MacStadium</a>: Dedicated Mac hosting in world-class data centers.</li>
+<li><a href="https://omnifocus.com/df">OmniFocus for the Web</a>: Accomplish more every day.</li>
+<li><a href="https://slack.com/careers">Slack</a>: Hiring iOS developers who want to define the future of Slack for mobile.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/june-2019/">Apple’s WWDC 2019 Keynote</a></li>
+<li>Crazy Apple Rumors, from 2002: “<a href="http://crazyapplerumors.com/2002/05/07/mac-os-9-resuscitated-by-quick-thinking-developers/">Mac OS 9 Resuscitated By Quick-Thinking Developers</a>”.</li>
+</ul>
+
+<p><em>Audio editing by Caleb Sexton. Cover photo by John Siracusa.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>253: ‘An Italicized “Finally”’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2019/05/31/ep-253</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/05/31/ep-253</guid>
+ <pubDate>Fri, 31 May 2019 23:49:56 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/629894982-thetalkshow-253-rene-ritchie-wwdc-2019-preview.mp3" length="101822445"/>
+ <itunes:duration>02:21:13</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Rene Ritchie returns to the show for a look at what we expect — and hope — to see from Apple at WWDC next week.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Rene Ritchie returns to the show for a look at what we expect — and hope — to see from Apple at WWDC next week.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="https://hullopillow.com/talkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and choice of 10 node locations.</li>
+<li><a href="https://linkedin.com/talk">LinkedIn</a>: A new hire is made every ten seconds using LinkedIn. Save $50 off your first job listing with this link.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li><a href="https://www.macworld.com/article/3394581/bad-marx-airpods-are-the-bane-of-all-existence.html">The Macalope: “AirPods Are the Bane of All Existence”</a>.</li>
+<li><a href="https://onezero.medium.com/what-really-happens-to-airpods-when-they-die-9ba2fe97b346">On the Recyclability of AirPods</a></li>
+<li><a href="https://www.infoq.com/articles/ios-9-bitcode/">“Understanding Bitcode for iOS Applications”</a>.</li>
+<li><a href="https://daringfireball.net/linked/2019/05/28/rambo-ios-13-screenshots">A few leaked iOS 13 screenshots</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>252: ‘The Dustin Egress Problem’ With Cabel Sasser, Steven Frank, and Greg Maletic From Panic</title>
+ <link>https://daringfireball.net/thetalkshow/2019/05/30/ep-252</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/05/30/ep-252</guid>
+ <pubDate>Thu, 30 May 2019 17:10:15 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/629151294-thetalkshow-252-panics-playdate.mp3" length="94004094"/>
+ <itunes:duration>02:10:07</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guests Cabel Sasser, Steven Frank, and Greg Maletic join the show to talk about Playdate, Panic’s exciting and surprising new handheld gaming system.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guests Cabel Sasser, Steven Frank, and Greg Maletic join the show to talk about Playdate, Panic’s exciting and surprising new handheld gaming system.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Rated #1 VPN service by TechRadar and comes with a 30-day money back guarantee.</li>
+<li><a href="https://clearme.com/talkshow">Clear</a>: Get through security even faster. Get your first 2 months free with code <strong>talkshow</strong>.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li><a href="https://play.date/">Playdate’s fun WebGL-backed website</a>.</li>
+<li><a href="https://play.date/media">The Playdate media site</a>, with ARKit models for iPhone and iPad.</li>
+<li><a href="https://daringfireball.net/linked/2019/05/23/edge-playdate.php">Edge Magazine’s cover story on Playdate</a>, written by Jen Simpkins and chock full of gorgeous photography.</li>
+<li><a href="https://www.youtube.com/watch?v=8ZXWdR7RzV8">Cabel Sasser’s inspiring talk at XOXO 2013</a>.</li>
+<li><a href="https://www.firewatchgame.com/">Firewatch</a>.</li>
+<li><a href="https://goose.game/">Untitled Goose Game</a>.</li>
+<li><a href="https://www.marvel.com/captainmarvel">Faux-retro ’90s website for <em>Captain Marvel</em></a>.</li>
+<li><a href="https://spacejam.com/"><em>Space Jam</em>’s true retro website, still going</a>.</li>
+</ul>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>251: ‘Parking Meters in a Dirt Lot’ With Merlin Mann</title>
+ <link>https://daringfireball.net/thetalkshow/2019/05/14/ep-251</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/05/14/ep-251</guid>
+ <pubDate>Tue, 14 May 2019 21:29:37 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/620763474-thetalkshow-251-merlin-mann.mp3" length="82881235"/>
+ <itunes:duration>01:54:54</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest Merlin Mann returns to the show. Topics include sleep and sleep-tracking (with Apple Watch), regional fast-casual dining, the nature of podcasting, and, of course, more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest Merlin Mann returns to the show. Topics include sleep and sleep-tracking (with Apple Watch), regional fast-casual dining, the nature of podcasting, and, of course, more.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>thetalkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="http://fracture.me">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li>Sleep-tracking Apple Watch apps:
+<ul><li><a href="https://itunes.apple.com/us/app/sleep/id1038440371?mt=8">Sleep++</a></li>
+<li><a href="https://www.sleepwatchapp.com/">SleepWatch</a></li>
+<li><a href="http://autosleep.tantsissa.com/">AutoSleep</a></li></ul></li>
+<li><a href="https://support.apple.com/en-us/HT201236">Apple’s list of standard Mac keyboard shortcuts</a>.</li>
+<li><a href="https://www.vox.com/2019/5/10/18524172/donald-trump-commander-in-cheat-rick-reilly">Vox: “How golf explains Donald Trump”</a>.</li>
+<li><em><a href="https://www.amazon.com/Commander-Cheat-Golf-Explains-Trump-ebook/dp/B07H4Z26T7">Commander-in-Cheat</a></em> — Rick Reilly’s new book on Trump.</li>
+<li><a href="https://en.wikipedia.org/wiki/Gino%27s_Hamburgers">Gino’s Burgers and Chicken</a> — a fast food chain from the 1970s that served Kentucky Fried Chicken but was not a Kentucky Fried Chicken.</li>
+<li>1984 NYT story on Massachussetts’s then-new — and still in place — <a href="https://www.nytimes.com/1984/12/11/us/happy-hour-ban-starts-in-massachusetts-bars.html">law banning bars and restaurants from offering “Happy Hours”</a>.</li>
+<li><a href="https://www.phillymag.com/news/2019/04/08/philadelphia-recycling-incinerator/">Philadelphia is incinerating half its recycling</a>.</li>
+<li><a href="https://99percentinvisible.org/episode/national-sword/">99% Invisible episode on where U.S. recycling often went: to China</a>.</li>
+<li>“<a href="http://5by5.tv/talkshow/57">The Banana Window</a>” — 2011 episode of the old incarnation of The Talk Show where Merlin joined me as co-host while Dan was on paternity leave.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>250: ‘A Couple of Awkward Swipes’ With MG Siegler</title>
+ <link>https://daringfireball.net/thetalkshow/2019/04/30/ep-250</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/04/30/ep-250</guid>
+ <pubDate>Tue, 30 Apr 2019 23:00:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/613994916-thetalkshow-250-mg-siegler.mp3" length="109219604"/>
+ <itunes:duration>02:31:20</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest MG Siegler returns to the show. Topics include Apple’s original content strategy and a general look at the state of the company.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest MG Siegler returns to the show. Topics include Apple’s original content strategy and a general look at the state of the company.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="http://thingsapp.com/">Things</a>: The award-winning personal task manager that helps you achieve your goals -- an outstanding native app for Mac and iOS.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Save $50 off select mattresses with code <strong>talkshow</strong>. Terms and conditions apply.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get a server running in seconds with your choice of Linux distro, resources, and node location.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li><a href="https://500ish.com/">500ish Words</a> — MG’s blog.</li>
+<li><a href="https://www.hollywoodreporter.com/features/oprah-winfrey-talks-apple-plans-60-minutes-split-2020-election-1205311">Oprah Winfrey talks Apple with The Hollywood Reporter</a>.</li>
+<li><a href="https://www.amazon.com/SteelSeries-Nimbus-Bluetooth-Mobile-Controller/dp/B01AZC3III">SteelSeries Nimbus game controller for Apple TV</a> ($50).</li>
+<li>“<a href="https://www.theringer.com/game-of-thrones/2019/4/28/18518718/watch-talk-the-thrones-for-instant-analysis-of-episode-3">Talk the Thrones</a>” — The Ringer’s post-<em>Game of Thrones</em> livecast.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>249: ‘Better Than Nothing’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2019/04/24/ep-249</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/04/24/ep-249</guid>
+ <pubDate>Wed, 24 Apr 2019 23:45:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/611026035-thetalkshow-249-john-moltz.mp3" length="96481099"/>
+ <itunes:duration>02:13:38</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Moltz returns to the show. Topics include AirPods 2, Samsung’s Galaxy Fold debacle, the trove of iOS 13 and MacOS 10.15 leaks reported by Guilherme Rambo, and the future of iTunes.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Moltz returns to the show. Topics include AirPods 2, Samsung’s Galaxy Fold debacle, the trove of iOS 13 and MacOS 10.15 leaks reported by Guilherme Rambo, and the future of iTunes.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="http://thingsapp.com/">Things</a>: The award-winning personal task manager that helps you achieve your goals.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://expressvpn.com/tts">ExpressVPN</a>: Rated #1 VPN service by TechRadar and comes with a 30-day money back guarantee.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li><a href="https://support.apple.com/airpods/repair/service">AirPods battery replacement from Apple</a>.</li>
+<li><a href="https://c-command.com/toothfairy/">ToothFairy — Michael Tsai’s $3 app for easily connecting AirPods to your Mac with a click</a>.</li>
+<li><a href="https://gumroad.com/l/airbuddy">AirBuddy — Guilherme Rambo’s $5 utility for connecting AirPods to your Mac with a slick iOS-style “just open the case near the Mac” interface</a>.</li>
+<li><a href="https://twitter.com/markgurman/status/1118575264026333185">The cheap piece of plastic Mark Gurman inadvertently peeled off his Galaxy Fold</a>.</li>
+<li><a href="https://twitter.com/JoannaStern/status/1118722409924894721">The peeling plastic layer on Joanna Stern’s Galaxy Fold review unit</a>.</li>
+<li><a href="https://dougscripts.com/itunes/index.php">Doug’s AppleScripts for iTunes</a>.</li>
+</ul>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>248: ‘Equally Confused’ With Peter Kafka</title>
+ <link>https://daringfireball.net/thetalkshow/2019/04/06/ep-248</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/04/06/ep-248</guid>
+ <pubDate>Sat, 6 Apr 2019 14:11:39 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/601955202-thetalkshow-248-peter-kafka.mp3" length="70590353"/>
+ <itunes:duration>01:37:41</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Peter Kafka — executive editor at Recode and longtime reporter in the fields of media and technology — joins the show to discuss the announcements at last week’s “Show Time” event: Apple News+, Apple Card, Apple Arcade, and Apple TV Channels and TV+.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest <a href="https://twitter.com/pkafka">Peter Kafka</a> — executive editor at <a href="https://www.recode.net/">Recode</a> and longtime reporter in the fields of media and technology — joins the show to discuss the announcements at last week’s “Show Time” event: Apple News+, Apple Card, Apple Arcade, and Apple TV Channels and TV+.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Because this season, everyone wants to get Away.</li>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of Eero Plus with code <strong>thetalkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li>Kafka: "<a href="https://www.recode.net/2019/3/21/18275747/apple-tv-launch-plans-event-hbo-showtime-starz-netflix-news-magazine-goldman-amazon">Apple’s Plan for Its New TV Service: Sell Other People’s TV Services</a>".</li>
+<li><a href="https://www.recode.net/2019/3/25/18281255/apple-tv-video-launch-subscriptions-strategy-oprah-winfrey-tim-cook-reese-witherspoon">Kafka's take on the event</a>.</li>
+<li><a href="https://daringfireball.net/2019/03/show_time_event_thoughts_and_observations">My brief thoughts on the event</a>.</li>
+<li><a href="https://www.esquire.com/style/mens-fashion/a26934323/apple-live-event-wyatt-mitchell-white-jumpsuit-converse-off-white-sneakers/">Designer Wyatt Mitchell's exquisite white jumpsuit</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=t433PEQGErc">"Joker" teaser</a>, from director Todd Phillips.</li>
+<li><a href="https://www.recode.net/2016/6/30/12053348/john-gruber-daring-fireball-apple-podcast-recode-media">Yours truly on Kafka’s Recode Media podcast back in 2016</a>.</li>
+</ul>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>247: ‘I Have Faith in the Rice’ With Paul Kafasis</title>
+ <link>https://daringfireball.net/thetalkshow/2019/03/25/ep-247</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/03/25/ep-247</guid>
+ <pubDate>Mon, 25 Mar 2019 16:07:37 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/595291800-thetalkshow-247-i-have-faith-in-the-rice.mp3" length="97031750"/>
+ <itunes:duration>02:14:24</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Paul Kafasis returns to the show. Topics include last week’s Apple product releases — new iPads, iMacs, and AirPods — and the de-Steve-ification of Wynn Las Vegas.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Paul Kafasis returns to the show. Topics include last week's Apple product releases -- new iPads, iMacs, and AirPods -- and the de-Steve-ification of Wynn Las Vegas.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="https://www.productbreakfastclub.com">Product Breakfast Club</a>: The only fun design podcast out there.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://audible.com/talkshow">Audible</a>: Get a free audiobook with a 30-day trial.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li><a href="https://weblog.rogueamoeba.com/2019/03/22/mac-sound-sorcery/">Mac Sound Sorcery</a></li>
+<li><a href="https://onefoottsunami.com/">One Foot Tsunami</a></li>
+<li><a href="http://www.encorebostonharbor.com/">Encore Boston Harbor</a></li>
+<li><a href="https://www.nytimes.com/1976/09/09/archives/for-the-colonel-it-was-fingerlickin-bad.html">Colonel Sanders: "It was finger-licking bad."</a> </li>
+<li><a href="https://www.theatlantic.com/technology/archive/2019/03/your-airpods-probably-have-terrible-battery-life/585439/">AirPod long-term battery life</a></li>
+<li><a href="https://fashionmagazine.com/lifestyle/tech/shaan-pruden-apple-women-tech/">Profile of long-time Apple executive Shaan Pruden</a>.</li>
+</ul>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>246: ‘Loan It to Nien Nunb’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2019/03/16/ep-246</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/03/16/ep-246</guid>
+ <pubDate>Sat, 16 Mar 2019 20:09:32 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/591206244-thetalkshow-246-matthew-panzarino.mp3" length="144654732"/>
+ <itunes:duration>03:20:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew “Hondo” Panzarino returns to the show. Topics include WWDC 2019, the 30th anniversary of the World Wide Web, Apple and privacy, the Boeing 737 Max, and Disney’s upcoming Star Wars: Galaxy’s Edge theme park lands.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew “Hondo” Panzarino returns to the show. Topics include WWDC 2019, the 30th anniversary of the World Wide Web, Apple and privacy, the Boeing 737 Max, and Disney’s upcoming Star Wars: Galaxy’s Edge theme park lands.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>thetalkshow</strong>.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: Modern men's essentials. Save 20% off your first purchase with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://techcrunch.com/2019/02/27/how-disney-built-star-wars-in-real-life/">Panzarino: “How Disney Built Star Wars in Real Life”</a></li>
+<li><a href="https://worldwideweb.cern.ch/browser/">Web browser recreation of Tim Berners-Lee’s original browser — WorldWideWeb on NeXTStep</a>.</li>
+<li><a href="https://techcrunch.com/2019/03/14/apple-ad-focuses-on-iphones-most-marketable-feature-privacy/">Apple’s new privacy ad</a>.</li>
+<li><a href="https://www.nytimes.com/2002/03/23/your-money/IHT-tylenol-made-a-hero-of-johnson-johnson-the-recall-that-started.html">Johnson &amp; Johnson’s Tylenol recall in 1982</a>.</li>
+<li><a href="https://medium.com/@teamwarren/heres-how-we-can-break-up-big-tech-9ad9e0da324c">“It’s Time to Break Up Amazon, Google, and Facebook”</a>.</li>
+<li><a href="https://www.theverge.com/2019/3/9/18257965/elizabeth-warren-break-up-apple-monopoly-antitrust">“Elizabeth Warren Wants to Break Up Apple, Too”</a>.</li>
+<li><a href="https://timetoplayfair.com/facts/">Spotify’s “Time to Play Fair” campaign against Apple</a>.</li>
+<li>Movies:
+<ul><li><a href="https://www.imdb.com/title/tt0113243/">Hackers</a></li>
+<li><a href="https://www.imdb.com/title/tt0105435/">Sneakers</a></li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>245: ‘40 Hours a Day of Murder’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2019/02/28/ep-245</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/02/28/ep-245</guid>
+ <pubDate>Thu, 28 Feb 2019 22:50:28 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/583125360-thetalkshow-245-rene-ritchie.mp3" length="124303991"/>
+ <itunes:duration>02:52:27</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Rene Ritchie returns to the show. Topics include, but are not limited to, privacy concerns with apps from the App Store, Google's payments to Apple to keep Google Search the default in Safari, Apple's Shot on iPhone contest winners, and speculation about Apple's purported March 25 media event.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Rene Ritchie returns to the show. Topics include, but are not limited to, privacy concerns with apps from the App Store, Google’s payments to Apple to keep Google Search the default in Safari, Apple’s Shot on iPhone contest winners, and speculation about Apple’s purported March 25 media event.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://marinelayer.com/">Marine Layer</a>: Clothes that make it easy to get dressed in the morning. Use code <strong>TTS</strong> for 15% off your first order.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.imore.com/these-apps-are-stealing-your-most-private-data-and-it-should-be-crime">These Apps Are Stealing Your Most Private Data and It Should Be a Crime</a>.</li>
+<li><a href="https://obdev.at/iap/index.html">Objective Development’s Internet Access Policy</a>.</li>
+<li><a href="https://www.theverge.com/2019/2/25/18229714/cognizant-facebook-content-moderator-interviews-trauma-working-conditions-arizona">The Secret Lives of Facebook Moderators in America</a>.</li>
+<li><a href="https://m.imore.com/samsung-galaxy-fold-vs-huawei-mate-x-are-foldables-future">Samsung Galaxy Fold vs. Huawei Mate X</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2019/02/apple-highlights-best-photos-shot-on-iphone-around-the-world/?1551189372">Shot on iPhone Challenge winners</a>.</li>
+<li><a href="https://www.imore.com/should-apple-remove-google-default-search">Should Apple Remove Google as Default Search?</a>.</li>
+<li><a href="https://twitter.com/JoannaStern/status/1100253691595145217">Twitter thread on new MacBooks with keyboard problems</a>.</li>
+<li><a href="https://www.macstories.net/news/inside-apple-reveals-steve-jobs-anecdotes-apples-little-known-facts/">Adam Lashinsky on Steve Jobs’s parable of the difference between a janitor and a VP</a>.</li>
+<li><a href="https://www.theverge.com/2019/2/24/18238437/lg-v50-dual-screen-second-display-mwc-2019">LG’s answer to the foldable mania is a second screen</a>.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2019-02-26/google-blames-bug-for-apple-music-appearing-on-home-speakers">Google Blames Bug for Apple Music Appearing on Home Speakers</a>.</li>
+<li><a href="http://www.bombingbrain.com/products.html">Teleprompt+</a>.</li>
+<li><a href="https://www.amazon.com/PANASONIC-Mirrorless-Camera-Megapixels-DC-GH5KBODY/dp/B01MZ3LQQ5">Panasonic GH5</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>244: ‘Plagiarists and Fabulists’ With Glenn Fleishman</title>
+ <link>https://daringfireball.net/thetalkshow/2019/02/22/ep-244</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/02/22/ep-244</guid>
+ <pubDate>Fri, 22 Feb 2019 20:45:29 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/579825009-thetalkshow-244-glenn-fleishman.mp3" length="133446441"/>
+ <itunes:duration>03:04:31</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Glenn Fleishman returns to the show. Topics include: rumors of new Mac hardware and Marzipan at WWDC, Samsung’s new phones unveiled at their “Unpacked” event, 5G networks, Apple’s purported foray into the credit card business, and more — including Glenn’s “Tiny Type Museum” Kickstarter project.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Glenn Fleishman returns to the show. Topics include: rumors of new Mac hardware and Marzipan at WWDC, Samsung’s new phones unveiled at their “Unpacked” event, 5G networks, Apple’s purported foray into the credit card business, and more — including Glenn’s “Tiny Type Museum” Kickstarter project.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="https://eero.com/thetalkshow">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of Eero Plus with code <strong>thetalkshow</strong>.</li>
+<li><a href="https://molekule.com/">Molekule</a>: The only air purifier that actually destroys pollutants. Save $75 with code <strong>talkshow</strong>.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Save $50 off select mattresses with code <strong>talkshow</strong>. Terms and conditions apply.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li><a href="https://tinytypemuseum.com/">Tiny Type Museum &amp; Time Capsule — Glenn’s latest project on Kickstarter</a>.</li>
+<li><a href="https://www.macworld.com/article/3327502/macs/mac-indy-apps-thrived-for-more-than-25-years.html">“The Old Guard of Mac Indie Apps Has Thrived for More Than 25 Years”</a>.</li>
+<li><a href="https://daringfireball.net/linked/2019/02/21/apple-goldman-mastercard">WSJ report on Apple teaming With Goldman Sachs to issue a credit card</a>.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2015-04-17/costco-seen-paying-almost-zero-to-accept-cards-in-citigroup-deal">Costco’s remarkable low-fee exclusivity deal with Visa</a>.</li>
+<li><a href="https://daringfireball.net/linked/2019/02/20/gurman-wwdc-2019">“Gurman on WWDC 2019: Marzipan Marches Forward and the New Mac Pro”</a>.</li>
+<li><a href="https://www.rferl.org/a/are-russian-trolls-saving-measles-from-extinction/29768471.html">“Are Russian Trolls Saving Measles From Extinction?”</a></li>
+<li><a href="https://medium.com/@glennf/erik-spiekermann-makes-a-deep-impression-by-marrying-new-to-old-f7d9df4119ce">Glenn’s story on Erik Spiekermann marrying digital design with letterpress printing</a>.</li>
+<li><a href="https://www.theringer.com/the-bill-simmons-podcast/2019/1/23/18194161/twitter-ceo-jack-dorsey-on-the-birth-of-the-hashtag">Jack Dorsey on The Bill Simmons Podcast</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>243: ‘The God Awful Truth’ With Rich Mogull</title>
+ <link>https://daringfireball.net/thetalkshow/2019/02/15/ep-243</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/02/15/ep-243</guid>
+ <pubDate>Fri, 15 Feb 2019 14:31:17 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/575985381-thetalkshow-243-rich-mogull.mp3" length="116565939"/>
+ <itunes:duration>02:41:42</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Rich Mogull joins the show. Topics cover a range of security and privacy-related issues: the Jeff Bezos/National Enquirer saga, laptop webcams, abuse of Apple’s enterprise developer program to enable sideloading of iOS apps, Amazon’s acquisition of Eero, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Rich Mogull joins the show. Topics cover a range of security and privacy-related issues: the Jeff Bezos/National Enquirer saga, laptop webcams, abuse of Apple's enterprise developer program to enable sideloading of iOS apps, Amazon's acquisition of Eero, and more.</p>
+
+<h2>Sponsors</h2>
+
+<ul>
+<li><a href="https://linkedin.com/talk">LinkedIn</a>: A new hire is made every ten seconds using LinkedIn. Save $50 off your first job listing with this link.</li>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Because this season, everyone wants to get Away.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<h2>Links</h2>
+
+<ul>
+<li><a href="https://securosis.com/">Securosis — Rich’s security consultancy and blog</a>.</li>
+<li><a href="https://techcrunch.com/2019/02/12/apple-porn-gambling-apps/">Enterprise apps as de facto sideloading</a>.</li>
+<li><a href="https://daringfireball.net/2019/02/on_covering_webcams">Daring Fireball: “On Covering Webcams”</a>.</li>
+<li><a href="https://www.obdev.at/products/microsnitch/index.html">Micro Snitch: Objective Development’s utility for notifying you of access to your Mac’s camera or microphone</a>.</li>
+<li><a href="https://objective-see.com/products/oversight.html">Patrick Wardle’s Oversight</a>.</li>
+<li><a href="https://hardware.slashdot.org/story/07/05/05/1812254/TJX-Breach-Began-With-WEP-Crack">The 2005 TJX data breach</a>.</li>
+<li><a href="https://www.vanityfair.com/news/2019/01/trump-aide-recalls-conways-leaking-tactics-in-the-west-wing-vipers-nest">Cliff Sims’s <em>Team of Vipers</em> tell-all on working in the Trump administration</a>.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>242: ‘The Butts Incident’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2019/01/31/ep-242</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/01/31/ep-242</guid>
+ <pubDate>Thu, 31 Jan 2019 19:19:13 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/568188933-thetalkshow-242-john-moltz.mp3" length="89078783"/>
+ <itunes:duration>02:03:31</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Moltz makes his long-awaited return to the show. Three big topics this week: the Facebook VPN app fiasco (and the company’s pattern of ethical violations), the Group FaceTime bug that allowed callers to listen to audio before the call was answered, and Apple’s quarterly results.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Moltz makes his long-awaited return to the show. Three big topics this week: the Facebook VPN app fiasco (and the company’s pattern of ethical violations), the Group FaceTime bug that allowed callers to listen to audio before the call was answered, and Apple’s quarterly results.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://audible.com/talkshow">Audible</a>: Get a free audiobook with a 30-day trial.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Get $50 off select mattresses with code <strong>talkshow</strong>. Terms and conditions apply.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://pxlnv.com/linklog/facetime-bugs-allow-unauthorized-audio-video/">Bugs in Group FaceTime Allow Callers to See and Hear Recipients’ End Without Them Answering</a>.</li>
+<li><a href="https://techcrunch.com/2019/01/29/facebook-project-atlas/">TechCrunch: Facebook Pays Teenagers to Install VPN That Spies on Them</a>.</li>
+<li><a href="https://www.buzzfeednews.com/article/nicolenguyen/apple-just-shut-down-googles-internal-ios-apps">Google Was Doing Something Similar</a>.</li>
+<li><a href="https://sixcolors.com/post/2019/01/apples-dramatic-q1-2019-results/">Apple’s Q1 2019 Financial Results</a>.</li>
+<li><a href="https://craigmod.com/onmargins/007/">Lisa Brennan-Jobs on Craig Mod’s “On Margins” podcast</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>241: ‘More Smarter’ With Joanna Stern</title>
+ <link>https://daringfireball.net/thetalkshow/2019/01/23/ep-241</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/01/23/ep-241</guid>
+ <pubDate>Wed, 23 Jan 2019 13:16:18 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/563488224-thetalkshow-241-joanna-stern.mp3" length="77701378"/>
+ <itunes:duration>01:47:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Joanna Stern returns to the show. Topics include the iPhone XR (and the argument that it might be the best phone in Apple's current lineup), Apple's new Smart Battery Cases, Apple Watch, and, of course, the new MacBook Air.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Joanna Stern returns to the show. Topics include the iPhone XR (and the argument that it might be the best phone in Apple’s current lineup), Apple’s new Smart Battery Cases, Apple Watch, and, of course, the new MacBook Air.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linkedin.com/talk">LinkedIn</a>: A new hire is made every ten seconds using LinkedIn. Save $50 off your first job listing with this link.</li>
+<li><a href="https://TakeCareOf.com/">Care/of</a>: A monthly subscription vitamin service that delivers completely personalized vitamin and supplement packs right to your door. Use promo code <strong>talkshow50</strong> and save 50% off your first month.</li>
+<li><a href="https://www.dashlane.com/daringfireball">Dashlane</a>: The simple, secure way to remember and auto-fill all your passwords. Never forget another password. Save 10% off Dashlane Premium with promo code <strong>daringfireball</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.vulture.com/2016/03/20-somethings-streaming-friends-c-v-r.html">New York Magazine in 2016: “Is ‘Friends’ Still the Most Popular Show on TV?”</a>.</li>
+<li><a href="https://www.nytimes.com/2018/12/04/business/media/netflix-friends.html">Last Month: “Netflix Will Keep ‘Friends’ Through Next Year in a $100 Million Agreement”</a>.</li>
+<li><a href="https://www.wsj.com/articles/iphone-xr-review-you-dont-have-to-spend-1-000-for-the-best-iphone-1540288800">Joanna’s iPhone XR review</a>.</li>
+<li><a href="https://www.wsj.com/video/series/joanna-stern-personal-technology/new-macbook-air-reviewed-in-a-hot-air-balloon/06013257-7E58-43B6-BF65-0C2834306D25">Joanna’s MacBook Air review — from a hot air balloon</a>.</li>
+<li><a href="https://www.wsj.com/video/series/joanna-stern-personal-technology/apple-watch-series-4-fall-detection-tested-by-a-hollywood-stunt-double/3940468A-DFEC-4F1F-A0F5-C9BAC8A26B1B">“Apple Watch Series 4 Fall Detection Tested by a Hollywood Stunt Double” </a>.</li>
+</ul>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>240: ‘Drastically Shakier’ With Ben Thompson</title>
+ <link>https://daringfireball.net/thetalkshow/2019/01/14/ep-240</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/01/14/ep-240</guid>
+ <pubDate>Mon, 14 Jan 2019 19:43:27 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/559131822-thetalkshow-240-ben-thompson.mp3" length="121045843"/>
+ <itunes:duration>02:47:55</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ben Thompson returns to the show. Topics include Apple's horrible no good very bad earnings warning, the Chinese market, Apple's push toward services for revenue growth, antitrust issues regarding the App Store, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ben Thompson returns to the show. Topics include Apple's horrible no good very bad earnings warning, the Chinese market, Apple's push toward services for revenue growth, antitrust issues regarding the App Store, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://alexweinstein.com/thetalkshow">Alex Weinstein Music</a>: Handmade music for your next video project. Use promo code <strong>thetalkshow</strong> and save 30 percent off your first purchase.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10 percent off your first order.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Get $100 off a Wi-Fi system and a year of eero Plus with code <strong>thetalkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://stratechery.com/2019/apples-errors/">“Apple’s Errors” — Ben’s take on Apple’s earnings warning</a>.</li>
+<li><a href="https://daringfireball.net/2019/01/apples_terrible_no_good_very_bad_earnings_warning">“Apple’s Terrible No Good Very Bad Earnings Warning” — my take</a>.</li>
+<li><a href="https://twitter.com/stevesi/status/1081002340247756800?s=21">Steven Sinofsky and Apple’s “next big thing”</a>.</li>
+<li><a href="https://stratechery.com/2018/antitrust-the-app-store-and-apple/">“Antitrust, the App Store, and Apple”</a>.</li>
+<li><a href="https://exponent.fm/">Exponent — Ben’s podcast cohosted by James Allworth — is back</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>239: ‘Proprioceptive Lie’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2019/12/31/ep-239</link>
+ <guid>https://daringfireball.net/thetalkshow/2019/12/31/ep-239</guid>
+ <pubDate>Mon, 31 Dec 2018 17:20:58 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/552433641-thetalkshow-239-rene-ritchie.mp3" length="105704915"/>
+ <itunes:duration>02:26:36</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show for a year-in-review look back at Apple’s 2018: the Mac, iPad, iPhone, Apple Watch, Siri and services, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show for a year-in-review look back at Apple’s 2018: the Mac, iPad, iPhone, Apple Watch, Siri and services, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://omnifocus.com/">OmniFocus</a>: Accomplish more every day with the trusted, gold-standard to-do app for Mac, iPhone, iPad, and now even the web.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: Get $50 off select mattresses with code <strong>talkshow</strong>. Terms and conditions apply.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://theC64.com/">The C64 Mini</a>.</li>
+<li><a href="https://www.raspberrypi.org/">Raspberry Pi</a>.</li>
+<li><a href="http://www.vortexgear.tw/vortex2_3.asp?kind=47&amp;kind2=225&amp;sn=3&amp;so3=open">Vortex Race 3 mechanical keyboard</a>.</li>
+<li><a href="https://github.com/Nexus-Mods/Vortex/releases/">The other “Vortex”</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=VObg5BiXx6I&amp;app=desktop">The MacBook ARM — video from Rene laying out the similarities between Apple’s 2005 transition from PowerPC to Intel and the seemingly inevitable coming transition from Intel to in-house ARM chips</a>.</li>
+<li><a href="https://6abc.com/health/apple-watch-saves-mans-life-detecting-heart-condition/4879655/">Apple Watch Series 4 detects man’s potentially deadly heart condition</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/12/20/giannandrea">John Giannandrea, Siri, and AI/ML</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>238: ‘Fort Jason Sudeikis’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2018/12/24/ep-238</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/12/24/ep-238</guid>
+ <pubDate>Mon, 24 Dec 2018 14:35:26 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/549598080-thetalkshow-238-jason-snell.mp3" length="130344140"/>
+ <itunes:duration>03:00:50</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell returns to the show. Topics include BBEdit’s 25th anniversary, the saga of Word 6 for Mac in the 1990s, Mac iOS user interface differences (including an extensive discussion of Mojave’s craptacular “Marzipan” apps, and a few varying theories on what those apps portend), Photos on Mac and iOS, and, of course, keyboards.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell returns to the show. Topics include BBEdit’s 25th anniversary, the saga of Word 6 for Mac in the 1990s, Mac iOS user interface differences (including an extensive discussion of Mojave’s craptacular “Marzipan” apps, and a few varying theories on what those apps portend), Photos on Mac and iOS, and, of course, keyboards.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10 percent off your first order.</li>
+<li><a href="https://hullopillow.com/talkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. $20 in credit with promo code <strong>talkshow2018</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.takecontrolbooks.com/photos"><em>Take Control of Photos</em> by Jason Snell</a>.</li>
+<li><a href="https://sixcolors.com/post/2018/12/my-current-keyboard-vortex-race-3/">Jason’s current keyboard: the Vortex Race 3</a>.</li>
+<li><a href="https://www.macrumors.com/2018/12/21/apple-dan-riccio-on-2018-ipad-pro/">Apple hardware SVP Dan Riccio on reports of bent iPad Pros</a>.</li>
+<li><a href="https://www.studioneat.com/products/canopy">Studio Neat’s Canopy case/iPad stand for Apple’s Magic Keyboard</a>.</li>
+<li><a href="https://www.amazon.com/Fintie-Carrying-Apple-Keyboard-MLA22LL/dp/B01K780TN2/ref=as_li_ss_tl?ie=UTF8&amp;qid=1544058479&amp;sr=8-3&amp;keywords=Fintie+Magic+keyboard&amp;linkCode=sl1&amp;tag=macst-20&amp;linkId=d28058d83f627dda1c059552b2674656&amp;language=en_US">Fintie Carry Case for Apple Magic Keyboard</a>.</li>
+<li><a href="https://sixcolors.com/post/2018/04/writing-on-my-ipad-at-home/">Jason’s favorite iPad stand</a>.</li>
+<li><a href="https://www.amazon.com/Anker-Portable-Multi-Angle-Smartphones-Compatible/dp/B00D856NOG">John’s favorite iPad stand</a>.</li>
+<li><a href="https://blogs.msdn.microsoft.com/rick_schaut/2004/02/26/mac-word-6-0/">Microsoft’s Rick Schaut on the saga of Word 6 for Mac</a>.</li>
+<li><a href="https://daringfireball.net/2018/12/electron_and_the_decline_of_native_apps">My recent take on the Word 6 saga, in the context of the rise of Electron apps</a>.</li>
+<li><a href="https://www.macstories.net/stories/my-must-have-ios-apps-2018-edition/">Federico Viticci’s top iOS apps of the year</a>.</li>
+<li><a href="https://www.imore.com/how-connect-non-homekit-devices-homekit-using-homebridge">HomeBridge — open source utility for connecting non-HomeKit devices to HomeKit</a>.</li>
+<li>BBEdit 25th anniversary <a href="https://merch.barebones.com/">merchandise</a> and <a href="http://www.barebones.com/company/press/bbedit_25_merch.html">amusing press release</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>237: ‘Out on Home Video’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2018/12/15/ep-237</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/12/15/ep-237</guid>
+ <pubDate>Sat, 15 Dec 2018 15:24:46 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/545445741-thetalkshow-237-matthew-panzarino.mp3" length="91497650"/>
+ <itunes:duration>02:06:52</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show. Topics include recent blockbuster movies, motion smoothing on TVs, iPhone demand rumors, Apple’s Made For iPhone (MFi) program, and more. Recorded live from The Overlook Hotel in Sidewinder, Colorado.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show. Topics include recent blockbuster movies, motion smoothing on TVs, iPhone demand rumors, Apple’s Made For iPhone (MFi) program, and more. Recorded live from The Overlook Hotel in Sidewinder, Colorado.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get $20 in credit with promo code <strong>talkshow2018</strong>.</li>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Single-family-estate coffee, freshly roasted and delivered right to your door. Save 10 percent off a subscription with code <strong>thetalkshow</strong>.</li>
+<li><a href="http://jamf.com/thetalkshow">Jamf Now</a>: Set up and protect your Apple devices at work. First 3 devices are free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=jD3ROh2iydQ">Tom Cruise and Christopher McQuarrie’s PSA on the evils of motion smoothing</a>.</li>
+<li><a href="https://fivethirtyeight.com/features/tom-hanks-and-steven-spielberg-might-be-the-best-collaboration-in-hollywood/">Walt Hickey: “Tom Hanks and Steven Spielberg Might Be the Best Collaboration in Hollywood”</a>.</li>
+<li><a href="https://www.fiercewireless.com/wireless/comcast-xfinity-mobile-a-no-frills-mvno-service-primarily-designed-to-prevent-churn">Comcast Xfinity mobile service</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/12/05/iphone-xr-clear-case">My review of Apple’s $39 iPhone XR clear case</a>.</li>
+<li><a href="https://9to5mac.com/2018/12/07/apple-new-smart-battery-case-iphone-xs/">Guilherme Rambo finds clues suggesting new Smart Battery Cases from Apple</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>236: ‘A Vivid Nightmarescape’ With Dieter Bohn</title>
+ <link>https://daringfireball.net/thetalkshow/2018/11/30/ep-236</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/11/30/ep-236</guid>
+ <pubDate>Fri, 30 Nov 2018 23:00:15 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/539240997-thetalkshow-236-dieter-bohn.mp3" length="110212037"/>
+ <itunes:duration>02:32:52</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Dieter Bohn joins the show to talk about Google’s new Pixel Slate Chrome OS tablet/laptop, the Pixel 3, Google’s fascinating new Night Sight camera mode, speculation on how Apple might move the Mac to ARM chips, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Dieter Bohn joins the show to talk about Google’s new Pixel Slate Chrome OS tablet/laptop, the Pixel 3, Google’s fascinating new Night Sight camera mode, speculation on how Apple might move the Mac to ARM chips, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/talkshow">Casper</a>: Get $50 off select mattresses with code <strong>talkshow</strong>. Terms and conditions apply.</li>
+<li><a href="http://fractureme.com/talk">Fracture</a>: Your photos printed in vivid color directly on glass -- great holiday gift.</li>
+<li><a href="https://iggsoftware.com/thetalkshow">Banktivity</a>: Powerful personal finance app for Mac and iOS with a great native UI. Save 10 percent on the Mac version with coupon code <strong>THETALKSHOW</strong> at checkout.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.macworld.com/article/2901437/macbook/ode-to-the-12-inch-powerbook-g4-apples-first-desktop-quality-laptop.html">The late great 12-inch PowerBook G4</a>.</li>
+<li><a href="https://www.theverge.com/2018/11/27/18113447/google-pixel-slate-review-tablet-chrome-os-android-chromebook-slapdash">Dieter's rather scathing review of the Pixel Slate</a>.</li>
+<li><a href="https://www.theverge.com/2018/11/14/18092660/google-night-sight-review-pixel-2-3-camera-photos-image-quality">The Verge's review of Google's Night Sight camera feature</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>235: ‘Jony White’s Universe of Objective Purity’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2018/11/22/ep-235</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/11/22/ep-235</guid>
+ <pubDate>Thu, 22 Nov 2018 12:35:18 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/533956620-thetalkshow-235-rene-ritchie.mp3" length="110793658"/>
+ <itunes:duration>02:33:41</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show to talk about iPad Pro — the new Pencil, the new amazing new hardware, keyboard options, and the OS that in many ways still feels meant for a phone. Also: the state of Apple’s MacBook lineup, and a plea to Apple to please — *please* — make the small Magic Keyboard in space gray.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show to talk about iPad Pro — the new Pencil, the new amazing new hardware, keyboard options, and the OS that in many ways still feels meant for a phone. Also: the state of Apple’s MacBook lineup, and a plea to Apple to please — <em>please</em> — make the small Magic Keyboard in space gray.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Single-family-estate coffee, freshly roasted and delivered right to your door. Save 10 percent off a subscription with code <strong>thetalkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10 percent off your first order.</li>
+<li><a href="http://fractureme.com/talk">Fracture</a>: Your photos printed in vivid color directly on glass. Great gift idea — order now for the holidays.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2018/11/third_party_usb-c_to_lightning_cables">Yours truly on the lack of third-party USB-C to Lightning cables and the future of Lightning</a>.</li>
+<li><a href="https://www.imore.com/apple-pencil-2018-review-drawn-apple-pencil">Rene’s Vector video on Apple Pencil, drawn with Apple Pencil</a>.</li>
+<li><a href="https://www.cnet.com/news/the-simpsons-eat-up-martha-was-the-first-autocorrect-fail/">“Eat Up Martha”</a>.</li>
+<li><a href="https://www.apple.com/shop/product/HLPU2PA/A/logitech-keys-to-go-ultra-slim-keyboard-with-iphone-stand">Logitech’s $70 squishy AF “Keys-to-Go” slim keyboard for iPad and iPhone</a>.</li>
+<li><a href="https://www.studioneat.com/products/canopy">Studio Neat’s excellent Canopy case for Apple’s Magic Keyboard</a>.</li>
+<li><a href="https://www.relay.fm/tc">“Thoroughly Considered” — monthly podcast with Studio Neat co-founders Dan Provost and Tom Gerhardt</a>.</li>
+<li><a href="https://www.imore.com/macbook-air-10-year-birthday">Steve Jobs introducing original MacBook Air</a>.</li>
+<li><a href="https://twitter.com/SnazzyQ/status/1063977972644798465">Bending iPads — fun video from Snazzy Labs</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>234: ‘Welcome to Dongletropolis’ With Merlin Mann</title>
+ <link>https://daringfireball.net/thetalkshow/2018/11/09/ep-234</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/11/09/ep-234</guid>
+ <pubDate>Fri, 9 Nov 2018 20:08:35 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/527444295-thetalkshow-234-merlin-mann.mp3" length="124930148"/>
+ <itunes:duration>02:53:19</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Merlin Mann returns to the show. Topics include the new iPad Pro and the state of iOS as a work platform, the mid-term election results, and holiday parties of yore.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Merlin Mann returns to the show. Topics include the new iPad Pro and the state of iOS as a work platform, the mid-term election results, and holiday parties of yore.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Save $20 with promo code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use promo code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="http://jamf.com/thetalkshow">Jamf Now</a>: Set up and protect your Apple devices at work, from anywhere. First 3 devices are free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://affinity.serif.com/en-us/designer/ipad/">Affinity Designer for iPad</a>.</li>
+<li><a href="https://www.matthewcassinelli.com/">Matthew Cassinelli — former Workflow/Shortcuts engineer now posting great Shortcuts stuff</a>.</li>
+<li><a href="https://twitter.com/mattcassinelli/">Cassinelli’s Twitter account</a>.</li>
+<li><a href="https://sixcolors.com/post/2018/04/writing-on-my-ipad-at-home/">Jason Snell’s setup for writing on an iPad</a>.</li>
+<li><a href="https://junecloud.com/">Deliveries — great iOS and Mac app for tracking deliveries</a>.</li>
+<li><a href="https://www.relay.fm/rd">Reconcilable Differences</a>.</li>
+<li><a href="http://dobyfriday.com/">Do By Friday</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>233: ‘North Korean USB Fan’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2018/11/01/ep-233</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/11/01/ep-233</guid>
+ <pubDate>Wed, 31 Oct 2018 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/523276164-thetalkshow-233-john-moltz.mp3" length="74517589"/>
+ <itunes:duration>01:43:17</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>You wanted more Moltz, you get more Moltz. Our thoughts and observations on Apple’s “There’s More in the Making” event at the Brooklyn Academy of Music, and the products they announced: new MacBook Airs, Mac Minis, iPad Pros, and Apple Pencil.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>You wanted more Moltz, you get more Moltz. Our thoughts and observations on Apple’s “There’s More in the Making” event at the Brooklyn Academy of Music, and the products they announced: new MacBook Airs, Mac Minis, iPad Pros, and Apple Pencil.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://theapplewatchtriathlete.com/">The Apple Watch Triathlete</a>: Pre-order the <em>How to Train like an IronMan with Apple Watch</em> e-book before December 3 and save 60 percent with promo code <strong>thetalkshow</strong>.</li>
+<li><a href="http://fracture.me/talk">Fracture</a>: Your photos printed in vivid color directly on glass.</li>
+<li><a href="https://linode.com/thetalkshow">Linode</a>: Instantly deploy and manage an SSD server in the Linode Cloud. Get $20 in credit with promo code <strong>talkshow2018</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/october-2018/">Apple’s “There’s More in the Making” event video</a>.</li>
+<li><a href="https://retropie.org.uk/">RetroPie</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>232: ‘I’ll Eat My Hat’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2018/10/28/ep-232</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/10/28/ep-232</guid>
+ <pubDate>Sat, 27 Oct 2018 23:00:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/520869477-thetalkshow-232-john-moltz.mp3" length="111958614"/>
+ <itunes:duration>02:35:18</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show (finally). Topics include the iPhone XR, next week's Apple event at the Brooklyn Academy of Music, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show (finally). Topics include the iPhone XR, next week's Apple event at the Brooklyn Academy of Music, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://rxbar.com/talkshow">RXBAR</a>: Real food that tastes good and is good for you.</li>
+<li><a href="http://tryprimechannels.com/talkshow">Prime Video Channels</a>: Create a TV lineup you love from 100+ premium and specialty channels.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2018/10/the_iphone_xr">My iPhone XR review</a> and <a href="https://daringfireball.net/2018/10/iphone_xr_review_roundup">follow-up</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Strategic_Conquest">Strategic Conquest</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Bolo_(1987_video_game)">Bolo — networked Mac game from 1987</a>.</li>
+<li><a href="https://unbound.com/books/macgaming/"><em>The Secret History of Mac Gaming</em>, by Richard Moss</a>.</li>
+<li>Joanna Stern: “<a href="https://www.wsj.com/articles/ugh-green-bubbles-apples-imessage-makes-switching-to-android-hard-1539867600">Ugh, Green Bubbles! Apple’s iMessage Makes Switching to Android Hard</a>”.</li>
+<li><a href="https://www.theverge.com/2018/10/25/18021944/google-night-sight-pixel-3-camera-samples">Vlad Savov on Google’s imminent Night Sight feature for Pixel phones</a>.</li>
+<li><a href="http://cchen156.web.engr.illinois.edu/SID.html">Research paper and video showing Night-Sight-like results</a>.</li>
+<li><a href="https://www.theverge.com/2018/10/17/17988564/chinese-phone-software-android-iphone-copy-ui">Sam Byford on Chinese phone OSes based on Android</a>.</li>
+<li><a href="https://www.totalleecase.com/">Totallee super thin iPhone cases</a>.</li>
+<li><a href="https://sixcolors.com/post/2018/03/its-not-quite-a-mac-mini-but-its-my-server/">Jason Snell on building a Hackintosh (or as Moltz put it, a Macinstein)</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton, who insists he’s going to the grave with a tiny phone.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>231: ‘It’s a Deep Notch’ With Dan Frommer</title>
+ <link>https://daringfireball.net/thetalkshow/2018/10/16/ep-231</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/10/16/ep-231</guid>
+ <pubDate>Tue, 16 Oct 2018 23:02:23 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/515467365-thetalkshow-231-dan-frommer.mp3" length="106625608"/>
+ <itunes:duration>02:27:53</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Dan Frommer returns to the show. Topics include Apple Watch Series 4 and the notion of third-party watch faces, Google’s Pixel 3 phones and Pixel Slate two-in-one tablet/notebook, and Bloomberg’s disputed “The Big Hack” story.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Dan Frommer returns to the show. Topics include Apple Watch Series 4 and the notion of third-party watch faces, Google’s Pixel 3 phones and Pixel Slate two-in-one tablet/notebook, and Bloomberg’s disputed “The Big Hack” story.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://casper.com/talkshow">Casper</a>: Save $50 on select mattresses with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Check out with code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.trespontas.com/">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>thetalkshow</strong> at checkout and save an extra 10% on any subscription.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.pointsparty.com/">Points Party — Dan’s email newsletter on credit card and airline rewards programs</a>.</li>
+<li><a href="https://www.bloomberg.com/news/features/2018-10-04/the-big-hack-how-china-used-a-tiny-chip-to-infiltrate-america-s-top-companies">Bloomberg’s disputed “The Big Hack”</a>.
+<ul><li><a href="https://daringfireball.net/search/bloomberg+the+big+hack">Daring Fireball items on the story</a>.</li>
+<li><a href="https://www.supermicro.com/index.cfm">Supermicro’s old-school website (even uses a .cfm file extension)</a>.</li>
+<li><a href="https://www.recode.net/2018/10/4/17936716/supermicro-stock-down-china-bloomberg-spy-apple">Supermicro’s stock dive in the wake</a>.</li></ul></li>
+<li><a href="https://twitter.com/stroughtonsmith/status/1051467645118283781">Custom watch faces by Steven Troughton-Smith</a>.</li>
+<li><a href="https://twitter.com/_DavidSmith/status/1051793850077974528">David “Underscore” Smith’s retro watch face</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=Gfq46F-Dg2M">The Verge hands-on with on Photoshop for iPad</a>.</li>
+<li><a href="https://www.theverge.com/2018/10/15/17974850/new-palm-smartphone-android-lifemode-time-well-spent-verizon">The new “Palm” phone</a>.</li>
+<li><a href="https://www.punkt.ch/en/products/mp02-4g-mobile-phone/">Punkt’s minimal MP02 phone</a>.</li>
+<li><a href="https://panic.com/blog/the-future-of-status-board/">Panic’s late great Status Board app for iPad</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>230: ‘Flabbergasting’ With Nilay Patel</title>
+ <link>https://daringfireball.net/thetalkshow/2018/09/24/ep-230</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/09/24/ep-230</guid>
+ <pubDate>Mon, 24 Sep 2018 18:26:45 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/504682263-thetalkshow-230-nilay-patel.mp3" length="82327028"/>
+ <itunes:duration>01:54:08</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Nilay Patel returns to the show to talk about the iPhone XS and XS Max. We got so caught up talking about cameras, we never even mention headphone jacks.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Nilay Patel returns to the show to talk about the iPhone XS and XS Max. We got so caught up talking about cameras, we never even mention headphone jacks.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use coupon code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>thetalkshow</strong> at checkout and save an extra 10% on any subscription.</li>
+<li><a href="https://hullopillow.com/talkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.theverge.com/2018/9/18/17871816/apple-iphone-xs-max-review-camera-processor-battery-price">Nilay’s iPhone XS review</a>.</li>
+<li><a href="https://daringfireball.net/2018/09/the_iphones_xs">My iPhone XS review</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=wFTmQ27S7OQ">Apple’s video from the iPhone XS and Series 4 watch event</a>.</li>
+<li><a href="https://twitter.com/reckless/status/1041218893958791170">Twitter thread on Steve Jobs’s amazing (in hindsight) introduction of the iPhone 3G in 2008</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>229: ‘iPhone 🍸’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2018/09/04/ep-229</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/09/04/ep-229</guid>
+ <pubDate>Tue, 4 Sep 2018 21:20:08 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/495309378-thetalkshow-229-rene-ritchie.mp3" length="80621773"/>
+ <itunes:duration>01:51:06</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show for a deep dive into what was revealed (and what wasn’t) by Guilherme Rambo’s release last week of product marketing images of the apparently-named iPhone XS and Series 4 Apple Watch.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show for a deep dive into what was revealed (and what wasn’t) by Guilherme Rambo’s release last week of product marketing images of the apparently-named iPhone XS and Series 4 Apple Watch.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Visit squarespace.com/talkshow and enter code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Go to http://awaytravel.com/talkshow and get $20 off with code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://9to5mac.com/2018/08/30/2018-iphone-xs-design-larger-version-gold-exclusive/">9to5Mac: “This Is iPhone XS”</a>.</li>
+<li><a href="https://9to5mac.com/2018/08/30/exclusive-apple-watch-series-4/">9to5Mac: “Apple Watch Series 4 Revealed”</a>.</li>
+<li><a href="https://www.macrumors.com/2007/08/22/ipod-nano-photos/">9to5Mac back in 2007, with a pre-release product marketing image of the fat iPad Nano</a>.</li>
+<li><a href="https://www.awaytravel.com/battery-switch">Away’s free pop-out assembly for the battery in older versions of their carry-ons</a>.</li>
+<li><a href="https://www.edwardtufte.com/tufte/books_vdqi">Edward Tufte’s extraordinary books on information design</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=N-C_jUUnZfQ">Phil Schiller introducing the iPhone 3GS in 2009 while Steve Jobs was on leave</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>228: ‘Smallen Up the Bezels’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2018/08/24/ep-228</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/08/24/ep-228</guid>
+ <pubDate>Fri, 24 Aug 2018 19:21:23 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/490240503-thetalkshow-228-jason-snell.mp3" length="112821466"/>
+ <itunes:duration>02:36:30</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell returns to the show. Topics do include mechanical keyboards, but do not -- I swear -- include baseball. Also: speculation on what Apple might do with the non-Pro MacBook lineup.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell returns to the show. Topics do include mechanical keyboards, but do not — I swear — include baseball. Also: speculation on what Apple might do with the non-Pro MacBook lineup.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>thetalkshow</strong> at checkout and save an extra 10% on any subscription.</li>
+<li><a href="https://casper.com/talkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Visit squarespace.com/talkshow and enter code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.engadget.com/2010/07/16/live-from-apples-iphone-4-press-conference/">Yours truly asking Tim Cook, Steve Jobs, and Bob Mansfield whether they used the bumper cases at the Antennagate press conference</a>.</li>
+<li><a href="http://matias.ca/laptoppro/mac/">Matias Laptop Pro Wireless Keyboard</a>.</li>
+<li><a href="https://www.daskeyboard.com/">Das Keyboard</a>.</li>
+<li><a href="http://www.wasdkeyboards.com/">WASD keyboards</a>.
+<ul><li><a href="http://www.wasdkeyboards.com/index.php/review/product/list/id/181/?p=5"> WASD’s 6-key switch tester — great desk toy</a>.</li></ul></li>
+<li><a href="https://www.anker.com/products/variant/multi-angle-stand/77ANSTAND-BA">My favorite iPad (and iPhone) stand: Anker’s $11 Multi-Angle Stand</a>.</li>
+<li><a href="https://www.keyboardmaestro.com/">Keyboard Maestro</a>.</li>
+<li><a href="https://www.macworld.com/article/3261125/macs/macbook-air-why-wont-it-die.html">Jason writing for Macworld back in March: “MacBook Air: Why Won’t It Die?”</a>.</li>
+<li><a href="https://youtu.be/EA8vDBY6bCs?t=1h14m40s
">Phil Schiller deftly shows how the 13-inch MacBook Pro is smaller than the 13-inch MacBook Air in October 2016</a>.</li>
+<li><a href="https://www.macworld.com/article/1131864/macbooks/macbookair.html">Daring Fireball: “Let’s Really Think About This ‘New Low-Cost Laptop to Succeed MacBook Air’ Thing”</a>.</li>
+<li><a href="http://mediashift.org/2011/07/why-missouri-j-school-should-rescind-its-apple-laptop-requirement206/">Iconic photo of Missouri Journalism School lecture hall filled with students with MacBooks</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>227: ‘Little Q&amp;A’</title>
+ <link>https://daringfireball.net/thetalkshow/2018/08/01/ep-227</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/08/01/ep-227</guid>
+ <pubDate>Tue, 31 Jul 2018 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/479928825-thetalkshow-227-little-q-and-a.mp3" length="71577408"/>
+ <itunes:duration>01:39:12</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Answering actual questions from actual listeners.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Answering actual questions from actual listeners.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://casper.com/talkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Visit squarespace.com/talkshow and enter code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>226: ‘Cut That Mustache With Scissors’ With Marco Arment</title>
+ <link>https://daringfireball.net/thetalkshow/2018/07/27/ep-226</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/07/27/ep-226</guid>
+ <pubDate>Fri, 27 Jul 2018 20:15:24 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/477693240-thetalkshow-226-marco-arment.mp3" length="82357877"/>
+ <itunes:duration>02:51:02</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Marco Arment returns to the show for a brief discussion about the new MacBook Pro models and the state of Apple's MacBook lineup.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Marco Arment returns to the show for a brief discussion about the new MacBook Pro models and the state of Apple’s MacBook lineup.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Save $20 with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Visit squarespace.com/talkshow and enter code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://mackweldon.com/">Mack Weldon</a>: The most comfortable underwear, socks, shirts, undershirts, hoodies and sweat pants and more that you will ever wear. 20% off your first order with checkout code <strong>talkshow</strong>.</li>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>thetalkshow</strong> at checkout and save an extra 10% on any subscription.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Gaffer_tape">Gaffer tape</a>.</li>
+<li><a href="https://512pixels.net/2018/07/apple-gsx-2018-macbook-pro-keyboard/">The silicon membrane on the new third-generation butterfly keyboards apparently <em>is</em> designed specifically to keep debris out</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=Y-p9-QZSdPM&amp;app=desktop">YouTuber John Morrison on real-world performance of the Core i9 15-inch MacBook Pro</a>.</li>
+<li><a href="http://atp.fm/episodes/283">ATP on "ThrottleGate" last week</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Marco Arment.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>225: ‘Resources Up the Yang’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2018/06/30/ep-225</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/06/30/ep-225</guid>
+ <pubDate>Sat, 30 Jun 2018 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/466082505-thetalkshow-225-panzer.mp3" length="73952196"/>
+ <itunes:duration>01:42:30</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Matthew Panzarino returns to the show to talk about his exclusive behind-the-scenes look at the new maps coming to Apple Maps, Google’s project Duplex, and the MacBook keyboard repair program.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Matthew Panzarino returns to the show to talk about his exclusive behind-the-scenes look at the new maps coming to Apple Maps, Google’s project Duplex, and the MacBook keyboard repair program.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://kolide.com/">Kolide</a>: Total Mac visibility for you and your users. Free for your first 10 Macs.</li>
+<li><a href="https://hullopillow.com/talkshow">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Free overnight shipping with promo code <strong>thetalkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://techcrunch.com/2018/06/29/apple-is-rebuilding-maps-from-the-ground-up/">Panzarino’s exclusive on the new Apple Maps</a>.</li>
+<li><a href="https://www.apple.com/support/keyboard-service-program-for-macbook-and-macbook-pro/">Apple’s keyboard service program for MacBooks</a>.</li>
+<li><a href="https://daringfireball.net/2018/06/google_demos_duplex">Yours truly on Duplex</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>224: ‘AirPower, What’s That?’ With Serenity Caldwell</title>
+ <link>https://daringfireball.net/thetalkshow/2018/06/15/ep-224</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/06/15/ep-224</guid>
+ <pubDate>Fri, 15 Jun 2018 17:46:07 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/458962908-thetalkshow-224-serenity-caldwell.mp3" length="92925618"/>
+ <itunes:duration>02:08:51</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show for a post-WWDC wrap-up discussion. Topics include iOS 12, Memoji, Siri Shortcuts, Screen Time, Apple Books, MacOS 10.14 Mojave, dark mode, UIKit apps on the Mac, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Serenity Caldwell returns to the show for a post-WWDC wrap-up discussion. Topics include iOS 12, Memoji, Siri Shortcuts, Screen Time, Apple Books, MacOS 10.14 Mojave, dark mode, UIKit apps on the Mac, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://casper.com/talkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Visit squarespace.com/talkshow and enter code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code THETALKSHOW at checkout and save an extra 10 percent on any subscription.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>“<a href="https://twitter.com/settern/status/1005984285579497473">Serenity, did you really roller skate around WWDC? You were in dress clothes!</a>”</li>
+<li><a href="http://vector.libsyn.com/122-wwdc-2018-keynote-reaction-with-the-creators-of-agenda">Agenda interview with Serenity and Rene Ritchie</a>.</li>
+<li><a href="https://www.accessible.fm/episodes/003">Steven Aquino’s “Accessibility” podcast interview with members of Apple’s accessibility team</a>.</li>
+<li><a href="https://twitter.com/i/moments/1006276485773123584">Louie Mantia’s Memoji take on “Inside Out”</a>.</li>
+<li><a href="https://www.macstories.net/stories/shortcuts-a-new-vision-for-siri-and-ios-automation/">Federico Viticci on iOS 12’s Shortcuts</a>.</li>
+<li>Gross iOS-style dialog boxes in Mojave’s UIKit apps: exhibits <a href="https://twitter.com/UIMarcel/status/1004028008649371649">A</a> and <a href="https://twitter.com/stroughtonsmith/status/1004017431222898688">B</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>223: Live From WWDC 2018 With Greg Joswiak and Mike Rockwell</title>
+ <link>https://daringfireball.net/thetalkshow/2018/06/08/ep-223</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/06/08/ep-223</guid>
+ <pubDate>Tue, 5 Jun 2018 22:01:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/455801370-thetalkshow-223-live-from-wwdc-2018.mp3" length="116917980"/>
+ <itunes:duration>01:20:28</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Recorded in front of a live audience at The California Theatre in San Jose, John Gruber is joined by Greg Joswiak and Mike Rockwell to discuss the news from WWDC: ARKit 2, the new USDZ file format, iOS 12, MacOS 10.14 “Mojave”, UIKit apps on MacOS, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/223/ep-223-album-art.jpeg" />
+ <content:encoded><![CDATA[
+
+Recorded in front of a live audience at The California Theatre in San Jose, John Gruber is joined by Greg Joswiak and Mike Rockwell to discuss the news from WWDC: ARKit 2, the new USDZ file format, iOS 12, MacOS 10.14 “Mojave”, UIKit apps on MacOS, and more.
+
+[Full transcript of this episode](https://daringfireball.net/thetalkshow/223/transcript), [by Serenity Caldwell](https://twitter.com/settern).
+
+Sponsored by:
+
++ [Instabug](http://try.instabug.com/df): In-app feedback and bug reporting for mobile apps.
++ [MacStadium](http://macstadium.com/df): Enterprise class hosting for Macs.
++ [Microsoft](http://aka.ms/iOSandAzure): Build intelligent iOS apps that scale.
+
+The open bar at the event was sponsored by [Setapp](https://setapp.com/).
+
+Links:
+
++ [Apple’s WWDC 2018 keynote](https://www.apple.com/apple-events/june-2018/).
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>222: ‘Pseudorandom Gibberish’ With Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2018/05/31/ep-222</link>
+ <guid>http://daringfireball.net/thetalkshow/2018/05/31/ep-222</guid>
+ <pubDate>Thu, 31 May 2018 18:48:42 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/451970112-thetalkshow-222-rene-ritchie.mp3" length="66770988"/>
+ <itunes:duration>01:32:32</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show. Topics include MacBook keyboard failures, iOS passcode security, Google’s odd Duplex “demo”, Steam Link’s curious rejection from the App Store, AirPlay 2, and, of course, conjecture about next week’s WWDC.</description>
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show. Topics include MacBook keyboard failures, iOS passcode security, Google’s odd Duplex “demo”, Steam Link’s curious rejection from the App Store, AirPlay 2, and, of course, conjecture about next week’s WWDC.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Save $20 with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Free shipping to the U.S. and Canada with code <strong>thetalkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/gruber/status/1000140798632087553">My Twitter poll on whether people use the “Erase data after 10 failed passcode attempts” feature</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=BBMte6t1aJg">Rene’s video on his MacBook Pro keyboard failure</a>.</li>
+<li><a href="https://appleinsider.com/articles/18/04/30/2016-macbook-pro-butterfly-keyboards-failing-twice-as-frequently-as-older-models">AppleInsider on MacBook service problems</a>.</li>
+<li><a href="https://daringfireball.net/2018/05/yammering_on_regarding_google_duplex">Google Duplex skepticism, one last time</a>.</li>
+<li><a href="https://motherboard.vice.com/en_us/article/a3a3gg/iphone-6-touch-disease-documents">The return of iPhone 6 Bendgate</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/05/25/app-store-steam-link-rejection">Apple accepts, then rejects, Valve’s Steam Link app</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/05/24/illustration-in-the-app-store">Khoi Vinh: “Illustration in the App Store”</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>221: ‘Slathered in Incompetence’ With Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2018/05/08/ep-221</link>
+ <guid>http://daringfireball.net/thetalkshow/2018/05/08/ep-221</guid>
+ <pubDate>Tue, 8 May 2018 18:06:27 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/439890633-thetalkshow-221-ben-thompson.mp3" length="121694397"/>
+ <itunes:duration>03:07:18</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Ben Thompson returns to the show. Topics include Apple's quarterly results, the discontinuation of Apple's AirPort product line, and more.</description>
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Ben Thompson returns to the show. Topics include Apple's quarterly results, the discontinuation of Apple's AirPort product line, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>THETALKSHOW</strong> at checkout and save an extra 10 percent on any subscription.</li>
+<li><a href="https://rxbar.com/talkshow">RXBar</a>: Whole-food protein bars. We tell you what’s on the inside on the outside. Use code <strong>TALKSHOW</strong> and save 25 percent on your first order.</li>
+<li><a href="https://casper.com/talkshow100">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://stratechery.com/2018/divine-discontent-disruptions-antidote/">Ben Thompson on the race to a trillion-dollar market cap</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/05/01/seidenberg-iger-iphone">Ivan Seidenberg’s claim that Bob Iger carried an iPhone in July 2006</a>.</li>
+<li><a href="https://twitter.com/drdrang/status/989642936353738754">Dr. Drang’s AirPort EOL tweet</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=DC5Y2V0qV0M">Apple LaserWriter II industrial sales training video</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=nIVlpL38_Do">Raiders of the Lost Ark: “It’s a date, you eat ’em!”</a>.</li>
+<li><a href="https://sixcolors.com/post/2018/05/apple-quarterly-results-charts-live-tweets/">Six Colors on Apple’s growing Services division</a>.</li>
+<li><a href="https://www.nytimes.com/2018/05/02/style/fortnite.html">New York Times piece on Fortnite</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by <a href="https://twitter.com/moiseschiu">Moisés Chiullan</a>.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>220: ‘$270 Worth of Unneeded Keyboards’ With Jim Dalrymple</title>
+ <link>https://daringfireball.net/thetalkshow/2018/04/27/ep-220</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/04/27/ep-220</guid>
+ <pubDate>Fri, 27 Apr 2018 19:33:41 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/436091964-thetalkshow-220-jim-dalrymple.mp3" length="85942270"/>
+ <itunes:duration>01:58:59</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jim Dalrymple returns to the show. Topics include the litany of problems with MacBook keyboards, speculation regarding why Apple’s AirPower multi-device charging mat still isn’t shipping, Google’s proposal to replace SMS with a new protocol that isn’t encrypted, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jim Dalrymple returns to the show. Topics include the litany of problems with MacBook keyboards, speculation regarding why Apple’s AirPower multi-device charging mat still isn’t shipping, Google’s proposal to replace SMS with a new protocol that isn’t encrypted, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.vox.com/today-explained">Vox’s new Today Explained podcast</a>: Subscribe today in <a href="https://itunes.apple.com/us/podcast/today-explained/id1346207297?mt=2">Apple Music</a>, <a href="https://overcast.fm/itunes1346207297/today-explained">Overcast</a>, <a href="http://pca.st/todayexplained">Pocket Casts</a>, or wherever you listen to podcasts.</li>
+<li><a href="http://alexweinstein.com/thetalkshow">Alex Weinstein Music</a>: A carefully curated collection of just a few hundred songs from one composer available for you to license.</li>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/today_explained/status/981026758194532353">The greatest end-credits sequence in podcast history, courtesy of sponsor Vox’s Today Explained</a>.</li>
+<li><a href="https://sixcolors.com/post/2018/04/writing-on-my-ipad-at-home/">Jason Snell’s kitchen writing setup</a>.</li>
+<li><a href="https://www.microsoft.com/accessories/en-us/products/keyboards/universal-foldable-keyboard/gu5-00001">Microsoft Universal Foldable Keyboard</a>.</li>
+<li><a href="http://matias.ca/laptoppro/">Matias Laptop Pro keyboard</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/04/20/google-rcs">“Chat” — Google’s proposed successor to SMS</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>219: ‘Top Men’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2018/04/11/ep-219</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/04/11/ep-219</guid>
+ <pubDate>Wed, 11 Apr 2018 21:28:27 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/428437698-thetalkshow-219-matthew-panzarino.mp3" length="96484108"/>
+ <itunes:duration>02:13:48</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show to talk about his exclusive behind-the-scenes profile with Apple’s Pro Workflow Team and state of Apple’s professional Mac hardware and software.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show to talk about his exclusive behind-the-scenes profile with Apple’s Pro Workflow Team and state of Apple’s professional Mac hardware and software.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://casper.com/talkshow100">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>THETALKSHOW</strong> at checkout and save an extra 10% on any subscription.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Matthew Panzarino: “<a href="https://techcrunch.com/2018/04/05/apples-2019-imac-pro-will-be-shaped-by-workflows/">Apple’s 2019 Mac Pro Will Be Shaped by Workflows</a>”.</li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_IIfx">Apple’s 1990 Mac IIfx</a>, which cost $9-12,000 in 1990 dollars.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2018-04-02/apple-is-said-to-plan-move-from-intel-to-own-mac-chips-from-2020">Bloomberg’s story last month about Apple using in-house CPUs for Macs by 2020</a>.</li>
+<li><a href="https://layers.is/">Layers</a> — a design conference concurrent with WWDC in San Jose.</li>
+<li><a href="https://support.apple.com/en-us/HT208544">Apple KBase article on using external GPUs with Macs on High Sierra</a>.</li>
+<li><a href="https://www.sonnetstore.com/collections/egpu-expansion-systems">Sonnet’s eGFX Breakaway Puck portable eGPU</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>218: ‘Spending Tim Cook’s Money’ With Serenity Caldwell</title>
+ <link>https://daringfireball.net/thetalkshow/2018/03/31/ep-218</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/03/31/ep-218</guid>
+ <pubDate>Sat, 31 Mar 2018 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/423322674-thetalkshow-218-serenity-caldwell.mp3" length="83409256"/>
+ <itunes:duration>01:55:38</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show to talk about Apple's education-focused event last week in Chicago.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Serenity Caldwell returns to the show to talk about Apple's education-focused event last week in Chicago.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://radiosilenceapp.com/">Radio Silence</a>: The easiest network monitor and firewall for Mac. Radio Silence can stop any app from making network connections.</li>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>thetalkshow</strong> at checkout and save an extra 10 percent on any subscription.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.waypointedu.com/">Waypoint EDU, impressive AR app by Matt Braun</a>.</li>
+<li><a href="https://www.apple.com/apple-events/march-2018/">Video of Apple's event in Chicago</a>.</li>
+<li><a href="https://itunes.apple.com/us/podcast/apple-keynotes-1080p/id509310064?mt=2#">Apple's 2012 education-focused event, at the Guggenheim</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>217: ‘Our Name Is Our Address’ With Jason Kottke</title>
+ <link>https://daringfireball.net/thetalkshow/2018/03/24/ep-217</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/03/24/ep-217</guid>
+ <pubDate>Sat, 24 Mar 2018 17:35:12 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/419117172-thetalkshow-217-jason-kottke.mp3" length="100259206"/>
+ <itunes:duration>02:19:11</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Finally. Jason Kottke is on the show to talk about 20 years of writing his eponymous website.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Finally. Jason Kottke is on the show to talk about 20 years of writing his eponymous website.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://itunes.apple.com/us/podcast/techmeme-ride-home/id1355212895?mt=2">Techmeme Ride Home</a>: New daily podcast hosted by Brian McCullough summarizing the day’s tech news.</li>
+<li><a href="http://fracture.me">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://getflow.com/thetalkshow">Flow</a>: Beautiful project management for teams everywhere. Apply <strong>THETALKSHOW</strong> at checkout to save 50% off a new annual plan, or 30% off a new monthly plan, for your first year.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://web.archive.org/web/20010501174516/http://www.cardigan.com/2001/01-10/">Dean Allen: “How to Make Soup”</a></li>
+<li><a href="https://kottke.org/18/01/rest-in-peace-dean-allen">Kottke on Dean Allen</a>.</li>
+<li><a href="https://daringfireball.net/2018/01/dean_allen">Yours truly on Dean Allen</a>.</li>
+<li><a href="https://craigmod.com/onmargins/">Craig Mod’s “On Margins” podcast</a>.</li>
+<li><a href="https://kottke.org/tag/9-11">Kottke’s 9/11 coverage</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>216: ‘Podcast Amnesia’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2018/03/09/ep-216</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/03/09/ep-216</guid>
+ <pubDate>Fri, 9 Mar 2018 13:25:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/411282867-thetalkshow-216-jason-snell.mp3" length="108974464"/>
+ <itunes:duration>02:31:09</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show. Topics include Apple and China, the 10th anniversary of the iPhone SDK, the future of the MacBook Air, and more. No baseball talk, except a little.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show. Topics include Apple and China, the 10th anniversary of the iPhone SDK, the future of the MacBook Air, and more. No baseball talk, except a little.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>talkshow</strong>.</li>
+<li><a href="http://casper.com/talkshow100">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://latenightsw.com/category/script-debugger-7/">Script Debugger 7</a>.</li>
+<li><a href="https://www.barebones.com/products/bbedit/bbedit12.html">BBEdit 12</a>.</li>
+<li><a href="https://www.keyboardmaestro.com/">Keyboard Maestro</a>.</li>
+<li><a href="https://blog.iconfactory.com/2018/03/a-lot-can-happen-in-a-decade/">Craig Hockenberry on the 10th anniversary of the iPhone SDK</a>.</li>
+<li><a href="https://www.macrumors.com/2007/08/13/lights-off-first-native-iphone-game/">Lights Out</a> — the first iPhone game.</li>
+<li><a href="https://www.youtube.com/watch?v=LEcbagW4O-s_">John Oliver’s “Last Week Tonight” segment on NRA TV</a>.</li>
+<li><a href="https://www.reuters.com/article/us-usa-guns-church/couples-lug-ar-15-assault-rifles-to-pennsylvania-church-blessing-idUSKCN1GC2V3">AR-15 church blessing (not a joke)</a>.</li>
+<li><a href="http://www.macworld.com/article/3261125/macs/macbook-air-why-wont-it-die.html">Jason’s Macworld column on the weird current state and future of the MacBook Air</a>. </li>
+<li><a href="https://daringfireball.net/linked/2017/01/09/mann-snell-mwsf">A 5-minute podcast with Merlin Mann interviewing Jason Snell and yours truly</a>, recorded immediately after the announcement of the original iPhone, wherein Jason predicts the App Store.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>215: ‘The “Press Real Hard” Era’ With Marco Arment</title>
+ <link>https://daringfireball.net/thetalkshow/2018/02/18/ep-215</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/02/18/ep-215</guid>
+ <pubDate>Sun, 18 Feb 2018 18:00:48 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/401661375-thetalkshow-215-marco-arment.mp3" length="168501755"/>
+ <itunes:duration>03:53:44</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Marco Arment returns to the show for a brief discussion. Topics include Apple’s OS development strategy, HomePod and Siri, the sad state of Apple TV apps, where to get a good cheesesteak, how to boil water, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Marco Arment returns to the show for a brief discussion. Topics include Apple’s OS development strategy, HomePod and Siri, the sad state of Apple TV apps, where to get a good cheesesteak, how to boil water, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.trespontas.com/coffee">Tres Pontas</a>: Freshly-roasted coffee from a single farm in Brazil, shipped directly to you. Use code <strong>thetalkshow</strong> at checkout and save an extra 10 percent on any subscription.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>thetalkshow</strong> to make overnight shipping free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.axios.com/scoop-apple-delays-ios-features-to-focus-on-reliability-performance-1517278421-d7722a3b-402e-4804-8f24-719154bf2a8e.html">Ina Fried on Apple reportedly changing tack to focus more on quality in software</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/02/12/gurman-ios-macos">Mark Gurman on Apple’s OS development strategy</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/02/12/sinofsky-apple-software">Steven Sinofksy on Apple’s software “problem”</a>.</li>
+<li>The biggest problem with Siri isn’t the list of capabilities but the reliability of what it can do:
+<ul><li><a href="https://twitter.com/gruber/status/963843284794793984">https://twitter.com/gruber/status/963843284794793984</a></li>
+<li><a href="https://twitter.com/waltmossberg/status/963849863959011328">https://twitter.com/waltmossberg/status/963849863959011328</a></li>
+<li><a href="https://twitter.com/waltmossberg/status/963881247478091776">https://twitter.com/waltmossberg/status/963881247478091776</a></li></ul></li>
+<li><a href="https://daringfireball.net/linked/2018/02/14/heer-google-youtube-app">Nick Heer on the new YouTube “app” for Apple TV</a>.</li>
+<li><a href="https://www.baratza.com/grinder/virtuoso/">Baratza Virtuoso coffee grinder</a>.</li>
+<li><a href="https://www.amazon.com/Medelco-12-cup-Stovetop-Whistling-Kettle/dp/B00L70JG2U">The typographically disastrous Medelco 12-cup kettle</a>.</li>
+<li><a href="https://www.amazon.com/dp/B003KYSLNQ/?tag=marcoorg-20">Cuisinart CPK-17 PerfecTemp 1.7-Liter Stainless Steel Cordless Electric Kettle</a> — Marco’s recommended electric kettle.</li>
+<li><a href="http://www.philly.com/philly/business/technology/amazon-apple-alexa-siri-eagles-patriots-super-bowl-20180124.html">Alexa’s pro-Eagles stance on Super Bowl 52</a>.</li>
+<li><a href="https://secure.actblue.com/donate/great_slate">ActBlue’s The Great Slate</a> — 8 first-time progressive candidates for Congress, each with “a clear path to victory in a poor, rural district that is being ignored by the national Democratic Party”.</li>
+<li><a href="http://www.cleaversphilly.com/">Cleavers Philly</a> — good fucking cheesesteaks. </li>
+<li>“<a href="http://www.themenu.bar">The Menu Bar</a>”: Zac Cichy and Andrew Clark’s re-launched podcast on Apple.</li>
+<li>Mark Bramhill’s “<a href="https://www.macintosh.fm">Welcome to Macintosh</a>” — minute-for-minute the best Apple podcast in the world.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>214: ‘Only Wireless. Less Smart Than an Echo. Lame.’ With Paul Kafasis</title>
+ <link>https://daringfireball.net/thetalkshow/2018/02/09/ep-214</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/02/09/ep-214</guid>
+ <pubDate>Fri, 9 Feb 2018 18:03:58 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/397087599-thetalkshow-214-paul-kafasis.mp3" length="93833192"/>
+ <itunes:duration>02:10:15</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <description>Special guest Paul Kafasis returns to the show. Topics include Apple’s new HomePod, [Farrago](https://rogueamoeba.com/farrago/) (Rogue Amoeba’s new soundboard app for the Mac), the Philadelphia Eagles’ triumph over the “New England” Patriots in Super Bowl 52, and we stir up a controversy regarding a 10-year-old cocktail devised by the boys at You Look Nice Today.</description>
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Paul Kafasis returns to the show. Topics include Apple’s new HomePod, [Farrago](https://rogueamoeba.com/farrago/) (Rogue Amoeba’s new soundboard app for the Mac), the Philadelphia Eagles’ triumph over the “New England” Patriots in Super Bowl 52, and we stir up a controversy regarding a 10-year-old cocktail devised by the boys at You Look Nice Today.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="http://casper.com/savings">Casper</a>: Save up to $200 through February 20 during Casper’s Presidents’ Day sale.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://youlooknicetoday.com/episode/aunt-nancy">You Look Nice Today: “Aunt Nancy”</a>.</li>
+<li><a href="http://sostark.net/ylnt">Unofficial You Look Nice Today topic index</a>.</li>
+<li>Video proof, from yours today, <a href="https://youtu.be/B13OZE3lTB4">that you can’t spear a Mento</a>.</li>
+<li><a href="http://www.kungfugrippe.com/post/1492209679/cherry-oh-baby">The Shirley Temple of Doom</a>.</li>
+<li><a href="https://vimeo.com/111903901">Rich Siegel’s excellent presentation at Cingleton 2014 on removing BBEdit from the Mac App Store</a>.</li>
+<li>Is the top of the HomePod a “touchscreen”? We decide no, it is not, rendering <a href="https://daringfireball.net/linked/2017/06/06/homepod-claim-chowder">this Claim Chowder piece from yours truly</a> wrong.</li>
+<li>HomePod reviews:
+<ul><li><a href="https://daringfireball.net/2018/02/homepod">Mine</a>.</li>
+<li><a href="http://www.loopinsight.com/2018/02/06/inside-apples-homepod-audio-lab/">Jim Dalrymple’s, with backstage footage from our tour of Apple’s audio lab</a>.</li>
+<li><a href="https://techcrunch.com/2018/02/06/a-four-sentence-homepod-review-with-appendices/">Matthew Panzarino’s for TechCrunch</a>.</li>
+<li><a href="https://www.theverge.com/2018/2/6/16976906/apple-homepod-review-smart-speaker">Nilay Patel’s for The Verge</a>.</li>
+<li><a href="https://www.nytimes.com/2018/02/06/technology/personaltech/apple-homepod-review.html">Brian Chen’s for the NYT</a>.</li></ul></li>
+<li><a href="https://rogueamoeba.com/farrago/">Farrago</a>, Rogue Amoeba’s new soundboard app.</li>
+<li><a href="https://weblog.rogueamoeba.com/2018/02/03/designing-farrago/">Designing Farrago</a>.</li>
+<li><a href="https://justthetip.fm/2013/09/30/episode-13-the-bosss-nips/">Just The Tip: The Fracture Swap</a>.</li>
+<li><a href="http://buttholevideo.com/">buttholevideo.com</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>213: ‘Don’t Tap the Monkey’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2018/01/31/ep-213</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/01/31/ep-213</guid>
+ <pubDate>Wed, 31 Jan 2018 22:38:49 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/392732253-thetalkshow-213-john-moltz.mp3" length="59477856"/>
+ <itunes:duration>01:22:32</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <description>John Moltz returns to the show. We talk about the HomePod, the “cancellation” of iPhone X, Steve Jobs and the orange button, and Super Bowl 52. And a surprising amount of talk about dates.</description>
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Moltz returns to the show. We talk about the HomePod, the “cancellation” of iPhone X, Steve Jobs and the orange button, and Super Bowl 52. And a surprising amount of talk about dates.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10 percent off your first order.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Photos printed in vivid color directly on glass. Get 15 percent off your first order with code <strong>TALK15</strong>.</li>
+<li><a href="https://rxbar.com/talkshow">RXBar</a>: Whole-food protein bars. We tell you what’s on the inside on the outside. Use code <strong>TALKSHOW</strong> and save 25 percent on your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://web.archive.org/web/20121221064000/http://muleradio.net/thetalkshow/21/">Rian Johnson on The Talk Show five years ago</a>.</li>
+<li><a href="https://twitter.com/rabiasquared/status/958538139542413316">“I’m a fucking immigration lawyer.”</a></li>
+<li><a href="https://duckduckgo.com/?q=iphone+x+is+cancelled">“iPhone X is cancelled” nonsense</a>.</li>
+<li><a href="https://daringfireball.net/search/tripp+chowdhry">Tripp “Claim” Chowdhry’s greatest hits</a>.</li>
+<li><a href="https://daringfireball.net/linked/2018/01/29/bongiorno-jobs.php">Bethany Bongiorno’s story about Steve Jobs, the original iPhone, and an orange button</a>.</li>
+<li><a href="http://nuzzel.com/">Nuzzel</a> — a clever app that gives you news alerts based on links posted by the people you follow on Twitter.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>212: ‘Arbiter of Finallys’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2018/01/25/ep-212</link>
+ <guid>https://daringfireball.net/thetalkshow/2018/01/25/ep-212</guid>
+ <pubDate>Thu, 25 Jan 2018 21:12:07 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/389224314-thetalkshow-212-rene-ritchie.mp3" length="106518400"/>
+ <itunes:duration>02:27:52</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <description>Special guest Rene Ritchie returns to the show to talk about HomePod, clickbait, the Spectre/Meltdown security exploits, and a look back at Apple’s 2017 in review.</description>
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Rene Ritchie returns to the show to talk about HomePod, clickbait, the Spectre/Meltdown security exploits, and a look back at Apple’s 2017 in review.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://casper.com/thetalkshow">Casper</a>: You can be sure of your purchase with Casper’s 100-night risk-free, sleep-on-it trial.</li>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Save $20 with code <strong>talkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/reneritchie/status/955620927613542400">Rene with Tim Cook at a Toronto Maple Leafs game</a>.</li>
+<li><a href="https://twitter.com/jcieplinski/status/955828934179946498">Joe Cieplinski on HomePod pricing</a>.</li>
+<li><a href="http://www.businessinsider.com/apple-iphone-repair-experience-shows-retail-stores-are-too-disorganized-2018-1">Business Insider: “I Had an Apple Store Experience From Hell — and It’s Clear There Are Larger Problems With Apple’s Retail Presence”</a>.</li>
+<li>Yours truly: “<a href="https://daringfireball.net/2018/01/iphone_x_one_year">On Rumors of the iPhone X Being Produced for Only One Year </a>” and “<a href="https://daringfireball.net/2018/01/the_scourge_of_clickbait">The Scourge of Clickbait</a>”.</li>
+<li><a href="https://twitter.com/savedyouaclick">Saved You a Click</a>.</li>
+<li><a href="https://www.imore.com/vector">Vector</a>, Rene’s new daily podcast.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>211: ‘Star Wars: The Last Jedi’ Holiday Spectacular With Special Guests Guy English and John Siracusa</title>
+ <link>https://daringfireball.net/thetalkshow/2017/12/31/ep-211</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/12/31/ep-211</guid>
+ <pubDate>Sun, 31 Dec 2017 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/377215811-thetalkshow-211-the-last-jedi-holiday-spectacular.mp3" length="126233842"/>
+ <itunes:duration>02:55:16</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>As per holiday tradition at The Talk Show, a brief chat about ‘Star Wars: The Last Jedi’, with a cavalcade of special guests, including Guy English and John Siracusa.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>As per holiday tradition at The Talk Show, a brief chat about <em>Star Wars: The Last Jedi</em>, with a cavalcade of special guests, including Guy English and John Siracusa.</p>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/thetalkshow/2015/12/31/ep-141">2015’s <em>Star Wars: The Force Awakens</em> Holiday Spectacular</a>.</li>
+</ul>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Get 15% off your first order with code <strong>talk15</strong>.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>210: ‘Australian Battery Scam’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2017/12/30/ep-210</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/12/30/ep-210</guid>
+ <pubDate>Sat, 30 Dec 2017 16:59:48 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/376617953-thetalkshow-210-jason-snell.mp3" length="103997669"/>
+ <itunes:duration>02:24:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell returns for the penultimate episode of 2017. Topics include the iPhone battery performance-throttling saga, Google Maps vs. Apple Maps, new versions of iOS running slow on older iPhones, the new iMac Pro, iOS file management, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell returns for the penultimate episode of 2017. Topics include the iPhone battery performance-throttling saga, Google Maps vs. Apple Maps, new versions of iOS running slow on older iPhones, the new iMac Pro, iOS file management, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Get 15% off your first order with code <strong>talk15</strong>.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>thetalkshow</strong> for free overnight shipping in the U.S. and Canada.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Apple: “<a href="https://www.apple.com/iphone-battery-and-performance/">A Message to Our Customers About iPhone Batteries and Performance</a>”.</li>
+<li>Apple KnowledgeBase: “<a href="https://support.apple.com/en-us/HT208387">iPhone Battery and Performance</a>”.</li>
+<li><a href="https://www.macworld.com/article/1058916/smartphones/iphonebattery.html">Jason’s interview with Greg Joswiak back in 2007 on the original iPhone’s battery</a>.</li>
+<li><a href="https://sixcolors.com/post/2017/12/transferring-sd-card-data-to-ios-fast/">Jason on transferring files from an SD card to iOS devices</a>.</li>
+<li><a href="https://twitter.com/gruber/status/943248992321884161">Twitter thread on iOS devices and USB storage</a>.</li>
+<li><a href="https://www.reddit.com/r/Android/comments/7mmz3s/htc_and_motorola_say_they_dont_slow_old_phones/">Reddit thread on Android phones, including reports from people with older devices with failing batteries</a>.</li>
+<li><a href="https://www.relay.fm/upgrade/173">Jason and Myke Hurley’s Upgrade Holiday Special</a>.</li>
+<li><a href="http://www.imdb.com/title/tt0112384/"><em>Apollo 13</em></a>.</li>
+<li>Justin O’Beirne: “<a href="https://www.justinobeirne.com/google-maps-moat">Google’s Maps Moat</a>”. </li>
+<li><a href="https://www.izotope.com/en/products/repair-and-edit/rx/rx-advanced.html">iZotope RX 6: de-noising, de-echoing software</a>.</li>
+<li><a href="https://sixcolors.com/post/2017/12/the-imac-pro-has-landed/">Jason’s new iMac Pro</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Apple_IIc">The Apple IIc from 1984</a>.</li>
+<li><a href="https://www.macintoshrepository.org/2748-font-da-mover">Font/DA Mover</a> — this is how we installed fonts back in the day.</li>
+<li><a href="http://plentycom.jp/en/steermouse/">SteerMouse</a> — third-party mouse driver for MacOS that lets you set incredibly fast mouse speeds. Good for RSI sufferers.</li>
+<li><a href="https://www.amazon.com/Samsung-T5-Portable-SSD-MU-PA500B/dp/B073H552FJ/ref=sr_1_3?s=pc&amp;ie=UTF8&amp;qid=1515361416&amp;sr=1-3&amp;keywords=samsung%2Bt5&amp;th=1">Samsung’s T5 SSD external USB 3.1 storage drives</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>209: ‘Blaming a Platypus’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2017/12/18/ep-209</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/12/18/ep-209</guid>
+ <pubDate>Mon, 18 Dec 2017 23:04:32 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/370970048-thetalkshow-209-matthew-panzarino.mp3" length="91535690"/>
+ <itunes:duration>02:07:04</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show to talk about Apple’s new iMac Pro lineup: gaming, VR, medical use, software development video, and more. Also: a spoiler-free preamble on “Star Wars Ep. 8: The Last Jedi”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show to talk about Apple's new iMac Pro lineup: gaming, VR, medical use, software development video, and more. Also: a spoiler-free preamble on <em>Star Wars Ep. 8: The Last Jedi</em>.</p>
+
+<p>Sponsors:</p>
+
+<ul>
+<li><a href="https://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>talkshow</strong>.</li>
+<li><a href="https://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="https://casper.com/thetalkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://media.muleradio.net.s3.amazonaws.com/shows/thetalkshow/talkshow-21.mp3">Archive of Rian Johnson’s appearance on episode 21 of The Talk Show</a>.</li>
+<li><a href="https://daringfireball.net/2017/12/imac_pro_first_impressions">My first look at iMac Pro</a>.</li>
+<li><a href="https://techcrunch.com/2017/12/14/apples-imac-pro-is-a-love-letter-to-developers/">Panzarino’s iMac Pro first look</a>.</li>
+<li><a href="https://www.imore.com/imac-pro-first-impressions">Rene Ritchie’s first look</a>.</li>
+<li><a href="https://survios.com/electronauts/">Electronauts</a>.</li>
+<li><a href="https://twinmotion.abvent.com/en/">Twinmotion</a>.</li>
+<li><a href="https://www.gravitysketch.com/">Gravity Sketch</a>.</li>
+<li><a href="http://www.osirix-viewer.com/">OsiriX</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>208: ‘Disgusting Inception’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2017/12/01/ep-208</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/12/01/ep-208</guid>
+ <pubDate>Thu, 30 Nov 2017 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/363373346-thetalkshow-208-john-moltz.mp3" length="67505204"/>
+ <itunes:duration>01:33:41</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John “With an H” Moltz returns to the show. Topics include the ongoing deluge of sexual harassment scandals, our beloved SodaStreams, the Mac OS 10.13 High Sierra root login fiasco, *App: The Human Story*, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John “With an H” Moltz returns to the show. Topics include the ongoing deluge of sexual harassment scandals, our beloved SodaStreams, the Mac OS 10.13 High Sierra root login fiasco, <em>App: The Human Story</em>, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/talkshow">Audible</a>: Get a free audiobook with a 30-day trial.</li>
+<li><a href="https://casper.com/thetalkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial. Save $50 with coupon <strong>thetalkshow</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.tripmode.ch/">TripMode</a> — Mac utility for limiting/controlling network usage on an app-by-app basis.
+<ul><li><a href="https://sixcolors.com/post/2017/05/tripmode-2-control-your-macs-data-usage/">Jason Snell’s review of TripMode</a>.</li></ul></li>
+<li>[Jimmy “The Greek” Snyder](https://en.wikipedia.org/wiki/Jimmy<em>Snyder</em>(sports_commentator).
+<ul><li><a href="https://www.youtube.com/watch?v=xKtIqXMpHcY">The comments that got him fired from CBS</a>.</li>
+<li>No joke: <a href="https://www.youtube.com/watch?v=AndhxIRiq3o">Jimmy The Greek on David Letterman in 1987</a>, talking about Donald Trump running for president.</li></ul></li>
+<li><a href="https://daringfireball.net/linked/2017/11/28/high-sierra-root-bug">The root login bug in MacOS 10.13 High Sierra</a>.</li>
+<li><a href="http://appdocumentary.com/"><em>App: The Human Story</em> documentary film is out</a>.</li>
+<li><a href="https://vimeo.com/101856655">The Talk Show: Live From WWDC 2014</a>, with special guests Marco Arment, John Siracusa, and Casey Liss — shot by Jake Schumacher and Jed Hurt, director and co-director of <em>App: The Human Story</em>.</li>
+<li><a href="https://medium.com/@jamesbridle/something-is-wrong-on-the-internet-c39c471271d2">James Bridle: “Something Is Wrong on the Internet”</a> — well-researched essay from earlier this month on the disturbing underside of YouTube videos aimed at children.
+<ul><li><a href="https://vigilantcitizen.com/moviesandtv/something-is-terribly-wrong-with-many-kids-videos-on-youtube/">Some really sick, twisted examples of YouTube videos aimed at kids</a>.</li></ul></li>
+<li><a href="https://www.youtube.com/watch?v=-JvB5AL59fM">Liz Phair’s killer cover of The Banana Splits theme song</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>207: ‘Christmas Mitzvah’ With Merlin Mann</title>
+ <link>https://daringfireball.net/thetalkshow/2017/11/18/ep-207</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/11/18/ep-207</guid>
+ <pubDate>Sat, 18 Nov 2017 15:31:44 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/357611459-thetalkshow-207-merlin-mann.mp3" length="104912225"/>
+ <itunes:duration>02:24:06</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Merlin Mann returns to the show for a Thanksgiving-week holiday spectacular. Topics include the history of Markdown, nerding out with Keyboard Maestro, kids today and the computers they want to use, caring about idiomatic native UI design, a look back at last year's election, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Merlin Mann returns to the show for a Thanksgiving-week holiday spectacular. Topics include the history of Markdown, nerding out with Keyboard Maestro, kids today and the computers they want to use, caring about idiomatic native UI design, a look back at last year's election, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>TALKSHOW</strong>.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>THETALKSHOW</strong> for free shipping in the U.S. and Canada.</li>
+<li><a href="http://fracture.me/">Fracture</a>: Your photos, printed directly on glass. Great gift idea. Save 15% off your first order with code <strong>TALK15</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Various apps mentioned during the show:
+<ul><li><a href="https://www.keyboardmaestro.com/">Keyboard Maestro</a></li>
+<li><a href="http://agiletortoise.com/drafts/">Drafts</a></li>
+<li><a href="http://omz-software.com/editorial/">Editorial</a></li>
+<li><a href="http://brettterpstra.com/projects/nvalt/">nvAlt</a></li>
+<li><a href="https://simplenote.com/">Simplenote</a></li>
+<li><a href="https://www.imore.com/elements-dropbox-updated-new-design-multimarkdown-support-and-more">Justin Williams’s now-defunct Elements</a> — the first Dropbox-backed text editor for iOS</li>
+<li><a href="http://vesperapp.co/">Vesper</a></li>
+<li><a href="https://www.macbartender.com/">Bartender</a> — a Mac utility for managing all those stupid little menu bar apps</li>
+<li><a href="http://matthewpalmer.net/vanilla/">Vanilla</a> — another Mac menu bar app manager</li></ul></li>
+<li><a href="https://support.apple.com/en-ae/HT201236">Apple Support technote documenting standard Mac text editing keyboard shortcuts</a>.</li>
+<li>[Reconcilable Differences #65](https://www.relay.fm/rd/65 “Reconcilable Differences #65: The Mustard of My Father - Relay FM”) — Merlin and John Siracusa talking about Steam.</li>
+<li><a href="https://www.theguardian.com/commentisfree/2016/sep/13/sentence-order-adjectives-rule-elements-of-eloquence-dictionary"><em>The Elements of Eloquence</em></a> — the book that explains the implicit rules of adjective order in English.</li>
+<li><a href="http://leancrew.com/all-this/2017/11/converting-fractions-to-decimal-values/">Dr. Drang on Excel</a>.</li>
+<li><a href="https://daringfireball.net/thetalkshow/2016/11/09/ep-172">Last year’s day-after-the-election “Holiday Party” episode</a>.</li>
+<li><a href="https://www.predictit.org/">PredictIt</a> — Website where you can gamble on election and political predictions.</li>
+<li><a href="https://twitter.com/MaxTemkin/lists/u-s-politics">Max Temkin’s US Politics Twitter list</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>206: ‘Bed Is Where My Problems Are’ With Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2017/11/10/ep-206</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/11/10/ep-206</guid>
+ <pubDate>Fri, 10 Nov 2017 18:10:25 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/354007979-thetalkshow-206-ben-thompson.mp3" length="95979050"/>
+ <itunes:duration>02:13:14</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Ben Thompson returns to the show to talk about the iPhone X.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Ben Thompson returns to the show to talk about the iPhone X.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://casper.com/thetalkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Save 15% off your first Fracture order with code <strong>TALK15</strong>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.instagram.com/p/Ba5BAYSDdAT/">My photo of Bernie Sanders and Bill de Blasio on the A train</a>.</li>
+<li><a href="http://nypost.com/2017/10/30/bernie-sanders-get-stuck-waiting-for-a-train-with-de-blasio/">New York Post video of Sanders and de Blasio on the train that shows me in the background around 10 seconds in</a>.</li>
+<li>2007 NYT story: “<a href="http://www.nytimes.com/2007/11/28/business/worldbusiness/28iht-hedge.4.8517580.html">Southwest Airlines gains advantage by hedging on long-term oil contracts</a>”.</li>
+<li><a href="https://www.theverge.com/2017/10/31/16579748/apple-iphone-x-review">Nilay Patel’s video review of the iPhone X for The Verge</a>.</li>
+<li>Those YouTuber “first look” reviews that came out a day before the real reviews: <a href="https://www.youtube.com/watch?v=XQphKeR-fCo&amp;feature=youtu.be">Highsnobriety</a> and <a href="https://www.youtube.com/watch?v=5rQrwcNdhMY">Fashion Magazine</a>.</li>
+<li><a href="http://www.displaymate.com/iPhoneX_ShootOut_1a.htm">Raymond Soneira’s review of the iPhone X display at DisplayMate</a>.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2017-11-08/apple-s-iphone-x-parts-cost-115-more-than-iphone-8-ihs-says">IHS estimates that iPhone X’s components cost $115 more than iPhone 8’s</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>205: ‘If You Trust Your Twin’ With Jim Dalrymple</title>
+ <link>https://daringfireball.net/thetalkshow/2017/11/01/ep-205</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/11/01/ep-205</guid>
+ <pubDate>Tue, 31 Oct 2017 23:45:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/349571147-thetalkshow-205-jim-dalrymple.mp3" length="72010949"/>
+ <itunes:duration>01:39:57</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jim Dalrymple returns to the show to talk about the iPhone X.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jim Dalrymple returns to the show to talk about the iPhone X, which is now in the hands of reviewers and just days away from the hands of customers.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/talkshow">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: You can be sure of your purchase with Casper’s 100 night risk-free, sleep-on-it trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://techcrunch.com/2017/10/31/review-the-iphone-x-goes-to-disneyland/">Matthew Panzarino’s iPHone X review for TechCrunch</a>.</li>
+<li><a href="https://www.buzzfeed.com/nicolenguyen/iphone-x-review">Nicole Nguyen’s review for BuzzFeed</a>.</li>
+<li><a href="http://www.loopinsight.com/2017/10/31/first-look-iphone-x/">Jim’s initial thoughts and observations</a>.</li>
+<li><a href="https://daringfireball.net/2017/10/iphone_x_review_roundup">Yours truly’s</a>.</li>
+<li><a href="https://sixcolors.com/post/2017/10/iphone-8-review-the-inessential-iphone/">Jason Snell’s considered review this week of the iPhone 8</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>204: ‘Flaunting That Notch’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2017/10/26/ep-204</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/10/26/ep-204</guid>
+ <pubDate>Thu, 26 Oct 2017 23:02:19 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/348787415-thetalkshow-204-rene-ritchie.mp3" length="74741291"/>
+ <itunes:duration>01:43:44</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show on the eve of iPhone X pre-orders opening. Topics include iPhone X (duh), Google’s Pixel 2 and the goofy OLED display on the “XL” version, Face ID FUD, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show on the eve of iPhone X pre-orders opening. Topics include iPhone X (duh), Google’s Pixel 2 and the goofy OLED display on the “XL” version, Face ID FUD, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Photos printed in vivid color directly on glass. Get 10% off your first order.</li>
+<li><a href="https://hullopillow.com/talkshow/">Hullo Pillow</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="https://getflow.com/thetalkshow">Flow</a>: Beautiful project management for teams everywhere.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.macrumors.com/2017/10/23/jeff-williams-attends-tsmc-30th-anniversary/">Jeff Williams</a>: “You can not double plan the kind volumes that we do. We want leading edge technology, but we want it at established technology kind of volumes.”</li>
+<li><a href="http://www.pcalc.com/">PCalc</a> — the best calculator app for Mac and iOS.</li>
+<li><a href="https://www.theverge.com/circuitbreaker/2017/10/18/16489756/google-pixel-2xl-awful-lg-oled-screen">The Verge’s Vlad Savov on the Pixel 2 XL’s ‘awful’ display</a>.</li>
+<li><a href="http://www.asymco.com/2017/10/26/does-the-iphone-8-have-what-it-takes-to-be-a-success/">Horace Dediu calling bullshit on claims that iPhone 7 is outselling iPhone 8</a>.</li>
+<li><a href="https://www.imore.com/no-apples-machine-learning-engine-cant-surface-your-iphones-secrets">Rene calling bullshit on Core ML as a privacy hole</a>.</li>
+<li><a href="https://daringfireball.net/2017/10/face_id_fud">Yours truly calling bullshit on Face ID FUD</a>.</li>
+<li><a href="https://www.reddit.com/r/apple/comments/782250/try_quickly_typing_1_2_3_into_the_ios_11/">The iOS 11 Calculator bug where animation blocks input on the operator buttons</a>.</li>
+<li><a href="https://twitter.com/_inside/status/923838204117168128">Guilherme Rambo confirms</a>: “I can confirm that the iOS Calculator app is written in Swift.””</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>203: ‘Unused VIPs’ With Serenity Caldwell</title>
+ <link>https://daringfireball.net/thetalkshow/2017/10/21/ep-203</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/10/21/ep-203</guid>
+ <pubDate>Sat, 21 Oct 2017 17:00:13 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/347968701-thetalkshow-203-serenity-caldwell.mp3" length="87963334"/>
+ <itunes:duration>02:02:01</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show. Topics include watches, the problems with the current MacBook keyboards, iOS 11 battery life, my massive windfall from the iBooks antitrust settlement, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Serenity Caldwell returns to the show. Topics include watches, the problems with the current MacBook keyboards, iOS 11 battery life, my massive windfall from the iBooks antitrust settlement, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://audible.com/talkshow">Audible</a>: Get a free audiobook with a 30-day trial.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.imore.com/apple-gets-it-right-why-android-wear-sucks-for-women">Serenity on the 38mm Apple Watch and the lack of smaller smartwatches from other companies</a>.
+<ul><li><a href="https://www.androidcentral.com/fitbit-ionic">Fitbit Ionic</a>.</li>
+<li><a href="http://www.lg.com/us/smart-watches/lg-W270-Rose-Gold-style">LG Watch Style</a>.</li></ul></li>
+<li><a href="https://theoutline.com/post/2402/the-new-macbook-keyboard-is-ruining-my-life">Casey Johnston on the current MacBook keyboards</a>.
+<ul><li><a href="https://512pixels.net/2017/10/theres-no-i-in-keyboard/">Stephen Hackett: “There’s No ‘i’ in Keyboard”</a>.</li>
+<li>Jonathan Mann: “<a href="https://m.youtube.com/watch?v=FdS3tjEIqUA">I Am Pressing the Spacebar and Nothing Is Happening</a>”.</li></ul></li>
+</ul>
+
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>202: ‘You Tell Me If It’s a Dongle’ With Joanna Stern</title>
+ <link>https://daringfireball.net/thetalkshow/2017/09/30/ep-202</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/09/30/ep-202</guid>
+ <pubDate>Sat, 30 Sep 2017 16:45:24 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/344761139-thetalkshow-202-joanna-stern.mp3" length="70247828"/>
+ <itunes:duration>01:37:30</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Joanna Stern returns to the show. Topics include Apple Watch Series 3, our mutual fear of heights, Velcro, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Joanna Stern returns to the show. Topics include Apple Watch Series 3, our mutual fear of heights, Velcro, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: Travel smarter with the suitcase that charges your phone. Get $20 off with code <strong>talkshow</strong>.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Build it beautiful. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your pictures, printed directly on glass.</li>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>THETALKSHOW</strong> for free overnight shipping in the US and Canada.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.monoprice.com/product?p_id=18789">3-way cable from Monoprice</a></li>
+<li><a href="https://www.amazon.com/Anker-Delivery-Charger-PowerPort-Samsung/dp/B06Y427WT7">30-watt charger from Anker ($26)</a></li>
+<li><a href="https://www.apple.com/shop/product/MJ262LL/A/29w-usb-c-power-adapter">Apple’s 29-watt charger is $49</a></li>
+<li><a href="https://www.anker.com/products/variant/PowerCore%2B-Mini-3350mAh/A1104011">Anker’s amazing $14 portable charger</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=rRi8LptvFZY">Don’t Call It Velcro</a></li>
+<li><a href="https://www.wsj.com/articles/apple-watch-series-3-review-untethered-and-unreliable-1505905203">Joanna’s Apple Watch Series 3 review</a></li>
+<li><a href="https://www.amazon.com/gp/product/B01LYK8FHT/ref=oh_aui_detailpage_o00_s00?ie=UTF8&amp;psc=1">Tiny MacBook Air</a></li>
+<li><a href="https://daringfireball.net/misc/2017/10/suitcase.png">John’s customized suitcase from Joanna</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>201: ‘Much More Smarter’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2017/09/18/ep-201</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/09/18/ep-201</guid>
+ <pubDate>Mon, 18 Sep 2017 23:09:12 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/342990380-thetalkshow-201-matthew-panzarino.mp3" length="131417913"/>
+ <itunes:duration>03:02:28</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino joins the show for an in-depth look at last week’s Apple event in the Steve Jobs Theater at Apple Park. We talk about iPhone X, iPhone 8, Apple Watch Series 3, Apple TV 4K, and the new Apple Park campus and Steve Jobs Theater.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino joins the show for an in-depth look at last week’s Apple event in the Steve Jobs Theater at Apple Park. We talk about iPhone X, iPhone 8, Apple Watch Series 3, Apple TV 4K, and the new Apple Park campus and Steve Jobs Theater.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>THETALKSHOW</strong> for free overnight shipping.</li>
+<li><a href="https://audible.com/talkshow">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/september-2017/">Video from Apple’s event last week</a>.</li>
+<li>My thoughts on the event:
+<ul><li>“<a href="https://daringfireball.net/2017/09/welcome_to_the_steve_jobs_theater">Welcome to the Steve Jobs Theater</a>”</li>
+<li>“<a href="https://daringfireball.net/2017/09/iphone_x_event_thoughts_and_observations">Thoughts and Observations on the Products Announced at This Week’s iPhone X Introductory Event</a>”</li></ul></li>
+<li><a href="https://daringfireball.net/2017/09/x_man">Yours truly making the case for “iPhone ex”</a>.</li>
+<li><a href="https://twitter.com/gruber/status/909966854973779968">The elevator button panels in the Apple Park Visitor Center parking garage</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>200: ‘Episode CC’ With Craig Federighi</title>
+ <link>https://daringfireball.net/thetalkshow/2017/09/15/ep-200</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/09/15/ep-200</guid>
+ <pubDate>Fri, 15 Sep 2017 19:24:22 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/342557484-thetalkshow-200-craig-federighi.mp3" length="21772499"/>
+ <itunes:duration>00:30:10</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guest Craig Federighi returns to the show to talk about Face ID, the perils of live demos, Apple’s approach to designing the iPhone X, privacy, security, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guest Craig Federighi returns to the show to talk about Face ID, the perils of live demos, Apple’s approach to designing the iPhone X, privacy, security, and more.</p>
+
+<p>Sponsored exclusively by:</p>
+
+<ul>
+<li><a href="https://duckduckgo.com/">DuckDuckGo</a>: The search engine that doesn’t track you. Learn more about <a href="https://spreadprivacy.com/is-private-browsing-really-private/">search privacy and “private/incognito” mode in DuckDuckGo’s report</a>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/september-2017/">This week’s keynote address</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/09/14/federighi-face-id">More on the Face ID demo glitch</a>.</li>
+<li><a href="https://overcast.fm/+B7NCosNIE">The previous Roman numerals gag in an episode title</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>199: ‘Under Rumored’ With Jim Dalrymple</title>
+ <link>https://daringfireball.net/thetalkshow/2017/09/10/ep-199</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/09/10/ep-199</guid>
+ <pubDate>Sat, 9 Sep 2017 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/341695064-thetalkshow-199-jim-dalrymple.mp3" length="106043697"/>
+ <itunes:duration>02:27:13</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jim Dalrymple returns to the show for a preview of next week's Apple event. We speculate (wrongly, it seems to have turned out) on the naming of the new iPhones, facial recognition in lieu of Touch ID, third-generation Apple Watches, Apple TV, HomePod, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jim Dalrymple returns to the show for a preview of next week's Apple event. We speculate on the naming of the new iPhones, facial recognition in lieu of Touch ID, third-generation Apple Watches, Apple TV, HomePod, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="https://www.warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: Build it beautiful. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos, printed directly on glass.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/stevesi/status/905987672430174209">Steven Sinofsky on the WSJ's report of iPhone production delays</a>: "Anyone who has ever made anything knows this is simply called manufacturing."</li>
+<li><a href="https://www.youtube.com/watch?v=utfbE3_uAMA&amp;feature=youtu.be">Hacking an iPhone 7 to add a headphone jack</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/09/08/siris-voice">Apple bragging about Siri’s improved voice quality</a>.</li>
+<li><a href="https://youtu.be/znxQOPFg2mo">Steve Jobs's epic on-stage tirade about "570 Wi-Fi hotspots" interfering with his demos in 2010</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>198: ‘Prison Oreos’ With Jason Snell</title>
+ <link>https://daringfireball.net/thetalkshow/2017/08/25/ep-198</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/08/25/ep-198</guid>
+ <pubDate>Fri, 25 Aug 2017 19:40:58 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/339520753-thetalkshow-198-jason-snell.mp3" length="115289680"/>
+ <itunes:duration>02:40:04</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell returns to the show. Topics include Daring Fireball's 15th anniversary, fruit fly infestations, clicky keyboards, sandwich cookies, the birth of Markdown, iOS 11's new "cop mode", favicons in Safari, Apple's Project Titan, last week's total solar eclipse, and Jerry Lewis.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell returns to the show. Topics include Daring Fireball's 15th anniversary, fruit fly infestations, clicky keyboards, sandwich cookies, the birth of Markdown, iOS 11's new "cop mode", favicons in Safari, Apple's Project Titan, last week's total solar eclipse, and Jerry Lewis.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: The Casper mattress was designed by a team of 20 engineers, and perfected by a community of nearly half a million sleepers. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="http://tts.aftershokz.com/">AfterShokz</a>: Headphones powered by bone-conduction technology.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos printed directly on glass.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/onlytruejustin/status/879732104980037633">Justin Scott's "upstream/downstream" advice</a>.</li>
+<li><a href="https://www.amberalert.gov/statistics.htm">Wireless Emergency AMBER Alerts have supposedly saved 40 kids</a>.</li>
+<li><a href="https://twitter.com/stroughtonsmith/status/869194138587197441">Steven Troughton-Smith's new Apple Extended Keyboard II inspired keyboard</a>.</li>
+<li><a href="http://www.wasdkeyboards.com/">WASD keyboards</a>.</li>
+<li><a href="https://mechanicalkeyboards.com/shop/index.php?l=product_list&amp;c=169">Leopold keyboards</a>.</li>
+<li><a href="http://www.wasdkeyboards.com/index.php/wasd-6-key-cherry-mx-switch-tester.html">WASD tester</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/08/21/android-oreo">Newman-O’s vs. Oreos</a>.</li>
+<li><a href="https://daringfireball.net/2017/08/df_15">DF turns 15</a>.</li>
+<li><a href="https://daringfireball.net/2010/05/this_is_how_apple_rolls">This Is How Apple Rolls</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/08/18/cops-fingerprints">Cop Mode on iOS 11</a>.</li>
+<li><a href="https://www.bloomberg.com/graphics/2017-apple-iphone8/">Mark Gurman’s embarrassing article positing that Apple follows its competitors</a>.</li>
+<li><a href="https://daringfireball.net/2017/08/safari_should_display_favicons_in_its_tabs">Safari should show favicons in tabs</a>.</li>
+<li><a href="https://daringfireball.net/2017/08/titan_nyt">Project Titan</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/08/22/stuto-imessage-us-teens">iMessage as an unheralded social networking Goliath</a>.</li>
+<li><a href="https://sixcolors.com/post/2017/08/notes-from-a-road-trip/">Jason’s road trip</a>.
+<ul><li><a href="http://kottke.org/tag/2017%20solar%20eclipse">Kottke on the eclipse</a>.</li></ul></li>
+<li><a href="https://daringfireball.net/linked/2017/08/08/letterman-netflix">Letterman to return with Netflix series</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/The_King_of_Comedy_(film)">Jerry Lewis and ‘The King of Comedy’</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>197: ‘Nancy Reagan Was Right’ With Glenn Fleishman</title>
+ <link>https://daringfireball.net/thetalkshow/2017/08/06/ep-197</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/08/06/ep-197</guid>
+ <pubDate>Sun, 6 Aug 2017 18:11:21 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/336743127-thetalkshow-197-glenn-fleishman.mp3" length="114677792"/>
+ <itunes:duration>02:39:13</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Glenn Fleishman returns to the show. Topics include China forcing Apple to remove VPN apps from the Chinese App Store, Wi-Fi vs. LTE networking, the open workspaces in Apple Park, Glenn's new letterpress project, the HomePod OS leak and iPhone D22, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Glenn Fleishman returns to the show. Topics include China forcing Apple to remove VPN apps from the Chinese App Store, Wi-Fi vs. LTE networking, the open workspaces in Apple Park, Glenn’s new letterpress project, the HomePod OS leak and iPhone D22, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>thetalkshow</strong> for free overnight shipping.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos printed directly on glass.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.kickstarter.com/projects/glennf/hands-on-the-original-digital"><em>Hands On: The Original Digital</em> — Glenn’s new book on type, printing, and punctuation</a>.
+<ul><li><a href="https://glog.glennf.com/patron-updates/">Updates on Glenn’s progress</a>.</li>
+<li><a href="https://meh.com/forum/topics/nothing-is-lacking-the-long-history-of-intentionally-blank-pages">Glenn’s piece for Meh on the long history of intentionally blank pages</a>.</li></ul></li>
+<li><a href="https://www.facebook.com/vicgundotra/posts/10154573133695706">Vic Gundotra is now a staunch iPhone proponent</a>.
+<ul><li><a href="https://daringfireball.net/linked/2014/04/24/gundotra-history">Great Moments in Vic Gundotra History</a>.</li>
+<li><a href="https://techcrunch.com/2010/05/20/the-gloves-are-officially-off-google-vs-apple/">Vic Gundotra tears into Apple for being “closed” at IO 2010 keynote</a>.</li>
+<li><a href="http://www.appleoutsider.com/2010/05/20/google-rewrites-history/">Matt Drance on Gundotra and Google rewriting Android’s history</a>.</li>
+<li><a href="https://daringfireball.net/linked/2011/03/31/gundotra">One more dose of Vic Gundotra hypocrisy for good measure</a>.</li></ul></li>
+<li><a href="https://daringfireball.net/linked/2017/08/01/homepod-os-release">Apple inadvertently leaks HomePod OS, spilling many beans</a>.</li>
+<li><a href="https://daringfireball.net/2017/07/apple_china_vpn_apps">Apple Removes VPN apps from Chinese App Store</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/07/26/ive-apple-park.php">Apple Park is mostly open workspaces</a>.
+<ul><li><a href="https://www.wsj.com/articles/how-jony-ive-masterminded-apples-new-headquarters-1501063201">WSJ profile on Jony Ive and Apple Park</a>.</li>
+<li><a href="https://sixcolors.com/link/2017/07/jony-ive-and-apple-park/">Jason Snell on open workspaces</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/07/27/video-footage-from-open-workspace">Yours truly getting cute with footage from “Brazil”</a>.</li></ul></li>
+<li><a href="https://daringfireball.net/linked/2017/08/01/xkcd-wifi-cellular">XKCD: Wi-Fi vs. Cellular</a>.
+<ul><li><a href="https://www.techhive.com/article/3212444/wi-fi/mesh-network-explained.html">Glenn’s Wi-Fi mesh networking explainer for TechHive</a>.</li>
+<li><a href="http://wifinetnews.com">Wi-Fi Net News — Glenn’s old weblog dedicated to Wi-Fi news</a>.</li></ul></li>
+<li><a href="http://www.acqualia.com/soulver/">Soulver — a terrific app for Mac and iOS that’s sort of a cross between a spreadsheet and calculator</a>.</li>
+<li><a href="https://twitter.com/rebeccaslatkin">Rebecca Slatkin on Twitter</a>.</li>
+<li><a href="https://www.studioneat.com/products/frameographer">Studio Neat Frameographer</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>196: ‘Actually, You Can Buy a Better Coke’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2017/07/21/ep-196</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/07/21/ep-196</guid>
+ <pubDate>Fri, 21 Jul 2017 16:54:24 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/334197308-thetalkshow-196-rene-ritchie.mp3" length="91394761" />
+ <itunes:duration>02:06:52</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show to talk about the rumors and speculation regarding this year’s upcoming new iPhones.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show to talk about the rumors and speculation regarding this year’s upcoming new iPhones.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://hullopillow.com/talkshow/">Hullo Pillow</a>: Sleep better with a new buckwheat pillow. It’ll be your favorite pillow, guaranteed.</li>
+<li><a href="https://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="https://audible.com/talkshow">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Mexican_Coke">Mexican Coke</a>.</li>
+<li>Daring Fireball: “<a href="https://daringfireball.net/2017/07/speculation_on_new_iphone_pricing">Speculation Regarding the Pricing of and Strategy Behind This Year’s New iPhones</a>”.</li>
+<li>Rene Ritchie: “<a href="https://www.imore.com/iphones-future-past">iPhones of Future Past: Understanding iPhone 8</a>”.</li>
+<li><a href="https://essential.com/">Essential</a>, Andy Rubin’s new company, with an upcoming edge-to-edge Android phone.</li>
+<li><a href="https://www.aboveavalon.com/">Neil Cybart’s Above Avalon newsletter</a>.</li>
+<li><a href="https://www.macrumors.com/2016/05/11/2017-iphone-edge-to-edge-display/">Yours truly predicting an “edge-to-edge display” in a 2017 iPhone back in May 2016</a>.</li>
+<li>“<a href="https://www.wsj.com/articles/how-apple-vs-samsung-became-a-smartphone-beauty-contest-1500210001">How Apple vs. Samsung Became a Smartphone Beauty Contest</a>” — Wall Street Journal “news” article by Timothy W. Martin and Tripp Mickle positing that Samsung is a company that values design and Apple is not.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+ ]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>195: ‘I Do Like Throwing a Baby’ With John Moltz</title>
+ <link>https://daringfireball.net/thetalkshow/2017/06/26/ep-195</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/06/26/ep-195</guid>
+ <pubDate>Mon, 26 Jun 2017 20:49:31 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/330266572-thetalkshow-195-john-moltz.mp3" length="81875586" />
+ <itunes:duration>01:53:39</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show. Topics include more follow-up from WWDC 2017, the iPad Pro models and ProMotion, Scott Forstall's interview with John Markoff regarding the 10-year anniversary of the original iPhone, the ongoing shitshow at Uber, quick thoughts on the Nintendo Switch, and more. Also: guess which John enjoys throwing babies into the air.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show. Topics include more follow-up from WWDC 2017, the iPad Pro models and ProMotion, Scott Forstall's interview with John Markoff regarding the 10-year anniversary of the original iPhone, the ongoing shitshow at Uber, quick thoughts on the Nintendo Switch, and more. Also: guess which John enjoys throwing babies into the air.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move. Use code <strong>GRUBER</strong> for 10% off your first order.</li>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: High-quality luggage with built-in USB chargers. Save $20 with promo code <strong>TALKSHOW</strong>.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.leadfast.org/blog/2017/6/4/revisiting-the-dixon-ticonderoga">Michael Hagain at Lead Fast on the Chinese-made Dixon Ticonderoga pencils</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=03Nd8j9WPvI">Chris Pirillo on iPad Pro, Promotion, and iOS</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=5xDRdWFdsoQ">Museum Historian John Markoff moderates a discussion with former iPhone team members Hugo Fiennes, Nitin Ganatra and Scott Herz, followed by a conversation with Scott Forstall</a>.</li>
+<li>Episodes of Guy English and Rene Ritchie’s Debug podcast with Nitin Gunatra and Don “No Fucks Left to Give” Melton:
+<ul><li><a href="https://overcast.fm/+I_Lwurog">Episode I</a></li>
+<li><a href="https://overcast.fm/+I_Ix5_Xo">Episode II</a></li>
+<li><a href="https://overcast.fm/+I_IDU18c">Episode III</a></li>
+<li><a href="https://overcast.fm/+I_JFBNKk">Episode IV</a></li>
+<li><a href="https://overcast.fm/+I_LZQ_tI">Episode V</a></li></ul></li>
+<li><a href="https://daringfireball.net/linked/2017/06/22/navistone-form-data">Navistone — the creepy company that sells a JavaScript library for collecting form data as soon as you type it</a>.</li>
+<li><a href="http://www.nondot.org/sabre/Resume.html">Chris Lattner leaves Tesla</a>.</li>
+<li>The Outline: “<a href="https://theoutline.com/post/1766/leaked-recording-inside-apple-s-global-war-on-leakers">Apple’s War on Leakers</a>”.</li>
+<li>Brian Merchant’s <em><a href="https://www.hachettebookgroup.com/titles/brian-merchant/the-one-device/9780316546164/">The One Device</a></em> and <a href="https://daringfireball.net/2017/06/the_knives_come_out_for_schiller">the excerpt that ran in The Verge</a>.</li>
+<li><a href="https://pikeralpha.wordpress.com/2017/06/22/imac-pro-comes-with-security-enclave-processor/">Evidence in High Sierra betas suggests iMac Pro might come with Secure Enclave ARM chip</a>.</li>
+<li><a href="https://www.donorschoose.org/">Donors Choose</a> — a great way to contribute money to help teachers buy supplies for their classrooms.</li>
+<li><a href="https://en.wikipedia.org/wiki/Osborne_effect">The Osborne Effect</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>194: ‘Egg Freckles’ With Serenity Caldwell</title>
+ <link>https://daringfireball.net/thetalkshow/2017/06/19/ep-194</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/06/19/ep-194</guid>
+ <pubDate>Mon, 19 Jun 2017 20:55:02 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/328916956-thetalkshow-194-serenity-caldwell.mp3" length="90878985" />
+ <itunes:duration>02:06:09</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show to talk about WWDC 2017 -- iOS 11, the new iPad Pro models, MacOS 10.13 "High Sierra", updated Mac hardware and a tease at the upcoming iMac Pro, where Apple might go with VR and AR, San Jose as the venue for the event itself, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Serenity Caldwell returns to the show to talk about WWDC 2017 — iOS 11, the new iPad Pro models, MacOS 10.13 “High Sierra”, updated Mac hardware and a tease at the upcoming iMac Pro, where Apple might go with VR and AR, San Jose as the venue for the event itself, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move. Make your next website. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos, printed beautifully directly on glass.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/june-2017/">WWDC 2017 keynote</a>.</li>
+<li><a href="https://daringfireball.net/thetalkshow/2017/06/08/ep-193">Last week's live episode of The Talk Show, with special guests Phil Schiller and Craig Federighi</a>.</li>
+<li><a href="http://doonesbury.washingtonpost.com/strip/set/24">Doonesbury on the Newton back in 1993</a>.</li>
+<li>Serenity Caldwell: '<a href="https://www.imore.com/wwdc-2017-review-community-evolves">WWDC 2017 in Review: The Community Evolves</a>'.</li>
+<li><a href="https://illum.lytro.com/illum">Lytro’s light field camera</a>: the focus-after-the-fact camera referenced during the show.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>193: ‘Crack Marketing Team’ — Live From WWDC 2017 With Phil Schiller and Craig Federighi</title>
+ <link>https://daringfireball.net/thetalkshow/2017/06/06/ep-193</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/06/06/ep-193</guid>
+ <pubDate>Thu, 8 Jun 2017 14:32:08 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/327191250-thetalkshow-193-crack-marketing-team-live-from-wwdc-2017.mp3" length="66391037" />
+ <itunes:duration>01:31:46</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Recorded in front of a live audience at The California Theatre in San Jose, John Gruber is joined by Phil Schiller and Craig Federighi to discuss the news from WWDC: new Mac hardware, the new iPad Pro, Mac OS 10.13 “High Sierra”, iOS 11, the upcoming HomePod, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Recorded in front of a live audience at The California Theatre in San Jose, John Gruber is joined by Phil Schiller and Craig Federighi to discuss the news from WWDC: new Mac hardware, the new iPad Pro, Mac OS 10.13 “High Sierra”, iOS 11, the upcoming HomePod, and more.</p>
+
+<p><a href="https://www.imore.com/talk-show-live-transcript-wwdc-2017">A full text transcript is available</a>, by Serenity Caldwell.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://jamf.com/talkshow">Jamf</a>: Great mobile device management for Apple products.</li>
+<li><a href="https://MacStadium.com/DF">MacStadium</a>: Get your Mac build infrastructure out of the office closet and into the hands of the experts.</li>
+<li><a href="https://setapp.com/">Setapp</a>: Subscription service for high quality indie Mac apps. For $9.99 per month you get over 70 fully-functional apps.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/apple-events/june-2017/">The WWDC 2017 keynote</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2017/06/apple-unveils-all-new-app-store/">The new iOS App Store</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2017/06/imac-receives-major-update-featuring-more-powerful-graphics-faster-processors-thunderbolt-3-brighter-displays/">New iMacs</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2017/06/imac-pro-most-powerful-mac-arrives-december/">The upcoming iMac Pro</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2017/06/macos-high-sierra-delivers-advanced-technologies-for-storage-video-and-graphics/">MacOS 10.13 High Sierra</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2017/06/ipad-pro-10-5-and-12-9-inch-models-introduces-worlds-most-advanced-display-breakthrough-performance/">New iPad Pro models</a>.</li>
+<li><a href="https://www.apple.com/newsroom/2017/06/ios-11-brings-new-features-to-iphone-and-ipad-this-fall/">iOS 11</a></li>
+<li><a href="https://www.apple.com/newsroom/2017/06/homepod-reinvents-music-in-the-home/">HomePod</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>192: ‘The Original Sin Is XML’ With Special Guests Manton Reece and Brent Simmons</title>
+ <link>https://daringfireball.net/thetalkshow/2017/05/31/ep-192</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/05/31/ep-192</guid>
+ <pubDate>Wed, 31 May 2017 23:53:54 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/325464539-thetalkshow-192-manton-reece-and-brent-simmons.mp3" length="85631546" />
+ <itunes:duration>01:58:52</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Manton Reece and whisky-soaked baritone Brent Simmons join the show to talk about JSON Feed, the new spec they co-authored for syndicating things like blog posts and podcasts. We talk about their longstanding mutual interest in [Userland Frontier][f] -- Dave Winer’s groundbreaking scripting environment from the early ’90s -- and how that background and their mutual love for publishing on the open web and the democratization of technology ultimately led to the creation of JSON Feed, as well as their other new projects: Manton’s [Micro.blog][m] publishing platform, and Brent’s new open source Mac app, announced for the first time right here on the show. And of course a brief look ahead to next week’s WWDC 2017.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Manton Reece and whisky-soaked baritone Brent Simmons join the show to talk about JSON Feed, the new spec they co-authored for syndicating things like blog posts and podcasts. We talk about their longstanding mutual interest in [Userland Frontier][f] -- Dave Winer’s groundbreaking scripting environment from the early ’90s -- and how that background and their mutual love for publishing on the open web and the democratization of technology ultimately led to the creation of JSON Feed, as well as their other new projects: Manton’s [Micro.blog][m] publishing platform, and Brent’s new open source Mac app, announced for the first time right here on the show. And of course a brief look ahead to next week’s WWDC 2017.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: High quality luggage with built-in USB chargers. Save $20 with promo code <strong>TALKSHOW</strong>.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off for the life of your account.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>gruber</strong> for 10 percent off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos printed in vivid color directly on glass. Great gift idea.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://jsonfeed.org/">JSON Feed</a>
+<ul><li><a href="https://daringfireball.net/s/json+feed">JSON Feed links on Daring Fireball</a></li>
+<li><a href="https://trends.google.com/trends/explore?q=xml,json">Interest in XML vs. JSON over the last 5 years</a>.</li></ul></li>
+<li><a href="https://micro.blog/">Micro.blog</a> — Manton’s new publishing platform.</li>
+<li><a href="https://ranchero.com/evergreen/">Evergreen</a> — Brent’s new open source Mac app.
+<ul><li><a href="https://github.com/brentsimmons/Evergreen">Evergreen’s GitHub repository</a>.</li></ul></li>
+<li><a href="http://frontier.userland.com/">Userland Frontier</a>.</li>
+<li><a href="https://workflow.is/">Workflow</a>.</li>
+<li><a href="https://ifttt.com/">IFTTT</a>.</li>
+<li><a href="https://feedbin.com/">Feedbin</a>.</li>
+<li>Seneca: “<a href="https://www.brainpickings.org/2014/09/01/seneca-on-the-shortness-of-life/">The Shortness of Life</a>”.</li>
+<li>Yours truly back in 2009: “<a href="https://daringfireball.net/2009/04/twitter_clients_playground">Twitter Apps Are a UI Playground</a>”.</li>
+<li><a href="http://www.manton.org/2015/01/tweet-library-2-7-and-promising-features.html">Manton’s old Tweet Library app</a>.</li>
+<li><a href="https://www.classy.org/san-jose/events/app-human-story-documentary-screening-presented-by-altconf-layers/e128096">“App: The Human Story” screening and panel discussion at WWDC 2017</a></li>
+<li><a href="https://xkcd.com/927/">xkcd’s “We need to develop one universal standard that covers everyone’s use cases!” comic</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>191: ‘He Ends Up Fighting Hervé Villechaize’ With Jim Dalrymple</title>
+ <link>https://daringfireball.net/thetalkshow/2017/05/27/ep-191</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/05/27/ep-191</guid>
+ <pubDate>Sat, 27 May 2017 20:07:47 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/324815830-thetalkshow-191-jim-dalrymple.mp3" length="104712208" />
+ <itunes:duration>02:25:22</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jim Dalrymple returns to the show to speculate about what Apple might announce at the upcoming WWDC 2017: Apple Watch, iPad, iOS, updated MacBooks, Apple TV, and more. Also: a celebration of the great Roger Moore.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jim Dalrymple returns to the show to speculate about what Apple might announce at the upcoming WWDC 2017: Apple Watch, iPad, iOS, updated MacBooks, Apple TV, and more. Also: a celebration of the great Roger Moore.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off for the life of your account.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>gruber</strong> for 10 percent off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos printed in vivid color directly on glass. Great gift idea.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.youtube.com/watch?v=aebUNgMhQV4&amp;feature=youtu.be">Car reviewer Nick Murray on Alcantara, the synthetic leather Microsoft is using for their new Surface Laptops</a>.</li>
+<li><a href="http://www.cnbc.com/2017/05/18/apple-ceo-tim-cook-test-drove-glucose-monitor.html">CNBC: Tim Cook spotted testing Apple Watch glucose monitor</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/05/23/meeting-roger-moore">Marc Haynes on meeting Roger Moore as a 7-year-old in 1983</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/The_Mythical_Man-Month">Fred Brooks’s “The Mythical Man Month”</a>.</li>
+<li><a href="https://9to5mac.com/2013/06/09/what-ios7-looks-like/">Seth Weintraub’s preview of iOS 7 a few days before it was announced at WWDC 2013</a>.</li>
+<li><a href="https://www.instagram.com/badassboz/">Bozoma Saint John on Instagram</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>190: ‘Anything Luxury’ With Ben Thompson</title>
+ <link>https://daringfireball.net/thetalkshow/2017/05/13/ep-190</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/05/13/ep-190</guid>
+ <pubDate>Sat, 13 May 2017 16:50:42 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/322461406-thetalkshow-190-ben-thompson.mp3" length="145674300" />
+ <itunes:duration>03:22:16</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Ben Thompson returns to the show. Topics include Microsoft's announcements from Build 2017, search engines, Amazon's new (confusingly-named) Look and Show devices, the need for HAL 9000, Apple's WeChat problem in China, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Ben Thompson returns to the show. Topics include Microsoft's announcements from Build 2017, search engines, Amazon's new (confusingly-named) Look and Show devices, the need for HAL 9000, Apple's WeChat problem in China, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://pingdom.com/lp/talkshow">Pingdom</a>: Uptime and performance monitoring made easy. Use code <strong>THETALKSHOW</strong> for 20 percent off.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Build it beautiful. Use code <strong>gruber</strong> for 10 percent off your first order.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your pictures, printed directly on glass.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://techcrunch.com/2017/05/10/microsoft-build-2017-live-stream-livestream-windows-azure-seo-magic/">Microsoft's Build 2017 Keynote</a>.</li>
+<li><a href="https://fishshell.com/">Fish Shell</a>.</li>
+<li><a href="https://www.theverge.com/2017/5/9/15587364/microsoft-surface-laptop-alcantara-fabric-cleaning">Surface Laptop "luxury" treatment</a>.</li>
+<li><a href="http://www.phonearena.com/news/Watch-every-Apple-iPhone-ad-from-the-first-Hello_id27213">2007 Apple iPhone commercial</a>.</li>
+<li><a href="https://www.engadget.com/2009/06/28/bob-the-apple-guided-tour-guy-leaves-for-greener-pastures/">Bob Borcher's iPhone guided tours</a>.</li>
+<li><a href="https://9to5mac.com/2012/04/19/apple-marketing-svp-phil-schiller-dumps-instagram-over-expansion-to-android/">Phil Schiller dumping Instagram in 2012</a>.</li>
+<li><a href="https://daringfireball.net/2017/05/apples_china_problem_wechat">WeChat and the iPhone in China</a>.</li>
+<li><a href="https://www.theguardian.com/technology/blog/2010/feb/11/facebook-readwriteweb">When a ReadWriteWeb article became Google’s top result for “Facebook login”</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>189: ‘Long Press on the French Fries’ With Rene Ritchie</title>
+ <link>https://daringfireball.net/thetalkshow/2017/05/06/ep-189</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/05/06/ep-189</guid>
+ <pubDate>Sun, 7 May 2017 12:51:38 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/321416721-thetalkshow-189-rene-ritchie.mp3" length="96683941" />
+ <itunes:duration>02:14:13</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show. Topics include Apple’s Q2 2017 financial results, the iPhone’s decline in China over the past two years, Microsoft’s new Surface Laptop and Windows 10 S, Uber CEO Travis Kalanick getting called to Tim Cook’s office regarding Uber’s surreptitious “fingerprinting” of iPhones, judging Apple Watch’s success, Hulu’s entry into the cord-cutting “live TV” subscription market (and Apple’s conspicuous absence from that same market), and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Rene Ritchie returns to the show. Topics include Apple’s Q2 2017 financial results, the iPhone’s decline in China over the past two years, Microsoft’s new Surface Laptop and Windows 10 S, Uber CEO Travis Kalanick getting called to Tim Cook’s office regarding Uber’s surreptitious “fingerprinting” of iPhones, judging Apple Watch’s success, Hulu’s entry into the cord-cutting “live TV” subscription market (and Apple’s conspicuous absence from that same market), and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move with a beautiful website. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/talkshow">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Apple Q2 2017 results:
+<ul><li><a href="https://www.apple.com/newsroom/2017/05/apple-reports-second-quarter-results.html">Apple’s press release</a>.</li>
+<li><a href="https://www.apple.com/newsroom/pdfs/Q2FY17DataSummary.pdf">Data (PDF)</a>.</li>
+<li><a href="https://seekingalpha.com/article/4068153-apple-aapl-q2-2017-results-earnings-call-transcript">Transcript of the analyst call opening remarks</a>.</li>
+<li><a href="https://sixcolors.com/post/2017/05/q2-2017-call-transcript-apples-answers-to-analysts-questions/">Transcript of the analyst call Q&amp;A segment</a>.</li></ul></li>
+<li>Is WeChat a problem for Apple in China?
+<ul><li>Ben Thompson: “<a href="https://stratechery.com/2017/apples-china-problem/">Apple’s China Problem</a>”.</li>
+<li>John Gruber: “<a href="https://daringfireball.net/2017/05/apples_china_problem_wechat">Apple’s China Problem: WeChat</a>”.</li>
+<li>Connie Chan: “<a href="http://a16z.com/2015/08/06/wechat-china-mobile-first/">When One App Rules Them All: The Case of WeChat and Mobile in China</a>”.</li></ul></li>
+<li>Other events in San Jose during WWDC week:
+<ul><li><a href="https://layers.is/">Layers design conference</a> (save $100 with code “martini” or “🍸”).</li>
+<li><a href="http://altconf.com/">AltConf</a>.</li>
+<li><a href="http://cocoaconf.com/nextdoor">CocoaConf</a>.</li>
+<li><a href="https://developer.apple.com/wwdc/more/">Apple’s “Beyond WWDC” page</a>.</li></ul></li>
+<li>Scandal of the week at Uber:
+<ul><li>“<a href="https://daringfireball.net/2017/04/uber_identifying_and_tagging_iphones">On Uber’s ‘Identifying and Tagging’ of iPhones</a>”.</li>
+<li><a href="https://daringfireball.net/linked/2017/04/23/heartbreaking">Unroll.me CEO’s “heartbreak”</a>.</li></ul></li>
+<li>App Store economics:
+<ul><li><a href="http://mattgemmell.com/damage/">Matt Gemmell</a>: “No company has done as much damage to the perceived value of software, and the sustainability of being an independent developer, as Apple.”</li>
+<li>Rene Ritchie: “<a href="http://www.imore.com/indie-developers-age-app-store">Indie Development in the Age of the App Store</a>”.</li></ul></li>
+<li><a href="https://www.theverge.com/2017/5/3/15512650/new-hulu-tv-service-announced-live-shows-price-channels">Hulu’s new $40/month live TV service</a>.</li>
+<li><a href="https://twitter.com/gruber/status/860220244819947525">It sucks that you can’t type common characters like tab and π, ¶, and © on an iOS software keyboard</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>188: ‘Apple VP Lisa Jackson’</title>
+ <link>https://daringfireball.net/thetalkshow/2017/04/21/ep-188</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/04/21/ep-188</guid>
+ <pubDate>Fri, 21 Apr 2017 17:05:44 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/318852769-thetalkshow-188-lisa-jackson.mp3" length="40671731" />
+ <itunes:duration>00:56:25</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Lisa Jackson — Apple’s vice president of Environment, Policy, and Social Initiatives — joins the show for an Earth Day discussion of the state of Apple’s environmental efforts: climate change, renewable energy, responsible packaging, and Apple’s new goal to create a “closed-loop supply chain”, wherein the company’s products would be manufactured entirely from recycled materials.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Lisa Jackson — Apple’s vice president of Environment, Policy, and Social Initiatives — joins the show for an Earth Day discussion of the state of Apple’s environmental efforts: climate change, renewable energy, responsible packaging, and Apple’s new goal to create a “closed-loop supply chain”, wherein the company’s products would be manufactured entirely from recycled materials.</p>
+
+<p><em><a href="https://daringfireball.net/thetalkshow/188/transcript">Full transcript of this episode</a>.</em></p>
+
+<p>Sponsored exclusively by:</p>
+
+<ul>
+<li><a href="http://meetcircle.com/">Circle With Disney</a>: Disney’s new way for families to manage content and time across devices. Use code <strong>THETALKSHOW</strong> to get free shipping and $10 off.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.apple.com/pr/bios/lisa-jackson.html">Lisa Jackson’s bio</a>.</li>
+<li><a href="https://images.apple.com/environment/pdf/Apple_Environmental_Responsibility_Report_2017.pdf">Apple’s 2017 Environmental Responsibility Report</a> (PDF).</li>
+<li><a href="https://www.apple.com/recycling/">Recycle your old Apple products</a>.</li>
+<li>Apple’s charming series of animated spots on the environment by filmmaker James Blagden:
+<ul><li>“<a href="https://www.youtube.com/watch?v=pHOne3_2IE4">Can We Produce Zero Waste?</a>”</li>
+<li>“<a href="https://www.youtube.com/watch?v=eH6hf6M_7a8">Do Solar Farms Feed Yaks?</a>”</li>
+<li>“<a href="https://www.youtube.com/watch?v=8bLjD5ycBR0">Why Does Apple Make Its Own Sweat?</a>”</li>
+<li>“<a href="https://www.youtube.com/watch?v=tNzCrRmrtvE">Can a Building Breathe?</a>”</li></ul></li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>187: ‘Forget About Frodo and Sam’ With MG Siegler</title>
+ <link>https://daringfireball.net/thetalkshow/2017/04/18/ep-187</link>
+ <guid>https://daringfireball.net/thetalkshow/2017/04/18/ep-187</guid>
+ <pubDate>Tue, 18 Apr 2017 22:43:58 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/318371059-thetalkshow-187-mg-siegler.mp3" length="105558362" />
+ <itunes:duration>02:26:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>MG Siegler returns to the show. Topics includes Virgin America's sad fate as a subsidiary of Alaska Airlines, the Touch Bar on the new MacBook Pros, "doing work" on an iPad Pro, Walt Mossberg, the absurd bloat of iOS apps, Clips, Netflix and Amazon's spending on video, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>MG Siegler returns to the show. Topics includes Virgin America's sad fate as a subsidiary of Alaska Airlines, the Touch Bar on the new MacBook Pros, "doing work" on an iPad Pro, Walt Mossberg, the absurd bloat of iOS apps, Clips, Netflix and Amazon's spending on video, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Make your next move. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi that works.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos, printed directly on glass. Great gift idea.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>MG: <a href="https://500ish.com/the-great-laptop-stagnation-710811fb27a8">The Great Laptop Stagnation</a>.</li>
+<li>MG: <a href="https://500ish.com/death-of-a-virgin-16561710ae4f">Death of a Virgin</a>.</li>
+<li>MG: <a href="https://500ish.com/the-squid-218be9939cdf">The Squid</a>.</li>
+<li><a href="http://www.cjr.org/q_and_a/walt-mossberg-tech-journalism.php">Columbia Journalism Review's interview with Walt Mossberg</a>.</li>
+<li><a href="https://www.axios.com/bloomberg-launches-tech-video-series-starring-mark-gurman-2356235934.html">Mark Gurman's new weekly video show for Bloomberg</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>186: ‘Good News, My House Burned Down’ With Matthew Panzarino</title>
+ <link>https://daringfireball.net/thetalkshow/2017/04/13/ep-186</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/04/13/ep-186</guid>
+ <pubDate>Thu, 13 Apr 2017 18:13:09 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/317553165-thetalkshow-186-matthew-panzarino.mp3" length="89003500" />
+ <itunes:duration>02:03:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show for an in-depth discussion of last week's "future of the Mac Pro" round table discussion between a handful of Apple executives and journalists who cover the company. We talk about what went wrong with the 2013 Mac Pro design, speculate on the timeline of when Apple made this decision, why touchscreen Macs are almost certainly a bad idea even though a lot of people think they want one, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Matthew Panzarino returns to the show for an in-depth discussion of last week's "future of the Mac Pro" round table discussion between a handful of Apple executives and journalists who cover the company. We talk about what went wrong with the 2013 Mac Pro design, speculate on the timeline of when Apple made this decision, why touchscreen Macs are almost certainly a bad idea even though a lot of people think they want one, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://meetcircle.com/">Circle With Disney</a>: Disney’s new way for families to manage content and time across devices. Use code <strong>THETALKSHOW</strong> to get free shipping and $10 off.</li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://hullopillow.com/talkshow">Hullo Pillow</a>: Sleep better with a new buckwheat pillow. It’ll be your favorite pillow, guaranteed.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://techcrunch.com/2017/04/04/apple-pushes-the-reset-button-on-the-mac-pro/">Matthew’s story for TechCrunch on the Mac Pro meeting</a>.</li>
+<li><a href="https://daringfireball.net/2017/04/the_mac_pro_lives">Yours truly’s story for Daring Fireball</a>.</li>
+<li><a href="http://www.corriere.it/esteri/17_febbraio_12/luca-maestri-apple-come-monastero-nuovo-steve-jobs-italiano-usa-8f7d847e-f099-11e6-811e-b69571ccd9d9.shtml">Apple CFO Luca Maestri on using Circle With Disney</a> with his family. (In Italian.)</li>
+<li><a href="https://www.dancounsell.com/building-a-hackintosh-pro/">Longtime Mac developer Dan Counsell on building a hackintosh</a>.</li>
+<li><a href="https://daringfireball.net/linked/2017/02/27/critiquing-a-new-typeface">Jonathan Hoefler’s posted-to-Twitter critique of a work-in-progress typeface design from Louie Mantia</a>.
+<ul><li><a href="http://gingerlabs.com/">Notability</a>, the app Hoefler &amp; Co. use for annotating typeface designs on iPad Pro with Apple Pencil.</li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>185: ‘Warmest Regards’ With Dan Frommer</title>
+ <link>http://daringfireball.net/thetalkshow/2017/03/31/ep-185</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/03/31/ep-185</guid>
+ <pubDate>Fri, 31 Mar 2017 23:53:11 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/315501820-thetalkshow-185-dan-frommer.mp3" length="102177564" />
+ <itunes:duration>02:21:40</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Dan Frommer returns to the show. Topics include the end of The Deck ad network, my weird story about getting kicked out of Amazon’s affiliate program, Apple’s new products announced last week (Red iPhone 7 models, larger-capacity iPhone SEs, the new 9.7-inch just-plain iPad, and Apple’s excellent new Clips app), Samsung’s new Galaxy S8, Twitter’s new reply system, CarPlay getting its ass kicked in a head-to-head comparison with Android Auto, ISPs and Privacy, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Dan Frommer returns to the show. Topics include the end of The Deck ad network, my weird story about getting kicked out of Amazon’s affiliate program, Apple’s new products announced last week (Red iPhone 7 models, larger-capacity iPhone SEs, the new 9.7-inch just-plain iPad, and Apple’s excellent new Clips app), Samsung’s new Galaxy S8, Twitter’s new reply system, CarPlay getting its ass kicked in a head-to-head comparison with Android Auto, ISPs and Privacy, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://jamf.com/thetalkshow">JAMF Software</a>: Jamf Now helps you manage your Apple devices from anywhere. Use this link and set up your first 3 devices free of charge.</li>
+<li><a href="https://squarespace.com/gruber">Squarespace</a>: Build it beautiful. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://decknetwork.net/">Jim Coudal announces the end of The Deck</a>.</li>
+<li><a href="http://daringfireball.net/2017/03/the_deck_adieu">My farewell to The Deck</a>.</li>
+<li><a href="http://www.apple.com/clips/">Clips</a>.</li>
+<li><a href="https://www.recode.net/2017/3/29/15108352/samsung-galaxy-s8-apple-iphone-8-design">Dan Frommer on the Galaxy S8 taking a bit of the piss out Apple's purported edge-to-edge iPhone coming later this year</a>.</li>
+<li><a href="http://www.theverge.com/2017/3/29/15094720/samsung-galaxy-s8-design-safety-vs-note-7-battery-explosion">Dan Seifert’s report on the Galaxy S8</a>, from Samsung’s headquarters in South Korea.</li>
+<li><a href="http://viv.ai/">Viv</a>, the Samsung-acquired voice-AI system from the creators of Siri.</li>
+<li><a href="http://daringfireball.net/2004/12/amazon">The 12-year old Daring Fireball post that apparently got me kicked out of Amazon's affiliate program</a>.</li>
+<li><a href="https://twitter.com/Arubin/status/846396881668210688">Andy Rubin's teaser tweet</a>.</li>
+<li><a href="https://twitter.com/ericschmidt/status/847125894753792000">Eric Schmidt's tweet promoting Rubin's teaser</a>, on the day of Samsung's S8 announcement.</li>
+<li><a href="https://www.youtube.com/watch?v=jeESbGPl_Dw">Android Auto vs. CarPlay head-to-head</a>.</li>
+<li><a href="https://theintercept.com/2017/03/29/i-spent-a-week-trying-to-make-internet-providers-answer-a-simple-question-about-selling-your-data/">Sam Biddle tries to get a telecom PR rep to make sense</a> of their official position on “protecting user privacy”.</li>
+<li><a href="https://www.macrumors.com/2013/01/20/apple-rumored-to-debut-4-8-inch-iphone-math-in-june/">The iPhone Math</a>, Dan’s favorite busted-ass rumor.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>184: ‘Hubbo Is in Decline’ With Merlin Mann</title>
+ <link>http://daringfireball.net/thetalkshow/2017/03/22/ep-184</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/03/22/ep-184</guid>
+ <pubDate>Wed, 22 Mar 2017 01:22:32 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/313725788-thetalkshow-184-merlin-mann.mp3" length="67805543" />
+ <itunes:duration>01:34:06</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>The one and only Merlin Mann returns to the show. Topics include modern plumbing technology and product marketing, the intricate ordeal of switching from iCloud’s old two-step authentication to the modern two-factor authentication, and the future of voice-driven UI/AI. Also, a wee bit of follow-up on our post-election November 9 Holiday Party.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>The one and only Merlin Mann returns to the show. Topics include modern plumbing technology and product marketing, the intricate ordeal of switching from iCloud’s old two-step authentication to the modern two-factor authentication, and the future of voice-driven UI/AI. Also, a wee bit of follow-up on our post-election November 9 Holiday Party.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works.</li>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: High quality luggage with built-in USB chargers. Save $20 with promo code <strong>talkshow</strong>.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Now through the end of March, save 20% on Fracture prints with promo code <strong>CLEAN</strong>. Order now for Mothers Day.</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://m.youtube.com/watch?v=oYAbmJaztU4">American Standard VorMax anti-splatter flush technology</a>.
+<ul><li>“<a href="https://www.youtube.com/watch?v=JTRJBpNTcHA">Clinger</a>”.</li>
+<li>“<a href="https://www.youtube.com/watch?v=1KVWM26gl8I">Skid Marks</a>”.</li>
+<li><a href="https://www.youtube.com/watch?v=chFyYwqZgQY&amp;list=PLp6PUjIvGCire2GExuzBVmuVNuYA4GI4o&amp;index=4">Halfway through this one they flush something soft and brown</a>.</li></ul></li>
+<li><a href="https://twitter.com/Heilemann/status/844024625134735360">Michael Heilemann</a>: “When did Siri figure out to not activate two iCloud connected devices with ‘Hey Siri’ at the same time?”</li>
+<li>My YouTube video showing <a href="https://www.youtube.com/watch?v=oN5OnrYZfk4">how best to remove AirPods from their case</a>.</li>
+<li><a href="http://dobyfriday.com/">Do By Friday</a>: Excellent new(ish) podcast hosted by Merlin, Alex Cox, and Max Temkin, whose names have an average of one “x” per host.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>183: ‘A Very Masculine Bark’ With Serenity Caldwell</title>
+ <link>http://daringfireball.net/thetalkshow/2017/03/04/ep-183</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/03/04/ep-183</guid>
+ <pubDate>Sat, 4 Mar 2017 20:17:13 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/310748554-thetalkshow-183-serenity-caldwell.mp3" length="91381485" />
+ <itunes:duration>02:06:51</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show. Topics include the Best Picture fiasco at last week’s Academy Awards, Tim Cook speaking vaguely of “the pro area” at Apple’s shareholders meeting, the conflict between Apple’s culture of secrecy and the glaring embarrassment that is the 1,100-day-old Mac Pro lineup, new iPad Pro rumors and our ruminations on tablet vs. notebook hardware form factors, The Wall Street Journal’s seemingly goofy report on new iPhones replacing Lightning with USB-C ports, and the garbage fire that is Uber’s corporate culture.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Serenity Caldwell returns to the show. Topics include the Best Picture fiasco at last week’s Academy Awards, Tim Cook speaking vaguely of “the pro area” at Apple’s shareholders meeting, the conflict between Apple’s culture of secrecy and the glaring embarrassment that is the 1,100-day-old Mac Pro lineup, new iPad Pro rumors and our ruminations on tablet vs. notebook hardware form factors, The Wall Street Journal’s seemingly goofy report on new iPhones replacing Lightning with USB-C ports, and the garbage fire that is Uber’s corporate culture.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: Build it beautiful. Use code <strong>gruber</strong> for 10% off your first order.</li>
+<li><a href="http://harrys.com/talkshow">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>talkshow</strong> for a great deal on your your first purchase.</li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>The Best Picture Oscars fiasco:
+<ul><li><a href="http://www.vulture.com/2017/02/oscars-best-picture-mixup-everything-we-know.html">Vulture’s deep dive on the Best Picture envelope mixup</a>.</li>
+<li><a href="http://variety.com/2017/film/news/oscar-best-picture-gaffe-brian-cullinan-envelope-1201999283/">Variety’s backstage photographic evidence showing how PricewaterhouseCooper accountant Brian Culligan gave Warren Beatty the wrong envelope</a>.</li>
+<li><a href="https://mobile.twitter.com/Ihnatko/status/836091971773018113">Andy Ihnatko’s tweet showing the terrible typographic design of the envelopes</a>.</li>
+<li><a href="http://daringfireball.net/linked/2017/03/02/oscar-typography">The terrible design of the “The Winner Is…” cards</a>.</li></ul></li>
+<li><a href="https://9to5mac.com/2017/02/28/apple-annual-shareholders-meeting/">Tim Cook speaking vaguely of Apple’s commitment to “the pro area” at Apple’s shareholder meeting</a>.</li>
+<li><a href="http://daringfireball.net/2017/02/wsj_lightning_usbc_rumor">Curious Wall Street Journal report claiming the next iPhone will replace Lightning port with USB-C</a>.
+<ul><li><a href="http://daringfireball.net/linked/2017/03/02/ming-chi-kuo-iphones-lightning">Ming-Chi Kuo, following up on that WSJ report, says all new iPhones will have Lightning ports</a>.</li></ul></li>
+<li><a href="http://daringfireball.net/linked/2017/02/27/critiquing-a-new-typeface">Jonathan Hoefler’s Twitter thread critiquing an in-the-works typeface design by Louie Mantia</a> — a great example of how the iPad is great for some forms of work.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>182: ‘AAA Podcast’ With Marco Arment</title>
+ <link>http://daringfireball.net/thetalkshow/2017/02/22/ep-182</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/02/22/ep-182</guid>
+ <pubDate>Wed, 22 Feb 2017 20:20:23 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/309093702-thetalkshow-182-marco-arment.mp3" length="115224027" />
+ <itunes:duration>02:39:58</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Marco Arment returns to the show. Topics include WWDC moving back to San Jose, the latest rumors about this year’s new iPads and iPhones, and the thinking behind the design changes in the just-released Overcast 3.0.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Marco Arment returns to the show. Topics include WWDC moving back to San Jose, the latest rumors about this year’s new iPads and iPhones, and the thinking behind the design changes in the just-released Overcast 3.0.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>thetalkshow</strong> for free expedited shipping.</li>
+<li><a href="http://audible.com/talkshow">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://daringfireball.net/2017/02/apple_moves_wwdc_back_to_san_jose">WWDC moves back to San Jose</a>.</li>
+<li><a href="https://marco.org/2017/02/20/overcast3">Marco on the design details of Overcast 3.0</a>.</li>
+<li>iPhone and iPad rumors:
+<ul><li>FastCo: <a href="https://www.fastcompany.com/3068004/innovation-agents/heres-why-apples-10th-anniversary-iphone-will-likely-cost-more-than-1000">“Here’s Why Apple’s 10th Anniversary iPhone Will Likely Cost More Than $1,000”</a>.</li>
+<li>KGI Securities analyst Ming-Chi Kuo: <a href="https://www.macrumors.com/2017/02/15/2017-iphone-edge-to-edge-display-virtual-buttons/">“iPhone 8 to Feature 5.8-Inch OLED Display With 5.15-Inch Main Screen and Virtual Buttons Below”</a>. If this is true, this new iPhone (which I do not think will be called “iPhone 8” — I’d guess “iPhone Pro” — will have a radically different aspect ratio.</li>
+<li><a href="https://www.macrumors.com/2017/02/16/iphone-3d-laser-scanner-facial-recognition/">3D facial recognition to replace or supplement TouchID</a>?</li>
+<li>Mac Otakara: <a href="https://www.macrumors.com/2017/02/20/ipad-pro-march-event-128gb-iphone-se/">Apple to introduce new iPad Pros (7.9-inch (mini), 9.7-inch, 12.9-inch, and a new 10.5-inch with an edge-to-edge display), red iPhone 7’s, and 128 GB iPhone SE at event next month</a>.</li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>181: ‘Corporate Stiffy’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2017/02/10/ep-181</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/02/10/ep-181</guid>
+ <pubDate>Fri, 10 Feb 2017 19:31:30 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/307139934-thetalkshow-181-john-moltz.mp3" length="72497059" />
+ <itunes:duration>01:40:37</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Moltz returns to the show. Topics include: 🐩💨, iPad vs. Mac for productivity (and why the iPad isn’t a self-sufficient platform), nostalgia for System 7, speculation on this year’s upcoming new iPhones, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Moltz returns to the show. Topics include: 🐩💨, iPad vs. Mac for productivity (and why the iPad isn’t a self-sufficient platform), nostalgia for System 7, speculation on this year’s upcoming new iPhones, and more.</p>
+
+<p>Alternative title for this episode: 🏢🍆.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Make your next website. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://setapp.com/">Setapp</a>: An “Unstore” Alternative to the Mac App Store.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>DF: “<a href="http://daringfireball.net/2017/02/comparing_first_seven_years_of_ipad_and_mac">Comparing the First Seven Years of the iPad and Mac</a>”.</li>
+<li><a href="http://daringfireball.net/linked/2017/02/08/steinberg-ibooks">Why isn’t there a version of iBooks Author for iPads?</a></li>
+<li><a href="https://www.wsj.com/articles/why-tablets-are-the-future-of-computing-1442203331">Tim Cook, introducing the iPad Pro in September 2015</a>: “The iPad is the clearest expression of our vision of the future of personal computing.”</li>
+<li><a href="https://ulyssesapp.com/">Ulysses</a>, a great project-based app for writers, with cross-platform iOS and Mac versions.</li>
+<li><a href="https://www.omnigroup.com/blog/looking-back-looking-ahead-2017-edition">Ken Case’s Omni Group year-in-review post</a>, with a tease at their upcoming cross-platform JavaScript-based automation system.</li>
+<li>Two stories on the same rumor about this year’s new iPhones:
+<ul><li><a href="https://www.fastcompany.com/3068004/innovation-agents/heres-why-apples-10th-anniversary-iphone-will-likely-cost-more-than-1000">Mark Sullivan, writing for Fast Company</a>.</li>
+<li><a href="https://9to5mac.com/2017/02/09/kgi-predicts-wireless-charging-for-all-three-new-iphones-iphone-8-requires-higher-cost-3d-touch-sensor/">KGI analyst Ming Chi Kuo</a>.</li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>180: ‘Yay or Nay to Their POV’ With Matthew Panzarino</title>
+ <link>http://daringfireball.net/thetalkshow/2017/01/31/ep-180</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/01/31/ep-180</guid>
+ <pubDate>Tue, 31 Jan 2017 23:00:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/305538776-thetalkshow-180-matthew-panzarino.mp3" length="78448397" />
+ <itunes:duration>01:48:53</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show. Topics include Apple’s Q1 2017 financial results (including record iPhone sales and continuing cooling iPad sales), issues with LG’s new 5K UltraFine display (not so fine if you use it near a Wi-Fi router), the tech industry’s response to Trump’s immigration ban, and the highlights at this year’s Sundance Film Festival.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show. Topics include Apple’s Q1 2017 financial results (including record iPhone sales and continuing cooling iPad sales), issues with LG’s new 5K UltraFine display (not so fine if you use it near a Wi-Fi router), the tech industry’s response to Trump’s immigration ban, and the highlights at this year’s Sundance Film Festival.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Make your next website. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="http://ministryofsupply.com/thetalkshow">Ministry of Supply</a>: Performance dress clothes for men and women. Use this link and get a free pair of socks.</li>
+<li><a href="http://audible.com/talkshow">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://daringfireball.net/linked/2017/01/31/aapl-q1-2017">Apple’s just-announced Q1 2017 results</a>.</li>
+<li><a href="https://9to5mac.com/2017/01/30/lg-ultrafine-5k-display-router-disconnecting/">LG’s new 5K display can have problems if used near a Wi-Fi router</a>.</li>
+<li><a href="https://thenextweb.com/apple/2015/09/09/genius-annotated-with-genius/">Steve Jobs set the goal of 10 million iPhones sold in the first year</a> (1 percent market share).</li>
+<li><a href="http://daringfireball.net/linked/2017/01/28/cook">Tim Cook’s response to Trump’s immigration ban</a>.</li>
+<li><a href="https://techcrunch.com/2017/01/30/google-employees-rally-against-trumps-immigration-ban/">Google employees rallied against the ban</a>.</li>
+<li><a href="http://www.theverge.com/2017/1/28/14428262/google-sergey-brin">Sergey Brin went to SFO to join the protests</a>.</li>
+<li><a href="http://www.huffingtonpost.com/entry/steve-bannon-disgusted-asian-ceos-silicon-valley_us_582c5d19e4b0e39c1fa71e48">Steve Bannon suggested there are too many Asian CEOs in Silicon Valley</a>.</li>
+<li>Movies that debuted at Sundance:
+<ul><li><em><a href="http://www.imdb.com/title/tt5462602/">The Big Sick</a></em></li>
+<li><em><a href="http://www.imdb.com/title/tt4978710/">Marjorie Prime</a></em></li></ul></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>179: ‘iPhone Is the New Hitler’ With Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2017/01/26/ep-179</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/01/26/ep-179</guid>
+ <pubDate>Thu, 26 Jan 2017 18:08:26 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/304701643-thetalkshow-179-ben-thompson.mp3" length="96881345" />
+ <itunes:duration>02:14:29</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Ben Thompson returns to the show. Topics include the state of the Mac (and our shared belief that its death has been greatly exaggerated), the NFL playoffs, Chris Lattner leaving Apple for Tesla (and the general problem of talent retention), ruminating on the origins of the word “podcast”, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Ben Thompson returns to the show. Topics include the state of the Mac (and our shared belief that it’s death has been greatly exaggerated), the NFL playoffs, Chris Lattner leaving Apple for Tesla (and the general problem of talent retention), ruminating on the origins of the word “podcast”, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>thetalkshow</strong> for free expedited shipping.</li>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: First-class luggage at a coach price, including built-in USB chargers.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>“<a href="https://twitter.com/ThomasAwful/status/718889068365488128/photo/1">America’s slow but very real decline into a fascist state as told by the Milwaukee Bucks logo</a>.”</li>
+<li><a href="http://www.si.com/extra-mustard/2017/01/23/john-elway-cab-driver-surprise-video">Pittsburgh cab driver says John Elway is the best quarterback in history, not know that Elway was sitting in the back seat</a>.</li>
+<li>Yours truly back in 2005: “<a href="http://daringfireball.net/2005/07/podcast_pocket">Is That a Podcast in Your Pocket?</a>”</li>
+<li><a href="https://en.wikipedia.org/wiki/Macintosh_Programmer's_Workshop">MPW</a>, Apple's classic-era IDE.</li>
+<li><a href="https://tapbots.com/pastebot/">Pastebot</a>, a great new clipboard utility from Tapbots.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>178: ‘Now Banned in China’ With Jim Dalrymple</title>
+ <link>http://daringfireball.net/thetalkshow/2017/01/09/ep-178</link>
+ <guid>http://daringfireball.net/thetalkshow/2017/01/09/ep-178</guid>
+ <pubDate>Mon, 9 Jan 2017 21:16:27 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/301766589-thetalkshow-178-jim-dalrymple.mp3" length="92556116" />
+ <itunes:duration>02:08:29</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jim Dalrymple returns to the show for the first episode of 2017. Topics include New Year’s Eve, Siri/Alexa/Google Assistant, Apple’s aging AirPort and Mac Pro lineups, the future of desktop Macs, Apple Watch battery life, and rumors of upcoming new iPads.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jim Dalrymple returns to the show for the first episode of 2017. Topics include New Year’s Eve, Siri/Alexa/Google Assistant, Apple’s aging AirPort and Mac Pro lineups, the future of desktop Macs, Apple Watch battery life, and rumors of upcoming new iPads.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://mailchimp.com/">Mailchimp</a>: MailChimp: send better email, sell more stuff.</li>
+<li><a href="https://squarespace.com/">Squarespace</a>: Make your next move. Make your next website. Use code <strong>talkshow</strong> for 10% off your first order.</li>
+<li><a href="https://harrys.com/">Harry’s</a>: An exceptional shave at a fraction of the price. Use code <strong>talkshow</strong> for $5 off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Chuq Von Rospach: “<a href="https://chuqui.com/2017/01/apples-2016-in-review/">Apple’s 2016 Year in Review</a>”.</li>
+<li><a href="http://daringfireball.net/2017/01/von_rospach_apple_airport_mac_pro">My follow-up</a>, specifically on the AirPort and Mac Pro hardware.</li>
+<li>Matt Birchler: “<a href="https://birchtree.me/blog/the-difference-between-google-assistant-and-siri/">Siri vs. Google Assistant</a>”.</li>
+<li>Dave Mark, on the slew of Alexa-related products at CES this year: “<a href="http://www.loopinsight.com/2017/01/06/alexa-is-everywhere/">Alexa Is Everywhere</a>”.</li>
+<li><a href="http://subfurther.com/blog/2017/01/03/capitulation/">Chris Adamson, on why he just bought a “new” Mac Pro</a>.</li>
+<li><a href="http://daringfireball.net/linked/2017/01/05/apple-nyt-china">Apple, The New York Times, and China</a>.</li>
+<li><a href="http://alastairphilipwiper.com/blog/harrys-razor-blade-factory-germany">Photos from inside Harry’s razor blade factory in Germany</a>.</li>
+<li><a href="http://www.macrumors.com/2016/11/28/bezel-free-10-9-ipad-pro-no-home-button/">Rumors about upcoming new iPads, including a new bezel-less edge-to-edge design</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>177: ‘Surface Curious’ With Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2016/12/28/ep-177</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/12/28/ep-177</guid>
+ <pubDate>Wed, 28 Dec 2016 19:44:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/299950873-thetalkshow-177-rene-ritchie.mp3" length="88201881" />
+ <itunes:duration>02:02:19</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show. Topics include Siri vs. Alexa, and whether Wynn Las Vegas’s announcement that they’re putting Amazon Echos into their 4,700+ guest rooms is a sign that Amazon is building a meaningful long-term lead in the nascent voice assistant market; Mark Gurman’s week-ago piece for Bloomberg, “How Apple Alienated Mac Loyalists”; Consumer Reports’s bizarre but widely-publicized battery test results for the new MacBook Pros; and a brief year in review look at our favorite new Apple products from 2016.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show. Topics include Siri vs. Alexa, and whether Wynn Las Vegas’s announcement that they’re putting Amazon Echos into their 4,700+ guest rooms is a sign that Amazon is building a meaningful long-term lead in the nascent voice assistant market; Mark Gurman’s week-ago piece for Bloomberg, “How Apple Alienated Mac Loyalists”; Consumer Reports’s bizarre but widely-publicized battery test results for the new MacBook Pros; and a brief year in review look at our favorite new Apple products from 2016.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="http://audible.com/talkshow">Audible</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Super Mario Run only needs to be purchased once per iTunes account for use on multiple devices, <a href="https://twitter.com/jayman16/status/810873450051076098">but can only be played on one device (per iTunes account) at a time</a>.</li>
+<li><a href="http://daringfireball.net/linked/2016/12/26/wynn-echo">Wynn Las Vegas is going to put Amazon Echos in its 4,700+ hotel rooms</a>.</li>
+<li>Wynn has not one but <em>two</em> resorts in Macau — <a href="http://www.wynnmacau.com/en/">Wynn Macau</a> and <a href="http://www.wynnpalace.com/en">Wynn Palace</a> — neither of which can use Amazon Echo until Amazon adds support for Chinese.</li>
+<li>Digital Trends: “<a href="http://www.digitaltrends.com/home/gatebox-azuma-hikari-virtual-assistant-news/”">A Holographic Virtual Girl Lives Inside Japan’s Answer to the Amazon Echo</a>.</li>
+<li>Tim Cook, <a href="http://daringfireball.net/linked/2016/12/19/cook-mac-desktops">in a company-wide Q&amp;A</a>: “Some folks in the media have raised the question about whether we’re committed to desktops. If there’s any doubt about that with our teams, let me be very clear: we have great desktops in our roadmap. Nobody should worry about that.”</li>
+<li><a href="https://twitter.com/worrydream/status/791767756928462848">Bret Victor</a>: Touch Bar development started at Apple eight years ago. Follow-up tweets <a href="https://twitter.com/worrydream/status/793501918790242304">here</a>, <a href="https://twitter.com/worrydream/status/793501946464264193">here</a>, and <a href="https://twitter.com/worrydream/status/793502032485240832">here</a>.</li>
+<li>Mark Gurman, writing for Bloomberg: “<a href="https://www.bloomberg.com/news/articles/2016-12-20/how-apple-alienated-mac-loyalists">How Apple Alienated Mac Loyalists</a>”.</li>
+<li>Consumer Reports: “<a href="http://www.consumerreports.org/laptops/macbook-pros-fail-to-earn-consumer-reports-recommendation/">New MacBook Pros Fail to Earn Consumer Reports Recommendation</a>”</li>
+<li>Me: “<a href="http://daringfireball.net/linked/2016/12/23/cr-mbp">That’s absolutely bonkers</a>.”</li>
+<li>Rene Ritchie: “<a href="http://www.imore.com/consumer-reports-fails-earn-macbook-pro-credibility">Consumer Reports Fails to Earn MacBook Pro Credibility</a>”.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>176: ‘Frolic’ With Craig Hockenberry</title>
+ <link>http://daringfireball.net/thetalkshow/2016/12/17/ep-176</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/12/17/ep-176</guid>
+ <pubDate>Fri, 16 Dec 2016 23:00:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/298316636-thetalkshow-176-craig-hockenberry.mp3" length="88337723" />
+ <itunes:duration>02:02:26</itunes:duration> <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Craig Hockenberry returns to the show with his gigantic fleshy palms. Topics include Donald Trump's highly publicized meeting with a handful of U.S. tech company leaders (including Tim Cook), the release of Nintendo's Super Mario Run for iPhone, Uber's autonomous car that was caught cruising straight through a red light in San Francisco, and Craig's excellent new book, *[Making Sense of Color Management](https://abookapart.com/products/making-sense-of-color-management)*.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Craig Hockenberry returns to the show with his gigantic fleshy palms. Topics include Donald Trump's highly publicized meeting with a handful of U.S. tech company leaders (including Tim Cook), the release of Nintendo's Super Mario Run for iPhone, Uber's autonomous car that was caught cruising straight through a red light in San Francisco, and Craig's excellent new book, <em><a href="https://abookapart.com/products/making-sense-of-color-management">Making Sense of Color Management</a></em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/">Squarespace</a>: The best way to create your own website. Use code <strong>talkshow</strong> for 10 percent off your first order.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>talkshow</strong> for $5 off your first purchase.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for your Mac, for just $5 per month.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Craig's excellent new book, with a foreword by yours truly, <em><a href="https://abookapart.com/products/making-sense-of-color-management">Making Sense of Color Management</a></em>, from A Book Apart.</li>
+<li><a href="http://furbo.org/2016/12/09/making-sense-of-color-management/">More from Craig on the story behind the book</a>.</li>
+<li><a href="https://www.bloomberg.com/news/articles/2016-12-15/california-dmv-calls-uber-s-san-francisco-self-driving-cars-illegal">Uber's carefully-worded PR spin on their autonomous car that was captured on video running a red light</a>.</li>
+<li><a href="http://daringfireball.net/linked/2016/12/15/transcript-trump-execs">Trump's tech summit meeting</a>, and <a href="https://daringfireball.net/misc/2016/12/trump-cook-curb.jpg">the look on Tim Cook's face</a>.</li>
+<li><a href="https://twitter.com/BrendanNyhan/status/809081226627862528">Poll shows U.S. Republicans rate Vladimir Putin 67 percent more favorably than Hillary Clinton</a>, and 54 percent more favorably than Barack Obama. (<a href="https://d25d2506sfb94s.cloudfront.net/cumulus_uploads/document/ro9rimrce9/econTabReport.pdf">Source</a>.)</li>
+</ul>
+]]>
+
+ </content:encoded>
+ </item>
+ <item>
+ <title>175: ‘Uncle Joe’s Bathtub Gin’ With Glenn Fleishman</title>
+ <link>http://daringfireball.net/thetalkshow/2016/12/10/ep-175</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/12/10/ep-175</guid>
+ <pubDate>Sat, 10 Dec 2016 23:07:38 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/297331491-thetalkshow-175-glenn-fleishman.mp3" length="85542214" />
+ <itunes:duration>01:58:44</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Glenn Fleishman returns to the show. Topics include indoor plumbing, a spoiler-free discussion about HBO’s excellent “Westworld”, our favorite beverages, Apple’s AirPods launch debacle, Apple TV single sign-on, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Glenn Fleishman returns to the show. Topics include indoor plumbing, a spoiler-free discussion about HBO’s excellent “Westworld”, our favorite beverages, Apple’s AirPods launch debacle, Apple TV single sign-on, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.mailchimp.com/">Mailchimp</a>: MailChimp: send better email, sell more stuff.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos, printed directly on glass.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>HBO’s post-Westworld Easter Egg laden site for <a href="http://delosincorporated.com/">Delos Inc.</a>.</li>
+<li><a href="http://www.refinery29.com/2016/12/132333/siri-westworld-funny-responses-evan-rachel-wood">Ask Siri about “Westworld”</a>.</li>
+<li>“<a href="http://www.goodreads.com/book/show/3872.A_History_of_the_World_in_6_Glasses">A History of the World in Six Glasses</a>”, by Tom Standage.</li>
+<li><a href="http://www.nytimes.com/2016/01/03/us/politics/for-donald-trump-lessons-from-a-brothers-suffering.html">Interesting New York Times story from January on Donald Trump’s brother Freddy</a>, who drank himself to death in 1981.</li>
+<li><a href="http://www.macworld.com/article/3146988/hardware/review-nupower-60w-usb-c-power-adapter-for-12-inch-macbook-and-other-laptops.html">Glenn’s review of NewerTech’s $49 NuPower 60-Watt dual USB-A/USB-C charger</a> — a single charger that can charge both a MacBook and iPhone at the same time.</li>
+<li><a href="http://www.macrumors.com/2016/11/30/tim-cook-airpods-email/">Tim Cook purportedly emails customer</a> saying AirPods should ship over the “next few weeks”.</li>
+<li><a href="http://daringfireball.net/linked/2016/12/09/airpods-delay">Yours truly on what’s going on with the AirPods delay</a>: unexpected manufacturing problems.</li>
+<li><a href="https://www.relay.fm/tc">Thoroughly Considered</a>: the Studio Neat podcast.</li>
+<li><a href="https://twitter.com/JohnPaczkowski/status/806260547859542016">John Paczkowski summarizing the inauspicious partner list</a> at the launch of Apple’s single sign-on service for TV content.</li>
+<li><a href="http://www.nytimes.com/2016/12/07/technology/personaltech/the-gadget-apocalypse-is-upon-us.html?ref=technology">Farhad Manjoo explains why he thinks gadgets are dying as a category</a>: smartphones, probably. </li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>174: ‘Election Escape Key’ With Joanna Stern</title>
+ <link>http://daringfireball.net/thetalkshow/2016/11/30/ep-174</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/11/30/ep-174</guid>
+ <pubDate>Wed, 30 Nov 2016 23:44:24 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/295659455-thetalkshow-174-joanna-stern.mp3" length="87717228" />
+ <itunes:duration>02:01:50</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Joanna Stern returns to the show to talk about the new MacBook Pros (and their keyboards), stockpiling old MacBook Airs, dongles, Touch ID, SnapChat Spectacles, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Joanna Stern returns to the show to talk about the new MacBook Pros (and their keyboards), stockpiling old MacBook Airs, dongles, Touch ID, SnapChat Spectacles, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>thetalkshow</strong> for free expedited shipping.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos, printed directly on glass. Buy now to get them in time for the holidays.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.wsj.com/articles/apple-macbook-pro-review-same-better-and-worse-1479128340">Joanna’s review of the new MacBook Pros</a>.</li>
+<li><a href="http://daringfireball.net/2016/11/new_touch_bar_equipped_macbook_pros">My review</a>.</li>
+<li><a href="https://twitter.com/JoannaStern/status/803814443272511488">Joanna and Walt Mossberg talking crazy about stockpiling MacBook Airs</a>.</li>
+<li><a href="http://www.wsj.com/articles/adapter-or-die-must-have-dongles-for-your-iphone-7-android-and-laptop-1476296274">Joanna’s guide to the adapters and dongles — lots and lots of dongles — you might need for a new MacBook Pro</a>.</li>
+<li><a href="http://www.wsj.com/amp/articles/snapchat-spectacles-review-wearing-a-camera-is-cool-and-creepy-1480449418">Joanna’s review of SnapChat Spectacles</a></li>
+<li>Mark Gurman’s reports on <a href="https://www.bloomberg.com/news/articles/2016-11-21/apple-said-to-abandon-development-of-wireless-routers-ivs0ssec">Apple getting out of the AirPort base station market</a> and <a href="https://www.bloomberg.com/news/articles/2016-11-29/amazon-said-to-plan-premium-alexa-speaker-with-large-screen">Amazon making a new Echo with a built-in 7-inch display for the kitchen</a>.</li>
+<li>Adam Geitgey: “<a href="https://medium.com/@ageitgey/the-new-macbook-pro-is-kind-of-great-for-hackers-64c1c577a4d2">The New MacBook Pro Is Kind of Great for Hackers</a>”.</li>
+<li><a href="http://www.monoprice.com/">Monoprice</a>.</li>
+<li><a href="http://griffintechnology.com/intl/breaksafe-magnetic-usb-c-power-cable">Griffin’s Breaksafe</a>, a dongle-plus-nubbin replacement for MagSafe on USB-C equipped MacBooks.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>173: ‘Fork the Universe’ With Jason Snell</title>
+ <link>http://daringfireball.net/thetalkshow/2016/11/18/ep-173</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/11/18/ep-173</guid>
+ <pubDate>Fri, 18 Nov 2016 21:05:50 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/293700831-thetalkshow-173-jason-snell.mp3" length="116004012" />
+ <itunes:duration>02:41:03</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show to talk about the new MacBook Pros and the Touch Bar, and Apple’s new book chronicling the last 20 years of their industrial design, “Designed by Apple in California”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show to talk about the new MacBook Pros and the Touch Bar, and Apple’s new book chronicling the last 20 years of their industrial design, <em>Designed by Apple in California</em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: An exceptional shave at a fraction of the price. Use code <strong>talkshow</strong> for $5 off your first purchase.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://sixcolors.com/post/2016/11/macbook-pro-touch-bar-review-keyboard-chameleon/">Jason’s review of the new MacBook Pros with Touch Bar</a>.</li>
+<li><a href="http://daringfireball.net/2016/11/new_touch_bar_equipped_macbook_pros">My review of the same</a>.</li>
+<li><a href="https://www.studioneat.com/products/glif">The Glif iPhone tripod mount</a>.</li>
+<li><a href="http://barebones.com/bbedit">BBEdit</a>.</li>
+<li><a href="http://pcalc.com/">PCalc</a>.</li>
+<li><a href="https://twitter.com/jamesthomson/status/798867727142227968">James Thompson’s Easter egg idea for PCalc’s Touch Bar support</a>.</li>
+<li><a href="http://regex.info/book.html">Jeffrey Friedl’s <em>Mastering Regular Expressions</em></a>, the greatest book that ever was or will be written on regular expressions.</li>
+<li><a href="https://macosxautomation.com/about.html">Sal Soghoian’s automation site for AppleScript, Automator, and more</a>.</li>
+<li><a href="http://daringfireball.net/2008/05/title_case">My Title Case Script</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Control_Strip">Control Strip from classic Mac OS</a>.</li>
+<li><a href="https://www.macbartender.com/">Bartender utility for today’s MacOS</a>.</li>
+<li>Horace Dediu: “<a href="http://www.asymco.com/2016/11/02/wherefore-art-thou-macintosh/">Wherefore art thou Macintosh?</a>”</li>
+<li><a href="http://daringfireball.net/2013/02/the_c_word">Yours truly on Microsoft and the word “compromise” back in 2013</a>.</li>
+<li><em><a href="http://iconicbook.com/work/">Iconic</a></em>, Jonathan Zufi’s excellent 2013 book on Apple’s design work.</li>
+<li><em><a href="http://www.apple.com/shop/product/MLXF2LL/A/designed-by-apple-in-california-102-x-128-inches">Designed by Apple in California</a></em>.</li>
+<li><a href="https://www.taschen.com/">Taschen</a>, coffee table book publisher extraordinaire.</li>
+<li><a href="http://www.wallpaper.com/design/apple-charts-twenty-years-of-product-design-in-new-book">Jony Ive’s interview with Wallpaper</a> on <em>Designed by Apple in California</em>.</li>
+<li><a href="http://parislemon.com/post/474453233/when-i-got-back-here-in-1997-i-was-looking-for">“I said, ‘Get it away!’ and I shipped all that shit off to Stanford.”</a></li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>172: ‘Holiday Party’ With Merlin Mann</title>
+ <link>http://daringfireball.net/thetalkshow/2016/11/09/ep-172</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/11/09/ep-172</guid>
+ <pubDate>Wed, 9 Nov 2016 19:28:11 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/292310868-thetalkshow-172-merlin-mann.mp3" length="91523029" />
+ <itunes:duration>02:07:03</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Merlin Mann returns to the show to discuss the election, by which I mean we mostly talk *around* the election. I hope we never do another show again with such heavy hearts, but whatever you think about this election, I think you'll like this show.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+Merlin Mann returns to the show to discuss the election, by which I mean we mostly talk *around* the election. I hope we never do another show again with such heavy hearts, but whatever you think about this election, I think you'll like this show.
+
+Sponsored by:
+
+* [Squarespace](http://squarespace.com/gruber): Build it beautiful. Use code __talkshow__ for 10 percent off your first order.
+* [Automatic](http://automatic.com/talkshow): Your smart driving assistant. Get $20 off with this link.
+* [Circle](http://meetcircle.com/): Disney's new way for families to manage content and time across devices. Use code __thetalkshow__ to get free shipping and $10 off.
+
+
+This episode of The Talk Show was edited by [Caleb Sexton](https://twitter.com/calebsexton).
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>171: ‘Prisoner’s Dilemma Multitasking’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2016/10/26/ep-171</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/10/26/ep-171</guid>
+ <pubDate>Wed, 26 Oct 2016 17:34:02 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/290158801-thetalkshow-171-john-moltz.mp3" length="90786069" />
+ <itunes:duration>02:06:01</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show. Topics include what we expect from this week's Apple Event for new Mac hardware, and my impressions of the Google Pixel phone after a week using one.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show. Topics include what we expect from this week’s Apple Event for new Mac hardware, and my impressions of the Google Pixel phone after a week using one.</p>
+
+<p>This week’s show introduces labeled chapter marks for subject matter. If you use a podcast player that supports them, such as <a href="https://overcast.fm/">Overcast</a>, let me know what you think.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://www.mailchimp.com/">MailChimp</a>: MailChimp: send better email, sell more stuff.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://arstechnica.com/information-technology/2016/10/inside-the-machine-uprising-how-cameras-dvrs-took-down-parts-of-the-internet/">Ars Technica on the Mirai botnet that uses insecure Internet of Things devices</a>.</li>
+<li><a href="https://krebsonsecurity.com/2016/10/hacked-cameras-dvrs-powered-todays-massive-internet-outage/">Brian Krebs on the Internet of Things botnet</a>.</li>
+<li><a href="http://www.macrumors.com/2016/10/25/images-of-new-macbook-pro-leaked/">Images of the new MacBook Pro Magic Toolbar that leaked from Apple itself as resources in MacOS 10.12.1</a>.</li>
+<li><a href="https://twitter.com/darth/status/791004914583384064">Darth on the Magic Toolbar and Esc-less hardware keyboard</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>170: ‘Kicking Dirt on Them While They’re on Fire’ With Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2016/10/16/ep-170</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/10/16/ep-170</guid>
+ <pubDate>Sun, 16 Oct 2016 18:25:34 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/288432872-thetalkshow-170-ben-thompson.mp3" length="123389078" />
+ <itunes:duration>02:51:19</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ben Thompson returns to the show. Topics include voice control with AirPods, how to get your entire music library onto an iPhone while using iCloud Music Library, Apple Watch durability, the Dash/App Store controversy, the disappointing and frustrating state of Siri and voice-driven AI assistants, Google's new Pixel phones and the strategy behind them, Snap's (née Snapchat) Spectacles (and why they're nothing like Google's ill-fated Glass), and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ben Thompson returns to the show. Topics include voice control with AirPods, how to get your entire music library onto an iPhone while using iCloud Music Library, Apple Watch durability, the Dash/App Store controversy, the disappointing and frustrating state of Siri and voice-driven AI assistants, Google's new Pixel phones and the strategy behind them, Snap's (née Snapchat) Spectacles (and why they're nothing like Google's ill-fated Glass), and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="https://www.harrys.com/talkshow">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>talkshow</strong> and get a free bottle of Harry’s post shave balm.</li>
+<li><a href="http://awaytravel.com/talkshow">Away</a>: First-class luggage at a coach price, including built-in USB chargers.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://forums.imore.com/apple-music/367913-force-downloading-all-music-ios10-apple-music-library.html">How to download your entire music library to a device using iCloud Music Library</a>.</li>
+<li><a href="https://tidbits.com/article/3627">1991 TidBITS story on NowMenus</a>, a classic Mac OS utility.</li>
+<li><a href="https://itunes.apple.com/us/app/bettersnaptool/id417375580?mt=12">BetterSnapTool</a>, a Mac window management utility Ben uses.</li>
+<li>Clipboard history managers for Mac:
+<ul><li><a href="http://www.apprywhere.com/copy-em-paste.html">Copy’em Paste</a></li>
+<li><a href="https://www.obdev.at/products/launchbar">LaunchBar</a></li>
+<li><a href="http://tapbots.com/pastebot/">Pastebot</a></li>
+<li><a href="https://www.keyboardmaestro.com/">Keyboard Maestro</a></li></ul></li>
+<li><a href="http://draftin.com/">Draft</a>: web app that’s Ben’s preferred writing tool.</li>
+<li><a href="http://fluidapp.com/">Fluid</a>: longstanding utility that let’s you turn any website into a standalone Mac app.</li>
+<li>Me on Twitter, <a href="https://twitter.com/gruber/status/783016045481033729">posting a photo of my wife’s Apple Watch</a> that fell apart coming off the charger. And then <a href="https://twitter.com/gruber/status/783037820457787392">cracking wise</a>.</li>
+<li>Me on the <a href="http://daringfireball.net/2016/10/apple_dash_controversy">the Dash/App Store controversy</a>.
+<ul><li><a href="http://www.imore.com/dash-developer-speaks-heres-his-full-story">Dash developer Bogdan Popescu’s “full story”, in a statement to iMore</a>.</li>
+<li><a href="http://forums.macrumors.com/threads/apple-says-1-000-fraudulent-reviews-were-detected-across-two-accounts-owned-by-dash-developer-update-developer-responds.2005850/page-12#post-23708918">The circumstances that led Apple to link to the two developer accounts</a>.</li></ul></li>
+<li>Phil Stokes on Dropbox’s abuse of admin privileges and Accessibility permissions on MacOS: <a href="http://applehelpwriter.com/2016/07/28/revealing-dropboxs-dirty-little-security-hack/">part 1</a> and <a href="http://applehelpwriter.com/2016/08/29/discovering-how-dropbox-hacks-your-mac/">part 2</a>.</li>
+<li>John Hempton of Bronte Capital on Twitter:
+<ul><li>“<a href="http://brontecapital.blogspot.tw/2016/10/some-comment-on-twitter-buyout-rumours.html">Some Comment on the Twitter Buyout Rumors</a>”</li>
+<li>“<a href="http://brontecapital.blogspot.tw/2016/10/measuring-how-bad-twitter-is.html">Measuring How Bad Twitter Is</a>”</li></ul></li>
+<li>Walt Mossberg: “<a href="http://www.recode.net/2016/10/12/13251618/mossberg-apple-siri-digital-assistant-dumb">Why Does Siri Seem So Dumb?</a>”</li>
+<li>Ben Thompson: “<a href="https://stratechery.com/2016/chat-and-the-consumerization-of-it/">Chat and the Consumerization of It</a>”.</li>
+<li>Charlie Warzel, writing for BuzzFeed last year — “<a href="https://www.buzzfeed.com/charliewarzel/apples-junk-drawer-problem">Apple’s Junk Drawer Problem</a>” — under the premise that most people replace Apple’s apps on the iPhone with Google’s.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>169: ‘A Murder of Eeros’ With Matthew Panzarino</title>
+ <link>http://daringfireball.net/thetalkshow/2016/10/06/ep-169</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/10/06/ep-169</guid>
+ <pubDate>Thu, 6 Oct 2016 17:31:46 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/286422047-thetalkshow-169-matthew-panzarino.mp3" length="85730101" />
+ <itunes:duration>01:59:00</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Matthew Panzarino returns to the show. Topics include Google’s “Made by Google” hardware announcements (the Pixel phones, Google Wi-Fi routers, their Amazon Echo competitor Google Home), mobile photography, Samsung’s acquisition of Viv, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Matthew Panzarino returns to the show. Topics include Google’s “Made by Google” hardware announcements (the Pixel phones, Google Wi-Fi routers, their Amazon Echo competitor Google Home), mobile photography, Samsung’s acquisition of Viv, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your pictures, printed directly on glass.</li>
+<li><a href="https://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>thetalkshow</strong> for free overnight shipping.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>TechCrunch: “<a href="https://techcrunch.com/2016/10/05/samsung-acquires-viv-a-next-gen-ai-assistant-built-by-creators-of-apples-siri/">Samsung Acquires Viv, a Next-Gen AI Assistant Built by Creators of Apple’s Siri</a>”.</li>
+<li><a href="http://www.theverge.com/2016/10/5/13175000/samsung-galaxy-note-7-fire-replacement-plane-battery-southwest">Replacement Samsung Galaxy Note 7 phone catches fire on Southwest plane</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=q4y0KOeXViI">Video of Google’s “Made by Google” event</a>.</li>
+<li><a href="https://madeby.google.com/phone/specs/">Pixel phone specs</a>.</li>
+<li><a href="http://www.dxo.com/us/dxo-one">The DxO One camera peripheral for iPhone</a>.</li>
+<li><a href="https://twitter.com/panzer/status/218035655287128064">Matthew’s 2012 “Hardware + Software Epiphany” tweet</a>.</li>
+<li><a href="https://hereplus.me/">The Here One in-ear “wireless listening system”</a>.</li>
+<li><a href="http://daringfireball.net/linked/2011/07/21/bodenheimer-jobs">Steve Jobs meets ESPN president George Bodenheimer</a>. Classic story.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>168: ‘You’ve Got the Nubbin’ With Serenity Caldwell</title>
+ <link>http://daringfireball.net/thetalkshow/2016/09/27/ep-168</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/09/27/ep-168</guid>
+ <pubDate>Tue, 27 Sep 2016 18:26:32 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/285013519-thetalkshow-168-serenity-caldwell.mp3" length="111762486" />
+ <itunes:duration>02:35:10</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show to discuss Apple’s new stuff: the iPhone 7 and 7 Plus, Apple Watch Series 2 (and the semi-new Series 1), iOS 10, MacOS Sierra, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Serenity Caldwell returns to the show to discuss Apple’s new stuff: the iPhone 7 and 7 Plus, Apple Watch Series 2 (and the semi-new Series 1), iOS 10, MacOS Sierra, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your pictures, printed directly on glass. Great gift idea.</li>
+<li><a href="https://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://automatic.com/talkshow">Automatic</a>: Your smart driving assistant. The best dingus you’ll ever buy for your car. Save $20 with this link.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.wired.com/2012/08/apple-amazon-mat-honan-hacking/">Mat Honan story of getting hacked back in 2012</a>.</li>
+<li><a href="https://support.apple.com/en-us/HT204518">The pain-in-the-ass, don’t-do-it-in-the-wrong-order process of backing up and restoring an Apple Watch</a>.</li>
+<li>iMore: “<a href="http://www.imore.com/what-you-need-know-about-backing-your-apple-watch">What You Need to Know About Backing Up Your Apple Watch</a>”.</li>
+<li><a href="http://www.senacases.com">Sena cases for iPhone 7</a>. (Serenity mentioned using one.)</li>
+<li>“<a href="https://twitter.com/settern/status/780048275042807808">Who needs a slider?</a>” Example video from Serenity showing how slo-mo video from iPhone 7 can create a smooth tracking product hero shot.</li>
+<li><a href="https://twitter.com/derekduncan/status/780135277993926656">More slo-mo on iPhone 7</a>.</li>
+<li><a href="http://austinmann.com/trek/iphone-7-camera-review-rwanda">Austin Mann’s stunning iPhone 7 camera review in Rwanda</a>.</li>
+<li><a href="https://twitter.com/ayanonagon/status/780436099130757120/">Great use of iPhone 7 Plus’s Portrait mode for product photography, by Ayaka Nonaka</a>. This is the “pair of boots” photo.</li>
+<li><a href="https://www.flickr.com/photos/gruber/albums/72157674251379775">My Flickr album of iPhone 7 Plus Portrait mode comparison shots</a>, including this one of <a href="https://www.flickr.com/photos/gruber/29341357003/in/album-72157674251379775/">a whisky bottle</a> mentioned during the show.</li>
+<li><a href="http://www.imore.com/camera-tests-iphone-7-plus-portrait-mode-vs-canon-rebel-dslr">Serenity’s camera test between iPhone 7 Plus Portrait mode and a Canon DSLR</a>.</li>
+<li><a href="http://www.imore.com/apple-watch-series-2-review">Serenity’s just-released review of Apple Watch Series 2</a>, including a terrific <a href="https://youtu.be/Shzatp4L7zc">video shot entirely with iPhone 7</a>.</li>
+<li><a href="https://itunes.apple.com/us/app/noise/id1011132019?mt=8">Noise</a>: iOS piano keyboard app with 3D Touch haptic feedback.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>167: ‘Hey Bruh You Bumped Muh Hat’ With Jim Dalrymple</title>
+ <link>http://daringfireball.net/thetalkshow/2016/09/16/ep-167</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/09/16/ep-167</guid>
+ <pubDate>Fri, 16 Sep 2016 20:40:19 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/283271635-thetalkshow-167-jim-dalrymple.mp3" length="106302018" />
+ <itunes:duration>02:27:20</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jim Dalrymple returns to the show, to discuss last week's Apple event in San Francisco, the iPhone 7 and 7 Plus, Apple Watch Series 2, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jim Dalrymple returns to the show, to discuss last week’s Apple event in San Francisco, the iPhone 7 and 7 Plus, Apple Watch Series 2, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://CaptoForMac.com/">Capto</a>: Global Delight’s screen capture and video-editing app for Mac. 15-day free trial and save 25 percent with code <strong>FIREBALL</strong>.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>THETALKSHOW</strong> for $50 toward your mattress.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://en.wikipedia.org/wiki/Chicago_Tylenol_murders">The 1982 Chicago Tylenol murders and Johnson &amp; Johnson’s handling thereof</a>.</li>
+<li><a href="http://www.loopinsight.com/2016/09/15/jony-ive-says-aluminium/">Jony Ive says “aluminium”</a>.</li>
+<li><a href="https://www.periscope.tv/w/aqs1xTUzOHwxa3ZKcFZxbXZia0tFJcOQhEEAOjGhoiKlnWN16ILSbLK_e38ZORxri2ty7jw=">My Periscope broadcast from the hands-on area at the event</a>. Lots of special guest stars.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>166: ‘Way of the Future’ With Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2016/09/05/ep-166</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/09/05/ep-166</guid>
+ <pubDate>Mon, 5 Sep 2016 16:58:08 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/281524096-thetalkshow-166-rene-ritchie.mp3" length="80529596" />
+ <itunes:duration>01:51:47</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show to discuss what we expect to see at Apple’s upcoming event in San Francisco: new iPhones (without headphone jacks, and with a radical new two-lens camera on the Plus-sized model), Apple Watch 2 (and a new fall lineup of watch bands). We also discuss Samsung’s recall of the Galaxy Note 7 (because of exploding batteries), when we’ll see new Mac hardware and new iPads, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show to discuss what we expect to see at Apple’s upcoming event in San Francisco: new iPhones (without headphone jacks, and with a radical new two-lens camera on the Plus-sized model), Apple Watch 2 (and a new fall lineup of watch bands). We also discuss Samsung’s recall of the Galaxy Note 7 (because of exploding batteries), when we’ll see new Mac hardware and new iPads, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="http://automatic.com/talkshow">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.imore.com/2016-iphone-event">Apple’s event invitation</a>, suggesting depth-of-field camera effects.</li>
+<li>Rene Ritchie: “<a href="https://medium.com/appletalk/how-apple-does-camera-50103e7c002d">How Apple Does Camera</a>”.</li>
+<li><a href="http://www.macrumors.com/2016/09/03/iphone-7-5-colors-ipx7-12mp-cameras/">Ming-Chi Kuo on what he expects from the iPhone 7 based on supply-chain sources</a>.</li>
+<li><a href="http://daringfireball.net/linked/2016/09/03/apple-pencil">Tim Cook’s possibly intriguing slip of the tongue regarding Apple Pencil working with iPhones</a>.</li>
+<li>Jason Snell on new Mac hardware: “<a href="https://sixcolors.com/post/2016/08/the-mac-if-not-sept-7-then-when/">If Not September 7, Then When?</a>”</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>165: ‘I Do Feel the Pea’ With Guy English</title>
+ <link>http://daringfireball.net/thetalkshow/2016/08/27/ep-165</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/08/27/ep-165</guid>
+ <pubDate>Sat, 27 Aug 2016 20:20:27 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/280221594-thetalkshow-165-guy-english.mp3" length="92538091" />
+ <itunes:duration>02:08:27</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Guy English returns to the show. Topics include Tim Cook’s five year anniversary as Apple CEO, Steven Levy’s behind-the-scenes look at Apple’s AI and machine learning efforts, Apple’s decision to change the pistol emoji from a realistic revolver to a toy squirt gun, and the demise of Vesper. Also: our favorite Looney Tunes characters.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Guy English returns to the show. Topics include Tim Cook’s five year anniversary as Apple CEO, Steven Levy’s behind-the-scenes look at Apple’s AI and machine learning efforts, Apple’s decision to change the pistol emoji from a realistic revolver to a toy squirt gun, and the demise of Vesper. Also: our favorite Looney Tunes characters.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your pictures, printed directly on glass.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.wasdkeyboards.com/index.php/products/sampler-kit.html">WASD 6-Key Cherry MX Switch Tester</a>.</li>
+<li><a href="http://www.washingtonpost.com/sf/business/wp/2016/08/13/2016/08/13/tim-cook-the-interview-running-apple-is-sort-of-a-lonely-job/">Tim Cook's excellent interview in The Washington Post</a>.</li>
+<li>Jan Dawson: "<a href="https://medium.com/beyond-devices/five-years-of-tim-cooks-apple-in-charts-9e5488f48fce">Five Years of Tim Cook's Apple in Charts</a>".</li>
+<li>Steven Levy: "<a href="https://backchannel.com/an-exclusive-look-at-how-ai-and-machine-learning-work-at-apple-8dbfb131932b">An Exclusive Inside Look at How Artificial Intelligence and Machine Learning Work at Apple</a>".</li>
+<li>Levy's excellent books, <em><a href="http://www.simonandschuster.com/books/The-Perfect-Thing/Steven-Levy/9780743285230">The Perfect Thing</a></em> (about the iPod) and <em><a href="http://www.simonandschuster.com/books/In-The-Plex/Steven-Levy/9781416596585">In the Plex</a></em> (about Google's inner workings).</li>
+<li>Andy Hertzfeld's book on the development of the original Macintosh, <em><a href="https://www.amazon.com/Revolution-Valley-Insanely-Great-Story/dp/1449316247">Revolution in the Valley</a></em>, and the website with much of the same source material, <a href="http://folklore.org/">Folklore.org</a>.</li>
+<li>Yours truly: "<a href="http://daringfireball.net/2016/08/vesper_adieu">Vesper, Adieu</a>".</li>
+<li>Brent Simmons: "<a href="http://inessential.com/2016/08/21/last_vesper_update_sync_shutting_down">Last Vesper Update</a>", "<a href="http://inessential.com/2016/08/21/more_notes_on_vesper">More Notes on Vesper</a>", and "<a href="http://inessential.com/2016/08/25/why_vesper_didnt_start_as_a_web_app">Why Vesper Didn’t Start as a Web App</a>".</li>
+<li>Yours truly: "<a href="http://daringfireball.net/2016/08/apple_gun_emoji">Apple and the Pistol Emoji</a>".</li>
+<li><a href="https://twitter.com/AmosPosner/status/573228578013384704">Chuck Jones’s rules for the Road Runner and Wile E. Coyote</a>.</li>
+<li>“<a href="https://vimeo.com/68561196">The High and the Flighty</a>” — classic Looney Tunes Foghorn Leghorn short.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>164: ‘Enjoyably Clicky’ With Jason Snell</title>
+ <link>http://daringfireball.net/thetalkshow/2016/08/12/ep-164</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/08/12/ep-164</guid>
+ <pubDate>Fri, 12 Aug 2016 15:10:30 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/277991823-thetalkshow-164-jason-snell.mp3" length="104015035" />
+ <itunes:duration>02:24:24</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show. Topics include the latest rumors regarding the upcoming new iPhones and MacBook Pros, Rick Tetzeli’s cover story for Fast Company on Tim Cook’s Apple, and the connection between baseball and mechanical keyboards.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show. Topics include the latest rumors regarding the upcoming new iPhones and MacBook Pros, Rick Tetzeli’s cover story for Fast Company on Tim Cook’s Apple, and the connection between baseball and mechanical keyboards.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://BoomForiOS.com/">Boom for iOS</a>: Music player app that redefines the way you listen to music on your iPhone or iPad. Free download.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your pictures, printed directly on glass.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>thetalkshow</strong> for free overnight shipping.</li>
+</ul>
+
+<p>Links:
+
+<ul>
+<li><a href="https://sixcolors.com/">Six Colors</a>.</li>
+<li>Upgrade episode 101: "<a href="https://www.relay.fm/upgrade/101">It Works Great in California</a>".</li>
+<li><a href="http://www.bloomberg.com/news/articles/2016-08-08/new-iphone-said-to-have-dual-camera-pressure-sensitive-button">Mark Gurman's report for Bloomberg on this year's new iPhones</a>.</li>
+<li><a href="http://www.bloomberg.com/news/articles/2016-08-10/apple-said-to-plan-first-pro-laptop-overhaul-in-four-years">Gurman on new MacBook Pros</a>.</li>
+<li>UX Magazine: "<a href="https://uxmag.com/articles/the-impossible-bloomberg-makeover">The Impossible Bloomberg Makeover</a>" -- why Bloomberg terminals have an inscrutable UI that they won't change.</li>
+<li><a href="http://www.wasdkeyboards.com/">WASD Keyboards</a>.</li>
+<li><a href="https://www.google.com/search?q=apple+iigs+keyboard&amp;rls=en&amp;tbm=isch">The Apple IIgs keyboard</a>.</li>
+<li><a href="https://mechanicalkeyboards.com/shop/index.php?l=product_list&amp;c=169">Leopold keyboards</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>163: ‘Low Grade Scam’ With Joanna Stern</title>
+ <link>http://daringfireball.net/thetalkshow/2016/07/31/ep-163</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/07/31/ep-163</guid>
+ <pubDate>Sun, 31 Jul 2016 17:21:18 EDT</pubDate>
+ <itunes:duration>01:25:28</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/276227872-thetalkshow-163-joanna-stern.mp3" length="61586054" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Wall Street Journal columnist Joanna Stern returns to the show. Topics include media gossip on Eddy Cue negotiations with cable TV companies, Apple's aging notebook lineup, Apple's upcoming product announcement event, the Windows 10 upgrade fiasco, and our sweaty feet.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Wall Street Journal columnist Joanna Stern returns to the show. Topics include media gossip on Eddy Cue negotiations with cable TV companies, Apple’s aging notebook lineup, Apple’s upcoming product announcement event, the Windows 10 upgrade fiasco, and our sweaty feet.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your pictures, printed directly on glass.</li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.hypershop.com/products/usb-c-5-in-1-hub-with-pass-though-usb-c-charging">The HyperDrive USB-C 5-in-one hub for the new MacBooks</a>.</li>
+<li><a href="http://www.toms.com/">Toms shoes</a>.</li>
+<li><a href="http://www.wsj.com/articles/this-50-smartphone-may-be-all-you-need-1468956181?mod=ST1">Joanna on the $50 (with lock-screen ads) Blu R1 HD phone from Amazon</a>.</li>
+<li><a href="http://www.wsj.com/articles/windows-10-anniversary-your-survival-guide-to-the-perpetual-upgrades-1469451932?mod=ST1">Joanna on the Windows 10 upgrade</a>.</li>
+<li><a href="http://daringfireball.net/linked/2016/07/28/cue-tv-execs">The WSJ on Apple’s “hard-charging” negotiations with TV networks (and Eddy Cue’s apparel)</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>162: ‘Special Bullying Venue’ With Glenn Fleishman</title>
+ <link>http://daringfireball.net/thetalkshow/2016/07/23/ep-162</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/07/23/ep-162</guid>
+ <pubDate>Sat, 23 Jul 2016 18:18:52 EDT</pubDate>
+ <itunes:duration>02:38:40</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/275060154-thetalkshow-162-glenn-fleishman.mp3" length="114284031" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Glenn Fleishman returns to the show. Topics include security vulnerabilities on MacOS and iOS, ransomware, counterfeit products and outright fraud on Amazon, and online harassment and “free speech”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Glenn Fleishman returns to the show. Topics include security vulnerabilities on MacOS and iOS, ransomware, counterfeit products and outright fraud on Amazon, and online harassment and “free speech”.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://bit.ly/boom2mac">Boom 2</a>: System-wide volume booster for Mac, 33 percent off for a brief time.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="https://www.fractureme.com/podcast">Fracture</a>: Your photos printed directly on glass. Save 10 percent on your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.macworld.com/article/3098845/macs/stagefright-for-ios-and-os-x-dont-lower-the-curtain-yet.html">Glenn Fleishman, writing for Macworld on recent image processing bugs in MacOS and iOS</a>.</li>
+<li>Motherboard: “<a href="http://motherboard.vice.com/read/warranty-void-if-removed-stickers-are-illegal">How Sony, Microsoft, and Other Gadget Makers Violate Federal Warranty Law</a>”.</li>
+<li><a href="http://daringfireball.net/linked/2016/07/14/ransomware-scam">New Ransomware Takes Your Money, Deletes Files Anyway</a>.</li>
+<li><a href="http://www.norstad.org/">John Norstad</a>, developer of the fantastic early-1990s Mac anti-virus utility Disinfectant.</li>
+<li><a href="http://www.pcworld.com/article/3097268/security/why-ransomware-criminals-need-great-customer-service.html">F-Secure tests the customer service of ransomware pirates</a>.</li>
+<li><a href="http://isbn.nu/">isbn.nu</a>: Glenn’s long-standing book search and price comparison site.</li>
+<li><a href="http://www.slackhelp.me/">Glenn’s two new books on Slack</a>: <em>Take Control of Slack Basics</em> and <em>Take Control of Slack Admin</em>.</li>
+<li><a href="https://blog.randi.io/good-game-auto-blocker/">Randi Harper’s Good Game Auto Blocker utility for Twitter</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>161: ‘Mumbles and Grunts’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2016/07/17/ep-161</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/07/17/ep-161</guid>
+ <pubDate>Sun, 17 Jul 2016 17:34:19 EDT</pubDate>
+ <itunes:duration>02:06:01</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/274129183-thetalkshow-161-john-moltz.mp3" length="90779147" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Moltz returns to the show. Topics include parenting thoughts on controlling the amount of time our kids spend playing games and watching YouTube and Netflix, why Google's apps for iOS are better than their apps for Android, Chromebooks in schools, Windows Phone's bright future, Pokemon Go, and more. We also insult the driving abilities of people from Massachusetts, New Jersey, and Canada.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>John Moltz returns to the show. Topics include parenting thoughts on controlling the amount of time our kids spend playing games and watching YouTube and Netflix, why Google's apps for iOS are better than their apps for Android, Chromebooks in schools, Windows Phone's bright future, Pokemon Go, and more. We also insult the driving abilities of people from Massachusetts, New Jersey, and Canada.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://wealthfront.com/thetalkshow">Wealthfront</a>: An automated, passive, low-cost investment solution.</li>
+<li><a href="http://ministryofsupply.com/talkshow">Ministry of Supply</a>: Dress smarter. Work smarter.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.ingress.com/">Ingress</a> -- Niantec's augmented-reality mobile game that preceded Pokemon Go.</li>
+<li><a href="https://www.tbray.org/ongoing/When/201x/2015/10/04/Ingress-2015">Tim Bray on Ingress</a>.</li>
+<li>Dieter Bohn: "<a href="http://www.theverge.com/2016/7/8/12109832/google-apps-iphone-android-motion-stills-gboard-search-hangouts">Google Is Making Better Apps for the iPhone Than for Android</a>" </li>
+<li><a href="http://www.recode.net/2016/6/30/12053348/john-gruber-daring-fireball-apple-podcast-recode-media">Yours truly on Peter Kafka's Recode Media podcast</a>.</li>
+<li><a href="http://www.recode.net/2016/5/12/11654688/samantha-bee-how-to-hire-more-women">Samantha Bee's appearance on Recode Media</a>.</li>
+<li><a href="https://sparkmailapp.com/">Spark — excellent third-party email client for iOS</a>.</li>
+<li><a href="http://bgr.com/2011/05/10/windows-phone-will-beat-android-in-2013-analyst-explains/">Analyst in 2011 predicts Windows Phone will eclipse Android by 2013</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>160: ‘Fresh Out of Prison’ With Nilay Patel</title>
+ <link>http://daringfireball.net/thetalkshow/2016/07/01/ep-160</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/07/01/ep-160</guid>
+ <pubDate>Fri, 1 Jul 2016 19:14:19 EDT</pubDate>
+ <itunes:duration>01:47:10</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/271789135-thetalkshow-160-nilay-patel.mp3" length="77207178" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Nilay Patel joins the show. Topics include The Verge and Recode (and the state of the media industry at large), what’s going on with the lack of updates to professional Mac hardware, and, of course, Apple’s purported removal of the headphone jack on the upcoming new iPhones.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Nilay Patel joins the show. Topics include The Verge and Recode (and the state of the media industry at large), what’s going on with the lack of updates to professional Mac hardware, and, of course, Apple’s purported removal of the headphone jack on the upcoming new iPhones.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi that works. Use code <strong>THETALKSHOW</strong> for free overnight shipping.</li>
+<li><a href="http://harrys.com/talkshow">Harry’s</a>: An exceptional shave at a fraction of the price. Use code <strong>TALKSHOW</strong> for $5 off your first purchase.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>THETALKSHOW</strong> for $50 toward your mattress.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Nilay Patel: “<a href="http://www.theverge.com/circuitbreaker/2016/6/21/11991302/iphone-no-headphone-jack-user-hostile-stupid">Taking the Headphone Jack Off Phones Is User-Hostile and Stupid</a>”.</li>
+<li>Cory Doctorow: “<a href="http://boingboing.net/2016/06/22/phones-without-headphone-jacks.html">Phones Without Headphone Jacks Are Phones With DRM for Audio</a>”.</li>
+<li>Yours truly: “<a href="http://daringfireball.net/2016/06/headphone_jacks_are_the_new_floppy_drives">Headphone Jacks Are the New Floppy Drives</a>”.</li>
+<li>Jason Snell: “<a href="https://sixcolors.com/post/2016/07/headphone-jack/">Searching for a Good Reason to Remove the Headphone Jack</a>”.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>159: ‘Phil Z’ With Marco Arment</title>
+ <link>http://daringfireball.net/thetalkshow/2016/06/25/ep-159</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/06/25/ep-159</guid>
+ <pubDate>Sat, 25 Jun 2016 21:24:05 EDT</pubDate>
+ <itunes:duration>02:44:50</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/270871634-thetalkshow-159-marco-arment.mp3" length="118721171" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Marco Arment returns to the show. Topics include WWDC 2016, Phil Schiller and Craig Federighi's appearance on the live episode of this show during WWDC, the purported removal of the standard headphone jack from the upcoming new iPhones, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Marco Arment returns to the show. Topics include WWDC 2016, Phil Schiller and Craig Federighi's appearance on the live episode of this show during WWDC, the purported removal of the standard headphone jack from the upcoming new iPhones, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://wealthfront.com/thetalkshow">Wealthfront</a>: An automated investment service with over $3 billion in client assets under management.</li>
+<li><a href="http://ministryofsupply.com/talkshow">Ministry of Supply</a>: Dress smarter. Work smarter.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With Audible, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://daringfireball.net/thetalkshow/2016/06/17/ep-158">The Talk Show: Live From WWDC 2016</a>.</li>
+<li><a href="http://josh-ua.co/blog/2015/3/15/usb-c-dimensions-size-comparison-with-the-lightning-port-and-usb-type-a">Diagram comparing USB-C to Lightning</a>.</li>
+<li>Apple Insider: "<a href="http://appleinsider.com/articles/16/06/20/apple-pulls-legacy-non-retina-macbook-pro-from-retail-store-displays">Apple Pulls Legacy Non-Retina MacBook Pro From Retail Store Displays</a>".</li>
+<li><a href="http://www.imore.com/apple-discontinues-thunderbolt-display">Apple discontinues the Thunderbolt display</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=nHCgG7e-rC8&amp;feature=youtu.be&amp;app=desktop">Lil Wayne pours two bottles of champagne on his Samsung Galaxy S7</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>158: Live From WWDC 2016 With Guests Phil Schiller and Craig Federighi</title>
+ <link>http://daringfireball.net/thetalkshow/2016/06/17/ep-158</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/06/17/ep-158</guid>
+ <pubDate>Fri, 17 Jun 2016 23:48:13 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/269637595-thetalkshow-158-wwdc-2016-schiller-federighi.mp3" length="56528231" />
+ <itunes:duration>01:18:05</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Recorded in front of a live audience in San Francisco, John Gruber is joined by Phil Schiller and Craig Federighi to discuss the news from WWDC: WatchOS 3, MacOS 10.12 Sierra, iOS 10, and more.</description>
+ <itunes:image href="http://daringfireball.net/thetalkshow/158/wwdc-2016-album-art.jpeg" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Recorded in front of a live audience in San Francisco, John Gruber is joined by Phil Schiller and Craig Federighi to discuss the news from WWDC: WatchOS 3, MacOS 10.12 Sierra, iOS 10, and more.</p>
+
+<p><a href="http://daringfireball.net/thetalkshow/2016/06/17/ep-158">Video of the show, and a complete transcript, is available here.</a></p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailchimp.com/">MailChimp</a>: Send better email.</li>
+<li><a href="http://anydevanyapp.com/">Microsoft</a>: Tools and services for any developer, any app, any OS. Really.</li>
+<li><a href="http://meh.com/">Meh.com</a>: A new deal every day at midnight Eastern.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Yours truly: "<a href="http://daringfireball.net/2016/06/thoughts_and_observations_wwdc_2016">Brief Thoughts and Observations Regarding Today’s WWDC 2016 Keynote</a>".</li>
+<li><a href="http://www.apple.com/pr/library/2016/06/13Apple-Previews-iOS-10-The-Biggest-iOS-Release-Ever.html">Apple Previews iOS 10</a>.</li>
+<li><a href="http://www.apple.com/pr/library/2016/06/13Apple-Previews-Major-Update-with-macOS-Sierra.html">Apple Previews MacOS Sierra</a>.</li>
+<li><a href="http://www.apple.com/pr/library/2016/06/13Apple-Previews-watchOS-3-Faster-Simpler-with-Breakthrough-Health-Features.html">Apple Previews WatchOS 3</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]> </content:encoded>
+ </item>
+ <item>
+ <title>157: ‘A Nokia Phone and Some Pills (WWDC Prelude)’ With Dan Frommer</title>
+ <link>http://daringfireball.net/thetalkshow/2016/06/11/ep-157</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/06/11/ep-157</guid>
+ <pubDate>Sat, 11 Jun 2016 17:47:13 EDT</pubDate>
+ <itunes:duration>02:24:52</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/268646041-thetalkshow-157-dan-frommer.mp3" length="104352705" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Dan Frommer returns to the show. Topics include Jeff Bezos’s and Elon Musk’s appearances at last week’s Code 2016 conference, Apple’s changes to the App Store (subscriptions for all app categories, search ads, and huge improvements to app review approval times), and, of course, our expectations for WWDC 2016 next week.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Dan Frommer returns to the show. Topics include Jeff Bezos’s and Elon Musk’s appearances at last week’s Code 2016 conference, Apple’s changes to the App Store (subscriptions for all app categories, search ads, and huge improvements to app review approval times), and, of course, our expectations for WWDC 2016 next week.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://wealthfront.com/thetalkshow">Wealthfront</a>: An automated investment service with over $3 billion in client assets under management.</li>
+<li><a href="http://eero.com/">Eero</a>: Finally, Wi-Fi, that works. Use code <strong>thetalkshow</strong> for free overnight shipping.</li>
+<li><a href="http://harrys.com/talkshow">Harry’s</a>: An exceptional shave at a fraction of the price. Use code <strong>talkshow</strong> for $5 off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.recode.net/2016/6/1/11826718/jeff-bezos-amazon-full-video-code">Full video of Walt Mossberg’s interview with Jeff Bezos at Recode’s Code 2016 last week</a>.</li>
+<li><a href="http://www.recode.net/2016/6/6/11840936/elon-musk-tesla-spacex-mars-full-video-code">Full video of Mossberg and Kara Swisher’s interview with Elon Musk</a>.</li>
+<li>MacDailyNews: “<a href="http://macdailynews.com/2016/06/09/apple-to-deliver-imessage-to-android-at-wwdc/">Apple to Deliver iMessage to Android at WWDC</a>”.</li>
+<li><a href="https://research.googleblog.com/2016/06/motion-stills-create-beautiful-gifs.html">Motion Stills</a>: new iPhone app from Google that makes Live Photos way better.</li>
+<li><a href="http://www.recode.net/2015/11/26/11620962/mercedes-benz-wants-to-beat-google-uber-to-our-driverless-future">Mark Bergen’s report for Recode on Mercedes-Benz’s advanced self-driving car initiative</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>156: ‘Yo, Dingus’ With Merlin Mann</title>
+ <link>http://daringfireball.net/thetalkshow/2016/06/04/ep-156</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/06/04/ep-156</guid>
+ <pubDate>Sat, 4 Jun 2016 19:33:32 EDT</pubDate>
+ <itunes:duration>01:58:35</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/267583268-thetalkshow-156-merlin-mann.mp3" length="85518369" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Merlin Mann returns to the show to talk about artificial intelligence and Eddy Cue’s flip-flops.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Merlin Mann returns to the show to talk about artificial intelligence and Eddy Cue’s flip-flops.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://meh.com/">Meh</a>: The daily deal site from the crew that created Woot.</li>
+<li><a href="http://meh.com/">Meh</a>: Funny content and videos, too — every day.</li>
+<li><a href="http://meh.com/">Meh</a>: Not sure what else to say.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/sfchronicle/status/737516053564035072">Eddy Cue celebrating on court with Stephen Curry</a> after the Golden State Warriors won the NBA Western Conference finals.</li>
+<li><a href="http://www.cnet.com/news/apples-echo-rival-could-see-you-with-built-in-camera-amazon-siri-facial-recognition/">Apple’s purported upcoming standalone Siri device might have a camera</a>.</li>
+<li><a href="https://itunes.apple.com/us/podcast/the-talk-show-with-john-gruber/id528458508?mt=2">The Talk Show in iTunes</a>. Reviews are much appreciated.</li>
+<li><a href="https://en.wikipedia.org/wiki/AI_effect">The AI Effect</a>: “It’s part of the history of the field of artificial intelligence that every time somebody figured out how to make a computer do something — play good checkers, solve simple but relatively informal problems — there was chorus of critics to say, ‘That’s not thinking’.”</li>
+<li><a href="https://www.youtube.com/watch?v=3ScS4OYDfHE">System 7 Macintosh Basics Demo</a>.</li>
+<li><a href="https://canary.is/">Canary</a>: Real-time streaming video camera for your home. Merlin’s got one and likes it.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>155: ‘Medium Rare MacBook’ With MG Siegler</title>
+ <link>http://daringfireball.net/thetalkshow/2016/05/28/ep-155</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/05/28/ep-155</guid>
+ <pubDate>Sat, 28 May 2016 18:40:25 EDT</pubDate>
+ <itunes:duration>02:22:50</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/266374721-thetalkshow-155-mg-siegler.mp3" length="102888111" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest MG Siegler returns to the show. (Finally.) Topics include rumors of an upcoming Siri SDK and an Amazon Echo-like device from Apple, the future of the MacBook lineup, Peter Thiel's secretive role as the financial backer of Hulk Hogan's lawsuit against Gawker, and my hatred of Roman numerals.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest MG Siegler returns to the show. (Finally.) Topics include rumors of an upcoming Siri SDK and an Amazon Echo-like device from Apple, the future of the MacBook lineup, Peter Thiel's secretive role as the financial backer of Hulk Hogan's lawsuit against Gawker, and my hatred of Roman numerals.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://wealthfront.com/thetalkshow">Wealthfront</a>: An automated investment service with over $3 billion in client assets under management.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With over 250,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://500ish.com/">500ish Words</a> -- the new home for MG's writing.</li>
+<li><a href="http://movies.stackexchange.com/questions/10149/why-do-studios-use-roman-numerals-in-the-copyright-notice-in-the-end-credits">Why do movie studios use Roman numerals for the copyright year in end credits?</a></li>
+<li><a href="http://fusion.net/story/306927/peter-thiel-gawker-dangerous-blueprint/">Felix Salmon on the strategy behind Peter Thiel's heretofore secret campaign to bankrupt Gawker</a>.</li>
+<li>9to5Mac on purported upcoming MacBook Pros that <a href="http://9to5mac.com/2016/05/23/apple-prepping-thinner-macbook-pros-with-oled-screen-above-keyboard-touch-id-for-q4/">replace the function keys with an LED touchscreen</a>.</li>
+<li><a href="http://www.artlebedev.com/everything/optimus/popularis/">The Optimus Popularis</a> -- a humongous $1500 keyboard where each key cap is a small LED.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+
+ <item>
+ <title>154: ‘Facebook on Your Face’ With Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2016/05/21/ep-154</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/05/21/ep-154</guid>
+ <pubDate>Sat, 21 May 2016 17:55:18 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/265259605-thetalkshow-154-rene-ritchie.mp3" length="94768671" />
+ <itunes:duration>02:11:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show. Topics include Apple’s new flagship retail store in San Francisco, recent improvements to App Store approval times, and Google’s announcements at I/O this week — Google Home and Google Assistant, Allo and Duo, and Android “N” and Android Instant Apps.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show. Topics include Apple’s new flagship retail store in San Francisco, recent improvements to App Store approval times, and Google’s announcements at I/O this week — Google Home and Google Assistant, Allo and Duo, and Android “N” and Android Instant Apps.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Use code <strong>thetalkshow</strong> for $50 toward your mattress.</li>
+<li><a href="http://WarbyParker.com/Thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+<li><a href="http://wealthfront.com/thetalkshow">Wealthfront</a>: An automated investment service with over $3 billion in client assets under management.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.imore.com/preview-apples-new-flagship-apple-store-san-francisco">Rene’s preview of the new SF Apple Store</a>.</li>
+<li><a href="http://feeds.feedburner.com/imore-apple-talk">Apple Talk</a> — iMore’s new podcast, with yours truly as their <a href="http://www.imore.com/apple-talk">first guest</a>.</li>
+<li><a href="http://daringfireball.net/linked/2016/05/12/app-store-review-times">App Store review times</a>.</li>
+<li>Privacy advocate <a href="https://twitter.com/csoghoian">Christopher Soghoian on Twitter</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=862r3XS2YB0">Google I/O 2016 Keynote</a> on YouTube.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>153: ‘Chock Full of Whimsy’ With Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2016/05/06/ep-153</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/05/06/ep-153</guid>
+ <pubDate>Fri, 6 May 2016 20:20:53 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/262864366-thetalkshow-153-ben-thompson.mp3" length="128711135" />
+ <itunes:duration>02:58:42</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Ben Thompson returns to the show to talk about Apple’s recent quarterly results, what we think is going on with iPhone sales, Tim Cook’s misleading guidance, Apple Music, and a lot more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Ben Thompson returns to the show to talk about Apple’s recent quarterly results, what we think is going on with iPhone sales, Tim Cook’s misleading guidance, Apple Music, and a lot more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://wealthfront.com/thetalkshow">Wealthfront</a>: An automated investment service with over $3 billion in client assets under management.</li>
+<li><a href="http://automatic.com/thetalkshow">Automatic</a>: Your smart driving assistant. Get $20 off with this link.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With over 250,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Yours truly, last week: “<a href="http://daringfireball.net/2016/04/terrible_horrible_no_good_very_bad_iphone_sales">Apple and the Terrible, Horrible, No Good, Very Bad Drop in iPhone Sales</a>”.</li>
+<li>Ben, two weeks ago: “<a href="https://stratechery.com/2016/apples-organizational-crossroads/">Apple’s Organizational Crossroads</a>”.</li>
+<li>Neil Cybart: “<a href="http://www.aboveavalon.com/notes/2016/5/2/iphone-warning-signs">iPhone Warning Signs</a>”.</li>
+<li><a href="http://www.dueapp.com/">Due</a>, an iPhone reminder app that I’ve been using daily for years.</li>
+<li><a href="https://www.washingtonpost.com/news/local/wp/2015/10/15/apples-biggest-fan-has-died/">Gary Allen, now-deceased writer behind IFO Apple Store</a>.</li>
+<li><a href="http://minimsft.blogspot.com/">Mini Microsoft</a>.</li>
+<li>Dodger Trayce Thompson, brother of Golden State Warrior star Klay Thompson, <a href="http://espn.go.com/mlb/story/_/id/15455752/klay-thompson-brother-trayce-made-baseball-disappear">hit a run in Tampa that never came down from the rafters</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>152: ‘The Greatest Mic Drop I’ve Ever Seen’ With Guy English</title>
+ <link>http://daringfireball.net/thetalkshow/2016/04/25/ep-152</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/04/25/ep-152</guid>
+ <pubDate>Mon, 25 Apr 2016 19:04:45 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/260871007-thetalkshow-152-guy-english.mp3" length="118289236" />
+ <itunes:duration>02:44:14</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Guy English returns to the show. Topics include Ben Thompson’s argument that Apple’s functional organizational structure is hindering their efforts in online services, recalling our first Apple computers and the elegance of the classic Mac OS’s conceptual design, Prince (and his early use of Macs for creating music), emoji and exclamation marks, WWDC 2016, and yours truly’s youthful foray into on-the-job vandalism.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Guy English returns to the show. Topics include Ben Thompson’s argument that Apple’s functional organizational structure is hindering their efforts in online services, recalling our first Apple computers and the elegance of the classic Mac OS’s conceptual design, Prince (and his early use of Macs for creating music), emoji and exclamation marks, WWDC 2016, and yours truly’s youthful foray into on-the-job vandalism.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/">Squarespace</a>: Build it beautiful. Use code <strong>GRUBER</strong> for 10% off your first order.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With over 250,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>TALKSHOW10</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Great article by Ben Thompson: “<a href="https://stratechery.com/2016/apples-organizational-crossroads/">Apple’s Organizational Crossroads</a>”</li>
+<li><a href="https://www.youtube.com/watch?v=BoHTDGOkvkU">BeOS developers tossing CRT monitors off the roof</a> of their office building, circa 2000.</li>
+<li><a href="http://grouplens.org/site-content/uploads/Emoji_Interpretation.pdf">Interesting study on differing interpretations of emoji across platforms</a>.</li>
+<li><a href="http://aged-and-distilled.com/">Napkin</a> — a terrific Mac image annotation app from Guy and Chris Parrish.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>151: ‘Option P’ With Serenity Caldwell</title>
+ <link>http://daringfireball.net/thetalkshow/2016/04/12/ep-151</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/04/12/ep-151</guid>
+ <pubDate>Tue, 12 Apr 2016 21:24:18 EDT</pubDate>
+ <itunes:duration>02:09:28</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/258694251-thetalkshow-151-caldwell.mp3" length="93263069" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show. Topics include the new 9.7-inch iPad Pro, using an iPad for “work”, podcasting microphones, the damn Siri Remote for the new Apple TV, the *Star Wars: Rogue One* teaser, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Serenity Caldwell returns to the show. Topics include the new 9.7-inch iPad Pro, using an iPad for “work”, podcasting microphones, the damn Siri Remote for the new Apple TV, the <em>Star Wars: Rogue One</em> teaser, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>thetalkshow</strong> for $50 off.</li>
+<li><a href="http://squarespace.com/">Squarespace</a>: Build it beautiful. Use code <strong>GRUBER</strong> for 10% off your first order.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>TALKSHOW10</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://2ttf.com/">iFontMaker</a> — iPad app for creating and editing fonts.</li>
+<li><a href="http://www.apple.com/shop/product/H8309ZM/D/apogee-mic-digital-microphone">Apogee MiC Digital Microphone</a> — a good (but $230) Lightning port microphone for iOS devices.</li>
+<li>Serenity: “<a href="http://www.imore.com/wish-list-some-day-i-would-stop-losing-my-siri-remote">Some Day, I Would Like to Stop Losing My Siri Remote</a>”.</li>
+<li><a href="http://www.techhive.com/article/3052441/streaming-hardware/this-25-bluetooth-tracker-made-my-apple-tv-remote-less-frustrating.html">Jared Newman attached a Tile tracker to his Siri Remote</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=Wji-BZ0oCwg">The first trailer for <em>Star Wars: Rogue One</em></a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>150: ‘Strict Robot Definer’ With Jason Snell</title>
+ <link>http://daringfireball.net/thetalkshow/2016/03/28/ep-150</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/03/28/ep-150</guid>
+ <pubDate>Mon, 28 Mar 2016 16:58:09 EDT</pubDate>
+ <itunes:duration>02:51:13</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/255488585-thetalkshow-thetalkshow-150.mp3" length="123316953" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show for an in-depth look at last week's Apple Event, and the two products that were introduced: the iPhone SE and the 9.7-inch iPad Pro. Other topics include the ongoing FBI/Apple encryption soap opera, what's wrong with the Apple Watch -- and our appreciation for the late great Garry Shandling.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell (<a href="https://sixcolors.com/">Six Colors</a>, <a href="https://www.theincomparable.com/">The Incomparable</a>, <a href="https://www.relay.fm/upgrade">Upgrade</a>) returns to the show for an in-depth look at last week's Apple Event, and the two products that were introduced: the iPhone SE and the 9.7-inch iPad Pro. Other topics include the ongoing FBI/Apple encryption soap opera, what's wrong with the Apple Watch -- and our appreciation for the late great Garry Shandling.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hellofresh.com/">Hello Fresh</a>: The meal kit delivery service that makes cooking fun, easy, and convenient. Save $35 off your first week of deliveries with code "<strong>TALKSHOW</strong>".</li>
+<li><a href="http://squarespace.com/">Squarespace</a>: Build it beautiful. Use code <strong>GRUBER</strong> for 10% off your first order.</li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off <em>for the life of your account</em>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Great article by Ben Thompson: “<a href="https://stratechery.com/2016/apples-organizational-crossroads/">Apple’s Organizational Crossroads</a>”</li>
+<li><a href="https://www.youtube.com/watch?v=BoHTDGOkvkU">BeOS developers tossing CRT monitors off the roof</a> of their office building, circa 2000.</li>
+<li><a href="http://grouplens.org/site-content/uploads/Emoji_Interpretation.pdf">Interesting study on differing interpretations of emoji across platforms</a>.</li>
+<li><a href="http://aged-and-distilled.com/">Napkin</a> — a terrific Mac image annotation app from Guy and Chris Parrish.</li>
+<li><a href="https://daringfireball.net/misc/2016/04/disney-hotdog-cheesesteak.jpg">Walt Disney World’s “Philly Cheesesteak” hot dog</a>. (You can get it with apple slices to keep it healthy.)</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>149: ‘With Apologies to Hamilton’ With Glenn Fleishman</title>
+ <link>http://daringfireball.net/thetalkshow/2016/03/17/ep-149</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/03/17/ep-149</guid>
+ <pubDate>Thu, 17 Mar 2016 18:38:50 EDT</pubDate>
+ <itunes:duration>02:19:08</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/252446856-thetalkshow-149-fleishman.mp3" length="100223046" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Glenn Fleishman joins the show. The primary topic: Apple’s legal battle against the FBI regarding the iPhone and encryption. Other topics include Aaron Burr’s resurgence in popularity, the U.S. founding fathers’ use of cyphers and codes in their correspondance, next week’s Apple event, USB battery packs, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Glenn Fleishman joins the show. The primary topic: Apple’s legal battle against the FBI regarding the iPhone and encryption. Other topics include Aaron Burr’s resurgence in popularity, the U.S. founding fathers’ use of cyphers and codes in their correspondance, next week’s Apple event, USB battery packs, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>thetalkshow</strong> for $50 off.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With over 180,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>TALKSHOW10</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://tidbits.com/article/16321">Free chapters of Glenn Fleishman’s upcoming book, <em>Take Control of Slack Basics</em></a>.</li>
+<li>Graydon Carter: “<a href="http://www.vanityfair.com/culture/2015/10/graydon-carter-donald-trump">Why Donald Trump Will Always Be a ‘Short-Fingered Vulgarian’</a>”.</li>
+<li>Political action committee changes name from “Trump Has Tiny Hands PAC” to “<a href="http://www.wweek.com/2016/03/14/trump-has-tiny-hands-pac-changes-its-name-after-warning-from-feds/">Americans Against Insecure Billionaires with Tiny Hands</a>”.</li>
+<li>Donald Trump back in October 2013: “<a href="https://twitter.com/realdonaldtrump/status/389776861456125952">As an addition, Apple must go to a larger screen now—asap! They’re losing their standing in the market!</a>”.</li>
+<li><a href="https://www.wordnik.com/">Wordnik</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/Nickel%E2%80%93metal_hydride_battery#Low_self-discharge">Low self-discharged (LSD) nickel–metal hydride batteries</a>.</li>
+<li><a href="http://www.theverge.com/2016/2/23/11095610/eero-review-wi-fi-router-walt-mossberg">Walt Mossberg’s review of the modular Eero home Wi-Fi system</a>.</li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>148: ‘Occupy Portland’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2016/03/02/ep-148</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/03/02/ep-148</guid>
+ <pubDate>Wed, 2 Mar 2016 23:11:23 EDT</pubDate>
+ <itunes:duration>02:20:55</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/249943133-thetalkshow-148-moltz.mp3" length="101511703" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show. Topics include the Apple/FBI encryption fight, Apple’s upcoming event and the products they’re expected to announce. And Campo Santo’s fantastic new video game “Firewatch”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show. Topics include the Apple/FBI encryption fight, Apple's upcoming event and the products they're expected to announce. And Campo Santo's fantastic new video game <em>Firewatch</em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://squarespace.com/">Squarespace</a>: Build it beautiful. Use code <strong>GRUBER</strong> for 10% off your first order.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off for the <em>life</em> of your account.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.wsj.com/articles/apples-rotten-core-1456696736">L. Gordon Crovitz’s jacktastic op-ed piece on the Apple/FBI fight</a>.</li>
+<li><a href="http://www.firewatchgame.com/">Firewatch</a>.</li>
+<li><a href="http://ollymoss.com/star-wars-trilogy/">Olly Moss’s Star Wars trilogy posters</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=WpKFxN1tukg&amp;feature=youtu.be">Geek Remix’s excellent video analyzing the plot of <em>Firewatch</em></a>. Spoilers galore — do not watch this unless you’ve finished the game. You don’t even want to look at the title of the video.</li>
+<li><a href="http://www.imdb.com/title/tt4785654/fullcredits/">The cast of Firewatch</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>147: ‘iTools or Whatever’ With Jim Dalrymple</title>
+ <link>http://daringfireball.net/thetalkshow/2016/02/21/ep-147</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/02/21/ep-147</guid>
+ <pubDate>Sun, 21 Feb 2016 18:06:57 EDT</pubDate>
+ <itunes:duration>01:58:47</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/248232519-thetalkshow-147-dalrymple.mp3" length="85580229" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jim Dalrymple joins the show to talk about the Apple/FBI legal showdown, the debate over Apple software quality, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jim Dalrymple joins the show to talk about the Apple/FBI legal showdown, the debate over Apple software quality, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/">Squarespace</a>: Build it beautiful. Use code <strong>GRUBER</strong> for 10% off your first order.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Photos printed in vivid color directly on glass. Use promo code <strong>TALKSHOW10</strong> for 10% off your first order.</li>
+<li><a href="http://harrys.com/talkshow">Harry's</a>: An exceptional shave at a fraction of the price. Use code <strong>TALKSHOW</strong> for $5 off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Walt Mossberg: "<a href="http://www.theverge.com/2016/2/3/10900612/walt-mossberg-apple-iphone-ios-mac-osx-app-problems">Apple's Apps Need Work</a>"</li>
+<li>Jim Dalrymple: "<a href="http://www.loopinsight.com/2016/02/03/about-walt-mossberg-and-apples-app-problem/">About Walt Mossberg and Apple’s App Problem</a>"</li>
+<li>Yours truly: "<a href="http://daringfireball.net/2016/02/apples_app_problem">Apple's App Problem</a>"</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>146: ‘“They Might Be Giants” With a Spanish Accent’ With Special Guests Eddy Cue and Craig Federighi</title>
+ <link>http://daringfireball.net/thetalkshow/2016/02/12/ep-146</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/02/12/ep-146</guid>
+ <pubDate>Fri, 12 Feb 2016 12:58:35 EDT</pubDate>
+ <itunes:duration>00:56:35</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/246715221-thetalkshow-146-cue-federighi.mp3" length="40795242" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Very special guests Eddy Cue and Craig Federighi join the show. Topics include: the new features in Apple's upcoming OS releases (iOS 9.3 and tvOS 9.2); why Apple is expanding its public beta program for OS releases; iTunes's monolithic design; how personally involved Eddy and Craig are in using, testing, and installing beta software; the sad decline of Duke's men's basketball team; and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Very special guests Eddy Cue and Craig Federighi join the show. Topics include: the new features in Apple's upcoming OS releases (iOS 9.3 and tvOS 9.2); why Apple is expanding its public beta program for OS releases; iTunes's monolithic design; how personally involved Eddy and Craig are in using, testing, and installing beta software; the sad decline of Duke's men's basketball team; and more.</p>
+
+<p>Some scoops too, including: the weekly number of iTunes and App Store transactions, an updated Apple Music subscriber count, peak iMessage traffic per second, and the number of iCloud account holders.</p>
+
+<p>Sponsored exclusively by <a href="http://meh.com/">Meh.com</a> — the daily deal site from the people who created Woot, sold Woot to Amazon, abandoned Woot, and started again.</p>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.apple.com/ios/preview/">Apple’s iOS beta preview page</a>.</li>
+<li><a href="http://appleinsider.com/articles/16/02/09/first-look-apple-adds-voice-dictation-to-latest-apple-tv-with-tvos-92-beta-3">Apple Insider on the new features in tvOS 9.2</a>.</li>
+<li>Walt Mossberg: “<a href="http://www.theverge.com/2016/2/3/10900612/walt-mossberg-apple-iphone-ios-mac-osx-app-problems">Apple’s Apps Need Work</a>”.</li>
+<li><a href="http://daringfireball.net/2016/02/apples_app_problem">Yours truly, following up on Mossberg’s column</a>.</li>
+<li><a href="http://espn.go.com/mens-college-basketball/story/_/id/14691699/duke-blue-devils-unranked-associated-press-top-25-first-more-eight-years">Duke falls out of AP Top 25 for the first time in more than eight years</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>145: ‘Anthropomorphic Human Bowel’ With Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2016/02/10/ep-145</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/02/10/ep-145</guid>
+ <pubDate>Wed, 10 Feb 2016 22:05:15 EDT</pubDate>
+ <itunes:duration>01:49:35</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/246468183-thetalkshow-145a.mp3" length="69371789" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ben Thompson returns to the show. Topics include last Sunday’s Super Bowl 50 (and its mostly terrible commercials), Tim Cook’s tweet with a photo he took from the sidelines post-game, Twitter’s algorithmic timeline and the state of today’s Google- and Facebook-dominated online advertising industry, Yahoo’s dismal prospects, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ben Thompson returns to the show. Topics include last Sunday’s Super Bowl 50 (and its mostly terrible commercials), Tim Cook’s tweet with a photo he took from the sidelines post-game, Twitter’s algorithmic timeline and the state of today’s Google- and Facebook-dominated online advertising industry, Yahoo’s dismal prospects, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Build it beautiful. Use code <strong>GRUBER</strong> for 10% off your first order.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+<li><a href="https://www.fractureme.com/">Fracture</a>: Your photos printed in vivid color directly on glass. Use promo code <strong>TALKSHOW10</strong> for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.theverge.com/2016/2/9/10950814/tim-cook-deletes-super-bowl-iphone-photo">Tim Cook, Super Bowl photographer</a>.</li>
+<li><a href="https://twitter.com/TimFernholz/status/697138115362824193">The New Yorker advertising Josh Topolsky’s “The End of Twitter” article — on Twitter</a>.</li>
+<li><a href="http://sanfrancisco.cbslocal.com/2016/02/08/panthers-broncos-players-suffer-super-bowl-concussions/">Concussions suffered in this year’s Super Bowl</a>.</li>
+<li>How we used to <a href="https://en.wikipedia.org/wiki/Finger_protocol">finger our friends in college</a>.</li>
+<li>Dustin Curtis computed the 2015 <a href="https://twitter.com/dcurtis/status/694266299317243904">revenue</a> and <a href="https://twitter.com/dcurtis/status/694586397588467712">profit</a> per employee for Yahoo, Twitter, MSFT, Google, Facebook, and Apple.</li>
+<li><a href="https://www.youtube.com/watch?v=3Hnldf3z4bY&amp;feature=youtu.be">Xifaxan’s Super Bowl 50 commercial, starring a diarrhea-stricken human bowel</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by <a href="http://esn.fm/">Moisés Chiullan</a>.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>144: ‘Hopped Up on Holiday Juice’ With Matthew Panzarino</title>
+ <link>http://daringfireball.net/thetalkshow/2016/01/31/ep-144</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/01/31/ep-144</guid>
+ <pubDate>Sun, 31 Jan 2016 22:32:47 EDT</pubDate>
+ <itunes:duration>02:14:28</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/244823916-thetalkshow-144a.mp3" length="96868295" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special Guest Matthew Panzarino. Topics include Apple's quarterly financial results, rumors of Apple working on VR handsets and "wireless" charging for iPhones, Bezos charts, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special Guest Matthew Panzarino. Topics include Apple's quarterly financial results, rumors of Apple working on VR handsets and "wireless" charging for iPhones, Bezos charts, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: A mattress with just the right sink, just the right bounce, for better nights and brighter days. Use code <strong>thetalkshow</strong> for $50 off.</li>
+<li><a href="http://audible.com/talkshow">Audible.com</a>: With over 180,000 audiobooks, you’ll find what you’re looking for. Get a free 30-day trial.</li>
+<li><a href="http://WarbyParker.com/Thetalkshow">Warby Parker</a>: Boutique-quality, vintage-inspired glasses at a revolutionary price. Try up to five pairs at home for free.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>143: ‘A Squirrel Eating a Duck’ With Merlin Mann</title>
+ <link>http://daringfireball.net/thetalkshow/2016/01/24/ep-143</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/01/24/ep-143</guid>
+ <pubDate>Sun, 24 Jan 2016 16:09:41 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/243582657-thetalkshow-143a.mp3" length="121207983" />
+ <itunes:duration>02:48:17</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Merlin Mann returns to the show. Topics include Winter Storm Jonas, the politics of sick kids, sweating out a fever, people going insane over the rumors that the next iPhones will omit the standard headphone jack, the seven-hour *The Godfather Epic*, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Merlin Mann returns to the show. Topics include Winter Storm Jonas, the politics of sick kids, sweating out a fever, people going insane over the rumors that the next iPhones will omit the standard headphone jack, the seven-hour <em>The Godfather Epic</em>, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Online backup for $5/month. Native. Unlimited. Unthrottled. Uncomplicated.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10% off for the life of your account.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like. Try Igloo for free.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.backblaze.com/speedtest/">Backblaze’s online speed test</a>.</li>
+<li><a href="http://www.newyorker.com/magazine/2007/04/16/there-and-back-again">2007 New Yorker story on commuters in Atlanta</a>.</li>
+<li><a href="http://thetalkshow.net/">The original 2007–2009 run of The Talk Show</a>.</li>
+<li><a href="https://twitter.com/hotdogsladies/status/690395797096128512">Merlin Mann and John Gruber’s 2009 talk at SXSW</a>.</li>
+<li><a href="http://screamer.deadspin.com/the-fifa-corruption-twitter-account-is-fake-of-cours-1604440748">Clever fake “FIFA corruption scandal” Twitter account, which seemingly predicted World Cup matches before they were played</a>.</li>
+<li><a href="https://action.sumofus.org/a/iphone-headphone-jack/">Online petition asking Apple not to remove the 3.5mm headphone jack from new iPhones</a>.</li>
+<li><a href="http://thestarwarstrilogy.com/starwars/post/2016/01/15/Team-Negative-One-completes-35mm-Restoration-of-Star-Wars">Team Negative One’s new samizdat restoration of a 35mm print of the 1977 theatrical release of <em>Star Wars</em></a>.</li>
+<li>The Atlantic: “<a href="http://www.theatlantic.com/business/archive/2016/01/buy-same-foods-snowstorm/425664/">Milk, Bread, and Eggs: The Trinity of Winter-Storm Panic-Shopping</a>”.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>142: ‘They Sherlocked F.lux’ With Dan Frommer</title>
+ <link>http://daringfireball.net/thetalkshow/2016/01/13/ep-142</link>
+ <guid>http://daringfireball.net/thetalkshow/2016/01/13/ep-142</guid>
+ <pubDate>Wed, 13 Jan 2016 21:25:50 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/241857574-thetalkshow-142a.mp3" length="96092138" />
+ <itunes:duration>02:13:23</itunes:duration> <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Dan Frommer returns to the show to deliver his first-hand report from last week’s CES in Las Vegas. Other topics include Periscope, Peach, why Apple never participated at CES, El Chapo’s re-capture, iOS 9.3, Apple Watch, Apple’s finances (and stock price), and self-driving cars.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Dan Frommer returns to the show to deliver his first-hand report from last week’s CES in Las Vegas. Other topics include Periscope, Peach, why Apple never participated at CES, El Chapo’s re-capture, iOS 9.3, Apple Watch, Apple’s finances (and stock price), and self-driving cars.</p>
+
+<p>Brought to you by:</p>
+
+<ul>
+<li><a href="http://wealthfront.com/thetalkshow">Wealthfront</a>: A low-cost, automated investment service that makes it easy to invest your money the right way.</li>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Build it beautiful. Use code “GRUBER” for 10% off your first order.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: The intranet you’ll actually like.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://qz.com/588508/ces-rupert-murdoch-las-vegas-private-meetings-snapchat-evan-spiegel-apple-eddy-cue/">Dan Frommer’s report on Rupert Murdoch’s private super-conference held at the Wynn Las Vegas during CES</a>.</li>
+<li>Frommer: “<a href="http://qz.com/401475/fitbits-long-term-future-sales-curve-revealed/">Fitbit’s Long-Term Future Sales Curve Revealed</a>”.</li>
+<li><a href="http://qz.com/557652/half-a-year-later-the-apple-watch-feels-like-a-stalled-platform/">Frommer on Apple Watch, six months in</a>.</li>
+<li>The re-launched <a href="http://citynotes.co">City Notes</a>.</li>
+<li><a href="http://arstechnica.com/tech-policy/2016/01/us-marshals-raid-booth-grab-chinese-scooters-from-ces/">U.S. marshalls raid hovercraft booth at CES</a>.</li>
+<li>Philip Elmer-DeWitt: “<a href="http://fortune.com/2016/01/10/apple-clueless-press-commentary/">Why So Much Apple Commentary Is So Clueless</a>”.</li>
+<li><a href="https://en.wikipedia.org/wiki/Boeing_Dreamlifter">The Boeing Dreamlifter</a> (inspiration for Apple’s iPhone Smart Battery Case).</li>
+<li><a href="http://www.rollingstone.com/culture/features/el-chapo-speaks-20160109">Sean Penn’s remarkable story for Rolling Stone on meeting with El Chapo</a>.</li>
+<li><a href="http://scripting.com/liveblog/users/davewiner/2016/01/10/0831.html">Dave Winer on the El Chapo story</a>, and the objection from some journalists regarding the disclosed concessions they made to create it.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>141: ‘Star Wars: The Force Awakens’ Holiday Spectacular With Special Guests Guy English, Amy Jane Gruber, and More</title>
+ <link>http://daringfireball.net/thetalkshow/2015/12/31/ep-141</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/12/31/ep-141</guid>
+ <pubDate>Thu, 31 Dec 2015 23:59:00 EDT</pubDate>
+ <itunes:duration>02:29:06</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/239918716-thetalkshow-141a.mp3" length="107405296" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>A brief holiday chat about ‘Star Wars: The Force Awakens’, with a cavalcade of special guests, including Guy English and Amy Jane Gruber.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>A brief holiday chat about <em>Star Wars: The Force Awakens</em>, with a cavalcade of special guests, including Guy English and Amy Jane Gruber.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://www.igloosoftware.com/tts">Igloo</a>: The intranet you’ll actually like.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for your Mac.</li>
+<li><a href="https://wealthfront.com/thetalkshow">Wealthfront</a>: An intelligent, automated investing service. They’ll build you a free personalized investment plan in 2 minutes.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off for the entire lifetime of your account.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://soundcloud.com/user-362156010/wgaw-force-awakens-panel">Writers Guild panel discussion between Lawrence Kasdan, JJ Abrams, and Michael Arndt</a>, writers of <em>The Force Awakens</em>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>]]> </content:encoded>
+ </item>
+ <item>
+ <title>140: ‘Apple’s 2015 Year in Review’ With Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2015/12/29/ep-140</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/12/29/ep-140</guid>
+ <pubDate>Tue, 29 Dec 2015 21:51:17 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/239612451-thetalkshow-140a.mp3" length="135080209" />
+ <itunes:duration>03:07:33</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie returns to the show for a look back at the Apple year that was: the new one-port MacBook, Apple Watch's launch, WWDC and Apple Music, the iPhones 6S, iPad Pro, Apple Pencil, Apple TV, iPad Mini 4, iOS 9, Mac OS X 10.11, and, of course, the most important new product of the year, the Smart Battery Case. (This episode contains absolutely no Star Wars talk, except for a little.)</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie returns to the show for a look back at the Apple year that was: the new one-port MacBook, Apple Watch's launch, WWDC and Apple Music, the iPhones 6S, iPad Pro, Apple Pencil, Apple TV, iPad Mini 4, iOS 9, Mac OS X 10.11, and, of course, the most important new product of the year, the Smart Battery Case.</p>
+
+<p>This episode contains absolutely no Star Wars talk, except for a little.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://ubarapp.com">uBar</a> and the <a href="http://brawertimepieces.com/">Brawer Mirage A4</a>: Use promo code “RETINAGRUBER” and save 50% on a great Mac taskbar utility or 40% on an elegant handmade automatic watch.</li>
+<li><a href="http://hullopillow.com/talkshow">Hullo</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="http://automatic.com/thetalkshow">Automatic</a>: The cool, clever connected-car dingus. Save $20 with this link.</li>
+<li><a href="http://harrys.com/talkshow">Harry’s</a>: High-quality shaving products at a fraction of the price. Use promo code "TALKSHOW" and save $5 off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Debug episode 76 (<a href="https://itunes.apple.com/us/podcast/76-melton-ganatra-episode/id578812394?i=359397897&amp;mt=2">iTunes</a>, <a href="https://overcast.fm/+I_JFBNKk">Overcast</a>): "Don Melton, former Director of Internet Technologies at Apple, and Nitin Ganatra, former Director of iOS Apps at Apple, talk about managing teams, managing up, retention, rivalry, and more", with hosts Rene Ritchie and Guy English.</li>
+<li><a href="http://www.amazon.com/gp/product/1419717804/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1419717804&amp;linkCode=as2&amp;tag=daringfirebal-20&amp;linkId=2J3NLS7EATJJS64H"><em>The Art of 'Star Wars: The Force Awakens'</em></a></li>
+<li>"<a href="http://daringfireball.net/2009/03/obsession_times_voice">Obsession Times Voice</a>": John Gruber and Merlin Mann at SXSW 2009. "A pretty good stab at a simple formula for doing it right."</li>
+<li><a href="https://www.instagram.com/p/_dWmH0GMyU/">Princess Leia wearing what looks like an Apple Watch in <em>Return of the Jedi</em></a>.</li>
+<li><a href="http://recode.net/podcasts/codemobile-2015-apple-vp-of-apple-pay-jennifer-bailey-2/">Jennifer Bailey, Apple's VP of Apple Pay</a>.</li>
+<li><a href="https://umake.xyz/">uMake</a> -- innovative iOS 3D drawing app with rich support for Apple Pencil.</li>
+<li>Gizmodo: <a href="http://gizmodo.com/everything-apple-introduced-this-year-kinda-sucked-1749308570">"Everything Apple Introduced This Year Kinda Sucked"</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>139: ‘How Many Fingers Should This Baby Have?’ With Special Guests Craig Federighi and John Siracusa</title>
+ <link>http://daringfireball.net/thetalkshow/2015/12/14/ep-139</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/12/14/ep-139</guid>
+ <pubDate>Mon, 14 Dec 2015 22:35:32 EDT</pubDate>
+ <itunes:duration>03:20:33</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/237601688-thetalkshow-139a.mp3" length="144443259" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Apple senior vice president of software engineering Craig Federighi joins the show for a wide-ranging half-hour discussion about Swift -- Apple's new programming language that just went open source. Next, John Siracusa returns to the show to follow up on Federighi's segment on Swift. Other topics include Apple's new Smart Battery Case for the iPhone 6/6S, and our mutual (and perhaps futile) desire to head into this week's premiere of *Star Wars: The Force Awakens* knowing as few spoilers as possible.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Apple senior vice president of software engineering Craig Federighi joins the show for a wide-ranging half-hour discussion about Swift — Apple’s new programming language that just went open source.</p>
+
+<p>Next, John Siracusa returns to the show to follow up on Federighi’s segment on Swift. Other topics include Apple’s new Smart Battery Case for the iPhone 6/6S, and our mutual (and perhaps futile) desire to head into this week’s premiere of <em>Star Wars: The Force Awakens</em> knowing as few spoilers as possible.</p>
+
+<p><a href="http://daringfireball.net/thetalkshow/139/federighi-gruber-transcript">Transcript of Craig Federighi’s interview</a>.</p>
+
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Build it beautiful. Use code “GRUBER” for 10% off your first order.</li>
+<li><a href="http://harrys.com/talkshow">Harry’s</a>: High-quality shaving products; great gift ideas. Use promo code “TALKSHOW” to save $5 off your first purchase.</li>
+<li><a href="http://casper.com/talkshow">Casper</a>: Obsessively engineered mattresses at shockingly fair prices. Save $50 with this link.</li>
+<li><a href="https://wealthfront.com/thetalkshow">Wealthfront</a>: An intelligent, automated investing service. They’ll build you a free personalized investment plan in 2 minutes.</li>
+</ul>
+
+
+<p>Links:</p>
+
+<ul>
+<li>Craig Federighi talking about Swift going open source with <a href="http://arstechnica.com/apple/2015/12/craig-federighi-talks-open-source-swift-and-whats-coming-in-version-3-0/">Ars Technica</a>, <a href="http://thenextweb.com/apple/2015/12/03/qa-apples-craig-federighi-talks-open-source-swift-objective-c-and-the-next-20-years-of-development/">TheNextWeb</a>, and <a href="http://mashable.com/2015/12/07/craig-federighi-apple-coding/">Mashable</a>.</li>
+<li><a href="http://arstechnica.com/apple/2011/07/mac-os-x-10-7/10/#arc">Siracusa’s explanation of Automatic Reference Counting (ARC)</a> in his Mac OS X 10.7 review in 2011.</li>
+<li><a href="http://arstechnica.com/apple/2014/10/os-x-10-10/21/#swift">Siracusa’s excellent introduction to Swift</a> from his Mac OS X 10.10 review last year.</li>
+<li><a href="https://www.quora.com/Why-is-the-iPhones-1-GB-RAM-touted-to-be-able-to-compete-with-more-than-2-GB-RAM-of-Android-phones/answers/7061202">Glyn Williams post on Quora regarding how iOS devices need less RAM than equivalent Android devices</a>, because Android’s virtual machine uses garbage collection and iOS doesn’t.</li>
+<li>“<a href="http://daringfireball.net/2015/12/the_curious_case_of_the_curious_case">The Curious Case of the Curious Case</a>” — my review of Apple’s new Smart Battery Case.</li>
+<li><a href="http://mjtsai.com/blog/2015/12/01/sketch-leaving-the-mac-app-store/">Michael Tsai’s link roundup on Sketch leaving the Mac App Store</a>.</li>
+<li><a href="https://en.wikipedia.org/wiki/The_C_Programming_Language">Brian Kernighan and Dennis Ritchie’s <em>The C Programming Language</em></a>, first published in 1978.</li>
+<li><a href="http://source.android.com/devices/tech/dalvik/index.html">Android’s Dalvik (old) and ART (new) runtimes</a>, both of which use garbage collection.</li>
+<li>“<a href="https://www.theincomparable.com/theincomparable/276/">Don’t Drink the Bacta Tea</a>” — spoiler-free episode of The Incomparable last week, with Siracusa, Jason Snell, Serenity Caldwell, and Dan Moren talking about <em>The Force Awakens</em>.</li>
+<li>Japanese director <a href="http://www.imdb.com/name/nm0594503/">Hayao Miyazaki</a></li>
+<li><a href="http://scificorridorarchive.com/">Sci-Fi Corridor Archive</a>. Start <a href="http://scificorridorarchive.com/tagged/2001:%20A%20Space%20Odyssey%20%281968%29">here</a>, of course.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>138: ‘I’ve Been Using Mine More in Bed’ With Joanna Stern</title>
+ <link>http://daringfireball.net/thetalkshow/2015/12/07/ep-138</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/12/07/ep-138</guid>
+ <pubDate>Mon, 7 Dec 2015 23:03:16 EDT</pubDate>
+ <itunes:duration>02:19:11</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/236575484-thetalkshow-138a.mp3" length="100266617" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Joanna Stern returns to the show to talk about the iPad Pro, Microsoft's Surface Pro 4 and Surface Book, what's going on with Yahoo (spoiler: not much), how best to sell old iPhones when upgrading, and Mark Zuckerberg promising to donate 99 percent of his fortune to charitable causes.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Joanna Stern returns to the show to talk about the iPad Pro, Microsoft's Surface Pro 4 and Surface Book, what's going on with Yahoo (spoiler: not much), how best to sell old iPhones when upgrading, and Mark Zuckerberg promising to donate 99 percent of his fortune to charitable causes.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://wealthfront.com/thetalkshow">Wealthfront</a>: A low-cost, automated investment service that makes it easy to invest your money the right way.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: A secure, hosted email filtering service that you can have up and running in minutes. Use this link and you’ll save 10 percent for the lifetime of your account.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online back up for your Mac.</li>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Build it beautiful. Use code “GRUBER” for 10 percent off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Joanna’s reviews of the <a href="http://www.wsj.com/articles/microsoft-surface-book-and-surface-pro-4-review-new-hope-for-windows-hardware-1445435304">Surface Pro 4 and Surface Book</a>, and the <a href="http://www.wsj.com/articles/ipad-pro-review-jack-of-all-trades-master-of-most-1447243200">iPad Pro</a>.</li>
+<li><a href="http://browserinyourbrowser.com/#intro-shift">Browser in Your Browser</a> (built with Squarespace).</li>
+<li>Joanna, from back in May: “<a href="http://www.wsj.com/articles/forget-social-media-build-your-very-own-website-1431453384">Forget Social Media! Build Your Very Own Website</a>”.</li>
+<li><a href="https://swappa.com/">Swappa</a> — an online marketplace for buying and selling used devices.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>137: ‘Peak Rumor Season’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2015/11/30/ep-137</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/11/30/ep-137</guid>
+ <pubDate>Mon, 30 Nov 2015 23:17:23 EDT</pubDate>
+ <itunes:duration>01:46:14</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/235522945-thetalkshow-137a.mp3" length="76545743" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show to discuss rumors that the iPhone 7 might not have a standard headphone jack and that Apple is working on new MacBook Airs. Also: a parenting guide to the Star Wars and James Bond franchises.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz returns to the show to discuss rumors that the iPhone 7 might not have a standard headphone jack and that Apple is working on new MacBook Airs. Also: a parenting guide to the Star Wars and James Bond franchises.</p>
+
+<p>Brought to you by:</p>
+
+<ul>
+<li><a href="http://harrys.com/talkshow">Harry’s</a>: High-quality shaving products; great gift ideas. Use promo code “talkshow” to save $5 off your first purchase.</li>
+<li><a href="http://casper.com/talkshow">Casper</a>: Obsessively engineered mattresses at shockingly fair prices.</li>
+<li><a href="https://wealthfront.com/thetalkshow">Wealthfront</a>: An intelligent, automated investing service. They’ll build you a free personalized investment plan in 2 minutes.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: An intranet you’ll actually like.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Rumor: “<a href="http://www.macrumors.com/2015/11/27/iphone-7-no-3-5mm-headphone-jack-lightning/">Apple May Replace 3.5mm Headphone Jack on iPhone 7 With All-in-One Lightning Connector</a>”.</li>
+<li>Rumor: “<a href="http://www.macrumors.com/2015/11/30/thinner-macbook-air-13-15-wwdc-2016/">Thinner MacBook Air in 13” and 15” Sizes Coming at WWDC 2016?</a>”.</li>
+<li><a href="http://fortune.com/2015/07/15/samsung-thinnest-phone/">The 5.9mm-thick Samsung Galaxy A8</a>.</li>
+<li><a href="http://www.apple.com/shop/product/MD823AM/A/lightning-to-30-pin-adapter">Apple’s $29 Lightning-to-30-pin adapter</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=MXo_d6tNWuY">Amazon’s video showing their latest prototype delivery drone, narrated by Jeremy Clarkson</a>.</li>
+<li>Fraser Speirs: “<a href="http://www.speirs.org/blog/2015/11/30/can-the-macbook-pro-replace-your-ipad">Can the MacBook Pro Replace Your iPad?</a>”</li>
+<li><a href="http://teslaclubsweden.se/test-drive-of-a-petrol-car/">A Tesla Owner reviews a petrol-powered car</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>136: ‘Fully Charged Pencil’ With Jason Snell</title>
+ <link>http://daringfireball.net/thetalkshow/2015/11/21/ep-136</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/11/21/ep-136</guid>
+ <pubDate>Sat, 21 Nov 2015 15:14:07 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/233992057-thetalkshow-136a.mp3" length="96477384" />
+ <itunes:duration>02:13:55</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Jason Snell joins the show to talk about iPad Pro, Apple Pencil, how iOS still feels like *iPhone OS* at a fundamental level, and Don Norman and Bruce Tognazzini’s overwrought “How Apple Is Giving Design a Bad Name” article for Fast Company. Also: the new membership program at Six Colors.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Jason Snell joins the show to talk about iPad Pro, Apple Pencil, how iOS still feels like *iPhone OS* at a fundamental level, and Don Norman and Bruce Tognazzini’s overwrought “How Apple Is Giving Design a Bad Name” article for Fast Company. Also: the new <a href="https://sixcolors.com/post/2015/11/introducing-six-colors-subscriptions/">membership program at Six Colors</a>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://harrys.com/talkshow">Harry’s</a>: High-quality shaving products. Use the promo code “talkshow” to save $5 off your first purchase.</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, classically crafted eyewear at a revolutionary price point.</li>
+<li><a href="http://squarespace.com/">Squarespace</a>: Build it beautiful. Use promo code “GRUBER” and save 10 percent.</li>
+<li><a href="https://braintreepayments.com/">Braintree</a>: Easy online payments. If you’re building a mobile app and searching for a simple payments solution, check out Braintree.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.macworld.com/article/3006523/ipad/the-ipad-pros-keyboard-problems-could-use-a-little-work.html">Jason, writing at Macworld, on the iPad Pro’s keyboard shortcomings</a>.</li>
+<li>Don Norman and Bruce Tognazzini, writing at Fast Company: “<a href="http://www.fastcodesign.com/3053406/how-apple-is-giving-design-a-bad-name">How Apple Is Giving Design a Bad Name</a>”.</li>
+<li><a href="http://www.wooji-juice.com/products/ferrite/">Ferrite Recording Studio</a>: a full-fledged iOS audio editing app.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>135: ‘Put a Nipple on It’ With Adam Lisagor</title>
+ <link>http://daringfireball.net/thetalkshow/2015/11/07/ep-135</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/11/07/ep-135</guid>
+ <pubDate>Sat, 7 Nov 2015 15:26:05 EDT</pubDate>
+ <itunes:duration>02:34:53</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/231922169-thetalkshow-135a.mp3" length="111563098" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Adam Lisagor returns to the show. Topics include the new Apple TV (why we both love it, despite several 1.0 flaws), 4K video, 3D movies, and Adam’s excellent new series “Computer Show”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Adam Lisagor returns to the show. Topics include the new Apple TV (why we both love it, despite several 1.0 flaws), 4K video, 3D movies, and Adam’s excellent new series “Computer Show”.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/thetalkshow">Automatic</a>: The cool, clever connected-car dingus. Save $20 with this link.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for Mac. 30-day free trial.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos, printed directly on glass. Awesome gift idea. Use promo code “DARINGFIREBALL” and save 15 percent.</li>
+<li><a href="http://wealthfront.com/thetalkshow">Wealthfront</a>: A low-cost, automated investment service that makes it easy to invest your money the right way.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://daringfireball.net/misc/2015/11/contractor-safety.jpg">The photo I sent to Adam at the start of the show</a>.</li>
+<li><a href="http://firecore.com/atvflash-black">FireCore aTV Flash</a>.</li>
+<li><a href="http://computer.show/">Computer Show</a>.</li>
+<li><a href="https://www.youtube.com/user/ComputerChroniclesYT">The Computer Chronicles</a>.</li>
+<li><a href="http://treemengames.com/pako/">Pako</a> — the silly little car chase game I’m digging on Apple TV.</li>
+<li><a href="https://en.wikipedia.org/wiki/Faces_of_Death">Faces of Death</a>.</li>
+</ul>
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>134: ‘Field Sobriety Test’ With Guy English</title>
+ <link>http://daringfireball.net/thetalkshow/2015/10/31/ep-134</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/10/31/ep-134</guid>
+ <pubDate>Sat, 31 Oct 2015 15:30:20 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/230961622-thetalkshow-134a.mp3" length="107351010" />
+ <itunes:duration>02:29:02</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Guy English returns to the show for an in-depth discussion about the new Apple TV.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Guy English returns to the show for an in-depth discussion about the new Apple TV.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hullopillow.com/talkshow">Hullo</a>: Your favorite pillow, guaranteed.</li>
+<li><a href="http://casper.com/talkshow">Casper</a>: Obsessively engineered mattresses at shockingly fair prices. Save $50 with promo code “THETALKSHOW”.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off for the life of your account.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: High-quality shaving products and the official partner of the Movember Foundation. Save $5 off your first order with promo code “TALKSHOW”.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://mashable.com/2015/10/28/apple-tv-review-2015/">Christina Warren’s review of the Apple TV for Mashable</a>.</li>
+<li><a href="http://www.imore.com/apple-tv-good-here-are-six-ways-it-could-be-even-better">Serenity Caldwell’s list of six ways the new Apple TV could be improved</a>.</li>
+<li><a href="http://www.apple.com/shop/product/HJ162ZM/A/steelseries-nimbus-wireless-gaming-controller">Steel Series Wireless Gaming Controller</a> — $50 gaming controller compatible with Apple TV.</li>
+<li><a href="http://johnaugust.com/scriptnotes">Scriptnotes</a> — John August and Craig Mazin’s excellent podcast about screenwriting and things interesting to creative people.</li>
+<li><a href="http://connecteddigitalworld.com/2015/09/10/galaxy-on-fire-3-manticore-coming-to-apple-tv/">Manticore</a> — Ambitious 3D space shooter for Apple TV.</li>
+<li><a href="https://blackpixel.com/writing/2015/10/netnewswire-today-for-apple-tv.html">NetNewsWire Today for Apple TV</a>.</li>
+<li>VentureBeat: “<a href="http://venturebeat.com/2015/10/29/storehouses-apple-tv-app-turns-your-television-into-a-slideshow-screen/">Storehouse’s Apple TV app turns your television into a slideshow screen</a>”. </li>
+</ul>
+
+
+<p><em>This episode of The Talk Show was edited by Caleb Sexton.</em></p>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>133: ‘The MacGuffin Tractor’ With Serenity Caldwell</title>
+ <link>http://daringfireball.net/thetalkshow/2015/10/17/ep-133</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/10/17/ep-133</guid>
+ <pubDate>Sat, 17 Oct 2015 15:35:01 EDT</pubDate>
+ <itunes:duration>02:33:05</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/228745910-thetalkshow-133a.mp3" length="110282964" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Serenity Caldwell returns to the show. Topics include this week’s new iMacs; the new “Magic” mouse, trackpad, and keyboard; an overview of Apple Music and iCloud Photos; Facebook’s outrageous background battery usage on iOS; Elon Musk’s gibes on Apple getting into the car industry; and my take on the new *Steve Jobs* movie.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Serenity Caldwell returns to the show. Topics include this week’s new iMacs; the new “Magic” mouse, trackpad, and keyboard; an overview of Apple Music and iCloud Photos; Facebook’s outrageous background battery usage on iOS; Elon Musk’s gibes on Apple getting into the car industry; and my take on the new <em>Steve Jobs</em> movie.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://getharvest.com/">Harvest</a>: A beautiful business tool for tracking time spent on client projects, from the web, desktop, or mobile. After your 30-day free trial, use promo code “THETALKSHOW” and save 50 percent on your first month.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off for the entire lifetime of your account.</li>
+<li><a href="http://automatic.com/thetalkshow">Automatic</a>: The cool, clever connected-car dingus. Save $20 with this link.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: High-quality razors and blades for a fraction of the price of the big razor brands. Save $5 on your first order with promo code “THETALKSHOW”.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://www.theincomparable.com/radio/">The Incomparable Radio Theater</a> — “a series of original radio plays that pay homage to the classic radio serials of the 20th century, along with nods to modern pop culture”. Really fun, and Serenity is one of the players.</li>
+<li>“<a href="https://medium.com/@rknla/exploring-apple-s-3d-touch-f5980ef45af5">Exploring Apple’s 3D Touch</a>” — interesting look at Apple’s new pressure-sensitive touch APIs by R. Kevin Nelson.</li>
+<li>Apple's new <a href="https://twitter.com/AppleMusicHelp">@AppleMusicHelp Twitter account</a>.</li>
+<li><a href="https://www.macstories.net/linked/the-background-data-and-battery-usage-of-facebooks-ios-app/">Federico Viticci on Facebook's atrocious background behavior on iOS</a>.</li>
+<li><a href="http://www.ft.com/intl/cms/s/0/132157ee-6e17-11e5-aca9-d87542bf8673.html">Elon Musk on Apple getting into the car game</a>.</li>
+<li><a href="http://www.cnn.com/2015/09/11/us/elon-musk-mars-nuclear-bomb-colbert-feat/index.html">Elon Musk on nuking Mars</a>.</li>
+<li><a href="http://www.telegraph.co.uk/technology/apple/11898816/Zane-Lowe-Im-not-sure-that-Apple-Music-needs-Beats-1.html">Zane Lowe on being unsure whether Apple Music needs Beats 1</a>.</li>
+<li><a href="https://daringfireball.net/misc/2015/10/Logitech-M-BB48.jpeg">A photo of my trusty, beloved old Logitech mouse</a>.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>132: ‘Peace, Porn, and Privacy’ With Guest Marco Arment</title>
+ <link>http://daringfireball.net/thetalkshow/2015/10/03/ep-132</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/10/03/ep-132</guid>
+ <pubDate>Sat, 3 Oct 2015 17:37:30 EDT</pubDate>
+ <itunes:duration>03:14:22</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/226747303-thetalkshow-132a.mp3" length="140008324" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Marco Arment joins the show for a brief chat on ad blockers, advertising in general, and the new iPhones 6S.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Marco Arment joins the show for a brief chat on ad blockers, advertising in general, and the new iPhones 6S.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://ubarapp.com">uBar</a> and the <a href="http://brawertimepieces.com/">Brawer Mirage A4</a>: Use promo code “RETINAGRUBER” and save 50% on a great Mac taskbar utility or 40% on an elegant handmade automatic watch.</li>
+<li><a href="https://www.justworks.com/">Justworks</a>: Payroll, benefits, compliance and HR — let Justworks handle these for your business. Save 10% for a year with code “TTS”.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Photo, frame, and mount, all in one. Save with code “DARINGFIREBALL”.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.marco.org/2015/09/18/just-doesnt-feel-good">Marco on pulling his content blocker, Peace, from the App Store</a>.</li>
+<li><a href="https://david-smith.org/blog/2015/09/10/16gb-is-a-bad-user-experience/">“Underscore” David Smith on the available free space of 16 GB iPhones in actual usage</a>.</li>
+<li><a href="http://www.nytimes.com/interactive/2015/10/01/business/cost-of-mobile-ads.html?_r=1">The New York Times measures the real-world benefits of iOS ad-blocking on 50 top news sites</a>.</li>
+<li><a href="http://www.hellointernet.fm/">Hello Internet</a>.</li>
+<li><a href="http://www.relay.fm/upgrade/56">Episode 56 of Jason Snell and Myke Hurley’s Upgrade</a>, wherein they discuss just how much of a pain in the ass it is to upgrade to a new iPhone.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>131: ‘If Only the Death Star Had That’ With Guest Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2015/09/18/ep-131</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/09/18/ep-131</guid>
+ <pubDate>Fri, 18 Sep 2015 16:17:53 EDT</pubDate>
+ <itunes:duration>02:39:02</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/224471140-thetalkshow-131a.mp3" length="114562453" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Rene Ritchie joins the show to discuss last week's blockbuster Apple Event and the products that were announced: Apple Watch updates, the iPad Pro (and Smart Keyboard, and Apple Pencil), the all-new Apple TV, and the iPhone 6S and 6S Plus. Also: iOS 9.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Rene Ritchie joins the show to discuss last week's blockbuster Apple Event and the products that were announced: Apple Watch updates, the iPad Pro (and Smart Keyboard, and Apple Pencil), the all-new Apple TV, and the iPhone 6S and 6S Plus. Also: iOS 9.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/">Hover</a>: The best way to buy and manage domain names. Get 10% off your first purchase with promo code "CrappyOldPhone".</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for Mac. Risk-free no-credit-card-required trial.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you'll actually like. Try it for free.</li>
+<li><a href="http://casper.com/">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Save $50 with promo code "thetalkshow".</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.imore.com/users/rene%20ritchie">Rene's comprehensive review of iOS 9 at iMore</a>.</li>
+<li><a href="https://itunes.apple.com/us/book/imores-ios-9-watchos-2-review/id1040404754?mt=11">The e-book version of Rene's iOS 9 and WatchOS 2.0 reviews</a>.</li>
+<li><a href="http://daringfireball.net/2015/09/thoughts_and_observations_on_todays_hey_siri_event">My thoughts and observations on last week's Apple event</a>.</li>
+<li><a href="http://www.lindadong.com/blog//apple-pencil-vs-wacom-cintiq">Linda Dong on the differences between Apple Pencil and a Wacom Cintiq</a>.</li>
+<li>Doug Litowitz: "<a href="http://www.zerohedge.com/news/2015-09-10/why-apple%E2%80%99s-launch-event-was-creepy-hell">Why Apple's Launch Event Was Creepy as Hell</a>".</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>130: ‘A Full Canseco’ With Guest John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2015/09/07/ep-130</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/09/07/ep-130</guid>
+ <pubDate>Mon, 7 Sep 2015 20:50:36 EDT</pubDate>
+ <itunes:duration>02:40:02</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/222819120-thetalkshow-130a.mp3" length="115282473" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz is back. Topics include Google’s new logo, the Tacoma Tahomas, and our speculation regarding what to expect at this week’s Apple event in San Francisco.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest John Moltz is back. Topics include Google’s new logo, the Tacoma Tahomas, and our speculation regarding what to expect at this week’s Apple event in San Francisco.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Photo, frame, and mount, all in one. Save with code “DARINGFIREBALL”.</li>
+<li><a href="http://automatic.com/thetalkshow">Automatic</a>: Cool connected-car adapter (a.k.a. “dongle”). Save $20 with this link.</li>
+<li><a href="http://harrys.com/">Harry's</a>: High-quality shaving products. Use the promo code “talkshow” to save $5 off your first purchase.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for Macs.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.edibleapple.com/2009/04/20/the-evolution-and-history-of-the-apple-logo/">The original logo for Apple Computer Co.</a></li>
+<li><a href="http://thebrainfever.com/apple/the-lost-apple-logos-you-ve-never-seen">Another great look at some obscure variations of the Apple logo we know and love.</a></li>
+<li><a href="https://www.youtube.com/watch?v=QixQMUu4CKI">Jose Canseco getting hit on the head by a deep fly ball</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=bQmy3QENvWU">Jose Canseco getting knocked out by Vai Sikahema in a charity boxing match</a>.</li>
+<li>Moltz: <a href="http://verynicewebsite.net/2015/09/the-watch-face-wars/">“The Watch Face Wars”</a>.</li>
+<li><a href="http://www.theverge.com/2015/9/3/9252787/samsung-gear-s-2-watch-video-hands-on">Samsung’s new decent-looking Gear S2 watches</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=ChUsy8gWwvo">Unbox Therapy guy bend-tests a leaked iPhone 6S 7000-grade aluminum frame</a>.</li>
+<li><a href="https://twitter.com/iHateFunny/status/640228794352160768/photo/1">The evolution of Google’s logo</a>.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>129: ‘90 Minutes or Bust’ With Guest Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2015/08/29/ep-129</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/08/29/ep-129</guid>
+ <pubDate>Sat, 29 Aug 2015 12:34:36 EDT</pubDate>
+ <itunes:duration>01:56:00</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/221379904-thetalkshow-129a.mp3" length="83578499" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Ben Thompson returns to the show. Topics include: our top complaints about Apple Watch, Apple making a car, the New York Times's profile of Amazon's work culture, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Ben Thompson returns to the show. Topics include: our top complaints about Apple Watch, Apple making a car, the New York Times's profile of Amazon's work culture, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://harrys.com/">Harry's</a>: High-quality shaving products. Use the promo code "talkshow" to save $5 off your first purchase.</li>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Save $50 off any mattress with promo code "thetalkshow".</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, classically crafted eyewear at a revolutionary price point.</li>
+<li><a href="http://hover.com/">Hover</a>: The best way to buy and manage domain names. Save 10 percent off first purchase with code “ThreeStarPodcast”.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>The NYT: <a href="http://www.nytimes.com/2015/08/16/technology/inside-amazon-wrestling-big-ideas-in-a-bruising-workplace.html?_r=0">"Inside Amazon: Wrestling Big
+Ideas in a Bruising Workplace"</a>.</li>
+<li>Julia Cheiffetz: "<a href="https://medium.com/@jcheiffetz/i-had-a-baby-and-cancer-when-i-worked-at-amazon-this-is-my-story-9eba5eef2976">I Had a Baby and Cancer When I Worked at Amazon</a>".</li>
+<li>Me, back 2010, writing for Macworld: "<a href="http://www.macworld.com/article/1151235/apple_rolls.html">This Is How Apple Rolls</a>".</li>
+</ul>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>128: ‘Did You Ever Take a Photograph?’ With Guest Matthew Panzarino</title>
+ <link>http://daringfireball.net/thetalkshow/2015/08/09/ep-128</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/08/09/ep-128</guid>
+ <pubDate>Sun, 9 Aug 2015 17:37:15 EDT</pubDate>
+ <itunes:duration>02:26:17</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/218495246-thetalkshow-128a.mp3" length="105388463" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Matthew Panzarino returns to the show. Topics include Twitter (their musical chairs game at CEO, the @MagicRecs feature, and whether their declining stock price makes them an acquisition target), the end of Google Plus, why the new Photos app for Mac is inadequate as a replacement for Lightroom for us, Apple's new San Jose real estate acquisition, Apple Car speculation, and Apple's spree of hiring writers from the Apple media.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest <a href="http://twitter.com/panzer">Matthew Panzarino</a> returns to the show. Topics include Twitter (their musical chairs game at CEO, the @MagicRecs feature, and whether their declining stock price makes them an acquisition target), the end of Google Plus, why the new Photos app for Mac is inadequate as a replacement for Lightroom for us, Apple's new San Jose real estate acquisition, Apple Car speculation, and Apple's spree of hiring writers from the Apple media.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://lynda.com/thetalkshow">Lynda.com</a>: Learn at your own pace from expert-taught video tutorials. Free 10-day trial.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Photo, frame, and mount, all in one. Save with code “DARINGFIREBALL”.</li>
+<li><a href="http://automatic.com/thetalkshow">Automatic</a>: Cool connected-car adapter (a.k.a. “dingus”). Save $20 with this link.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for 10 percent off for the life of your account.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.thisamericanlife.org/radio-archives/episode/561/nummi-2015">This American Life episode on the NUMMI automobile plant in Fremont California</a> -- a joint venture between GM and Toyota that wound up in the hands of Tesla Motors.</li>
+<li><a href="http://gizmodo.com/itunes-an-obituary-1719479490">Gizmodo's jacktastic "obituary" for iTunes</a>.</li>
+<li><a href="http://fortune.com/2014/12/11/twitter-evan-williams-instagram/">Evan Williams on why "monthly active users" is a poor metric</a>.</li>
+<li><a href="http://techcrunch.com/2015/08/07/outspoken-investor-chris-sacca-backs-jack-dorsey-as-next-twitter-ceo/">Chris Sacca endorsing Jack Dorsey to return as Twitter CEO.</a>.</li>
+<li><a href="http://hatchingtwitter.com/"><em>Hatching Twitter</em></a>, Nick Bilton's book about Twitter.</li>
+<li><a href="https://twitter.com/swardley/status/629496912182419457">Funny-because-it's-true Dilbert cartoon about management consultants</a>.</li>
+<li>Great Vanity Fair feature by Richard Lawson: "The VidCon Revolution Isn’t Coming. It’s Here."</li>
+<li><a href="http://www.bizjournals.com/sanjose/news/2015/08/03/exclusive-apple-buys-huge-san-jose-development.html">Apple's $138 million purchase of a 43-acre site in north San Jose</a>.</li>
+<li><a href="http://www.usatoday.com/story/tech/2015/08/05/apple-music-hooks-11-million-trial-members-app-store-has-record-july/31197721/">Eddy Cue and Jimmy Iovine talk to USA Today about Apple Music</a>, which now has 11 million trial subscribers.</li>
+</ul>
+
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>127: ‘A Sack Full of Plucked Feathers’ With Guest John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2015/07/29/ep-127</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/07/29/ep-127</guid>
+ <pubDate>Wed, 29 Jul 2015 21:08:41 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/216954273-thetalkshow-127a.mp3" length="86290333" />
+ <itunes:duration>01:59:46</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest John Moltz returns to the show. Topics include bluetooth headphones, Apple Music and iCloud Photo Library, phone sizes (including speculation on the lineup of new iPhones in September), El Chapo’s social media intern, Apple’s stock price, Alex Gibney’s upcoming Steve Jobs documentary, and the new trailer for “Spectre”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest <a href="http://verynicewebsite.net/">John Moltz</a> returns to the show. Topics include bluetooth headphones, Apple Music and iCloud Photo Library, phone sizes (including speculation on the lineup of new iPhones in September), El Chapo’s social media intern, Apple’s stock price, Alex Gibney’s upcoming Steve Jobs documentary, and the new trailer for <em>Spectre</em>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://casper.com/thetalkshow">Casper</a>: Just the right sink, just the right bounce. Save $50 on any Casper mattress.</li>
+<li><a href="http://hullopillow.com/talkshow/">Hullo</a>: Your favorite pillow. Guaranteed.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos printed directly on pure glass. Use code “daringfireball” and save 15 percent off your first order.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.amazon.com/exec/obidos/asin/B002M3TQ44/ref=nosim/daringfirebal-20">Mackie Onyx 1620i 16-channel Premium FireWire Recording Mixer</a>.</li>
+<li><a href="http://www.amazon.com/exec/obidos/asin/B003VZG550/ref=nosim/daringfirebal-20">The somewhat less-complicated mixer I actually bought</a>.</li>
+<li><a href="https://twitter.com/jsnell/status/623642015146749953">Jason Snell’s “Bezos Chart” showing Apple Watch sales figures</a>.</li>
+<li><a href="http://www.007.com/new-spectre-trailer-released/">The new trailer for <em>Spectre</em></a>.</li>
+<li><a href="https://www.reddit.com/r/movies/comments/3dj6aa/auric_goldfinger_in_casino_royale/">Reddit thread on Auric Goldfinger appearing as a sort of Easter egg in <em>Casino Royale</em></a>.</li>
+<li>Another Easter egg in <em>Casino Royale</em>: <a href="http://birthmoviesdeath.com/2015/06/25/product-misplacement-the-casino-royale-watch-trick-you-never-saw">Daniel Craig using his Omega Seamaster as a knuckleduster</a> in the climactic fight.</li>
+<li><a href="https://www.youtube.com/watch?v=jhWKxtsYrJE">Trailer for Alex Gibney’s Steve Jobs documentary, <em>The Man in the Machine</em></a>.</li>
+<li><a href="http://www.dailymail.co.uk/news/article-3159344/There-s-no-jail-big-midget-Mexico-s-billion-dollar-drugs-lord-gloats-Twitter-escaping-prison-shower-block-tunnel.html">El Chapo threatening Donald Trump on Twitter</a>.</li>
+<li><a href="https://news.vice.com/video/inside-el-chapos-escape-tunnel">Inside El Chapo’s purported escape tunnel</a>.</li>
+</ul>
+]]>
+ </content:encoded>
+ </item>
+ <item>
+ <title>126: ‘Tommy Got Made’ With Guest Jason Snell</title>
+ <link>http://daringfireball.net/thetalkshow/2015/07/20/ep-126</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/07/20/ep-126</guid>
+ <pubDate>Mon, 20 Jul 2015 23:53:54 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/215617486-thetalkshow-126a.mp3" length="124660538" />
+ <itunes:duration>02:53:03</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Jason Snell returns to the show, with a lot to talk about: Pebble's new Pebble Time smartwatch, the "Safari is the New IE" argument, the state of web advertising (and its adverse effects on performance and privacy) and monetization, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Jason Snell returns to the show, with a lot to talk about: Pebble's new Pebble Time smartwatch, the "Safari is the New IE" argument, the state of web advertising (and its adverse effects on performance and privacy) and monetization, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://harrys.com/">Harry’s</a>: High quality razors and blades for a fraction of the price. Save $5 off first purchase with code “TALKSHOW”.</li>
+<li><a href="http://hover.com/">Hover</a>: The best way to buy and manage domain names. Save 10 percent off first purchase with code “ELEPHANTMARCO”.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos printed directly on pure glass. Use code “daringfireball” and save 15 percent off your first order.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for Macs.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://kottke.org/07/12/i-feel-welcome-i-really-do">Adam Lisagor guest-posting on Kottke.org back in 2007</a>. And <a href="http://kottke.org/07/12/your-host-for-the-next-week-adam-lisagor">Jason Kottke’s introduction</a>.</li>
+<li><a href="https://stratechery.com/2015/why-web-pages-suck/">Ben Thompson on how web advertising works today</a>. It’s gross.</li>
+<li><a href="http://www.slideshare.net/kleinerperkins/internet-trends-v1/16">Mary Meeker’s slide on mobile’s share of attention vs. advertising revenue in the U.S. in 2015</a>.</li>
+<li><a href="http://sixcolors.com/post/2015/03/testing-out-the-mlbtv-mac-app/">Jason on MLB’s experimental native Mac app for watching games</a>.</li>
+<li>Jason: “<a href="http://sixcolors.com/link/2015/07/web-developers-are-grumpy-about-safari/">Web Developers Are Grumpy About Safari</a>”.</li>
+<li>Rene Ritchie: “<a href="http://www.imore.com/safari-isnt-new-ie-its-user-centric-web">Safari Isn’t the New IE: It’s the User-Centric Web</a>”.</li>
+<li><a href="https://instagram.com/p/3u3SmDvS9v/?taken-by=ajgruber">My wife’s photo of me and Phil Schiller on stage last month</a>.</li>
+<li><a href="https://readdle.com/products/spark">Spark</a> — excellent new iOS email app from Readdle that Jason is using.</li>
+</ul>
+
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>125: ‘They Buy a Hole in the Wall’ With Guest Horace Dediu</title>
+ <link>http://daringfireball.net/thetalkshow/2015/06/28/ep-125</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/06/28/ep-125</guid>
+ <pubDate>Sun, 28 Jun 2015 19:45:00 EDT</pubDate>
+ <itunes:duration>01:56:26</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/212392137-thetalkshow-125a.mp3" length="83895112" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Horace Dediu joins The Talk Show for the first time. Topics include the state of the maps industry, Apple's functional organizational structure, what the WWDC keynote said about the state of the company today, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Special guest Horace Dediu joins The Talk Show for the first time. Topics include the state of the maps industry, Apple’s functional organizational structure, what the WWDC keynote said about the state of the company today, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for Macs.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos printed directly on pure glass. Use code “daringfireball” and save 15 percent off your first order.</li>
+<li><a href="https://casper.com/thetalkshow">Casper</a>: An obsessively engineered mattress at a shockingly fair price. Save $50 on any order using code “thetalkshow”.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/hybrideventsgrp">Hybrid Events Group</a>, who handled the live streaming video for The Talk Show’s live episode two weeks ago.</li>
+<li><a href="http://www.asymco.com/2015/06/15/where-are-maps-going/">Horace’s analysis of the state of the maps market</a>.</li>
+<li><a href="http://www.nytimes.com/2015/06/28/arts/music/zane-lowe-the-dj-scratching-out-beats-1-for-apple.html">New York Times feature on the curated nature of Apple Music’s streaming music</a>.</li>
+<li><a href="http://www.asymco.com/2011/01/17/the-cook-doctrine/">Horace’s transcript of Tim Cook’s poetic description of Apple’s doctrine</a>, from a 2009 quarterly analyst call.</li>
+<li>Horace’s podcast: <a href="http://5by5.tv/criticalpath/">The Critical Path</a>.</li>
+</ul>
+
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>124: ‘Schiller Did Not Have to Put Up With This Bullshit’ With Guest Guy English</title>
+ <link>http://daringfireball.net/thetalkshow/2015/06/20/ep-124</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/06/20/ep-124</guid>
+ <pubDate>Sat, 20 Jun 2015 16:42:00 EDT</pubDate>
+ <itunes:duration>02:19:03</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/211229790-thetalkshow-124a.mp3" length="100174288" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Guy English returns to the show, and we make a valiant but failed effort to cover all of the technical/developer news from last week’s WWDC. Among the topics we did hit: app thinning, Bitcode, WatchKit 2.0, CloudKit (and opening it up to web developers), Swift 2.0, Metal coming to the Mac, accessibility and low-level support for right-to-left languages, iOS 9’s new low-power mode, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+
+<p>Guy English returns to the show, and we make a valiant but failed effort to cover all of the technical/developer news from last week’s WWDC. Among the topics we did hit: app thinning, Bitcode, WatchKit 2.0, CloudKit (and opening it up to web developers), Swift 2.0, Metal coming to the Mac, accessibility and low-level support for right-to-left languages, iOS 9’s new low-power mode, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://harrys.com/">Harry’s</a>: High quality razors and blades for a fraction of the price. Save $5 off first purchase with code “TALKSHOW”.</li>
+<li><a href="http://hover.com/">Hover</a>: The best way to buy and manage domain names. Save 10 percent off first purchase with code “ELCAPITAN”.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Build it beautiful. Use code “GRUBER” for 10% off your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://nap.kn/">Napkin</a>: A great Mac imagine annotation app from Guy’s company, Aged &amp; Distilled.</li>
+<li><a href="https://twitter.com/gte">Guy English on Twitter</a>.</li>
+<li><a href="https://medium.com/@InertialLemon/apple-s-bitcode-telegraphs-future-cpu-plans-a7b90d326228">“Inertial Lemon“‘s take on Bitcode</a>, which Guy and I think is probably incorrect in several ways.</li>
+<li><a href="https://en.wikipedia.org/wiki/Chris_Lattner">Chris Lattner</a>.</li>
+<li><em><a href="http://becomingstevejobs.com/">Becoming Steve Jobs</a></em>, the new biography by Brent Schlender and Rick Tetzeli.</li>
+<li><a href="https://developer.apple.com/wwdc/sessions/">WWDC 2015 session videos</a>, all of which are viewable without an ADC account.</li>
+<li><a href="https://vimeo.com/130510366">Video of last week’s live episode of The Talk Show, with special guest Phil Schiller</a>.</li>
+</ul>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>123: Live From WWDC 2015 With Guest Phil Schiller</title>
+ <link>http://daringfireball.net/thetalkshow/2015/06/09/ep-123</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/06/09/ep-123</guid>
+ <pubDate>Wed, 10 Jun 2015 18:28:05 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/209784427-thetalkshow-123a.mp3" length="49921126" />
+ <itunes:duration>01:08:38</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Recorded in front of a live audience at Mezzanine in San Francisco, John Gruber is joined by Phil Schiller to discuss the news from WWDC: OS X 10.11 El Capitan, iOS 9, the new native app SDK for Apple Watch, Apple Music, and the 2004 American League Championship series.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Recorded in front of a live audience at Mezzanine in San Francisco, John Gruber is joined by Phil Schiller to discuss the news from WWDC: OS X 10.11 El Capitan, iOS 9, the new native app SDK for Apple Watch, Apple Music, and the 2004 American League Championship series.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailchimp.net/">MailChimp</a>: Send better email.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures printed directly on glass. Save 15% with code "WWDC".</li>
+<li><a href="http://AnyDevAnyApp.com/">Microsoft</a>: Tools and services for any developer, any app, any OS. Really.</li>
+</ul>
+
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>122: ‘Everyone Needs a Jerk’ With Guest Mark Gurman</title>
+ <link>http://daringfireball.net/thetalkshow/2015/06/06/ep-122</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/06/06/ep-122</guid>
+ <pubDate>Sun, 7 Jun 2015 00:15:43 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/209165162-thetalkshow-122a.mp3" length="102554094" />
+ <itunes:duration>02:22:21</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Prelude to WWDC 2015 episode, featuring special guest Mark Gurman. We cover anything and everything you’d want to know heading into WWDC.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Prelude to WWDC 2015 episode, featuring special guest Mark Gurman. We cover anything and everything you’d want to know heading into WWDC.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/">Squarespace</a>: Build it beautiful. Use code "GRUBER" and save 10 percent.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you'll actually like.</li>
+<li><a href="http://mailroute.net/tts">MailRoute</a>: Hosted spam and virus protection for email. Use this link for a 10 percent discount for the life of your account.</li>
+<li><a href="http://getharvest.com/">Harvest</a>: A beautiful business tool for tracking time spent on client projects. Use code "THETALKSHOW" at checkout and save 50% off your first month.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://9to5mac.com/2015/06/05/wwdc-2015-ios-osx-music-roundup/#more-382889">Gurman’s WWDC expectation roundup at 9to5Mac</a>.</li>
+<li><a href="https://github.com/supermarin/YosemiteSanFranciscoFont">That hack to use San Francisco as the system font on Yosemite</a>.</li>
+<li><a href="https://usatftw.files.wordpress.com/2015/06/usp_nba__playoffs-cleveland_cavaliers_at_golden_st_73545527-e1433504117715.jpg">Eddy Cue at game 1 of the NBA Finals</a>.</li>
+<li><a href="http://9to5mac.com/2014/08/29/seeing-through-the-illusion-understanding-apples-mastery-of-the-media/">Gurman’s 2014 feature on Apple PR</a>.</li>
+<li><a href="http://techmeme.com/lb">Techmeme’s “leaderboard”</a>, and their <a href="http://news.techmeme.com/150520/author-leaderboards">FAQ explaining how it works</a>.</li>
+<li><a href="http://floate.com.au/2014/10/next-project-needs-white-hat-jerk/">Ross Floate: ‘Your Next Project Needs a White-Hat Jerk’</a>.</li>
+<li><a href="http://www.businessinsider.com/slack-flaw-lets-you-see-other-companies-rooms-2014-10?op=1">Last year’s Slack flaw that let you see the team names from any company</a>.</li>
+</ul>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>121: ‘He Was Sort of Anti-Golf’ With Guest Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2015/05/31/ep-121</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/05/31/ep-121</guid>
+ <pubDate>Sun, 31 May 2015 22:22:28 EDT</pubDate>
+ <itunes:duration>02:18:09</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/208170858-thetalkshow-121a.mp3" length="99530111" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Rene Ritchie returns to the show. Topics includes Jony Ive’s promotion to Chief Design Officer and the implications for Apple; the differences in Apple’s internal design culture now that industrial and user interface design are under one roof; Google’s announcements at their I/O developer conference last week in San Francisco, including Google Photos; “machine learning”; Apple replacing the much-maligned discoveryd with good old mDNSResponder in the latest Yosemite developer beta; our thoughts on the space black Apple Watch with link bracelet; and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Rene Ritchie returns to the show. Topics includes Jony Ive’s promotion to Chief Design Officer and the implications for Apple; the differences in Apple’s internal design culture now that industrial and user interface design are under one roof; Google’s announcements at their I/O developer conference last week in San Francisco, including Google Photos; “machine learning”; Apple replacing the much-maligned discoveryd with good old mDNSResponder in the latest Yosemite developer beta; our thoughts on the space black Apple Watch with link bracelet; and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://mailroute.net/thetalkshow">MailRoute</a>: Hosted spam and virus protection for email. Use this link for a 10 percent discount for the life of your account.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave at a fraction of the price. Use code <span class="caps">TALKSHOW</span> for $5 off your first purchase.</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, classically crafted eyewear at a revolutionary price point.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Photo, frame, and mount, all in one. Save with code <span class="caps">DARINGFIREBALL</span>.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Stories on Greg Christie’s departure from Apple last year, from <a href="http://techcrunch.com/2014/04/09/veteran-apple-designer-greg-christie-departing-and-his-group-will-report-to-jony-ive/">TechCrunch</a> and <a href="http://9to5mac.com/2014/04/09/jony-ive-shakes-up-apples-software-design-group-iphone-interface-creator-greg-christie-departing/">9to5Mac</a>.</li>
+<li>“<a href="http://thenextweb.com/apple/2014/10/05/apple-skankphone-built-original-iphone-release/">Skankphone</a>” — the purposefully ugly prototype OS that was seen by most of the industrial design team for the original iPhone.</li>
+<li><a href="http://www.imore.com/space-black-apple-watch-steel-pictures">Rene’s photographs of the actual shipping space black Apple Watch with link bracelet</a>, which really does look <em>black</em>.</li>
+<li><a href="https://daringfireball.net/thetalkshow/121/spaceblack-sept-2014.jpeg">Apple’s promotional photos for the space black Apple Watch from back in September 2014</a>, when it was more like a medium-dark gray.</li>
+<li>News from Google I/O last week: <a href="http://daringfireball.net/linked/2015/05/28/google-photos">Google Photos</a>, <a href="https://www.youtube.com/watch?v=XZvqQ4xK1R8">Marques Brownlee on the top new features in Android M</a>, and <a href="http://thenextweb.com/google/2015/05/28/everything-google-announced-at-google-io-2015-in-one-handy-list/">everything else in one handy list</a>.</li>
+<li><a href="http://9to5mac.com/2015/05/27/ios-9-and-os-x-10-11-weekend-reading-roundup-new-features-enhancements-detailed/">Mark Gurman’s roundup of iOS 9 and OS X 10.11 rumors</a> leading up to WWDC next week.</li>
+</ul>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>120: ‘The Move to Frisco’ With Guest Dan Frommer</title>
+ <link>http://daringfireball.net/thetalkshow/2015/05/23/ep-120</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/05/23/ep-120</guid>
+ <pubDate>Sat, 23 May 2015 13:35:57 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/206892536-thetalkshow-120a.mp3" length="99570187" />
+ <itunes:duration>02:18:13</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Dan Frommer returns to the show. Topics include David Letterman, iPhone docks, the space black steel Apple Watch, whatever happened to the Edition collection, San Francisco as the new system font for iOS and Mac OS X, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest <a href="https://twitter.com/fromedome">Dan Frommer</a> returns to the show. Topics include David Letterman, iPhone docks, the space black steel Apple Watch, whatever happened to the Edition collection, San Francisco as the new system font for iOS and Mac OS X, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Build it beautiful. Use code “jg” and save 10 percent.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like. Sign up today and get started absolutely free of charge.</li>
+<li><a href="http://automatic.com/talkshow">Automatic</a>: The cool, clever connected-car dingus. Save $20 with this link.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Letterman profiles in <a href="http://www.rollingstone.com/tv/features/thanks-dave-the-genius-of-lettermans-late-show-goodbye-20150521">Rolling Stone</a> and <a href="http://www.nytimes.com/2015/05/03/arts/television/david-letterman-reflects-on-33-years-in-late-night-television.html">The New York Times</a>.</li>
+<li><a href="http://daringfireball.net/linked/2015/05/19/iphone-docks">Apple’s new iPhone dock, and the third-party docks I use</a>.</li>
+<li><a href="http://www.macintosh.fm/">Mark Bramhill’s excellent Welcome to Macintosh podcast</a>.</li>
+<li><a href="http://www.marco.org/2015/05/19/mistake-one">Marco Arment on the new one-port MacBook</a>.</li>
+<li><a href="http://www.amazon.com/gp/product/B00BVXXBSS/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00BVXXBSS&amp;linkCode=as2&amp;tag=fromedomecom-20&amp;linkId=NHOB4SMBZ3FODNE3">Dan’s amazing iPhone stand</a>.</li>
+<li><a href="http://fortune.com/2015/04/24/humblebrag-i-had-to-wait-until-april-23-to-get-my-apple-watch/">Philip Elmer-DeWitt on getting his Apple Watch review unit</a>.</li>
+</ul>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>119: ‘Workin’ in Pajamas’ With Guest David Sparks</title>
+ <link>http://daringfireball.net/thetalkshow/2015/05/15/ep-119</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/05/15/ep-119</guid>
+ <pubDate>Fri, 15 May 2015 23:59:00 EDT</pubDate>
+ <itunes:duration>02:32:45</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/205701811-thetalkshow-119a.mp3" length="110041007" />
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest David Sparks joins the show for the first time. Topics include “power users”, Markdown, Apple Watch, the new MacBook, iCloud Photo Syncing and the new Photos for Mac, WWDC, and wearing slippers as “work” shoes.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest <a href="http://macsparky.com/">David Sparks</a> joins the show for the first time. Topics include “power users”, Markdown, Apple Watch, the new MacBook, iCloud Photo Syncing and the new Photos for Mac, WWDC, and wearing slippers as “work” shoes.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.lastbottlewines.com/thetalkshow">Last Bottle Wines</a>: Get the new app for free. Enjoy curated fine wine daily. 30-75% off.</li>
+<li><a href="http://www.thebestcaesar.com/thetalkshow">The Best Caesar</a>: Get the app for free. Learn the recipe. Enjoy it for a lifetime. </li>
+<li><a href="http://hover.com/">Hover</a>: The best way to buy and manage domain names. Use promo code: “missinglinks” for 10 percent off.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://macsparky.com/photos/">Photos for Mac Field Guide</a>.</li>
+<li><a href="http://www.relay.fm/mpu">Mac Power Users</a>, David's podcast co-hosted with Katie Floyd.</li>
+<li><a href="http://macsparky.com/">MacSparky</a>, David’s weblog.</li>
+<li><a href="http://macsparky.com/markdown/">David’s Markdown book</a>.</li>
+<li><a href="http://www.sparksesq.com">Sparks Law</a>.</li>
+<li><a href="https://medium.com/@sorthman/a-long-time-digital-watch-geek-s-experience-with-apple-watch-7c541fe65308">Stephen Orth’s suggestions for Apple Watch</a>.</li>
+<li><a href="https://instagram.com/p/2Xl-_5Fzb4/?taken-by=gruber">My Instagram photo of mattresses being removed from the Parker-Spruce Hotel</a>.</li>
+<li><a href="http://www.tripadvisor.com/Hotel_Review-g60795-d122337-Reviews-Parker_Spruce_Hotel-Philadelphia_Pennsylvania.html">TripAdvisor reviews for the Parker-Spruce</a>.</li>
+</ul>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>118: ‘Sloppy on the Side’ With Guest Adam Lisagor</title>
+ <link>http://daringfireball.net/thetalkshow/2015/05/07/ep-118</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/05/07/ep-118</guid>
+ <pubDate>Thu, 7 May 2015 23:22:48 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/204451292-thetalkshow-118a.mp3" length="95442108" />
+ <itunes:duration>02:12:28</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest and longtime friend Adam Lisagor returns to the show. I don’t know anyone who’s more excited about Apple Watch than Adam, except, maybe, my son. It’s easy to lose sight of the fact that Apple just released a brand-new thing, and they don’t do that very often. This episode, we just had fun. Some keen observations about the future of the platform, too.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest and longtime friend Adam Lisagor returns to the show. I don’t know anyone who’s more excited about Apple Watch than Adam, except, maybe, my son. It’s easy to lose sight of the fact that Apple just released a brand-new thing, and they don’t do that very often. This episode, we just had fun. Some keen observations about the future of the platform, too.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://railstutorial.org/gruber">Rails Tutorial by Michael Hartl</a>: Learn web development With Rails. Save 15 percent with code “gruber”.</li>
+<li><a href="https://hullopillow.com/talkshow/">Hullo</a>: Your new favorite pillow. Guaranteed.</li>
+<li><a href="http://hover.com/">Hover</a>: The best way to buy and manage domain names. Use promo code: “comebackkid” for 10 percent off.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://sandwich.video/">Sandwich Video and their new domain name</a>.</li>
+<li><a href="https://www.google.com/search?q=Transformers+watch+1980s&amp;safe=off&amp;tbm=isch">The beloved Transformers watch of Adam’s youth</a>.</li>
+<li><a href="http://io9.com/5976109/20-gobots-that-remind-us-why-the-gobots-sucked-so-incredibly-hard">The GoBots</a>.</li>
+<li><a href="http://losangeles.cbslocal.com/2015/05/03/camarillo-dentist-who-survived-quake-in-nepal-back-home-even-if-his-heart-is-elsewhere/">Adam’s dad on TV after returning from a humanitarian aid mission to Nepal</a>.</li>
+</ul>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>117: ‘I Touched Ron Johnson’ With Guest John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2015/04/30/ep-117</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/04/30/ep-117</guid>
+ <pubDate>Thu, 30 Apr 2015 23:59:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/203391433-thetalkshow-117a.mp3" length="110071101" />
+ <itunes:duration>02:32:47</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>John Moltz returns to the show. Topics include Gruber’s retina, Apple Watch backorders and the watch itself, news from Microsoft’s Build conference, how to introduce yourself to people you’ve publicly branded a “jackass”, and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>John Moltz returns to the show. Topics include Gruber’s retina, Apple Watch backorders and the watch itself, news from Microsoft’s Build conference, how to introduce yourself to people you’ve publicly branded a “jackass”, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://audiblepodcast.com/thetalkshow">Audible.com</a>: Sign up today for a free audiobook of your choice and a 30-day membership trial.</li>
+<li><a href="http://automatic.com/talkshow">Automatic</a>: Cool connected-car adapter (a.k.a. “dingus”). Save $20 with this link.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="http://casper.com/talkshow">Casper</a>: Premium mattresses at extraordinary prices. Save $50 through this link.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.techmeme.com/150430/p19#a150430p19">Sony makes $20 per iPhone 6 and Galaxy S6 from image sensors</a>.</li>
+<li><a href="http://www.theverge.com/2015/4/30/8519731/sony-earnings-fy-2014">Sony loses money on its own phone handsets</a>.</li>
+<li><a href="https://mobile.twitter.com/BenBajarin/status/593784909279277058">Ben Bajarin on Xiaomi slump in phone sales in China</a>. (And Apple’s rise.)</li>
+<li><a href="http://www.wired.com/2015/04/microsoft-build-hololens/">Microsoft’s impressive HoloLens demo at Build this week</a>.</li>
+<li><a href="http://daringfireball.net/linked/2015/04/29/windows-10-apps">Windows 10 to Run Recompiled Android and iOS Apps</a>.</li>
+<li><a href="http://venturebeat.com/2015/04/30/apple-watchs-components-cost-just-81-20-highest-markup-of-any-apple-product/">VentureBeat</a> and <a href="http://recode.net/2015/04/30/teardown-shows-apple-watch-sport-costs-just-84-to-build/">Recode</a> both fall for iSuppli’s claim that Apple Watch Sport costs only $83 to manufacture.</li>
+<li>Tim Cook, earlier this week, <a href="http://daringfireball.net/linked/2015/04/27/cook-q2-2015-remarks">on these speculative cost breakdowns</a>: “I’ve never seen one that is anywhere close to being accurate.”</li>
+<li><a href="https://medium.com/@flyosity/inconvenient-truths-about-the-apple-watch-11bafa44551b">Mike Rundle argues Apple Watch is too small</a>.</li>
+<li><a href="http://leancrew.com/all-this/2015/04/moving-averages-and-the-ipad/">Dr. Drang visualizes declining iPad sales</a>.</li>
+<li><a href="http://www.localeditionsf.com/">Local Edition</a>, bar in downtown Frisco.</li>
+<li><a href="http://verynicewebsite.net/">Very Nice Website</a>.</li>
+<li><a href="http://www.kenrockwell.com/pentax/k1000.htm">The Pentax K1000</a>. Gorgeous.</li>
+</ul>
+]]> </content:encoded>
+ </item>
+ <item>
+ <title>116: ‘Browser Pooped on the Wee-Wee Pad’ With Guest Joanna Stern</title>
+ <link>http://daringfireball.net/thetalkshow/2015/04/15/ep-116</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/04/15/ep-116</guid>
+ <pubDate>Wed, 15 Apr 2015 22:18:48 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/201017184-thetalkshow-116a.mp3" length="110956664" />
+ <itunes:duration>02:34:01</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <description>Special guest Joanna Stern of The Wall Street Journal joins the show to talk about Apple Watch and the new MacBook (and her reviews thereof).</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Joanna Stern of The Wall Street Journal joins the show to talk about Apple Watch and the new MacBook (and her reviews thereof).</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: A better web starts with your website. Use promo code “jg” for 10 percent off.</li>
+<li><a href="http://harrys.com/">Harry's</a>: An exceptional shave for a fraction of the price. Use coupon code “talkshow” and save $5 on your first order.</li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled, uncomplicated backup for just $5/month.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.wsj.com/articles/apple-watch-review-what-the-apple-watch-does-bestmake-you-look-good-1428494694">Joanna’s Apple Watch review and video</a>.</li>
+<li><a href="http://www.wsj.com/articles/apple-macbook-review-the-laptop-of-the-future-isnt-ready-for-the-present-1428595317">Joanna’s review of the new MacBook</a>.</li>
+<li><a href="http://www.apple.com/watch/battery.html">Apple’s battery life page for Apple Watch</a>, which states that the 42 mm models get longer battery life.</li>
+<li><a href="https://twitter.com/JoannaStern/status/587019617681461248">Browser</a>.</li>
+</ul>]]> </content:encoded>
+ </item>
+ <item>
+ <title>115: ‘Turd on the Front Porch’ With Guest Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2015/04/03/ep-115</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/04/03/ep-115</guid>
+ <pubDate>Fri, 3 Apr 2015 19:53:40 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/199138810-thetalkshow-115a.mp3" length="138054971" />
+ <itunes:duration>02:34:16</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Ben Thompson returns, with the intention of not talking about Apple Watch — and so of course we spend two hours talking about Apple Watch. Other topics include the launch of Jay Z’s streaming music service Tidal, audience ceilings faced by different types of dedicated TV devices, and Meerkat-vs.-Periscope and the nascent revolution of ubiquitous live-streaming video. We make some NCAA men’s basketball Final Four picks, too.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Ben Thompson returns, with the intention of not talking about Apple Watch — and so of course we spend two hours talking about Apple Watch. Other topics include the launch of Jay Z’s streaming music service Tidal, audience ceilings faced by different types of dedicated TV devices, and Meerkat-vs.-Periscope and the nascent revolution of ubiquitous live-streaming video. We make some NCAA men’s basketball Final Four picks, too.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.thedash.com/">Dash</a>: Create your own beautiful, fully-customizable dashboards on the web.</li>
+<li><a href="http://www.igloosoftware.com/tts">Igloo</a>: The intranet you’ll actually like.</li>
+<li><a href="http://www.caspersleep.com/thetalkshow">Casper</a>: Premium mattresses at great prices, with a no-questions-asked refund policy.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Ben’s website: <a href="http://stratechery.com/">Stratechery</a>.</li>
+<li>David Pierce, writing for Wired: “<a href="http://www.wired.com/2015/04/the-apple-watch/">iPhone Killer: The Secret History of the Apple Watch</a>”.</li>
+<li>Daring Fireball, back in 2013: “<a href="http://daringfireball.net/linked/2013/03/19/lynch-bozo">Exhibit A in the Case That Newly-Hired Apple Vp of Technology Kevin Lynch Is a Bozo, a Bad Hire</a>”.</li>
+<li><a href="http://klynch.com/">Kevin Lynch’s personal website</a>.</li>
+<li>Billboard: “<a href="http://www.billboard.com/articles/business/6516945/jay-z-jimmy-iovine-streaming-tidal">Jay Z on Competing With Jimmy Iovine: ‘I Don’t Have To Lose…For You Guys To Win’</a>”.</li>
+<li><a href="https://www.youtube.com/watch?v=lmvmtmqqbeI">Steve Jobs unveils Apple’s “Digital Hub” strategy at Macworld Expo in January 2001</a>.</li>
+<li>Panic: “<a href="https://www.panic.com/extras/audionstory/">The True Story of Audion</a>”.</li>
+<li>Yahoo Finance: “<a href="http://finance.yahoo.com/news/youtube-s-highest-paid-star-is-a-woman-who-unboxes-disney-toys-062606350.html">YouTube’s Highest-Paid Star Is a Woman Who Unboxes Disney Toys</a>”.</li>
+<li>Recode: “<a href="http://recode.net/2015/04/01/apple-asks-tv-programmers-to-supply-their-own-streams-for-apples-tv-service/">Apple Asks TV Programmers to Supply Their Own Streams for Apple’s TV Service</a>”.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>114: ‘All of Us Assholes in Journalism’ With Guest Serenity Caldwell</title>
+ <link>http://daringfireball.net/thetalkshow/2015/03/20/ep-114</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/03/20/ep-114</guid>
+ <pubDate>Fri, 20 Mar 2015 18:00:00 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/196869438-thetalkshow-114a.mp3" length="100831601" />
+ <itunes:duration>02:19:58</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>yes</itunes:explicit>
+ <description>Special guest Serenity Caldwell joins the show. Topics include last week’s “Spring Forward” Apple media event; the new Force Touch Trackpad for MacBooks, and the prospects for force touch in future iOS devices; and of course, Apple Watch.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest <a href="https://twitter.com/settern">Serenity Caldwell</a> joins the show. Topics include last week’s “Spring Forward” Apple media event; the new Force Touch Trackpad for MacBooks, and the prospects for force touch in future iOS devices; and of course, Apple Watch.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://foremostedition.com/">Foremost Edition</a>: Small-batch, American-made clothing line for men and women. Use the code “PROMOCODE” at checkout to receive 20 percent off.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: An exceptional shave for a fraction of the price. Use coupon code “talkshow” and save $5 on your first order.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: A better web starts with your website. Use promo code “jg” for 10 percent off.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://arstechnica.com/apple/2008/02/macbook-air-ssd-review/">Jacqui Cheng’s review of the original 2008 MacBook Air for Ars Technica</a>.</li>
+<li><a href="http://www.macworld.com/article/2897715/the-new-macbook-is-cool-but-the-powerbook-duo-was-cooler.html">Christopher Phin fondly remembers the PowerBook Duo</a>.</li>
+<li><a href="http://atomicdelights.com/blog/a-glimpse-at-how-the-apple-watch-is-made">Greg Koenig: “How the Apple Watch Is Made”</a>.</li>
+<li><a href="http://lu.ma/products/loop3">Luma Loop — high quality, well-designed camera strap</a>.</li>
+<li><a href="https://twitter.com/settern/status/578225674336538625">Serenity’s MacBook Air accident this week</a>.</li>
+<li><a href="http://en.wikipedia.org/wiki/Atari_8-bit_family#/media/File:Atari-400-Comp.jpg">The Atari 400 and its craptacular keyboard</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>113: ‘A Tube of Lubricant for Your Life’ With Guest Matthew Panzarino</title>
+ <link>http://daringfireball.net/thetalkshow/2015/03/12/ep-113</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/03/12/ep-113</guid>
+ <pubDate>Thu, 12 Mar 2015 22:51:42 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/195613844-thetalkshow-113a.mp3" length="127664269" />
+ <itunes:duration>02:57:14</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Matthew Panzarino joins the show to talk about this week’s “Spring Forward” Apple media event, for the new MacBook and Apple Watch.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest <a href="http://twitter.com/panzer">Matthew Panzarino</a> joins the show. After some brief chitchat on Meerkat and monocular vision, we get into the obvious topic this week: Apple’s “Spring Forward” media event in San Francisco. Sub-topics therein: ResearchKit; FaceTime and open standards; accessibility and Tim Cook’s refusal to measure the ROI of such things; Jeff Williams’s first on-stage appearance at an Apple keynote; Angela Ahrendts; the new single-port MacBook; San Francisco as the new keycap font on the MacBook keyboard; the Taptic trackpad; the timing of this event; and more.</p>
+
+<p>Oh, and something called “Apple Watch”.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="http://igloosoftware.com/tts">Igloo</a>: The intranet you’ll actually like. Sign up for a free trial.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: An exceptional shave for a fraction of the price. Use coupon code “talkshow” and save $5 on your first order.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: A better web starts with your website. Use promo code “jg” for 10% off.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.meerkatapp.co/">Meerkat</a>.</li>
+<li><a href="http://www.apple.com/live/2015-mar-event/">Video for Apple's "Spring Forward" event</a>.</li>
+<li><a href="http://techcrunch.com/2015/03/05/would-you-buy-a-smart-band-for-an-apple-watch/">Matthew's scoop on the Apple Watch diagnostic port</a>.</li>
+<li><a href="http://techcrunch.com/2015/03/06/the-apple-watch-is-time-saved/">Matthew on Apple Watch: 'The Apple Watch Is Time Saved'</a>.</li>
+<li><a href="http://daringfireball.net/linked/">Yours truly's pretty good guesses on Apple Watch pricing</a>.</li>
+</ul>
+
+
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>112: ‘Retina Quality’ With Guest Paul Kafasis</title>
+ <link>http://daringfireball.net/thetalkshow/2015/03/04/ep-112</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/03/04/ep-112</guid>
+ <pubDate>Wed, 4 Mar 2015 22:54:46 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/194289704-thetalkshow-112a.mp3" length="102485448" />
+ <itunes:duration>02:22:15</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Paul Kafasis returns to the show. Topics include the new Pebble Time watch, the imminent arrival of Apple Watch, Paul’s clever new doorbell (and unfortunate refrigerator situation), a little bit of baseball, and why I can’t attend next week’s Apple event in San Francisco.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Paul Kafasis returns to the show. Topics include the new Pebble Time watch, the imminent arrival of Apple Watch, Paul’s clever new doorbell (and unfortunate refrigerator situation), a little bit of baseball, and why I can’t attend next week’s Apple event in San Francisco.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Boutique-quality, classically crafted eyewear at a revolutionary price point.</li>
+<li><a href="http://www.caspersleep.com/thetalkshow">Casper</a>: Great mattresses at low prices. Use code “thetalkshow” and save $50.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="http://hover.com/">Hover</a>: The world’s best domain name registrar. Use this week’s special code, “springtraining”, and save 10 percent off your first purchase.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://forums.macrumors.com/showpost.php?p=20734401&amp;postcount=104">MacRumors “speculative pricing” forum posting</a> that social media turned into a “leaked price list from Apple”.</li>
+<li><a href="http://ring.com/">Ring</a>, Paul’s clever new doorbell.</li>
+<li><a href="http://justthetip.fm/">Just The Tip</a>, Paul’s podcast with my wife, Amy Jane Gruber.</li>
+<li>Paul, writing at One Foot Tsunami, <a href="http://onefoottsunami.com/2015/02/24/new-emoji-and-my-favorite-radar/">on Apple’s continued disregard for the Unicode 7 “Reversed Hand With Middle Finger Extended” emoji glyph</a>, arguably the most pressing technical issue facing Apple and its users today.</li>
+<li><a href="http://openradar.appspot.com/19925942">Apple’s response to Paul's Radar on the “Reversed Hand With Middle Finger Extended” emoji</a>.</li>
+<li><a href="https://rogueamoeba.com/audiohijack/">Audio Hijack 3</a>, Rogue Amoeba’s new update to their excellent audio recording app for Mac.</li>
+<li><a href="http://espn.go.com/espn/feature/story/_/id/12321274/alex-rodriguez-return-new-york-yankees">Interesting ESPN feature on Alex Rodriguez’s return to baseball</a>.</li>
+</ul>
+
+
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>111: ‘12 Hours a Day’ With Guest John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2015/02/23/ep-111</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/02/23/ep-111</guid>
+ <pubDate>Mon, 23 Feb 2015 21:43:32 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/192639330-thetalkshow-episode-111-john-moltz.mp3" length="85698287" />
+ <itunes:duration>01:59:02</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest John Moltz returns to the show. Topics include Apple Watch; rumors that Apple is working on a secret car project; our love of old Mac hardware; and a long discussion on Ian Parker’s extraordinary New Yorker profile of Jony Ive and his design team at Apple.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest John Moltz returns to the show. Topics include Apple Watch; rumors that Apple is working on a secret car project; our love of old Mac hardware; and a long discussion on Ian Parker’s extraordinary New Yorker profile of Jony Ive and his design team at Apple.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://automatic.com/talkshow">Automatic</a>: Super cool connected-car adapter. Save 20 percent through this link.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: Start here. Go anywhere. Use coupon code “JG” and save 10 percent.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.newyorker.com/magazine/2015/02/23/shape-things-come">Ian Parker’s New Yorker profile of Jony Ive and his design team</a>.</li>
+<li><a href="http://en.wikipedia.org/?title=Macintosh_SE/30">Macintosh SE/30</a>.</li>
+<li><a href="http://en.wikipedia.org/wiki/Macintosh_IIci">Macintosh IIci</a>.</li>
+<li><a href="http://news.yahoo.com/apple-working-creating-car-wsj-002415574--finance.html">Report that Apple has a team designing a car</a>.</li>
+<li>Dan Lyons is shocked — <em>shocked</em> — <a href="http://valleywag.gawker.com/apple-design-boss-jon-ive-gets-chauffeured-to-work-in-a-1686287300">that Jony Ive owns a Bentley and has a chauffeur</a>.</li>
+</ul>
+
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>110: ‘Rats in the Lobby’ With Guest Merlin Mann</title>
+ <link>http://daringfireball.net/thetalkshow/2015/02/13/ep-110</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/02/13/ep-110</guid>
+ <pubDate>Fri, 13 Feb 2015 16:10:32 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/190947913-thetalkshow-110-rats-in-the-lobby.mp3" length="92700880" />
+ <itunes:duration>02:08:45</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Merlin Mann returns to the show to talk about movies and shit.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Merlin Mann returns to the show to talk about movies and shit.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos, printed directly on glass. Use coupon “daringfireball” to save 15 percent.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: Be the smartest man in the (bath)room. Use coupon code “talkshow” and save $5 on your first order.</li>
+<li><a href="http://foremostedition.com/">Foremost</a>: Purveyor of small-batch, American-made clothing for men and women. Use coupon code "finally" for 20% off (and the same code works at <a href="http://neededition.com/">Need</a>, too).</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://carsonpodcast.com/">The Carson Podcast</a>.</li>
+<li><a href="http://www.pbs.org/wnet/americanmasters/episodes/johnny-carson-king-of-late-night/watch-the-full-documentary/2093/">PBS Masters special on Johnny Carson</a>. If you haven’t seen this, watch it. If you have seen it, watch it again. Trust me.</li>
+<li><a href="http://www.amazon.com/Johnny-Carson-Henry-Bushkin/dp/149151888X">Henry Bushkin’s book on Johnny Carson</a>.</li>
+<li>Dustin Curtis: “<a href="http://dcurt.is/privacy-vs-user-experience">Privacy vs. User Experience</a>”.</li>
+<li><em><a href="http://www.amazon.com/The-Wisdom-Insecurity-Message-Anxiety/dp/0307741206">The Wisdom of Insecurity</a></em>.</li>
+<li><a href="http://www.kids-in-mind.com/">Kids in Mind</a>.</li>
+<li><a href="http://www.babycenter.com/0_phthalates-what-you-need-to-know_3647067.bc">Phthalates</a>.</li>
+<li>From The Talk Show archive: “<a href="http://5by5.tv/talkshow/72">H.R. Fluffypuff</a>”.</li>
+</ul>
+
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>109: ‘How Many Keys?’ With Guest MG Siegler</title>
+ <link>http://daringfireball.net/thetalkshow/2015/02/04/ep-109</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/02/04/ep-109</guid>
+ <pubDate>Wed, 4 Feb 2015 22:47:43 EDT</pubDate>
+ <itunes:duration>01:53:37</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/189556369-thetalkshow-109a.mp3" length="81863237" />
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>MG Siegler returns to the show, reporting from London. Topics include last week’s blockbuster earnings report from Apple, the increasingly imminent Apple Watch, phone display sizes, the impact of China on sales, rethinking the intended purpose and success of the iPhone 5C, speculation on Apple’s 2015 product roadmap, and whether Bluetooth is the future for mass market earbuds and headphones.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>MG Siegler returns to the show, reporting from London. Topics include last week’s blockbuster earnings report from Apple, the increasingly imminent Apple Watch, phone display sizes, the impact of China on sales, rethinking the intended purpose and success of the iPhone 5C, speculation on Apple’s 2015 product roadmap, and whether Bluetooth is the future for mass market earbuds and headphones.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://HiOscar.com/thetalkshow">Oscar</a>: A new kind of health insurance company.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for your Mac for just $5 per month.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><em><a href="http://www.imdb.com/title/tt2419284/">Red Obsession</a></em>: Interesting 2011 documentary on the wine industry and China’s growing role in it. Currently <a href="http://www.netflix.com/WiMovie/70273710?strkid=1705240215_0_0&amp;trkid=222336&amp;movieid=70273710">available for streaming on Netflix</a>.</li>
+<li>MG Siegler on the iPhone 5C back in April 2014: “<a href="https://medium.com/five-hundred-words/the-iphone-5c-billboard-assault-612513a64456">The iPhone 5C Billboard Assault</a>”.</li>
+<li><a href="http://www.apple.com/pr/library/2015/01/27Apple-Reports-Record-First-Quarter-Results.html">Apple’s outstanding Q1 2015 results</a>.</li>
+<li><a href="http://www.reuters.com/article/2015/01/29/us-samsung-elec-results-idUSKBN0L12SO20150129">Samsung’s not-so-good results</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>108: ‘Malaprops’ With Guest Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2015/01/24/ep-108</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/01/24/ep-108</guid>
+ <pubDate>Sat, 24 Jan 2015 15:40:20 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/187683097-thetalkshow-108a.mp3" length="137254214" />
+ <itunes:duration>03:10:33</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Topics include Apple’s pseudo “sabbaticals” (employees who leave the company but then return after a year or two); Google’s cultural similarities to Microsoft; the ways that Apple (and iOS users) might miss Scott Forstall; accessibility as a high priority for Apple; Instagram’s success (and how they effectively ate Hipstamatic’s lunch); a debate on just how “simple” Twitter is; Box’s successful IPO, and Dropbox’s support for Yosemite’s official Finder integration for such services; MIT economist Jonathan Gruber pissing in my Google juice; Chromebooks; Amazon’s overall strategy, and the colossal failure of their Fire Phone; and, lastly, a good chunk on Microsoft’s Windows 10/HoloLens event last week.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Topics include Apple’s pseudo “sabbaticals” (employees who leave the company but then return after a year or two); Google’s cultural similarities to Microsoft; the ways that Apple (and iOS users) might miss Scott Forstall; accessibility as a high priority for Apple; Instagram’s success (and how they effectively ate Hipstamatic’s lunch); a debate on just how “simple” Twitter is; Box’s successful IPO, and Dropbox’s support for Yosemite’s official Finder integration for such services; MIT economist Jonathan Gruber pissing in my Google juice; Chromebooks; Amazon’s overall strategy, and the colossal failure of their Fire Phone; and, lastly, a good chunk on Microsoft’s Windows 10/HoloLens event last week.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://fractureme.com/">Fracture</a>: Your pictures, printed directly on glass. Use code “daringfireball” and save 15 percent.</li>
+<li><a href="https://neededition.com/">Need</a>: A refined retailer and lifestyle magazine for men.</li>
+<li><a href="http://www.igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Ben Thompson’s <a href="http://stratechery.com/2013/subsidization-saturation/">Stratechery</a> website and <a href="http://exponent.fm/">Exponent podcast</a>.</li>
+<li>Mark Bylok’s <em>The Whiskey Cabinet</em>, an excellent new book.</li>
+<li><a href="http://www.duetdisplay.com">Duet Display</a> — iPad app that turns your iPad into a second display for your Mac.</li>
+<li><a href="https://gigaom.com/2015/01/23/live-updates-box-shares-up-strongly-on-its-ipo-day/">Box’s IPO</a>.</li>
+<li><a href="https://twitter.com/tim_cook/status/558645473288806401">Tim Cook’s tweet on Box’s IPO</a>.</li>
+<li><a href="http://hipstamatic.com/classic/">Hipstamatic</a></li>
+<li><a href="http://public.wsu.edu/~brians/errors/gibe.html">Jibe vs. Jive vs. Gibe</a></li>
+<li><a href="http://beerhunter.com/">Michael Jackson’s death</a>.</li>
+<li><a href="http://www.fastcompany.com/3039887/under-fire">Austin Carr’s excellent story for Fast Company on the development of Amazon’s Fire Phone</a>.</li>
+<li><a href="http://www.amazon.com/oc/echo/ref_=ods_dp_ae">Amazon Echo</a> — the standalone always-listening AI assistant, with a three-month backlog.</li>
+<li><a href="http://www.wsj.com/articles/windows-10-a-fresh-start-in-our-relationship-with-microsoft-1421885030">Joanna Stern on Windows 10</a></li>
+<li><a href="http://www.microsoft.com/microsoft-hololens/en-us">HoloLens</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>107: ‘Now It’s All Floppy’ With Guest Marco Arment</title>
+ <link>http://daringfireball.net/thetalkshow/2015/01/12/ep-107</link>
+ <guid>http://daringfireball.net/thetalkshow/2015/01/12/ep-107</guid>
+ <pubDate>Mon, 12 Jan 2015 23:57:43 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/185775414-thetalkshow-107a.mp3" length="133127401" />
+ <itunes:duration>03:04:49</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Marco Arment returns to the show. Topics include microphones; Marco’s much-publicized article last week on Apple’s seemingly declining software quality; talking to the press and agreeing to interviews; Apple’s relatively tiny developer relations team (and how that pertains to the aforementioned segment on Apple’s perceived software quality); the purported new 12-inch MacBook Air and its dearth of peripheral ports; and more.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Marco Arment returns to the show. Topics include microphones; Marco’s much-publicized article last week on Apple’s seemingly declining software quality; talking to the press and agreeing to interviews; Apple’s relatively tiny developer relations team (and how that pertains to the aforementioned segment on Apple’s perceived software quality); the purported new 12-inch MacBook Air and its dearth of peripheral ports; and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos, printed directly on glass. Use coupon “daringfireball” to save 15 percent.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: Start here. Go anywhere. Use coupon code “JG” and save 10 percent.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: Be the smartest man in the (bath)room. Use coupon code “talkshow” and save $5 on your first order.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://duckduckgo.com/?q=Heil%20PR40">Heil PR40 microphone</a>.</li>
+<li><a href="https://duckduckgo.com/?q=shure+sm7b+microphone">Shure SM7B microphone</a>.</li>
+<li>Marco’s article: “<a href="http://www.marco.org/2015/01/04/apple-lost-functional-high-ground">Apple Has Lost the Functional High Ground</a>”.</li>
+<li><a href="http://daringfireball.net/2015/01/apple_eras_of_flux">My take on the “Functional High Ground” thing</a>.</li>
+<li><a href="http://www.panic.com/blog/the-2014-panic-report/">Panic’s App Store woes</a>.</li>
+<li><a href="http://9to5mac.com/2015/01/06/macbook-air-12-inch-redesign/">Mark Gurman’s purported scoop on the upcoming new MacBook Air</a>.</li>
+<li><a href="http://www.macworld.com/article/1131864/macbookair.html">Jason Snell’s Macworld review of the original MacBook Air in 2008</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>106: ‘Star Wars Holiday Spectacular’ With Guests John Siracusa and Guy English</title>
+ <link>http://daringfireball.net/thetalkshow/2014/12/31/ep-106</link>
+ <guid>http://daringfireball.net/thetalkshow/2014/12/31/ep-106</guid>
+ <pubDate>Wed, 31 Dec 2014 20:31:39 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/183957089-thetalkshow-106a.mp3" length="162299712" />
+ <itunes:duration>03:44:53</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>A brief chat about the Star Wars movies, with special guests John Siracusa and Guy English.</description>
+ <itunes:image href="http://daringfireball.net/thetalkshow/106/star-wars-spectactular.jpeg" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>A brief chat about the <em>Star Wars</em> movies, with special guests John Siracusa and Guy English.</p>
+
+<p><strong>Update, Monday 5 January 2015</strong>: Updated with a new Special Edition edit, including a new introduction, a new editing gag around the 2:20:00 mark, new poster art, and some subtle re-syncing of the audio tracks. No extra Banthas were added, and Siracusa still shoots first.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.caspersleep.com/talkshow">Casper</a>: Premium mattresses at great prices.</li>
+<li><a href="http://fractureme.com">Fracture</a>: Your photos, printed directly on glass. Use coupon “gruber” to save 20 percent.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled, online back up for Mac.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://vimeo.com/90747105">Michael Heilemann’s <em>Kitbashed</em></a> (highly recommended).</li>
+<li><a href="http://redlettermedia.com/plinkett/star-wars/star-wars-episode-1-the-phantom-menace/">“Plinkett” reviews <em>The Phantom Menace</em></a> (sort of kind of not really recommended).</li>
+<li><a href="http://herocomplex.latimes.com/movies/star-wars-poster-artist-looks/">Original poster for <em>Star Wars</em></a>.</li>
+<li><a href="http://scyfilove.com/wp-content/uploads/2010/05/Star-Wars-The-Empire-Strikes-Back-Brackett-Draft.pdf">Leigh Brackett’s script for <em>The Empire Strikes Back</em></a>.</li>
+<li><a href="http://feeds.theincomparable.com/starwars">“Star Wars” Episodes of The Incomparable</a>.</li>
+<li><a href="https://www.youtube.com/watch?v=NP5defnEQ8A&amp;feature=youtu.be">Yes, that was young Greedo in <em>The Phantom Menace</em></a>.</li>
+<li><a href="https://www.youtube.com/watch?v=c__EdPiU0No">The complete <em>Star Wars: Clone Wars</em> cel-animated series from 2003</a> — pretty fun, worth watching.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>105: ‘George Lucas Called’ With Guest Jason Snell</title>
+ <link>http://daringfireball.net/thetalkshow/2014/12/30/ep-105</link>
+ <guid>http://daringfireball.net/thetalkshow/2014/12/30/ep-105</guid>
+ <pubDate>Tue, 30 Dec 2014 20:18:12 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/183810336-thetalkshow-105a.mp3" length="98742890" />
+ <itunes:duration>02:17:04</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Jason Snell joins the show for a year-end extravaganza. Topics include Jason’s first three months writing (and podcasting) as an indie at his new Six Colors; a look back at his 20-year career at MacUser and soon thereafter Macworld; tricky edge cases when booking sponsorships, and the whole situation with separating advertising sales from editorial integrity when you’re running a one-person publication; the Sony/North Korea hacking and *The Interview*, and iTunes’s slightly belated release thereof; and we pour one out for good old Movable Type.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Jason Snell joins the show for a year-end extravaganza. Topics include Jason’s first three months writing (and podcasting) as an indie at his new <a href="http://sixcolors.com/">Six Colors</a>; a look back at his 20-year career at MacUser and soon thereafter Macworld; tricky edge cases when booking sponsorships, and the whole situation with separating advertising sales from editorial integrity when you’re running a one-person publication; the Sony/North Korea hacking and <em>The Interview</em>, and iTunes’s slightly belated release thereof; and we pour one out for good old <a href="https://movabletype.org/">Movable Type</a>.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/">Hover</a>: The world’s best domain registrar. Use coupon code “bourbon” and save 10 percent on any order.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled, online backup for Mac.</li>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace 7</a>: Start here. Go anywhere. Use code “jg” and save 10 percent.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>McSweeney’s: <a href="http://www.mcsweeneys.net/articles/e-mail-addresses-it-would-be-really-annoying-to-give-out-over-the-phone">“Email Addresses It Would Be Really Hard to Give Out Over the Phone”</a> (a classic).</li>
+<li>Jason Snell at Six Colors: “<a href="http://sixcolors.com/post/2014/12/no-other-gatekeeper-but-me/">No Other Gatekeeper But Me</a>”</li>
+<li><a href="http://en.wikipedia.org/wiki/Power_Computing_Corporation">Power Computing</a>, the leading Mac clone maker.</li>
+<li><a href="http://en.wikipedia.org/wiki/Macintosh_clone">Mac clones</a>.</li>
+<li><a href="http://news.cnet.com/Ziff,-IDG-combine-Mac-mags/2100-1001_3-202045.html">The 1997 merger of MacUser and Macworld</a>.</li>
+<li><a href="https://www.flickr.com/photos/pawlikk/2136955060/">Chandler reading Macworld on <em>Friends</em></a></li>
+<li>Daring Fireball piece on software bundles back in 2006: “<a href="http://daringfireball.net/2006/12/iniquities_of_the_selfish">The Iniquities of the Selfish</a>”.</li>
+<li>Wilfredo Sanchez’s crackerjack whitepaper from 2000: “<a href="https://www.usenix.org/legacy/event/usenix2000/invitedtalks/sanchez_html/">The Challenges of Integrating the Unix and Mac OS Environments</a>”.</li>
+<li><a href="http://www.lycos.com/">Lycos</a>, not dead yet.</li>
+<li><a href="http://5by5.tv/incomparable/8">John Gruber, Dan Moren, and Jason Snell talking about <em>Raiders of the Lost Ark</em></a> on episode 8 of The Incomparable back in 2010.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>104: ‘2014 Year in Review’ With Guest Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2014/12/26/ep-104</link>
+ <guid>http://daringfireball.net/thetalkshow/2014/12/26/ep-104</guid>
+ <pubDate>Fri, 26 Dec 2014 20:04:44 EDT</pubDate>
+ <itunes:duration>02:18:14</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/183278357-thetalkshow-104a.mp3" length="99582371" />
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Rene Ritchie returns to the show for a special Apple 2014 year-in-review episode. Just a few of the many topics covered: Apple’s Beats acquisition; WWDC 2014 in hindsight; an aside speculating on the alternate universe where Google acquired WebOS instead of Android; the similarities between the “projected UI” nature of AirPlay, CarPlay, and WatchKit; UI fonts (Helvetica Neue in Yosemite, Apple Sans, and the Watch’s San Francisco (a.k.a. “DINvetica”)); Apple’s growing ability to design and bring to market its own hardware internals and components; recent controversies and confusing rejections at the App Store (and the need for a public-facing App Store ombudsman); and what we’re looking forward to in 2015.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Rene Ritchie returns to the show for a special Apple 2014 year-in-review episode. Just a few of the many topics covered: Apple’s Beats acquisition; WWDC 2014 in hindsight; an aside speculating on the alternate universe where Google acquired WebOS instead of Android; the similarities between the “projected UI” nature of AirPlay, CarPlay, and WatchKit; UI fonts (Helvetica Neue in Yosemite, Apple Sans, and the Watch’s San Francisco (a.k.a. “DINvetica”)); Apple’s growing ability to design and bring to market its own hardware internals and components; recent controversies and confusing rejections at the App Store (and the need for a public-facing App Store ombudsman); and what we’re looking forward to in 2015.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled, online backup for Mac.</li>
+<li><a href="http://hover.com/">Hover</a>: The world’s best domain registrar. Use coupon code “scotch” and save 10 percent on any order.</li>
+<li><a href="http://lynda.com/thetalkshow">lynda.com</a>: Online video training and tutorials. Use this link for a 7-day free trial.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.imore.com/debug">Debug, Rene’s tech podcast with Guy English.</a></li>
+<li><a href="http://www.imore.com/category/adhoc">ReviewCast, Rene’s movie/pop culture podcast</a></li>
+<li><a href="http://www.macrumors.com/2014/12/04/apple-4-inch-iphone-2015/">Rumors of a new 4-inch iPhone in 2015 (a.k.a. the iPhone 6S Minus).</a></li>
+<li>App Store rejection hijinx: <a href="http://www.macrumors.com/2014/12/17/drafts-notification-center-widget-reinstated/">Drafts</a>, <a href="http://www.macrumors.com/2014/12/11/apple-reverses-course-on-transmit/">Transmit</a>, <a href="http://sixcolors.com/post/2014/10/apple-ios-widgets-cant-calculate/">PCalc</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>103: ‘Robotitize the Assembly’ With Guest Dan Frommer</title>
+ <link>http://daringfireball.net/thetalkshow/2014/12/16/ep-103</link>
+ <guid>http://daringfireball.net/thetalkshow/2014/12/16/ep-103</guid>
+ <pubDate>Tue, 16 Dec 2014 23:00:30 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/181886194-thetalkshow-thetalkshow-103.mp3" length="83098577" />
+ <itunes:duration>01:55:20</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Dan Frommer joins the show to talk about prop bets in Vegas, more *Star Wars*, some follow-up on James Bond, what Apple should do with its mountain of cash, speculation on why iPad sales growth has stagnated, and more. Also, some in-depth segments on Instagram and the concept of “institutional taste”.</description>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Dan Frommer joins the show to talk about prop bets in Vegas, more <em>Star Wars</em>, some follow-up on James Bond, what should Apple do with its mountains of cash?, speculation on why iPad sales growth has stagnated, and more. Also, some in-depth segments on Instagram and the concept of “institutional taste”.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hullopillow.com/">Hullo</a>: Your favorite pillow. Guaranteed.</li>
+<li><a href="http://harrys.com/">Harry's</a>: Quality men’s shaving products. Use code “talkshow” and save $5.</li>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Start here. Go anywhere. Use code “jg” and save 10 percent.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://qzlife.tumblr.com/post/105223761488">Great photo of Dan, recording the show at Quartz’s office</a>.</li>
+<li>Dan’s article, “<a href="http://qz.com/310621/10-things-we-learned-about-apple-this-year/">Ten Things We Learned About Apple in 2014</a>”.</li>
+<li><a href="http://espn.go.com/chicago/mlb/story/_/id/11854802/major-league-baseball-investigating-chicago-cubs-hiring-joe-maddon">The Cubs sign ex-Rays manager Joe Madden</a> and <a href="http://espn.go.com/chicago/mlb/story/_/id/12033236/chicago-cubs-see-jon-lester-transition-winning">pitcher Jon Lester</a>.</li>
+<li><a href="http://en.wikipedia.org/wiki/Super_Bowl_LI">Superbowl 51</a> will go back to stupid Roman numerals.</li>
+<li>Eric Jackson’s piece for Forbes, “<a href="http://www.forbes.com/sites/ericjackson/2014/11/27/apples-100-billion-waste-tim-cooks-single-biggest-mistake-as-ceo/">Apple’s $100 Billion Waste: Tim Cook’s Single Biggest Mistake As CEO</a>”, wherein he argues Apple should buy Tesla, Twitter, and Pinterest.</li>
+<li><a href="http://daringfireball.net/linked/2014/11/07/big-boy-pants">GT Advanced and their crazy approach to making deals</a>.</li>
+<li><a href="http://techcrunch.com/2014/12/10/not-a-fad/">Instagram active user announcement</a>.</li>
+<li><a href="http://fortune.com/2014/12/11/twitter-evan-williams-instagram/">Ev Williams “doesn’t give a shit”</a> about Instagram’s numbers.</li>
+<li><a href="http://www.youtube.com/watch?v=u1ZB_rGFyeU">OK Go’s latest video</a>. Seriously, watch this.</li>
+<li><a href="http://thecolbertreport.cc.com/videos/umsrnb/lightsaber-controversy">Stephen Colbert on the new Sith lightsaber in <em>The Force Awakens</em> teaser</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>102: ‘Maybe You Don’t Take an Apprentice’ With Dave Wiskus</title>
+ <link>http://daringfireball.net/thetalkshow/2014/12/05/ep-102</link>
+ <guid>http://daringfireball.net/thetalkshow/2014/11/05/ep-102</guid>
+ <pubDate>Fri, 5 Dec 2014 20:17:30 EDT</pubDate>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/180175946-thetalkshow-thetalkshow-102.mp3" length="127224737" />
+ <itunes:duration>02:56:34</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <description>Special guest Dave Wiskus joins the show to talk about the new teaser trailer for *Star Wars: The Force Awakens*, and just-announced title and cast for the 24th EON Productions Bond movie, *Spectre*. Other topics include the untapped potential of podcasting and YouTubing, cutting babies in half, turtle copulation, and kangaroo genitalia.</description>
+ <itunes:image href="http://daringfireball.net/thetalkshow/102/thetalkshow-102-cover.jpeg" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Dave Wiskus joins the show to talk about the new teaser trailer for <em>Star Wars: The Force Awakens</em>, and just-announced title and cast for the 24th EON Productions Bond movie, <em>Spectre</em>. Other topics include the untapped potential of podcasting and YouTubing, cutting babies in half, turtle copulation, and kangaroo genitalia.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://lynda.com/thetalkshow">lynda.com</a>: Online video training and tutorials. Use this link for a 7-day free trial.</li>
+<li><a href="http://neededition.com/">Need</a>: Refined retailer and lifestyle magazine for men.</li>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Start here. Go anywhere. Use code “JG” and save 10 percent.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for Mac.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://trailers.apple.com/trailers/lucasfilm/starwarstheforceawakens/"><em>Star Wars: The Force Awakens</em> teaser</a></li>
+<li><a href="http://www.slashfilm.com/bond-24-title/"><em>Spectre</em></a>, the upcoming 24th EON Productions James Bond film</li>
+<li><a href="https://www.youtube.com/watch?v=B1_N28DA3gY"><em>Midnight Run</em></a></li>
+<li><a href="https://www.youtube.com/watch?v=i-vsILeJ8_8">Original 1976 <em>Star Wars</em> trailer</a>, sans John Williams’s score, with uncolored lightsabers and a Helvetica Bold logotype</li>
+<li>John Brownlee: “<a href="http://www.fastcodesign.com/3039210/in-defense-of-the-new-star-wars-lightsaber">In Defense of the New Star Wars Lightsaber</a>”</li>
+<li><a href="http://www.imdb.com/title/tt2647420/">BBC’s <em>Fleming</em> miniseries</a> (It’s currently streaming on Netflix.)</li>
+<li><a href="http://www.imdb.com/title/tt2366308/"><em>Everything or Nothing</em></a> — good documentary on the Bond films, also streaming on Netflix currently</li>
+<li><a href="https://www.youtube.com/watch?v=ytZ7YxAva2Q">Fantastic re-cut <em>Never Say Never Again</em> intro</a>, including <a href="https://en.wikipedia.org/wiki/Thunderball_(soundtrack)#Title_theme_change">Dionne Warwick’s unused recording of John Barry’s “Mr. Kiss Kiss Bang Bang”</a> for the opening credits</li>
+<li>Dave Addey: “<a href="http://typesetinthefuture.com/alien/">Typeset in the Future: Alien</a>”</li>
+<li><a href="http://unprofesh.com/">Unprofessional</a></li>
+<li><a href="http://youtube.com/betterelevation">Wiskus’s “Better Elevation” video show</a>, and the recent “<a href="https://www.youtube.com/watch?v=tRofTIM1sP0&amp;list=UUkeM0swJ50XdGFCBi8gFbaA">Podcast Intervention</a>” and “<a href="https://www.youtube.com/watch?v=l0HewTsU2_w&amp;list=UUkeM0swJ50XdGFCBi8gFbaA">How to Make a Hit App</a>” episodes</li>
+<li><a href="http://youtube.com/cgpgrey">CGP Grey</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>101: ‘Like a Butt Crack’ With Christa Mrgan</title>
+ <link>http://daringfireball.net/thetalkshow/2014/11/25/ep-101</link>
+ <guid>http://daringfireball.net/thetalkshow/2014/11/25/ep-101</guid>
+ <pubDate>Tue, 25 Nov 2014 15:32:22 EST</pubDate>
+ <description>Special guest Christa Mrgan joins the show to talk about Yosemite UI design, Apple TV’s aesthetics (and its shitty IR remote control), Apple Watch speculation (including using it as an Apple TV remote), the Watch’s new San Francisco font, bling in icon design, and more. It’s a Thanksgiving week design-focused spectacular.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/178482448-thetalkshow-christa-mrgan-episode-101.mp3" length="64765428" />
+ <itunes:duration>01:29:57</itunes:duration>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Christa Mrgan joins the show to talk about Yosemite UI design, Apple TV’s aesthetics (and its shitty IR remote control), Apple Watch speculation (including using it as an Apple TV remote), the Watch’s new San Francisco font, bling in icon design, and more. It’s a Thanksgiving week design-focused spectacular.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://lynda.com/thetalkshow">lynda.com</a>: Online video training and tutorials. Use this link for a 7-day free trial.</li>
+<li><a href="http://hover.com/">Hover</a>: The world’s best domain registrar. Use coupon code “vodka” and save 10 percent on any order.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/antichrista">Christa Mrgan on Twitter</a>.</li>
+<li><a href="http://rogueamoeba.com/">Rogue Amoeba software</a> (and <a href="https://rogueamoeba.com/piezo/">Piezo</a> in particular).</li>
+<li><a href="http://en.wikipedia.org/wiki/Super_Bowl_50">Super Bowl 50</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>100: ‘People Are Gay All the Time’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2014/11/15/ep-100</link>
+ <pubDate>Sat, 15 Nov 2014 14:41:05 EST</pubDate>
+ <description>Who else but very special guest John Moltz to ring in The Talk Show’s centurial episode. Topics include iPhone display sizes (and in particular, our mutual preference for the old 5S 4-inch size over the 4.7-inch iPhone 6); the new book Moltz co-wrote, “The Visual Guide to Minecraft”; writing tools, including word processors and Markdown; shopping for gaming PCs as a Mac person; Microsoft Office going free on mobile platforms; Twitter’s stilted strategy statement; President Obama’s statement on Net Neutrality; and Tim Cook’s eloquent essay announcing that he’s gay.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/176971524-thetalkshow-thetalkshow-100.mp3" length="105889366" />
+ <itunes:duration>02:26:59</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/11/15/ep-100</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Who else but very special guest John Moltz to ring in The Talk Show’s centurial episode. Topics include iPhone display sizes (and in particular, our mutual preference for the old 5S 4-inch size over the 4.7-inch iPhone 6); the new book Moltz co-wrote, <a href="http://www.peachpit.com/store/visual-guide-to-minecraft-dig-into-minecraft-with-this-9780134033150"><em>The Visual Guide to Minecraft</em></a>; writing tools, including word processors and Markdown; shopping for gaming PCs as a Mac person; Microsoft Office going free on mobile platforms; Twitter’s stilted strategy statement; President Obama’s statement on Net Neutrality; and Tim Cook’s eloquent essay announcing that he’s gay.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+<li><a href="http://harrys.com/">Harry’s</a>: Quality men’s shaving products. Use code “talkshow” and save $5.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for your Mac, for just $5/month.</li>
+<li><a href="http://squarespace.com/thetalkshow">Squarespace</a>: Start here. Go anywhere. Use code “jg” and save 10 percent.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.peachpit.com/store/visual-guide-to-minecraft-dig-into-minecraft-with-this-9780134033150"><em>The Visual Guide to Minecraft</em></a>, co-written by Moltz.</li>
+<li><a href="http://daringfireball.net/linked/2014/11/12/twitter-strategy-statement">Twitter’s “strategy statement”</a>.</li>
+<li><a href="http://www.businessweek.com/articles/2014-10-30/tim-cook-im-proud-to-be-gay">Tim Cook: “I’m proud to be gay.”</a></li>
+<li><a href="http://macsparky.com/markdown">David Sparks’s <em>Markdown Field Guide</em></a></li>
+<li><a href="http://fountain.io/">Fountain</a> — a Markdown-inspired plain text format for screenplays.</li>
+<li><a href="http://quoteunquoteapps.com/highland/">Highland</a> — A Fountain viewer/editor.</li>
+<li><a href="http://slugline.co/">Slugline</a> — A more WYSIWYG-style Fountain editor.</li>
+<li><a href="https://en.wikipedia.org/wiki/Floppy_disk#3.C2.BD-inch_floppy_disk">Punch-cutting double-density (800 KB) 3.5-inch floppy disks to make them work as high-density (1.4 MB) disks</a></li>
+<li><a href="http://cocoalove.org/">The CocoaLove conference in Philadelphia</a></li>
+<li><a href="http://www.whitehouse.gov/net-neutrality">President Obama on Net Neutrality</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Paul_Lynde">Paul Lynde</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>XCIX: ‘The Smoker Channels’ With Merlin Mann</title>
+ <link>http://daringfireball.net/thetalkshow/2014/11/07/ep-099</link>
+ <pubDate>Fri, 07 Nov 2014 20:39:16 EST</pubDate>
+ <description>Very special guest Merlin Mann returns to the show to talk about Comcast customer service, cable-cutting, Marlins Man (no relation) and his showboating-spectator predecessors, and the state of podcasting today. Also: daylight saving time and Roman numerals.</description>
+ <itunes:duration>02:39:15</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/175870379-thetalkshow-the-talk-show-the-smoker-channels.mp3" length="114745337" />
+ <guid>http://daringfireball.net/thetalkshow/2014/11/07/ep-099</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Very special guest Merlin Mann returns to the show to talk about Comcast customer service, cable-cutting, Marlins Man (no relation) and his showboating-spectator predecessors, and the state of podcasting today. Also: daylight saving time and Roman numerals.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://neededition.com/">Need</a>: A refined retailer and lifestyle magazine for men.</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Stylish high-quality eyewear at revolutionary prices.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace 7</a>: Build your own website.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><p><a href="https://daringfireball.net/thetalkshow/099/hello-JOHN.png">Xfinity’s amazing illustration for a service outage</a></p></li>
+<li><p><a href="http://www.kansascity.com/sports/mlb/kansas-city-royals/article3227237.html">The Kansas Royals tried to get Marlins Man to move seats during the World Series</a></p></li>
+<li><p><a href="http://en.wikipedia.org/wiki/James_Miller_(parachutist)">“Fan Man” James Miller</a></p></li>
+<li><p><a href="http://en.wikipedia.org/wiki/Rollen_Stewart">Rockin’ Rollen Stewart, a.k.a. Rainbow Man, a.k.a. John 3:16 Guy</a></p></li>
+<li><p><a href="http://www.merlinmann.com/roderick/">Roderick on the Line</a></p></li>
+</ul>
+
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>98: ‘Far Less Eloquent as You’ With John Siracusa</title>
+ <link>http://daringfireball.net/thetalkshow/2014/10/25/ep-098</link>
+ <pubDate>Sat, 25 Oct 2014 16:20:00 EDT</pubDate>
+ <description>Special guest John Siracusa returns to the show to discuss last week’s Apple event (introducing the iPad Air 2), and OS X Yosemite (and his review thereof).</description>
+ <itunes:duration>03:04:33</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/173827059-thetalkshow-the-talk-show-ep-098.mp3" length="132932999" />
+ <guid>http://daringfireball.net/thetalkshow/2014/10/25/ep-098</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest John Siracusa returns to the show to discuss last week’s Apple event (introducing the iPad Air 2), and OS X Yosemite (and his review thereof).</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://www.caspersleep.com/talkshow">Casper</a>: Premium mattresses for a fraction of the price.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace 7</a>: Everything you need to create an exceptional website.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled online backup for Macs.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://arstechnica.com/apple/2014/10/os-x-10-10/">Siracusa’s Yosemite review</a>.</li>
+<li><a href="http://hypercritical.co/2014/10/16/yosemite">Meta post about his Yosemite review</a>.</li>
+<li><a href="http://atp.fm/">ATP</a></li>
+<li><a href="http://en.wikipedia.org/wiki/Application_Enhancer">Application Enhancer</a>.</li>
+<li><a href="http://www.quora.com/How-come-the-iPhones-1-GB-RAM-is-touted-to-be-able-to-compete-with-more-than-2-GB-RAM-of-Android-phones?redirected_qid=2445639">Quora thread on garbage collected systems (like Android) needing more RAM than non-GC systems (like iOS)</a>.</li>
+<li><a href="http://indiestack.com/2014/10/yosemites-dark-mode/">Daniel Jalkut on creating status bar icons that work with Yosemite’s dark menu bar</a>.</li>
+<li><a href="http://blog.llvm.org/2014/07/ftl-webkits-llvm-based-jit.html">FTL: WebKit’s LLVM based JIT</a>.</li>
+<li><a href="http://secrets.blacktree.com/">Secrets</a>: A database of hidden settings for Mac OS X.</li>
+<li><a href="http://marketplace.xbox.com/en-US/Product/Crystal-Quest/66acd000-77fe-1000-9115-d802584107ee">Crystal Quest for Xbox</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>97: ‘Copious Software Projects’ With Guy English</title>
+ <link>http://daringfireball.net/thetalkshow/2014/10/10/ep-097</link>
+ <pubDate>Fri, 10 Oct 2014 11:30:00 EDT</pubDate>
+ <description>Special guest Guy English returns to the show to talk about iOS 8 quality concerns, and whether Apple’s annual software cycle is stretching the company too thin. Then things devolve into a bitter argument over the merits of file name extensions.</description>
+ <itunes:duration>02:45:20</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/171509769-thetalkshow-thetalkshow-097.mp3" length="119102417" />
+ <guid>http://daringfireball.net/thetalkshow/2014/10/10/ep-097</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Guy English returns to the show to talk about iOS 8 quality concerns, and whether Apple’s annual software cycle is stretching the company too thin. Then things devolve into a bitter argument over the merits of file name extensions.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://harrys.com/">Harry’s</a>: High-quality men’s shaving products.</li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze.com</a>: Unlimited, unthrottled online backup for the Mac.</li>
+<li><a href="http://ubarapp.com/">uBar</a>: A taskbar for the Mac. Save 50 percent with code “<strong>GRUBEREDITION</strong>”.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.macrumors.com/2014/10/06/ios-8-adoption-stagnates/">iOS 8 adoption rate lags behind iOS 7 and 6</a></li>
+<li>“<a href="http://daringfireball.net/2014/10/ios_8_storage_space">Note to Self: It’s the Storage Space, Stupid</a>”</li>
+<li><a href="http://www.businessweek.com/articles/2012-04-12/gene-munster-says-apple-is-going-to-1-000">Businessweek’s unflattering portrait of Gene Munster</a></li>
+<li>From the DF Archive: “<a href="http://daringfireball.net/2003/07/the_good_the_bad_and_the_avie">The Good, the Bad, and the Avie</a>”</li>
+<li><a href="http://m.youtube.com/watch?v=tvtljnysRMU">Donnie Baseball grabs some popcorn</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>96: ‘The Edition Edition’ With Ben ‘Bengate’ Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2014/09/28/ep-096</link>
+ <pubDate>Sun, 28 Sep 2014 14:58:03 EDT</pubDate>
+ <description>Special guest Ben Thompson joins the show for an Apple Watch discussion: what it’ll cost, what it’ll do, how it will be sold, and more. Other topics include “Bend-gate”, Apple’s growing prowess in mobile chip design, and Derek Jeter.</description>
+ <itunes:duration>02:50:10</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/169750127-thetalkshow-the-talk-show-096.mp3" length="122573458" />
+ <guid>http://daringfireball.net/thetalkshow/2014/09/28/ep-096</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Ben Thompson joins the show for an Apple Watch discussion: what it’ll cost, what it’ll do, how it will be sold, and more. Other topics include “Bend-gate”, Apple’s growing prowess in mobile chip design, and Derek Jeter.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://brawersoftware.com/products/ubar">uBar</a>: A taskbar for the Mac. Save 50 percent with code “<strong>STANDARDGRUBER</strong>”.</li>
+<li><a href="http://neededition.com/">Need</a>: A refined retailer and lifestyle magazine for men.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos printed directly on glass. Save 20 percent with code “<strong>GRUBER</strong>”.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://applespotlight.com/2014/09/23/a-brief-history-of-iphonegates/">Apple Spotlight: A Brief History of iPhonegates</a></li>
+<li><a href="http://m.mlb.com/video/v3134880/">Derek Jeter’s 2001 “flip play”</a></li>
+<li><a href="http://www.anandtech.com/show/8559/iphone-6-and-iphone-6-plus-preliminary-results">AnandTech benchmarks show year-old iPhone 5S is still a top-five phone</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+
+
+ <item>
+ <title>95: ‘Twenty-One Thousand Words’ With Rene Ritchie</title>
+ <link>http://daringfireball.net/thetalkshow/2014/09/19/ep-095</link>
+ <pubDate>Fri, 19 Sep 2014 22:15:00 EDT</pubDate>
+ <description>Special guest: Rene Ritchie. Topics: What else? The iPhones 6, iOS 8, and last week’s special event at the Flint Center in Cupertino.</description>
+ <itunes:duration>01:55:44</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/168512067-thetalkshow-ep-95-twenty-one-thousand-words.mp3" length="83392131" />
+ <guid>http://daringfireball.net/thetalkshow/2014/09/19/ep-095</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>What else? The iPhones 6, iOS 8, and last week’s special event at the Flint Center in Cupertino.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/">Hover</a>: The best way to buy and manage domain names. Promo code: “chowder”.</li>
+<li><a href="http://harrys.com/">Harry's</a>: High-quality men's shaving products.</li>
+<li><a href="http://lynda.com/thetalkshow">lynda.com</a>: Easy and affordable online learning.</li>
+<li><a href="http://www.drobostore.com/">Drobo</a>: Smart storage to protect what matters.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.imore.com/ios-8-review">Rene's epic review of iOS 8</a>.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+
+ <item>
+ <title>94: ‘Very Few Outhouses Anymore’ With Jason Snell</title>
+ <link>http://daringfireball.net/thetalkshow/2014/09/08/ep-094</link>
+ <pubDate>Mon, 08 Sep 2014 20:46:10 +0000</pubDate>
+ <description>Special guest Jason Snell joins the show on the cusp of Apple’s September 9 event, where the company will purportedly introduce two new iPhones and a breakthrough wearable device. Topics include the purpose and advantages of a 5.5-inch iPhone, why only the 5.5-inch iPhone will (I think) get an @3x retina display, speculation on the nature and purpose of an Apple wearable/watch, the intrigue surrounding the event’s venue, and more.</description>
+ <itunes:duration>02:26:12</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/166829016-thetalkshow-ep-94-very-few-outhouses-anymore.mp3" length="105337413" />
+ <guid>http://daringfireball.net/thetalkshow/2014/09/08/ep-094</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Special guest Jason Snell joins the show on the cusp of Apple’s September 9 event, where the company will purportedly introduce two new iPhones and a breakthrough wearable device. Topics include the purpose and advantages of a 5.5-inch iPhone, why only the 5.5-inch iPhone will (I think) get an @3x retina display, speculation on the nature and purpose of an Apple wearable/watch, the intrigue surrounding the event’s venue, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/">Hover</a>: The world’s best domain registrar.</li>
+<li><a href="http://fractureme.com/">Fracture</a>: Your photos printed beautifully on glass.</li>
+<li><a href="http://www.filetransporterstore.com/">File Transporter</a>: Your own private cloud.</li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you’ll actually like.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>93: ‘Toner-Perfect Design’ With Craig Hockenberry</title>
+ <link>http://daringfireball.net/thetalkshow/2014/08/29/ep-093</link>
+ <pubDate>Fri, 29 Aug 2014 20:28:43 +0000</pubDate>
+ <description>Speculation on the purportedly-imminent new 4.7- and 5.5-inch iPhones, and the rise of adaptive user interface layout and design on iOS. @3x, here we come.</description>
+ <itunes:duration>02:23:53</itunes:duration>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/165361886-thetalkshow-ep-93-toner-perfect-design.mp3" length="103660748" />
+ <guid>http://daringfireball.net/thetalkshow/2014/08/29/ep-093</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Speculation on the purportedly-imminent new 4.7- and 5.5-inch iPhones, and the rise of adaptive user interface layout and design on iOS. @3x, here we come.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: Build your own website.</li>
+<li><a href="http://www.caspersleep.com/talkshow">Casper</a>: Premium mattresses at great prices.</li>
+<li><a href="http://hover.com">Hover</a>: The best way to buy and manage domain names. Promo code: "chowder".</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Stylish high-quality eyewear at revolutionary prices.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://twitter.com/chockenberry/status/504313814544683008">Craig mocking up the big displays</a>.</li>
+</ul>
+
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>92: ‘That New Laptop Smell’ With Joanna Stern</title>
+ <link>http://daringfireball.net/thetalkshow/2014/08/21/ep-092</link>
+ <pubDate>Thu, 21 Aug 2014 22:00:00 EDT</pubDate>
+ <description>Topics include Joanna’s recent review of over 20 laptops; the HTC One M8 for Windows Phone; why Windows Phone is still struggling to gain traction; the role of Microsoft Office in today’s world; and speculation on Apple’s upcoming iPhone event.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/164205147-thetalkshow-ep-92-that-new-laptop-smell.mp3" length="82675729" />
+ <itunes:duration>01:54:45</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/08/21/ep-092</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Topics include Joanna’s recent review of over 20 laptops; the HTC One M8 for Windows Phone; why Windows Phone is still struggling to gain traction; the role of Microsoft Office in today’s world; and speculation on Apple’s upcoming iPhone event.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: Build your own website.</li>
+<li><a href="http://lynda.com/thetalkshow">lynda.com</a>: Easy and affordable online learning.</li>
+<li><a href="https://www.backblaze.com/daringfireball.html">Backblaze</a>: Unlimited, unthrottled backup for $5/month.</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a>: Stylish high-quality eyewear at revolutionary prices.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://online.wsj.com/articles/buyers-guide-the-best-laptops-for-every-budget-macbook-air-is-tops-1407277203?tesla=y&amp;mg=reno64-wsj">Joanna’s epic laptop roundup</a></li>
+<li><a href="http://online.wsj.com/articles/htc-one-with-windows-phone-another-great-phone-you-wont-buy-1408459355?mod=WSJ_TechWSJD_topRight">“HTC One for Windows: Another Great Phone You Probably Won’t Buy”</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>91: ‘BlackBerry Is Still Technically in Business’ With Dan Frommer</title>
+ <link>http://daringfireball.net/thetalkshow/2014/08/12/ep-091</link>
+ <pubDate>Tue, 12 Aug 2014 18:55:00 EDT</pubDate>
+ <description>Topics include speculation — seriously, just speculation — on Apple’s purported upcoming wrist wearable thing, Apple’s fall event schedule, polarized sunglasses, market share in the post-PC era, and Beats’s integration into Apple (including a clever idea from Dan about the potential for a Beats Music channel on Apple TV).</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/162882957-thetalkshow-ep-91-blackberry-is-still.mp3" length="98917964" />
+ <itunes:duration>02:17:18</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/08/12/ep-091</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Topics include speculation — seriously, just speculation — on Apple’s purported upcoming wrist wearable thing, Apple’s fall event schedule, polarized sunglasses, market share in the post-PC era, and Beats’s integration into Apple (including a clever idea from Dan about the potential for a Beats Music channel on Apple TV).</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/gruber">Squarespace</a></li>
+<li><a href="https://filetransporterstore.com/">File Transporter</a></li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a></li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://qz.com/243321/google-is-stealing-away-microsofts-future-corporate-customers/">Google is stealing Microsoft’s future corporate customers</a></li>
+<li><a href="http://qz.com/246921/which-free-mobile-apps-are-costing-you-the-most-money/">Which apps use the most cellular data?</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>90: ‘Jamming More RAM in for Free’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2014/07/28/ep-090</link>
+ <pubDate>Mon, 28 Jul 2014 12:20:00 EDT</pubDate>
+ <description>Topics include Apple's quarterly results, how much Apple's cable and peripheral prices contribute to the popular conception that their products are "expensive", presbyopia and large-screen phones, and more.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/160523211-thetalkshow-ep-90-jamming-more-ram-in-for-free.mp3" length="86388906" />
+ <itunes:duration>01:59:54</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/07/28/ep-090</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Topics include Apple's quarterly results, how much Apple's cable and peripheral prices contribute to the popular conception that their products are "expensive", presbyopia and large-screen phones, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/gruber">Squarespace</a></li>
+<li><a href="http://lynda.com/thetalkshow">lynda.com</a></li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>89: ‘Cat Pictures’ With Marco Arment (Side 2)</title>
+ <link>http://daringfireball.net/thetalkshow/2014/07/19/ep-089</link>
+ <pubDate>Sat, 19 Jul 2014 20:00:01 EDT</pubDate>
+ <description>Topics include the design and development of Marco’s new iOS podcast player, Overcast, custom UI fonts, the difficulty of low-level audio programming, and pricing strategy — with digressions on U.S. politics and other non-controversial subjects.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/159440521-thetalkshow-ep-89-cat-pictures-side-2.mp3" length="71622296" />
+ <itunes:duration>01:39:23</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/07/19/ep-089</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Topics include the design and development of Marco’s new iOS podcast player, Overcast, custom UI fonts, the difficulty of low-level audio programming, and pricing strategy — with digressions on U.S. politics and other non-controversial subjects.</p>
+
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://harrys.com/">Harry’s: Quality men’s shaving products (promo code: “talk show”)</a></li>
+<li><a href="https://hover.com/">Hover: The world’s best domain name registrar (promo code: “IBM”)</a></li>
+</ul>
+
+<p>Links:</p>
+<ul>
+<li><a href="https://overcast.fm/">Overcast</a></li>
+<li><a href="http://www.marco.org/2014/07/16/overcast">Marco’s Overcast announcement</a></li>
+<li><a href="http://concoursefont.com/">Matthew Butterick’s Concourse typeface</a></li>
+<li><a href="http://www.sustworks.com/site/prod_ipr_overview.html">IPNetRouter</a></li>
+<li><a href="http://pacifichelm.com/">Pacific Helm</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>88: ‘Cat Pictures’ With Marco Arment (Side 1)</title>
+ <link>http://daringfireball.net/thetalkshow/2014/07/19/ep-088</link>
+ <pubDate>Sat, 19 Jul 2014 20:00:00 EDT</pubDate>
+ <description>Topics include the design and development of Marco’s new iOS podcast player, Overcast, custom UI fonts, the difficulty of low-level audio programming, and pricing strategy — with digressions on U.S. politics and other non-controversial subjects.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/159439009-thetalkshow-ep-88-cat-pictures-side-1.mp3" length="76024034" />
+ <itunes:duration>01:45:30</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/07/19/ep-088</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Topics include the design and development of Marco’s new iOS podcast player, Overcast, custom UI fonts, the difficulty of low-level audio programming, and pricing strategy — with digressions on U.S. politics and other non-controversial subjects.</p>
+
+<p>Sponsored by:</p>
+<ul>
+<li><a href="http://filetransporterstore.com/">File Transporter</a></li>
+<li><a href="http://www.lynda.com/thetalkshow">lynda.com</a></li>
+</ul>
+
+<p>Links:</p>
+<ul>
+<li><a href="https://overcast.fm/">Overcast</a></li>
+<li><a href="http://www.marco.org/2014/07/16/overcast">Marco’s Overcast announcement</a></li>
+<li><a href="http://concoursefont.com/">Matthew Butterick’s Concourse typeface</a></li>
+<li><a href="http://www.sustworks.com/site/prod_ipr_overview.html">IPNetRouter</a></li>
+<li><a href="http://pacifichelm.com/">Pacific Helm</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>87: ‘Free Alcoholic Beverages’ With Ben Thompson</title>
+ <link>http://daringfireball.net/thetalkshow/2014/07/11/ep-087</link>
+ <pubDate>Fri, 11 Jul 2014 23:40:00 EDT</pubDate>
+ <description>Topics include Samsung getting pinched from Apple on the high end and Xiaomi (at least in China) on the low end, Android and the importance of software differentiation, wearable devices, and more.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/158311380-thetalkshow-the-talk-show-with-john-gruber.mp3" length="89176257" />
+ <itunes:duration>02:03:46</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/07/11/ep-087</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+<p>Topics include Samsung getting pinched from Apple on the high end and Xiaomi (at least in China) on the low end, Android and the importance of software differentiation, wearable devices, and more.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://squarespace.com/gruber">Squarespace</a></li>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a></li>
+<li><a href="http://backblaze.com/daringfireball">Backblaze</a></li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.mi.com/en/mi3">Xiaomi M3 phone</a> </li>
+<li><a href="http://arstechnica.com/gadgets/2014/06/android-wear-review/">Ron Amadeo's review of Android Wear for Ars Technica</a></li>
+<li><a href="http://www.khoslaventures.com/fireside-chat-with-google-co-founders-larry-page-and-sergey-brin">Khosla interview with Larry Page and Sergey Brin</a></li>
+<li><a href="http://stratechery.com/2014/smartphone-truths-samsungs-inevitable-decline/">Ben Thompson on Samsung's demise</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>86: ‘Diddling Your Feeds’ With Dave Wiskus</title>
+ <link>http://daringfireball.net/thetalkshow/2014/06/30/ep-086</link>
+ <pubDate>Mon, 30 Jun 2014 22:44:00 EDT</pubDate>
+ <description>Topics include the new look and feel in OS X Yosemite (10.10), Google’s new “Material Design” look and feel for Android, smartwatches (including the new ones Google showed at I/O last week), and Dave’s new behind-the-scenes role at The Talk Show.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/156772670-thetalkshow-ep-86-diddling-your-feeds.mp3" length="105924921" />
+ <itunes:duration>02:27:02</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/06/30/ep-086</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+ <p>Topics include the new look and feel in OS X Yosemite (10.10), Google’s new “Material Design” look and feel for Android, smartwatches (including the new ones Google showed at I/O last week), and Dave’s new behind-the-scenes role at The Talk Show.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="https://filetransporterstore.com/">File Transporter</a> (coupon codes TTS10 and TTS20)</li>
+<li><a href="http://warbyparker.com/thetalkshow">Warby Parker</a></li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a></li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://www.fastcodesign.com/3031432/why-apples-new-font-wont-work-on-your-desktop">Tobias Frere-Jones on Helvetica Neue as the new system font in Yosemite</a>.</li>
+<li>"<a href="http://www.google.com/design/">Google Design</a>" — Google shows and describes its new design language.</li>
+<li><a href="http://www.theverge.com/2014/6/30/5856722/lg-g-watch-samsung-gear-live-review">The LG G and Samsung Gear Live watches, running Android Wear</a>.</li>
+<li><a href="http://www.cnet.com/products/moto-360/">The Moto 320</a>, er, 360.</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>85: ‘Oh Man, Soccer’ With Paul Kafasis</title>
+ <link>http://daringfireball.net/thetalkshow/2014/06/25/ep-085</link>
+ <pubDate>Wed, 25 Jun 2014 22:26:00 EDT</pubDate>
+ <description>Topics include the ongoing World Cup and the sport of soccer, Google Glass, mockups of devices in rumor reports, Amazon's Fire Phone, the New York Times's profile of Tim Cook last week, Apple's growth, and the agonizingly slow death of Blackberry. Lastly, Paul brings up a devilishly tricky question regarding whether Apple will support a particular new addition to the Emoji specification.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/156058267-thetalkshow-ep-85-oh-man-soccer.mp3" length="80944210" />
+ <itunes:duration>01:52:20</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/06/25/ep-085</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="https://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+ <p>Topics include the ongoing World Cup and the sport of soccer, Google Glass, mockups of devices in rumor reports, Amazon's Fire Phone, the New York Times's profile of Tim Cook last week, Apple's growth, and the agonizingly slow death of Blackberry. Lastly, Paul brings up a devilishly tricky question regarding whether Apple will support a particular new addition to the Emoji specification.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a></li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a></li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a></li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li>Paul Kafasis: ‘<a href="http://onefoottsunami.com/2014/06/24/the-rise-of-emoji/">The Rise of Emoji</a>’</li>
+<li><a href="https://www.youtube.com/watch?v=CgRLqo-ZbuQ">FIFA anti-“match manipulation” TV ad</a></li>
+<li><a href="http://www.nytimes.com/2014/06/15/technology/tim-cook-making-apple-his-own.html?_r=0&amp;pagewanted=all">New York Times profile of Tim Cook</a></li>
+<li>Ars Technica: ‘<a href="http://arstechnica.com/tech-policy/2014/06/faa-grounds-amazons-drone-delivery-plans/">FAA Grounds Amazon’s Drone Delivery Plans</a>’</li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>84: ‘Doctoring the Ball’ With Guy English</title>
+ <link>http://daringfireball.net/thetalkshow/2014/06/16/ep-084</link>
+ <pubDate>Mon, 16 Jun 2014 23:30:00 EDT</pubDate>
+ <description>Special guest Guy English. Topics center on WWDC 2014, particularly how XPC — interapplication communication — is playing a fundamental but largely behind-the-scenes role in many of the new features for iOS and OS X. The new much-improved WebKit API (which brings third-party apps the faster Nitro JavaScript engine), third-party keyboards, Sharing menu extensions, and Notification Center widgets — all these things are built on XPC. Other topics include Apple TV, Swift, and the apparent happiness not just of third-party developers, but Apple employees, too.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/154710681-thetalkshow-the-talk-show-episode-84.mp3" length="80619272" />
+ <itunes:duration>01:51:58</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/06/16/ep-084</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:image href="http://daringfireball.net/thetalkshow/graphics/cover-700.jpg" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+ <p>Special guest Guy English. Topics center on WWDC 2014, particularly how XPC — interapplication communication — is playing a fundamental but largely behind-the-scenes role in many of the new features for iOS and OS X. The new much-improved WebKit API (which brings third-party apps the faster Nitro JavaScript engine), third-party keyboards, Sharing menu extensions, and Notification Center widgets — all these things are built on XPC. Other topics include Apple TV, Swift, and the apparent happiness not just of third-party developers, but Apple employees, too.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://hover.com/">Hover</a></li>
+<li><a href="http://squarespace.com/">Squarespace</a></li>
+<li><a href="http://www.filetransporter.com/">Transporter</a></li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://bigzaphod.tumblr.com/post/87823968514/apples-game">Sean Heber on Apple TV and gaming</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>83: Live From WWDC 2014 With Marco Arment, Casey Liss, John Siracusa, and Scott Simpson</title>
+ <link>http://daringfireball.net/thetalkshow/2014/06/06/ep-083</link>
+ <pubDate>Fri, 6 Jun 2014 21:30:00 EDT</pubDate>
+ <description>Recorded in front of a live audience of 500 people on Tuesday, 2 June 2014 at Mezzanine in San Francisco. John Gruber is joined by the ATP trio — Marco Arment, Casey Liss, and John Siracusa — to discuss the news from WWDC: OS X 10.10 Yosemite, iOS 8, Swift, and more. Then, Scott Simpson joins the show to discuss theme songs and the future of higher education. No nudity or violence, but the second half of the show does have some explicit language.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/153165973-thetalkshow-83-live-at-wwdc-2014.mp3" length="52376497" />
+ <itunes:duration>01:48:58</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/06/06/ep-083</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>yes</itunes:explicit>
+ <itunes:image href="http://daringfireball.net/thetalkshow/083/thetalkshow-083.jpg" />
+ <media:thumbnail url="http://daringfireball.net/thetalkshow/graphics/df-the-talk-show-album-art.png" />
+ <content:encoded><![CDATA[
+ <p>Recorded in front of a live audience of 500 people on Tuesday, 2 June 2014 at Mezzanine in San Francisco. John Gruber is joined by the <a href="http://atp.fm/">ATP</a> trio — Marco Arment, Casey Liss, and John Siracusa — to discuss the news from WWDC: OS X 10.10 Yosemite, iOS 8, Swift, and more.</p>
+
+<p>Then, <a href="http://yourmonkeycalled.com/">Scott Simpson</a> joins the show to discuss theme songs and the future of higher education. No nudity or violence, but the second half of the show does have some explicit language.</p>
+
+<p><a href = "https://www.flickr.com/photos/patr1ck/14362806125/in/set-72157644636502287" class="noborder">
+<img
+ src = "https://farm4.staticflickr.com/3857/14362806125_1c277e1ed7_z_d.jpg"
+ alt = "Yours truly, taking the stage to start the show."
+ width = 425
+/></a></p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://azure.microsoft.com/en-us/develop/mobile/">Azure Mobile Services</a></li>
+<li><a href="https://www.marketcircle.com/">Marketcircle</a>: Billings Pro and Daylite</li>
+<li><a href="http://mailchimp.com/">MailChimp</a></li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="http://draperuniversity.com/">Draper University</a></li>
+<li><a href="https://www.flickr.com/photos/patr1ck/sets/72157644636502287/">Patrick Gibson’s photos from the show</a></li>
+<li><a href="https://www.flickr.com/photos/ted_todorov/sets/72157644608346730/">Ted Todorov’s photos from the show</a></li>
+<li><a href="https://www.flickr.com/photos/inknoise/sets/72157644593213180/">Carlos Gomez’s photos from the show</a></li>
+</ul>
+ ]]></content:encoded>
+ </item>
+
+ <item>
+ <title>82: ‘We're Allowed to Make Stuff Up; It's a Podcast’ With Dan Frommer</title>
+ <link>http://daringfireball.net/thetalkshow/2014/05/27/ep-082</link>
+ <pubDate>Tue, 27 May 2014 23:59:00 EDT</pubDate>
+ <description>Special guest Dan Frommer. Topics include Dan’s new gig as senior tech editor at Quartz, tablets as a form factor for full-featured PCs (and the now-aging design of the MacBook Air), WWDC rumors, the rumored iOS-style redesign of Mac OS X, previous Mac OS visual designs, and more — including ticket information for next week’s live WWDC show in San Francisco.</description>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/151621218-thetalkshow-e082.mp3" length="105836081" />
+ <itunes:duration>01:50:15</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/05/27/ep-082</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:subtitle>Special guest: Dan Frommer</itunes:subtitle>
+ <itunes:image href="http://daringfireball.net/thetalkshow/graphics/cover-700.jpg" />
+ <content:encoded><![CDATA[<p>Special guest Dan Frommer. Topics include Dan’s new gig as senior tech editor at Quartz, tablets as a form factor for full-featured PCs (and the now-aging design of the MacBook Air), WWDC rumors, the rumored iOS-style redesign of Mac OS X, previous Mac OS visual designs, and more — including ticket information for next week’s live WWDC show in San Francisco.</p>
+
+ <p>Sponsored by:</p>
+
+ <ul>
+ <li><a href="http://harrys.com/">Harry’s</a>: Quality men’s shaving products at fair prices.</li>
+ <li><a href="http://www.lynda.com/promo/trial/Default.aspx?lpk35=5176&amp;utm_medium=podcast&amp;utm_source=thetalkshow&amp;utm_campaign=link-daring-fireball">lynda.com</a>: Online video training and tutorials.</li>
+ <li><a href="http://yourkarma.com/thetalkshow">Karma</a>: Bring wi-fi with you, wherever you go.</li>
+ </ul>
+
+ <p>Links:</p>
+
+ <ul>
+ <li><a href="http://www.macintouch.com/m85_themes.html">Henry Norr on the Mac OS 8.5 Appearance Manager and its missing themes</a></li>
+ <li><a href="http://qz.com/211590/microsofts-new-surface-makes-the-case-for-a-bigger-ipad/">Dan Frommer on Microsoft’s new Surface Pro 3 tablet</a></li>
+ <li><a href="http://citynotes.io/">City Notes</a></li>
+ </ul>
+ ]]></content:encoded>
+ </item>
+ <item>
+ <title>81: ‘Bring Back Jerry Yang’ With John Moltz</title>
+ <link>http://daringfireball.net/thetalkshow/2014/05/22/ep-081</link>
+ <pubDate>Thu, 22 May 2014 18:00:00 EDT</pubDate>
+ <description>Special guest John Moltz joins the show for a discussion regarding Apple's still-only-rumored acquisition of Beats, WWDC rumors, the ringer switch on the iPhone, the ZTE Open C Firefox OS phone (spoiler: it's a turd), and the transition of The Talk Show from Mule Radio to its new home here at Daring Fireball.</description>
+ <content:encoded><![CDATA[<p>Special guest John Moltz joins the show for a discussion regarding Apple's still-only-rumored acquisition of Beats, WWDC rumors, the ringer switch on the iPhone, the ZTE Open C Firefox OS phone (spoiler: it's a turd), and the transition of The Talk Show from Mule Radio to its new home here at Daring Fireball.</p>
+
+<p>Sponsored by:</p>
+
+<ul>
+<li><a href="http://igloosoftware.com/thetalkshow">Igloo</a>: The intranet you'll actually like.</li>
+<li><a href="http://squarespace.com/gruber">Squarespace</a>: Use offer code "JG" and save 10 percent for life.</li>
+<li><a href="http://www.backblaze.com/daringfireball">Backblaze</a>: Unlimited, unthrottled, uncomplicated backup for just $5/month.</li>
+</ul>
+
+<p>Links:</p>
+
+<ul>
+<li><a href="https://blog.mozilla.org/blog/2014/05/08/zte-starts-sales-of-open-c-firefox-os-phone-on-ebay/">ZTE Open C Firefox OS phone</a></li>
+<li><a href="http://turningthiscararound.com/">Turning This Car Around</a></li>
+</ul>]]></content:encoded>
+ <enclosure type="audio/mpeg" url="http://feeds.soundcloud.com/stream/150805847-thetalkshow-081a.mp3" length="79692501" />
+ <itunes:duration>1:34:47</itunes:duration>
+ <guid>http://daringfireball.net/thetalkshow/2014/05/22/ep-081</guid>
+ <itunes:author>Daring Fireball / John Gruber</itunes:author>
+ <itunes:explicit>no</itunes:explicit>
+ <itunes:subtitle>Special guest: John Moltz</itunes:subtitle>
+ <itunes:image href="http://daringfireball.net/thetalkshow/graphics/cover-700.jpg" />
+ </item>
+ </channel>
+</rss>
diff --git a/schema/testdata/pc-kara.xml b/schema/testdata/pc-kara.xml
new file mode 100644
index 0000000..f9ebac6
--- /dev/null
+++ b/schema/testdata/pc-kara.xml
@@ -0,0 +1,632 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
+ <channel>
+ <atom:link href="https://feeds.megaphone.fm/VMP1684715893" rel="self" type="application/rss+xml"/>
+ <title>On with Kara Swisher</title>
+ <link>http://nymag.com</link>
+ <language>en</language>
+ <copyright>2022</copyright>
+ <description>Direct questions, real answers. On with Kara Swisher is where “Silicon Valley’s most feared and well-liked journalist” gets to the heart of what makes powerful people tick. Kara makes sense of tech, business and politics through tough conversations with the newsmakers who matter. So why do they show up? “Smart people,” says Kara, “like difficult questions.” Plus, it’s fun.
+Every Monday and Thursday starting September 26th. From New York Magazine and the Vox Media Podcast Network.</description>
+ <image>
+ <url>https://megaphone.imgix.net/podcasts/d8dd4b8a-02be-11ed-9562-6bb84220205a/image/22_ON-W-KARA_TILE_3000_LO-RES__1_.png?ixlib=rails-2.1.2&amp;max-w=3000&amp;max-h=3000&amp;fit=crop&amp;auto=format,compress</url>
+ <title>On with Kara Swisher</title>
+ <link>http://nymag.com</link>
+ </image>
+ <itunes:type>episodic</itunes:type>
+ <itunes:subtitle>Sit back. Relax. Get grilled. </itunes:subtitle>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:summary>Direct questions, real answers. On with Kara Swisher is where “Silicon Valley’s most feared and well-liked journalist” gets to the heart of what makes powerful people tick. Kara makes sense of tech, business and politics through tough conversations with the newsmakers who matter. So why do they show up? “Smart people,” says Kara, “like difficult questions.” Plus, it’s fun.
+Every Monday and Thursday starting September 26th. From New York Magazine and the Vox Media Podcast Network.</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Direct questions, real answers. On with Kara Swisher is where “Silicon Valley’s most feared and well-liked journalist” gets to the heart of what makes powerful people tick. Kara makes sense of tech, business and politics through tough conversations with the newsmakers who matter. So why do they show up? “Smart people,” says Kara, “like difficult questions.” Plus, it’s fun.</p><p>Every Monday and Thursday starting September 26th. From New York Magazine and the Vox Media Podcast Network.</p>]]>
+ </content:encoded>
+ <itunes:owner>
+ <itunes:name>New York Magazine</itunes:name>
+ <itunes:email>podcasting@voxmedia.com</itunes:email>
+ </itunes:owner>
+ <itunes:image href="https://megaphone.imgix.net/podcasts/d8dd4b8a-02be-11ed-9562-6bb84220205a/image/22_ON-W-KARA_TILE_3000_LO-RES__1_.png?ixlib=rails-2.1.2&amp;max-w=3000&amp;max-h=3000&amp;fit=crop&amp;auto=format,compress"/>
+ <itunes:category text="News">
+ <itunes:category text="News Commentary"/>
+ </itunes:category>
+ <itunes:category text="Society &amp; Culture">
+ </itunes:category>
+ <item>
+ <title>Into It: A Portrait of Artist as Taylor Swift</title>
+ <description>Today, we’re sharing a special episode of Into It: A Vulture Podcast with Sam Sanders about one of Kara’s favorites: Taylor Swift.
+
+What is the meaning of Taylor Swift? She's performed damsel in distress, but represents women’s empowerment. She’s a confessional artist, but is careful about how much she reveals. She's an adult, but is often still viewed as the teenager she used to be. On the eve of Midnights, Sam dives into the mythos and craft of Taylor Swift with NPR music critic Ann Powers about her place in history among the likes of Joni Mitchell, Bob Dylan, Adele, and Beyoncé.
+
+We also hear about the culture that's haunting us: Explain to us again why Bobby Cannavale's character in The Watcher wants to replace a Carrara marble countertop with butcher block? To make red sauce?
+
+To listen to more of Into It: A Vulture Podcast with Sam Sanders, follow the show: https://podcasts.voxmedia.com/show/into-it-a-vulture-podcast-with-sam-sanders
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 24 Nov 2022 10:00:00 -0000</pubDate>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Today, we’re sharing a special episode of Into It: A Vulture Podcast with Sam Sanders about one of Kara’s favorites: Taylor Swift.
+
+What is the meaning of Taylor Swift? She's performed damsel in distress, but represents women’s empowerment. She’s a confessional artist, but is careful about how much she reveals. She's an adult, but is often still viewed as the teenager she used to be. On the eve of Midnights, Sam dives into the mythos and craft of Taylor Swift with NPR music critic Ann Powers about her place in history among the likes of Joni Mitchell, Bob Dylan, Adele, and Beyoncé.
+
+We also hear about the culture that's haunting us: Explain to us again why Bobby Cannavale's character in The Watcher wants to replace a Carrara marble countertop with butcher block? To make red sauce?
+
+To listen to more of Into It: A Vulture Podcast with Sam Sanders, follow the show: https://podcasts.voxmedia.com/show/into-it-a-vulture-podcast-with-sam-sanders
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Today, we’re sharing a special episode of Into It: A Vulture Podcast with Sam Sanders about one of Kara’s favorites: Taylor Swift.</p><p><br></p><p>What is the meaning of Taylor Swift? She's performed damsel in distress, but represents women’s empowerment. She’s a confessional artist, but is careful about how much she reveals. She's an adult, but is often still viewed as the teenager she used to be. On the eve of Midnights, Sam dives into the mythos and craft of Taylor Swift with NPR music critic Ann Powers about her place in history among the likes of Joni Mitchell, Bob Dylan, Adele, and Beyoncé.</p><p><br></p><p>We also hear about the culture that's haunting us: Explain to us again why Bobby Cannavale's character in The Watcher wants to replace a Carrara marble countertop with butcher block? To make red sauce?</p><p><br></p><p>To listen to more of Into It: A Vulture Podcast with Sam Sanders, follow the show: https://podcasts.voxmedia.com/show/into-it-a-vulture-podcast-with-sam-sanders</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>2325</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[be843d90-66b7-11ed-87bc-2ff4427c58ce]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP5491075066.mp3?updated=1669133116" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Where’s the Line in Comedy? Monty Python’s Eric Idle Has an Idea</title>
+ <description>Should anything be off-limits in comedy? Kara and Nayeema discuss this question, and the recent Dave Chappelle SNL monologue, before Kara’s interview with our guest today: writer-comedian Eric Idle who is an OG in the craft. When he and his fellow sketch artists launched Monty Python on the BBC in 1969, it was unclear whether anyone would even watch. Now there are generations of Python fans. Today, Idle talks about what made Monty Python unique and how they pushed the line and the social conversation with their unique brand of humor. 
+Both avid Twitterers, Kara and Idle also discuss their frustrations with Elon Musk (he’s a noted fan of Monty Python, though Idle is not a fan of Musk). And Idle describes how his recent bout with pancreatic cancer has made him a more accepting person. 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 21 Nov 2022 10:00:00 -0000</pubDate>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>17</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Should anything be off-limits in comedy? Kara and Nayeema discuss this question, and the recent Dave Chappelle SNL monologue, before Kara’s interview with our guest today: writer-comedian Eric Idle who is an OG in the craft. When he and his fellow sketch artists launched Monty Python on the BBC in 1969, it was unclear whether anyone would even watch. Now there are generations of Python fans. Today, Idle talks about what made Monty Python unique and how they pushed the line and the social conversation with their unique brand of humor. 
+Both avid Twitterers, Kara and Idle also discuss their frustrations with Elon Musk (he’s a noted fan of Monty Python, though Idle is not a fan of Musk). And Idle describes how his recent bout with pancreatic cancer has made him a more accepting person. 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Should anything be off-limits in comedy? Kara and Nayeema discuss this question, and the recent Dave Chappelle SNL monologue, before Kara’s interview with our guest today: writer-comedian Eric Idle who is an OG in the craft. When he and his fellow sketch artists launched Monty Python on the BBC in 1969, it was unclear whether anyone would even watch. Now there are generations of Python fans. Today, Idle talks about what made Monty Python unique and how they pushed the line and the social conversation with their unique brand of humor. </p><p>Both avid Twitterers, Kara and Idle also discuss their frustrations with Elon Musk (he’s a noted fan of Monty Python, though Idle is not a fan of Musk). And Idle describes how his recent bout with pancreatic cancer has made him a more accepting person. </p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3546</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[c46aff9e-2edd-11ed-a449-23b890b2b08b]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP8744188341.mp3?updated=1669060503" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Can Chris Licht Turn CNN Around?</title>
+ <description>Chris Licht faces an uphill battle at CNN. He got the CEO gig in the midst of a prickly merger between Warner Bros. and Discovery and right after the shocking exit of beloved long-time boss, Jeff Zucker. In his first six months, he’s shut down CNN+, ousted Brian Stelter, and shuffled anchors around, including Don Lemon and Jake Tapper. This week, the network chief held an internal town hall meeting where he faced a staff of thousands and discussed upcoming layoffs. Shortly afterwards, he sat down with Kara — who grilled him, of course. 
+She asks Licht whether he has any real actual power or if he’s simply executing orders from Warner Bros. Discovery CEO David Zaslav — who is in search of cuts, as the company stares down the barrel at $50 billion in debt — and billionaire board member, John Malone, who has said he’d like to see more “centrist” programming from CNN. They discuss Licht’s vision for the newsroom, his plan to build trust with journalists who fear losing jobs, and how CNN will cover Donald Trump during the 2024 election.  
+Before the interview, Kara and Nayeema discuss the challenges facing journalism in an era of disinformation. Stay tuned for Kara’s closing rant on “citizen journalism” and Elon’s latest broadside against the press.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 17 Nov 2022 10:00:00 -0000</pubDate>
+ <itunes:title>Can Chris Licht Turn CNN Around?</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>16</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle>Chris Licht faces an uphill battle at CNN. </itunes:subtitle>
+ <itunes:summary>Chris Licht faces an uphill battle at CNN. He got the CEO gig in the midst of a prickly merger between Warner Bros. and Discovery and right after the shocking exit of beloved long-time boss, Jeff Zucker. In his first six months, he’s shut down CNN+, ousted Brian Stelter, and shuffled anchors around, including Don Lemon and Jake Tapper. This week, the network chief held an internal town hall meeting where he faced a staff of thousands and discussed upcoming layoffs. Shortly afterwards, he sat down with Kara — who grilled him, of course. 
+She asks Licht whether he has any real actual power or if he’s simply executing orders from Warner Bros. Discovery CEO David Zaslav — who is in search of cuts, as the company stares down the barrel at $50 billion in debt — and billionaire board member, John Malone, who has said he’d like to see more “centrist” programming from CNN. They discuss Licht’s vision for the newsroom, his plan to build trust with journalists who fear losing jobs, and how CNN will cover Donald Trump during the 2024 election.  
+Before the interview, Kara and Nayeema discuss the challenges facing journalism in an era of disinformation. Stay tuned for Kara’s closing rant on “citizen journalism” and Elon’s latest broadside against the press.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Chris Licht faces an uphill battle at CNN. He got the CEO gig in the midst of a prickly merger between Warner Bros. and Discovery and right after the shocking exit of beloved long-time boss, Jeff Zucker. In his first six months, he’s shut down CNN+, ousted Brian Stelter, and shuffled anchors around, including Don Lemon and Jake Tapper. This week, the network chief held an internal town hall meeting where he faced a staff of thousands and discussed upcoming layoffs. Shortly afterwards, he sat down with Kara — who grilled him, of course. </p><p>She asks Licht whether he has any real actual power or if he’s simply executing orders from Warner Bros. Discovery CEO David Zaslav — who is in search of cuts, as the company stares down the barrel at $50 billion in debt — and billionaire board member, John Malone, who has said he’d like to see more “centrist” programming from CNN. They discuss Licht’s vision for the newsroom, his plan to build trust with journalists who fear losing jobs, and how CNN will cover Donald Trump during the 2024 election.  </p><p>Before the interview, Kara and Nayeema discuss the challenges facing journalism in an era of disinformation. Stay tuned for Kara’s closing rant on “citizen journalism” and Elon’s latest broadside against the press.</p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3937</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[c42f762c-2edd-11ed-a449-e3f20b1bb2f9]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP6973501775.mp3?updated=1668715071" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Elon Musk: Somebody That I Used to Know</title>
+ <description>Elon Musk is a puzzle, but if there’s anyone who can make sense of him it’s Kara Swisher. She’s covered him since the late 90s – back in her early days as a beat reporter at the Wall Street Journal and she’s had many in-depth interviews and exchanges with the tech titan since, perhaps more than any other reporter. She’s also covered Elon’s latest fiefdom, Twitter, before it even was Twitter. So today we turn the tables, and Kara Swisher is “On” with Nayeema Raza. 
+
+We’ll unpack how Elon became Elon, why Kara came to believe he was one of the greatest visionaries in Silicon Valley, when exactly she soured on him — and why she still holds out some hope. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 14 Nov 2022 10:00:00 -0000</pubDate>
+ <itunes:title>Elon Musk: Somebody That I Used to Know</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>15</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Elon Musk is a puzzle, but if there’s anyone who can make sense of him it’s Kara Swisher. She’s covered him since the late 90s – back in her early days as a beat reporter at the Wall Street Journal and she’s had many in-depth interviews and exchanges with the tech titan since, perhaps more than any other reporter. She’s also covered Elon’s latest fiefdom, Twitter, before it even was Twitter. So today we turn the tables, and Kara Swisher is “On” with Nayeema Raza. 
+
+We’ll unpack how Elon became Elon, why Kara came to believe he was one of the greatest visionaries in Silicon Valley, when exactly she soured on him — and why she still holds out some hope. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Elon Musk is a puzzle, but if there’s anyone who can make sense of him it’s Kara Swisher. She’s covered him since the late 90s – back in her early days as a beat reporter at the Wall Street Journal and she’s had many in-depth interviews and exchanges with the tech titan since, perhaps more than any other reporter. She’s also covered Elon’s latest fiefdom, Twitter, before it even <em>was</em> Twitter. So today we turn the tables, and Kara Swisher is “On” with Nayeema Raza. </p><p><br></p><p>We’ll unpack how Elon became Elon, why Kara came to believe he was one of the greatest visionaries in Silicon Valley, when exactly she soured on him — and why she still holds out some hope. </p><p><br></p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>4054</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[c4572bc2-2edd-11ed-a449-2f0c8b09f831]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP6680279504.mp3?updated=1668382832" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>How Donald Trump Helped the Democrats</title>
+ <description>After Kara and Nayeema have a chat about — what else? — Elon Musk’s latest moves, we dive into democracy and the midterms. The results are (mostly) in, and the “red wave” that Republicans predicted never came. To understand why, Kara gets deep into political reporting in three key swing states: Arizona, Georgia and Pennsylvania.
+Our guests are three veteran journalists who know their respective states' politics inside out: Yvonne Wingett Sanchez, democracy reporter covering Arizona for The Washington Post; Tia Mitchell, Washington correspondent for The Atlanta Journal-Constitution; and Chris Potter, government and accountability editor for WESA FM, Pittsburgh’s NPR news station. Together, the panel unpacks the midterm results and the decision by Democrats to focus on democracy, Dobbs and, yes, Donald Trump.
+Plus, stay tuned for Kara’s RANT about why she’s savoring John Fetterman’s win — and why President Biden deserves more credit than he’s gotten. 
+Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 10 Nov 2022 10:00:00 -0000</pubDate>
+ <itunes:title>How Donald Trump Helped the Democrats</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>14</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>After Kara and Nayeema have a chat about — what else? — Elon Musk’s latest moves, we dive into democracy and the midterms. The results are (mostly) in, and the “red wave” that Republicans predicted never came. To understand why, Kara gets deep into political reporting in three key swing states: Arizona, Georgia and Pennsylvania.
+Our guests are three veteran journalists who know their respective states' politics inside out: Yvonne Wingett Sanchez, democracy reporter covering Arizona for The Washington Post; Tia Mitchell, Washington correspondent for The Atlanta Journal-Constitution; and Chris Potter, government and accountability editor for WESA FM, Pittsburgh’s NPR news station. Together, the panel unpacks the midterm results and the decision by Democrats to focus on democracy, Dobbs and, yes, Donald Trump.
+Plus, stay tuned for Kara’s RANT about why she’s savoring John Fetterman’s win — and why President Biden deserves more credit than he’s gotten. 
+Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>After Kara and Nayeema have a chat about — what else? — Elon Musk’s latest moves, we dive into democracy and the midterms. The results are (mostly) in, and the “red wave” that Republicans predicted never came. To understand why, Kara gets deep into political reporting in three key swing states: Arizona, Georgia and Pennsylvania.</p><p>Our guests are three veteran journalists who know their respective states' politics inside out: Yvonne Wingett Sanchez, democracy reporter covering Arizona for The Washington Post; Tia Mitchell, Washington correspondent for The Atlanta Journal-Constitution; and Chris Potter, government and accountability editor for WESA FM, Pittsburgh’s NPR news station. Together, the panel unpacks the midterm results and the decision by Democrats to focus on democracy, Dobbs and, yes, Donald Trump.</p><p>Plus, stay tuned for Kara’s RANT about why she’s savoring John Fetterman’s win — and why President Biden deserves more credit than he’s gotten. </p><p>Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. </p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3849</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[c41c2db0-2edd-11ed-a449-678a65310bb0]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP6248128056.mp3?updated=1668099554" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>How John King Gets Ready for Election Night</title>
+ <description>Kara is nervous about the elections — and she should be, control of the House and of the Senate is up for grabs, as are 36 governorships. She and Nayeema discuss the big day ahead, and specifically how social media and misinformation may sway results.
+
+They then turn to our guest today — the man who will be sharing those results with us, at least on CNN. John King and Kara talk about how he prepares to helm the “Magic Wall” and talk millions of viewers through the red and blue board. They go beyond the horse race and inside the pressure and process for making calls at CNN. 
+
+Stay tuned for the end of the episode when Kara answers a listener question about her spirituality and Nayeema surmises the sunglassed-one’s Holy Trinity (it’s not what you think). 
+
+If you want Kara’s advice, call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. Oh yes, and if you’re eligible: GO VOTE!
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 07 Nov 2022 10:00:00 -0000</pubDate>
+ <itunes:title>The “King” of Election Night</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>13</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Kara is nervous about the elections — and she should be, control of the House and of the Senate is up for grabs, as are 36 governorships. She and Nayeema discuss the big day ahead, and specifically how social media and misinformation may sway results.
+
+They then turn to our guest today — the man who will be sharing those results with us, at least on CNN. John King and Kara talk about how he prepares to helm the “Magic Wall” and talk millions of viewers through the red and blue board. They go beyond the horse race and inside the pressure and process for making calls at CNN. 
+
+Stay tuned for the end of the episode when Kara answers a listener question about her spirituality and Nayeema surmises the sunglassed-one’s Holy Trinity (it’s not what you think). 
+
+If you want Kara’s advice, call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. Oh yes, and if you’re eligible: GO VOTE!
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Kara is nervous about the elections — and she should be, control of the House and of the Senate is up for grabs, as are 36 governorships. She and Nayeema discuss the big day ahead, and specifically how social media and misinformation may sway results.</p><p><br></p><p>They then turn to our guest today — the man who will be sharing those results with us, at least on CNN. John King and Kara talk about how he prepares to helm the “Magic Wall” and talk millions of viewers through the red and blue board. They go beyond the horse race and inside the pressure and process for making calls at CNN. </p><p><br></p><p>Stay tuned for the end of the episode when Kara answers a listener question about her spirituality and Nayeema surmises the sunglassed-one’s Holy Trinity (it’s not what you think). </p><p><br></p><p>If you want Kara’s advice, call 1-888-KARA-PLZ and leave a message. </p><p><br></p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. Oh yes, and if you’re eligible: GO VOTE!</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3498</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[c4432898-2edd-11ed-a449-fb300dfe2550]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP8348150022.mp3?updated=1668439935" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Kara on Elon and John Legend on Kanye (and More!)</title>
+ <description>Kara and Nayeema kick off this Thursday’s episode with a feisty discussion about Elon Musk’s Twitter and how he’s “kicking the most active users in the teeth.” They give us the run-down inside Elon’s band of merry advisors and Nayeema gets to the heart of why exactly Kara is so angry with Elon … and so sad.
+
+Today’s interview is with John Legend, the Emmy, Grammy, Oscar and Tony-winning artist (aka EGOT) who famously moonlights as a social justice activist. But before he was John Legend, he was John Roger Stephens: born to a socially conservative family, sent to an Ivy League university at age 16, and dabbling as a nerdy strategy consultant before his big break. In fact, the first person to credit him as “John Legend” was Kanye West. In this conversation, Kara and John speak about Kanye’s descent into antisemitism and how he makes sense of a friend he’s long last touch with. They also discuss how TikTok has changed the music business, and why John is so hyper-focused on politics and down-ballot midterm races (no, the artist has no plans to run for political office – he’s just downright worried about the country).
+
+Trigger warning: Kara does not hold back on her anger about Twitter and Elon these days, especially at the very end – so make sure you stay tuned for her final choice words ... or, as she calls it, her “rant!” 
+
+Disclosure: John Legend is on the board of directors at Vox Media. This did not change the nature of  our interview. In fact, Kara started with what were probably the hardest questions for him.
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 03 Nov 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Kara on Elon and John Legend on Kanye (and More!)</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>12</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Kara and Nayeema kick off this Thursday’s episode with a feisty discussion about Elon Musk’s Twitter and how he’s “kicking the most active users in the teeth.” They give us the run-down inside Elon’s band of merry advisors and Nayeema gets to the heart of why exactly Kara is so angry with Elon … and so sad.
+
+Today’s interview is with John Legend, the Emmy, Grammy, Oscar and Tony-winning artist (aka EGOT) who famously moonlights as a social justice activist. But before he was John Legend, he was John Roger Stephens: born to a socially conservative family, sent to an Ivy League university at age 16, and dabbling as a nerdy strategy consultant before his big break. In fact, the first person to credit him as “John Legend” was Kanye West. In this conversation, Kara and John speak about Kanye’s descent into antisemitism and how he makes sense of a friend he’s long last touch with. They also discuss how TikTok has changed the music business, and why John is so hyper-focused on politics and down-ballot midterm races (no, the artist has no plans to run for political office – he’s just downright worried about the country).
+
+Trigger warning: Kara does not hold back on her anger about Twitter and Elon these days, especially at the very end – so make sure you stay tuned for her final choice words ... or, as she calls it, her “rant!” 
+
+Disclosure: John Legend is on the board of directors at Vox Media. This did not change the nature of  our interview. In fact, Kara started with what were probably the hardest questions for him.
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Kara and Nayeema kick off this Thursday’s episode with a feisty discussion about Elon Musk’s Twitter and how he’s “kicking the most active users in the teeth.” They give us the run-down inside Elon’s band of merry advisors and Nayeema gets to the heart of why exactly Kara is so angry with Elon … and so sad.</p><p><br></p><p>Today’s interview is with John Legend, the Emmy, Grammy, Oscar and Tony-winning artist (aka EGOT) who famously moonlights as a social justice activist. But before he was John Legend, he was John Roger Stephens: born to a socially conservative family, sent to an Ivy League university at age 16, and dabbling as a nerdy strategy consultant before his big break. In fact, the first person to credit him as “John Legend” was Kanye West. In this conversation, Kara and John speak about Kanye’s descent into antisemitism and how he makes sense of a friend he’s long last touch with. They also discuss how TikTok has changed the music business, and why John is so hyper-focused on politics and down-ballot midterm races (no, the artist has no plans to run for political office – he’s just downright worried about the country).</p><p><br></p><p><strong>Trigger warning:</strong> Kara does not hold back on her anger about Twitter and Elon these days, especially at the very end – so make sure you stay tuned for her final choice words ... or, as she calls it, her “rant!” </p><p><br></p><p>Disclosure: John Legend is on the board of directors at Vox Media. This did not change the nature of  our interview. In fact, Kara started with what were probably the hardest questions for him.</p><p><br></p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3439</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[c4085d4e-2edd-11ed-a449-eb28776bb236]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP4547917443.mp3?updated=1667569408" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Matt Levine on Elon Musk: Chief Twit &amp; “Meme Lord”</title>
+ <description>The Twitter deal is done, and Elon Musk is now, officially, “Chief Twit.” Bloomberg Opinion columnist and “MoneyStuff” writer, Matt Levine, has been analyzing the deal (and the drama) over the past seven months. Now, Matt and Kara consider what the future of the social media platform might look like under Musk. They discuss whether Elon’s seemingly genuine belief in the utility of Twitter, paired with his business and engineering acumen, will be a game changer for the company. And they discuss how his principles will drive big decisions ahead, including potentially reversing the platform's ban of Donald Trump. 
+Before the interview, Kara and Nayeema talk about the violent attack on Paul Pelosi, husband of Speaker Nancy Pelosi, and the rising tide of violence against politicians. Plus, Kara gives Elon some unsolicited advice on the business, including how to avoid a version of Twitter that would make even Kara quit her favorite social media platform. 
+Do you want Kara’s (solicited) advice? Call 1-888-KARA-PLZ and leave us a voice mail with your questions! 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 31 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Matt Levine on Elon Musk: Chief Twit &amp; “Meme Lord”</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>11</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>The Twitter deal is done, and Elon Musk is now, officially, “Chief Twit.” Bloomberg Opinion columnist and “MoneyStuff” writer, Matt Levine, has been analyzing the deal (and the drama) over the past seven months. Now, Matt and Kara consider what the future of the social media platform might look like under Musk. They discuss whether Elon’s seemingly genuine belief in the utility of Twitter, paired with his business and engineering acumen, will be a game changer for the company. And they discuss how his principles will drive big decisions ahead, including potentially reversing the platform's ban of Donald Trump. 
+Before the interview, Kara and Nayeema talk about the violent attack on Paul Pelosi, husband of Speaker Nancy Pelosi, and the rising tide of violence against politicians. Plus, Kara gives Elon some unsolicited advice on the business, including how to avoid a version of Twitter that would make even Kara quit her favorite social media platform. 
+Do you want Kara’s (solicited) advice? Call 1-888-KARA-PLZ and leave us a voice mail with your questions! 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>The Twitter deal is done, and Elon Musk is now, officially, “Chief Twit.” Bloomberg Opinion columnist and “MoneyStuff” writer, Matt Levine, has been analyzing the deal (and the drama) over the past seven months. Now, Matt and Kara consider what the future of the social media platform might look like under Musk. They discuss whether Elon’s seemingly genuine belief in the utility of Twitter, paired with his business and engineering acumen, will be a game changer for the company. And they discuss how his principles will drive big decisions ahead, including potentially reversing the platform's ban of Donald Trump. </p><p>Before the interview, Kara and Nayeema talk about the violent attack on Paul Pelosi, husband of Speaker Nancy Pelosi, and the rising tide of violence against politicians. Plus, Kara gives Elon some unsolicited advice on the business, including how to avoid a version of Twitter that would make even Kara quit her favorite social media platform. </p><p>Do you want Kara’s (solicited) advice? Call 1-888-KARA-PLZ and leave us a voice mail with your questions! </p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p><br></p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3350</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[899b6422-23bf-11ed-8855-93f13e234426]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP2143921376.mp3?updated=1667172540" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Frank Luntz, Rick Wilson and Sarah Longwell on Donald Trump and the Midterms</title>
+ <description>Election Day is less than two weeks away, and Republicans are poised for some major midterm gains. So today, Kara talks to three Republican strategists about midterm predictions and the effect that Donald Trump is having on these elections. Our guests are veteran pollster Frank Luntz, Lincoln Project co-founder Rick Wilson, and Bulwark publisher Sarah Longwell. All three are long-time Republican operatives who believe that Donald Trump is a threat to democracy and to the party but they disagree on whether and how the party can move beyond MAGA and the Big Lie. 
+
+Before the interview, Kara and Nayeema talk about what Rishi Sunak’s rise to prime minister means for the UK and Nick Clegg: the Meta executive who will decide if Donald Trump’s stays banned from Facebook beyond January 2023. Plus, Kara shares her unsolicited advice for more civil, less cruel, political discourse. 
+
+Do you want Kara’s (solicited) advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 27 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Frank Luntz, Rick Wilson and Sarah Longwell on Donald Trump and the Midterms</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:episode>10</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Election Day is less than two weeks away, and Republicans are poised for some major midterm gains. So today, Kara talks to three Republican strategists about midterm predictions and the effect that Donald Trump is having on these elections. Our guests are veteran pollster Frank Luntz, Lincoln Project co-founder Rick Wilson, and Bulwark publisher Sarah Longwell. All three are long-time Republican operatives who believe that Donald Trump is a threat to democracy and to the party but they disagree on whether and how the party can move beyond MAGA and the Big Lie. 
+
+Before the interview, Kara and Nayeema talk about what Rishi Sunak’s rise to prime minister means for the UK and Nick Clegg: the Meta executive who will decide if Donald Trump’s stays banned from Facebook beyond January 2023. Plus, Kara shares her unsolicited advice for more civil, less cruel, political discourse. 
+
+Do you want Kara’s (solicited) advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Election Day is less than two weeks away, and Republicans are poised for some major midterm gains. So today, Kara talks to three Republican strategists about midterm predictions and the effect that Donald Trump is having on these elections. Our guests are veteran pollster Frank Luntz, Lincoln Project co-founder Rick Wilson, and Bulwark publisher Sarah Longwell. All three are long-time Republican operatives who believe that Donald Trump is a threat to democracy and to the party but they disagree on whether and how the party can move beyond MAGA and the Big Lie. </p><p><br></p><p>Before the interview, Kara and Nayeema talk about what Rishi Sunak’s rise to prime minister means for the UK and Nick Clegg: the Meta executive who will decide if Donald Trump’s stays banned from Facebook beyond January 2023. Plus, Kara shares her unsolicited advice for more civil, less cruel, political discourse. </p><p><br></p><p>Do you want Kara’s (solicited) advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. </p><p><br></p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3716</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[894b6b52-23bf-11ed-8855-87dfc7e98fd5]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP7153146914.mp3?updated=1666838922" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Twitter Spaces On: WTF is Happening in the UK and the World</title>
+ <description>Today, we’re sharing a bonus episode of Kara’s Twitter Spaces conversation recorded on Monday night. In the first part of the conversation, Kara talks to Jonathan Freedland, a British journalist and columnist for The Guardian, about the fall of Liz Truss, the rise of Rishi Sunak and the role of Rupert Murdoch’s media empire in U.K. politics. 
+In the second part of the episode, Kara and Freedland are joined by yet another Jonathan: Jonathan Greenblatt, CEO of the Anti-Defamation League. The trio discusses the rise of populism and hate speech today. They cover Kanye West’s antisemitic remarks on social media and discuss Freedland’s — aka British Jonathan’s — new book, “The Escape Artist: The Man Who Broke Out of Auschwitz to Warn the World.”
+Follow us on Twitter @karaswisher and @nayeema to tune in for future Spaces.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Tue, 25 Oct 2022 16:42:02 -0000</pubDate>
+ <itunes:title>Twitter Spaces On: WTF is Happening in the UK and the World</itunes:title>
+ <itunes:episodeType>bonus</itunes:episodeType>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Today, we’re sharing a bonus episode of Kara’s Twitter Spaces conversation recorded on Monday night. In the first part of the conversation, Kara talks to Jonathan Freedland, a British journalist and columnist for The Guardian, about the fall of Liz Truss, the rise of Rishi Sunak and the role of Rupert Murdoch’s media empire in U.K. politics. 
+In the second part of the episode, Kara and Freedland are joined by yet another Jonathan: Jonathan Greenblatt, CEO of the Anti-Defamation League. The trio discusses the rise of populism and hate speech today. They cover Kanye West’s antisemitic remarks on social media and discuss Freedland’s — aka British Jonathan’s — new book, “The Escape Artist: The Man Who Broke Out of Auschwitz to Warn the World.”
+Follow us on Twitter @karaswisher and @nayeema to tune in for future Spaces.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Today, we’re sharing a bonus episode of Kara’s Twitter Spaces conversation recorded on Monday night. In the first part of the conversation, Kara talks to Jonathan Freedland, a British journalist and columnist for The Guardian, about the fall of Liz Truss, the rise of Rishi Sunak and the role of Rupert Murdoch’s media empire in U.K. politics. </p><p>In the second part of the episode, Kara and Freedland are joined by yet another Jonathan: Jonathan Greenblatt, CEO of the Anti-Defamation League. The trio discusses the rise of populism and hate speech today. They cover Kanye West’s antisemitic remarks on social media and discuss Freedland’s — aka British Jonathan’s — new book, “The Escape Artist: The Man Who Broke Out of Auschwitz to Warn the World.”</p><p>Follow us on Twitter @karaswisher and @nayeema to tune in for future Spaces.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>4124</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[78eacb0a-4e25-11ed-bbd1-672091054ef5]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP2288664009.mp3?updated=1666716524" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>The Economy Stinks, and Dr. Doom is Not Hopeful</title>
+ <description>Nouriel Roubini, a.ka. "Dr. Doom," became famous for predicting the 2008 global financial crisis. Now, he is back with another grim forecast, in his new book, "MegaThreats: Ten Dangerous Trends That Imperil Our Future, And How to Survive Them." He and Kara discuss the book, his prediction that we’re headed towards a stagflationary debt crisis, and US-China relations. Dr. Roubini also explains why cryptocurrency is fundamentally flawed (in fact, he thinks it’s less sophisticated than what the Flinstone’s had). 
+Before the interview, Kara and Nayeema discuss Sheryl Sandberg’s new report, “Women in the Workplace,” a joint venture by her organization, Lean In, and McKinsey &amp; Company. And they  talk about China’s president Xi Jinping — who is leaning into a third term as General Secretary of the Chinese Communist Party.
+Follow us on Twitter @karaswisher and @nayeema to get the banter in real time!
+Learn more about your ad choices. Visit: podcastchoice.com/adchoices
+
+
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 24 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>The Economy Stinks, and Dr. Doom is Not Hopeful</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>9</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Nouriel Roubini, a.ka. "Dr. Doom," became famous for predicting the 2008 global financial crisis. Now, he is back with another grim forecast, in his new book, "MegaThreats: Ten Dangerous Trends That Imperil Our Future, And How to Survive Them." He and Kara discuss the book, his prediction that we’re headed towards a stagflationary debt crisis, and US-China relations. Dr. Roubini also explains why cryptocurrency is fundamentally flawed (in fact, he thinks it’s less sophisticated than what the Flinstone’s had). 
+Before the interview, Kara and Nayeema discuss Sheryl Sandberg’s new report, “Women in the Workplace,” a joint venture by her organization, Lean In, and McKinsey &amp; Company. And they  talk about China’s president Xi Jinping — who is leaning into a third term as General Secretary of the Chinese Communist Party.
+Follow us on Twitter @karaswisher and @nayeema to get the banter in real time!
+Learn more about your ad choices. Visit: podcastchoice.com/adchoices
+
+
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Nouriel Roubini, a.ka. "Dr. Doom," became famous for predicting the 2008 global financial crisis. Now, he is back with another grim forecast, in his new book, "MegaThreats: Ten Dangerous Trends That Imperil Our Future, And How to Survive Them." He and Kara discuss the book, his prediction that we’re headed towards a stagflationary debt crisis, and US-China relations. Dr. Roubini also explains why cryptocurrency is fundamentally flawed (in fact, he thinks it’s less sophisticated than what the Flinstone’s had). </p><p>Before the interview, Kara and Nayeema discuss Sheryl Sandberg’s new report, “Women in the Workplace,” a joint venture by her organization, Lean In, and McKinsey &amp; Company. And they  talk about China’s president Xi Jinping — who is leaning into a third term as General Secretary of the Chinese Communist Party.</p><p>Follow us on Twitter @karaswisher and @nayeema to get the banter in real time!</p><p>Learn more about your ad choices. Visit: podcastchoice.com/adchoices</p><p><br></p><p><br></p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3210</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[8987e596-23bf-11ed-8855-1b606f63abd8]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP4016039692.mp3?updated=1666577576" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Airbnb’s CEO on Nomadic Life, Loneliness… and Cleaning Fees</title>
+ <description>Airbnb CEO and co-founder Brian Chesky took the company public, laid off 25% of its staff and navigated worker demands for flexibility – all during the pandemic. Oh, and his mom moved in (and made him quiche every day). In this conversation with Kara, Brian discusses the challenge of being professionally successful and, sometimes, personally lonely. They talk about how the pandemic may have permanently changed how we work, travel and live. And Kara gets answers about the company’s lack of transparency on those dreaded cleaning fees. 
+
+Before the interview, Kara and Nayeema talk about billionaires owning social media networks. They discuss Georgia congresswoman Marjorie Taylor Greene, who seems to be riding the MAGA train to amass power in the Republican party. And they reflect on the story of Iranian rock climber Elnaz Rekabi, who caused a stir on social media this week in the midst of the nation’s anti-government protests. 
+
+… oh yes, and they dispense some dating advice. If you want advice – it doesn’t have to be about dating – call 1-888-KARA-PLZ!
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 20 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Airbnb’s CEO on Nomadic Life, Loneliness… and Cleaning Fees</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:episode>8</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Airbnb CEO and co-founder Brian Chesky took the company public, laid off 25% of its staff and navigated worker demands for flexibility – all during the pandemic. Oh, and his mom moved in (and made him quiche every day). In this conversation with Kara, Brian discusses the challenge of being professionally successful and, sometimes, personally lonely. They talk about how the pandemic may have permanently changed how we work, travel and live. And Kara gets answers about the company’s lack of transparency on those dreaded cleaning fees. 
+
+Before the interview, Kara and Nayeema talk about billionaires owning social media networks. They discuss Georgia congresswoman Marjorie Taylor Greene, who seems to be riding the MAGA train to amass power in the Republican party. And they reflect on the story of Iranian rock climber Elnaz Rekabi, who caused a stir on social media this week in the midst of the nation’s anti-government protests. 
+
+… oh yes, and they dispense some dating advice. If you want advice – it doesn’t have to be about dating – call 1-888-KARA-PLZ!
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Airbnb CEO and co-founder Brian Chesky took the company public, laid off 25% of its staff and navigated worker demands for flexibility – all during the pandemic. Oh, and his mom moved in (and made him quiche every day). In this conversation with Kara, Brian discusses the challenge of being professionally successful and, sometimes, personally lonely. They talk about how the pandemic may have permanently changed how we work, travel and live. And Kara gets answers about the company’s lack of transparency on those dreaded cleaning fees. </p><p><br></p><p>Before the interview, Kara and Nayeema talk about billionaires owning social media networks. They discuss Georgia congresswoman Marjorie Taylor Greene, who seems to be riding the MAGA train to amass power in the Republican party. And they reflect on the story of Iranian rock climber Elnaz Rekabi, who caused a stir on social media this week in the midst of the nation’s anti-government protests. </p><p><br></p><p>… oh yes, and they dispense some dating advice. If you want advice – it doesn’t have to be about dating – call 1-888-KARA-PLZ!</p><p><br></p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3761</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[8937bfa8-23bf-11ed-8855-1762c3ed83b1]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP9668575791.mp3?updated=1666279008" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Twitter Spaces On: Elon, Elon, Elon … and Trump</title>
+ <description>Today, we’re sharing a bonus episode of Kara’s Twitter Spaces conversation that was taped on Monday night. She’s joined by William Cohan, journalist and founding partner of Puck, and Scott Galloway, business professor and co-host of the Pivot podcast. Nayeema pops in with a question at the end — and you can too, if you join our next Twitter Spaces. 
+Follow us on Twitter @karaswisher and @nayeema to tune in for future conversations. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Wed, 19 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Twitter Spaces On: Elon, Elon, Elon … and Trump</itunes:title>
+ <itunes:episodeType>bonus</itunes:episodeType>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Today, we’re sharing a bonus episode of Kara’s Twitter Spaces conversation that was taped on Monday night. She’s joined by William Cohan, journalist and founding partner of Puck, and Scott Galloway, business professor and co-host of the Pivot podcast. Nayeema pops in with a question at the end — and you can too, if you join our next Twitter Spaces. 
+Follow us on Twitter @karaswisher and @nayeema to tune in for future conversations. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Today, we’re sharing a bonus episode of Kara’s Twitter Spaces conversation that was taped on Monday night. She’s joined by William Cohan, journalist and founding partner of Puck, and Scott Galloway, business professor and co-host of the Pivot podcast. Nayeema pops in with a question at the end — and you can too, if you join our next Twitter Spaces. </p><p>Follow us on Twitter @karaswisher and @nayeema to tune in for future conversations. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3134</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[78d9486c-4e25-11ed-bbd1-7b3b960624f4]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP6843216143.mp3?updated=1666139529" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>The Billionaire Who Took America Online</title>
+ <description>Kara and Steve Case go back — way back, to the 1990s. She was a young Washington Post reporter covering a new thing called “the Internet” … and he was a co-founder of the company that became AOL. In this conversation, they take a walk back through time to look at how far the world has come and where tech companies have stumbled or fallen flat. They discuss Case’s new book, “Rise of the Rest,” which offers an optimistic future for the expansion of entrepreneurship and innovation beyond a handful of places like Silicon Valley, Boston and New York City. They also discuss whether a more equitable distribution of economic growth is possible, given some of the nation’s political divides — and potential solutions for bridging those divides. 
+Before the interview, Kara and Nayeema talk about the newsmakers of the day, including Theranos founder, Elizabeth Holmes, who is seeking a new trial, and the deep pockets of “anti-woke” investors in Silicon Valley including, of course, Peter Thiel. As always, Kara offers unsolicited advice. 
+Do you want some (solicited) advice from Kara? Call 1-888-KARA-PLZ and leave a message.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 17 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>The Billionaire Who Took America Online</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>7</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Kara and Steve Case go back — way back, to the 1990s. She was a young Washington Post reporter covering a new thing called “the Internet” … and he was a co-founder of the company that became AOL. In this conversation, they take a walk back through time to look at how far the world has come and where tech companies have stumbled or fallen flat. They discuss Case’s new book, “Rise of the Rest,” which offers an optimistic future for the expansion of entrepreneurship and innovation beyond a handful of places like Silicon Valley, Boston and New York City. They also discuss whether a more equitable distribution of economic growth is possible, given some of the nation’s political divides — and potential solutions for bridging those divides. 
+Before the interview, Kara and Nayeema talk about the newsmakers of the day, including Theranos founder, Elizabeth Holmes, who is seeking a new trial, and the deep pockets of “anti-woke” investors in Silicon Valley including, of course, Peter Thiel. As always, Kara offers unsolicited advice. 
+Do you want some (solicited) advice from Kara? Call 1-888-KARA-PLZ and leave a message.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Kara and Steve Case go back — way back, to the 1990s. She was a young Washington Post reporter covering a new thing called “the Internet” … and he was a co-founder of the company that became AOL. In this conversation, they take a walk back through time to look at how far the world has come and where tech companies have stumbled or fallen flat. They discuss Case’s new book, “Rise of the Rest,” which offers an optimistic future for the expansion of entrepreneurship and innovation beyond a handful of places like Silicon Valley, Boston and New York City. They also discuss whether a more equitable distribution of economic growth is possible, given some of the nation’s political divides — and potential solutions for bridging those divides. </p><p>Before the interview, Kara and Nayeema talk about the newsmakers of the day, including Theranos founder, Elizabeth Holmes, who is seeking a new trial, and the deep pockets of “anti-woke” investors in Silicon Valley including, of course, Peter Thiel. As always, Kara offers unsolicited advice. </p><p>Do you want some (solicited) advice from Kara? Call 1-888-KARA-PLZ and leave a message.</p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3678</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[897389c0-23bf-11ed-8855-9f77cb450f13]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP6867669089.mp3?updated=1665982715" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Will Stacey Abrams (Finally) Win?</title>
+ <description>It feels like deja vu. Stacey Abrams is running for governor of Georgia, again … against Brian Kemp, again. The two last faced off in a heated contest in 2018, with Kemp’s win hanging on 54,723 votes. This time, he’s an incumbent and even further ahead in the polls. So, Kara asks Abrams: what is different now?
+
+Before the interview, Kara and Nayeema talk about newsmakers – from the LA City Council members to the artist formerly known as Kanye West. And afterward, Kara answers a listener question about how she got so damn confident.
+
+Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara Swisher and Nayeema Raza on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 13 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Will Stacey Abrams (Finally) Win?</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>6</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>It feels like deja vu. Stacey Abrams is running for governor of Georgia, again … against Brian Kemp, again. The two last faced off in a heated contest in 2018, with Kemp’s win hanging on 54,723 votes. This time, he’s an incumbent and even further ahead in the polls. So, Kara asks Abrams: what is different now?
+
+Before the interview, Kara and Nayeema talk about newsmakers – from the LA City Council members to the artist formerly known as Kanye West. And afterward, Kara answers a listener question about how she got so damn confident.
+
+Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara Swisher and Nayeema Raza on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>It feels like deja vu. Stacey Abrams is running for governor of Georgia, again … against Brian Kemp, again. The two last faced off in a heated contest in 2018, with Kemp’s win hanging on 54,723 votes. This time, he’s an incumbent and even further ahead in the polls. So, Kara asks Abrams: what is different now?</p><p><br></p><p>Before the interview, Kara and Nayeema talk about newsmakers – from the LA City Council members to the artist formerly known as Kanye West. And afterward, Kara answers a listener question about how she got so damn confident.</p><p><br></p><p>Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. </p><p><br></p><p>You can find Kara Swisher and Nayeema Raza on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3152</itunes:duration>
+ <guid isPermaLink="false"><![CDATA[8923d704-23bf-11ed-8855-d7f46d39e582]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP4092024252.mp3?updated=1665633741" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>John Fetterman and Kara Talk Strokes, Recovery &amp; Senate Race</title>
+ <description>Pennsylvania Lt. Governor and Senate candidate John Fetterman and Kara share a few things in common. As she puts it: they were both born in Pennsylvania, both wear sloppy clothes and both have survived a stroke. Kara’s hit 11 years ago, while Fetterman’s came last May. But for Fetterman, who is recovering steadily, that health incident has been weaponized against him in the race against Dr. Oz. In this conversation, Fetterman explains why it won't stop him in a contest that is critical for Democrats — one of the party’s best shots at flipping a seat and maintaining control of the Senate.  
+Before the interview, Kara and Nayeema talk about Elon Musk’s latest antics, including efforts to make the Twitter deal contingent on financing and dabbling in Russia-Ukraine peace plans. They also look at the jam that President Biden finds himself in 4 weeks before the midterms, and Kara offers unsolicited advice to ... everybody.
+Do you want some (solicited) advice from Kara? Call 1-888-KARA-PLZ and leave a message.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 10 Oct 2022 12:05:00 -0000</pubDate>
+ <itunes:title>John Fetterman and Kara Talk Strokes &amp; Recovery </itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>5</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Pennsylvania Lt. Governor and Senate candidate John Fetterman and Kara share a few things in common. As she puts it: they were both born in Pennsylvania, both wear sloppy clothes and both have survived a stroke. Kara’s hit 11 years ago, while Fetterman’s came last May. But for Fetterman, who is recovering steadily, that health incident has been weaponized against him in the race against Dr. Oz. In this conversation, Fetterman explains why it won't stop him in a contest that is critical for Democrats — one of the party’s best shots at flipping a seat and maintaining control of the Senate.  
+Before the interview, Kara and Nayeema talk about Elon Musk’s latest antics, including efforts to make the Twitter deal contingent on financing and dabbling in Russia-Ukraine peace plans. They also look at the jam that President Biden finds himself in 4 weeks before the midterms, and Kara offers unsolicited advice to ... everybody.
+Do you want some (solicited) advice from Kara? Call 1-888-KARA-PLZ and leave a message.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Pennsylvania Lt. Governor and Senate candidate John Fetterman and Kara share a few things in common. As she puts it: they were both born in Pennsylvania, both wear sloppy clothes and both have survived a stroke. Kara’s hit 11 years ago, while Fetterman’s came last May. But for Fetterman, who is recovering steadily, that health incident has been weaponized against him in the race against Dr. Oz. In this conversation, Fetterman explains why it won't stop him in a contest that is critical for Democrats — one of the party’s best shots at flipping a seat and maintaining control of the Senate.  </p><p>Before the interview, Kara and Nayeema talk about Elon Musk’s latest antics, including efforts to make the Twitter deal contingent on financing and dabbling in Russia-Ukraine peace plans. They also look at the jam that President Biden finds himself in 4 weeks before the midterms, and Kara offers unsolicited advice to ... everybody.</p><p>Do you want some (solicited) advice from Kara? Call 1-888-KARA-PLZ and leave a message.</p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3010</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[895f51e4-23bf-11ed-8855-b7b9fc7f50e0]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP7297049208.mp3?updated=1665403864" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Maggie Haberman Makes Sense of Donald Trump</title>
+ <description>Donald Trump has said journalist Maggie Haberman is like his “psychiatrist” — a remark she dismisses as a meaningless and failed attempt at flattery. Yet Haberman does have a deep understanding of what makes the former president tick, cultivated through years of covering City Hall in New York City and then Donald J. Trump for The New York Times. Her recent book, “Confidence Man: The Making of Donald Trump and the Breaking of America,” tells Trump’s origin story and chronicles his unexpected takeover of the Republican party and his consolidation of power in Washington. “He’s not a political genius,” Haberman tells Kara, “he is a genius about human emotions and a certain darkness in what animates people.” So will Trump run again in 2024? Haberman says that “he’s backed himself into a corner where he has to,” but she’s not sure whether she'll be covering him.
+Before the interview, Kara and Nayeema talk about the newsmakers: Elon Musk’s about-face on the Twitter deal and Peter Thiel’s financing foray into key Senate races and ... a conservative dating app.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 06 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Maggie Haberman Makes Sense of Donald Trump</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>4</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Donald Trump has said journalist Maggie Haberman is like his “psychiatrist” — a remark she dismisses as a meaningless and failed attempt at flattery. Yet Haberman does have a deep understanding of what makes the former president tick, cultivated through years of covering City Hall in New York City and then Donald J. Trump for The New York Times. Her recent book, “Confidence Man: The Making of Donald Trump and the Breaking of America,” tells Trump’s origin story and chronicles his unexpected takeover of the Republican party and his consolidation of power in Washington. “He’s not a political genius,” Haberman tells Kara, “he is a genius about human emotions and a certain darkness in what animates people.” So will Trump run again in 2024? Haberman says that “he’s backed himself into a corner where he has to,” but she’s not sure whether she'll be covering him.
+Before the interview, Kara and Nayeema talk about the newsmakers: Elon Musk’s about-face on the Twitter deal and Peter Thiel’s financing foray into key Senate races and ... a conservative dating app.
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Donald Trump has said journalist Maggie Haberman is like his “psychiatrist” — a remark she dismisses as a meaningless and failed attempt at flattery. Yet Haberman does have a deep understanding of what makes the former president tick, cultivated through years of covering City Hall in New York City and then Donald J. Trump for The New York Times. Her recent book, “Confidence Man: The Making of Donald Trump and the Breaking of America,” tells Trump’s origin story and chronicles his unexpected takeover of the Republican party and his consolidation of power in Washington. “He’s not a political genius,” Haberman tells Kara, “he is a genius about human emotions and a certain darkness in what animates people.” So will Trump run again in 2024? Haberman says that “he’s backed himself into a corner where he has to,” but she’s not sure whether she'll be covering him.</p><p>Before the interview, Kara and Nayeema talk about the newsmakers: Elon Musk’s about-face on the Twitter deal and Peter Thiel’s financing foray into key Senate races and ... a conservative dating app.</p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3413</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[890fb7b0-23bf-11ed-8855-df00de665d73]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP1044076643.mp3?updated=1665030542" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>So ... Should We Ban TikTok?</title>
+ <description>Kara loves air fryer TikToks. But she only dares to scroll through them on a burner phone, as she tells TikTok’s Chief Operating Officer, Vanessa Pappas. 
+As the social media platform has gone gangbusters – accumulating over a billion monthly users globally – concerns have emerged about TikTok’s ownership structure and roots in China. The U.S. government has questions about what data the app is amassing, whether that data can be accessed by the Chinese Communist Party and if the platform is a tool for espionage or foreign interference and propaganda. Kara has those questions too. And she asks Pappas all of them.
+Before the interview, Kara and Nayeema talk about the newsmakers of the day. They scan through the Elon Musk text messages released in the Twitter-Musk proceedings and explore what the texts reveal about Silicon Valley’s powerful elite – including Twitter founder Jack Dorsey. They also discuss recent layoffs at Meta – and how Mark Zuckerberg will navigate the company’s recent struggles without his former right-hand exec, Sheryl Sandberg. 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 03 Oct 2022 09:00:00 -0000</pubDate>
+ <itunes:title>So ... Should We Ban TikTok?</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>3</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Kara loves air fryer TikToks. But she only dares to scroll through them on a burner phone, as she tells TikTok’s Chief Operating Officer, Vanessa Pappas. 
+As the social media platform has gone gangbusters – accumulating over a billion monthly users globally – concerns have emerged about TikTok’s ownership structure and roots in China. The U.S. government has questions about what data the app is amassing, whether that data can be accessed by the Chinese Communist Party and if the platform is a tool for espionage or foreign interference and propaganda. Kara has those questions too. And she asks Pappas all of them.
+Before the interview, Kara and Nayeema talk about the newsmakers of the day. They scan through the Elon Musk text messages released in the Twitter-Musk proceedings and explore what the texts reveal about Silicon Valley’s powerful elite – including Twitter founder Jack Dorsey. They also discuss recent layoffs at Meta – and how Mark Zuckerberg will navigate the company’s recent struggles without his former right-hand exec, Sheryl Sandberg. 
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Kara loves air fryer TikToks. But she only dares to scroll through them on a burner phone, as she tells TikTok’s Chief Operating Officer, Vanessa Pappas. </p><p>As the social media platform has gone gangbusters – accumulating over a billion monthly users globally – concerns have emerged about TikTok’s ownership structure and roots in China. The U.S. government has questions about what data the app is amassing, whether that data can be accessed by the Chinese Communist Party and if the platform is a tool for espionage or foreign interference and propaganda. Kara has those questions too. And she asks Pappas all of them.</p><p>Before the interview, Kara and Nayeema talk about the newsmakers of the day. They scan through the Elon Musk text messages released in the Twitter-Musk proceedings and explore what the texts reveal about Silicon Valley’s powerful elite – including Twitter founder Jack Dorsey. They also discuss recent layoffs at Meta – and how Mark Zuckerberg will navigate the company’s recent struggles without his former right-hand exec, Sheryl Sandberg. </p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3240</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[88fc7416-23bf-11ed-8855-c7c698a94056]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP3437770232.mp3?updated=1664761069" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Hillary Clinton Lets Loose with Predictions </title>
+ <description>This is Kara’s 5th interview with Hillary Clinton. So what’s changed since their first conversation in 2015? According to Kara, it’s that the former Secretary of State and 2016 Democratic nominee for President has “run out of f***s." In this conversation, taped live at The Texas Tribune Festival, Kara notes that many of Clinton’s past predictions about Donald Trump have come through and asks what may unfold if Trump runs again in 2024. They discuss Hillary’s role in the Democratic Party, and the upcoming midterms. And they talk about the emails (again), with Kara laying out one conservative narrative that seeks to equate Clinton’s emails with the documents Trump stashed away at Mar-a-Lago. As Hillary puts it: “I have testified for 11 hours. I would love to see Donald Trump testify for 30 minutes in public about any of this.”
+
+Before the interview, Kara and Nayeema talk about newsmakers – from Kentucky Senator Mitch McConnell’s decision to back a bill that would overhaul how Congress counts electoral votes to Giorgia Meloni’s win in Italy. They also run down things they’ve found despicable, delightful – or both – this week. Plus, Kara gives some advice. This time: it’s solicited. 
+
+Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Thu, 29 Sep 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Hillary Clinton Lets Loose with Predictions </itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>2</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>This is Kara’s 5th interview with Hillary Clinton. So what’s changed since their first conversation in 2015? According to Kara, it’s that the former Secretary of State and 2016 Democratic nominee for President has “run out of f***s." In this conversation, taped live at The Texas Tribune Festival, Kara notes that many of Clinton’s past predictions about Donald Trump have come through and asks what may unfold if Trump runs again in 2024. They discuss Hillary’s role in the Democratic Party, and the upcoming midterms. And they talk about the emails (again), with Kara laying out one conservative narrative that seeks to equate Clinton’s emails with the documents Trump stashed away at Mar-a-Lago. As Hillary puts it: “I have testified for 11 hours. I would love to see Donald Trump testify for 30 minutes in public about any of this.”
+
+Before the interview, Kara and Nayeema talk about newsmakers – from Kentucky Senator Mitch McConnell’s decision to back a bill that would overhaul how Congress counts electoral votes to Giorgia Meloni’s win in Italy. They also run down things they’ve found despicable, delightful – or both – this week. Plus, Kara gives some advice. This time: it’s solicited. 
+
+Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. 
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>This is Kara’s 5th interview with Hillary Clinton. So what’s changed since their first conversation in 2015? According to Kara, it’s that the former Secretary of State and 2016 Democratic nominee for President has “run out of f***s." In this conversation, taped live at The Texas Tribune Festival, Kara notes that many of Clinton’s past predictions about Donald Trump have come through and asks what may unfold if Trump runs again in 2024. They discuss Hillary’s role in the Democratic Party, and the upcoming midterms. And they talk about the emails (again), with Kara laying out one conservative narrative that seeks to equate Clinton’s emails with the documents Trump stashed away at Mar-a-Lago. As Hillary puts it: “I have testified for 11 hours. I would love to see Donald Trump testify for 30 minutes in public about any of this.”</p><p><br></p><p>Before the interview, Kara and Nayeema talk about newsmakers – from Kentucky Senator Mitch McConnell’s decision to back a bill that would overhaul how Congress counts electoral votes to Giorgia Meloni’s win in Italy. They also run down things they’ve found despicable, delightful – or both – this week. Plus, Kara gives some advice. This time: it’s solicited. </p><p><br></p><p>Do you want Kara’s advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. </p><p><br></p><p>You can find Kara and Nayeema on Twitter @karaswisher and @nayeema. </p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3569</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[88e79f3c-23bf-11ed-8855-73eaf1d3cb9f]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP4345422566.mp3?updated=1664414686" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Chris Cuomo’s Comeback</title>
+ <description>Kara Swisher is back — and so, it seems, is Chris Cuomo. In an interview that is frank and feisty, Kara presses the former CNN anchor on his unceremonious exit from the network last year, and they discuss whether he can cut through the noise with his new podcast, “The Chris Cuomo Project,” and a forthcoming show on NewsNation.
+
+But first, Kara and her sidekick, exec producer Nayeema Raza, the “Goose to her Maverick” (and yes, Goose eventually died in Top Gun) chat about the newsmakers and news Kara is watching — from Google CEO Sundar Pichai to journalist Christiane Amanpour. Kara also weighs in on the drama around the cartoon strip, Dilbert. And, finally, she offers some unsolicited advice about covering celebrity sext scandals. 
+
+Do you want Kara’s (solicited) advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara on Twitter @karaswisher. Nayeema is there too — for now — @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Mon, 26 Sep 2022 09:00:00 -0000</pubDate>
+ <itunes:title>Chris Cuomo’s Comeback</itunes:title>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:season>1</itunes:season>
+ <itunes:episode>1</itunes:episode>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle></itunes:subtitle>
+ <itunes:summary>Kara Swisher is back — and so, it seems, is Chris Cuomo. In an interview that is frank and feisty, Kara presses the former CNN anchor on his unceremonious exit from the network last year, and they discuss whether he can cut through the noise with his new podcast, “The Chris Cuomo Project,” and a forthcoming show on NewsNation.
+
+But first, Kara and her sidekick, exec producer Nayeema Raza, the “Goose to her Maverick” (and yes, Goose eventually died in Top Gun) chat about the newsmakers and news Kara is watching — from Google CEO Sundar Pichai to journalist Christiane Amanpour. Kara also weighs in on the drama around the cartoon strip, Dilbert. And, finally, she offers some unsolicited advice about covering celebrity sext scandals. 
+
+Do you want Kara’s (solicited) advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. 
+
+You can find Kara on Twitter @karaswisher. Nayeema is there too — for now — @nayeema.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>Kara Swisher is back — and so, it seems, is Chris Cuomo. In an interview that is frank and feisty, Kara presses the former CNN anchor on his unceremonious exit from the network last year, and they discuss whether he can cut through the noise with his new podcast, “The Chris Cuomo Project,” and a forthcoming show on NewsNation.</p><p><br></p><p>But first, Kara and her sidekick, exec producer Nayeema Raza, the “Goose to her Maverick” (and yes, Goose eventually died in Top Gun) chat about the newsmakers and news Kara is watching — from Google CEO Sundar Pichai to journalist Christiane Amanpour. Kara also weighs in on the drama around the cartoon strip, Dilbert. And, finally, she offers some unsolicited advice about covering celebrity sext scandals. </p><p><br></p><p>Do you want Kara’s (solicited) advice? Send us your questions! Call 1-888-KARA-PLZ and leave a message. </p><p><br></p><p>You can find Kara on Twitter @karaswisher. Nayeema is there too — for now — @nayeema.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>3771</itunes:duration>
+ <itunes:explicit>yes</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[88d3892a-23bf-11ed-8855-8b559677ad19]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP8478150378.mp3?updated=1664168421" length="0" type="audio/mpeg"/>
+ </item>
+ <item>
+ <title>Coming Soon: On with Kara Swisher</title>
+ <link>http://nymag.com</link>
+ <description>It’s on. Kara Swisher is back, getting to the heart of what makes powerful people tick… by asking the questions that make them squirm. New episodes drop every Monday and Thursday starting September 26.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</description>
+ <pubDate>Sat, 03 Sep 2022 14:19:00 -0000</pubDate>
+ <itunes:title>Coming Soon: On with Kara Swisher</itunes:title>
+ <itunes:episodeType>trailer</itunes:episodeType>
+ <itunes:author>Vox Media</itunes:author>
+ <itunes:subtitle>Sit back. Relax. Get grilled. </itunes:subtitle>
+ <itunes:summary>It’s on. Kara Swisher is back, getting to the heart of what makes powerful people tick… by asking the questions that make them squirm. New episodes drop every Monday and Thursday starting September 26.
+Learn more about your ad choices. Visit podcastchoices.com/adchoices</itunes:summary>
+ <content:encoded>
+ <![CDATA[<p>It’s on. Kara Swisher is back, getting to the heart of what makes powerful people tick… by asking the questions that make them squirm. New episodes drop every Monday and Thursday starting September 26.</p><p> </p><p>Learn more about your ad choices. Visit <a href="https://podcastchoices.com/adchoices">podcastchoices.com/adchoices</a></p>]]>
+ </content:encoded>
+ <itunes:duration>161</itunes:duration>
+ <itunes:explicit>no</itunes:explicit>
+ <guid isPermaLink="false"><![CDATA[ec79eb16-2ac4-11ed-8463-ff5a6cb22b49]]></guid>
+ <enclosure url="https://www.podtrac.com/pts/redirect.mp3/pdst.fm/e/chrt.fm/track/524GE/traffic.megaphone.fm/VMP6373911078.mp3?updated=1662139573" length="0" type="audio/mpeg"/>
+ </item>
+ </channel>
+</rss>
diff --git a/schema/testdata/pc-scwpod.xml b/schema/testdata/pc-scwpod.xml
new file mode 100644
index 0000000..ca8d8a1
--- /dev/null
+++ b/schema/testdata/pc-scwpod.xml
@@ -0,0 +1,456 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<?xml-stylesheet href="https://feeds.buzzsprout.com/styles.xsl" type="text/xsl"?>
+<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:podcast="https://podcastindex.org/namespace/1.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
+<channel>
+ <atom:link href="https://feeds.buzzsprout.com/1822302.rss" rel="self" type="application/rss+xml" />
+ <atom:link href="https://pubsubhubbub.appspot.com/" rel="hub" xmlns="http://www.w3.org/2005/Atom" />
+ <title>Security. Cryptography. Whatever.</title>
+ <lastBuildDate>Fri, 25 Nov 2022 17:31:01 -0500</lastBuildDate>
+ <link>https://securitycryptographywhatever.com</link>
+ <language>en-us</language>
+ <copyright>© 2022 Security. Cryptography. Whatever.</copyright>
+ <podcast:locked>yes</podcast:locked>
+<podcast:guid>867836ea-7d1d-5bf7-9fd1-7f76415d62ab</podcast:guid>
+ <itunes:author>Deirdre Connolly, Thomas Ptacek, David Adrian</itunes:author>
+ <itunes:type>episodic</itunes:type>
+ <itunes:explicit>true</itunes:explicit>
+ <description><![CDATA[Some cryptography & security people talk about security, cryptography, and whatever else is happening.]]></description>
+ <itunes:keywords>security, cryptography, whatever</itunes:keywords>
+ <itunes:owner>
+ <itunes:name>Deirdre Connolly, Thomas Ptacek, David Adrian</itunes:name>
+ </itunes:owner>
+ <image>
+ <url>https://storage.buzzsprout.com/variants/frpkkktyji9epsau1rvyvzig8e2s/60854458c4d1acdf4e1c2f79c4137142d85d78e379bdafbd69bd34c85f5819ad.jpg</url>
+ <title>Security. Cryptography. Whatever.</title>
+ <link>https://securitycryptographywhatever.com</link>
+ </image>
+ <itunes:image href="https://storage.buzzsprout.com/variants/frpkkktyji9epsau1rvyvzig8e2s/60854458c4d1acdf4e1c2f79c4137142d85d78e379bdafbd69bd34c85f5819ad.jpg" />
+ <itunes:category text="Technology" />
+ <itunes:category text="Science">
+ <itunes:category text="Mathematics" />
+ </itunes:category>
+ <itunes:category text="News">
+ <itunes:category text="Tech News" />
+ </itunes:category>
+ <item>
+ <itunes:title>Software Safety and Twitter, with Kevin Riggle</itunes:title>
+ <title>Software Safety and Twitter, with Kevin Riggle</title>
+ <description><![CDATA[<p>We talk to Kevin Riggle (<a href='https://twitter.com/kevinriggle'>@kevinriggle</a>) about complexity and safety. We also talk about the Twitter acquisition. While recording, we discovered a new failure mode where Kevin couldn&apos;t hear Thomas, but David and Deirdre could, so there&apos;s not much Thomas this episode. If you ever need to get Thomas to voluntarily stop talking, simply mute him to half the audience!<br/><br/><a href='https://twitter.com/kevinriggle'>https://twitter.com/kevinriggle<br/></a><br/><b>Transcript: </b><a href='https://beta-share.descript.com/view/WTrQGK4xEVj'>https://beta-share.descript.com/view/WTrQGK4xEVj</a><b> </b><br/><br/><b>Errata</b></p><ul><li>It was the Mars Climate Orbiter that crashed due to a units mismatch</li><li>David confused the Dreamliner with the 737 Max</li></ul><p><b>Links</b></p><ul><li><a href='https://free-dissociation.com/blog/posts/2018/08/why-is-it-so-hard-to-build-safe-software/'>https://free-dissociation.com/blog/posts/2018/08/why-is-it-so-hard-to-build-safe-software/</a></li><li><a href='https://complexsystems.group/'>https://complexsystems.group/</a></li><li><a href='https://how.complexsystems.fail/'>https://how.complexsystems.fail/</a></li><li><a href='https://noncombatant.org/2016/06/20/get-into-security-engineering/'>https://noncombatant.org/2016/06/20/get-into-security-engineering/</a></li><li><a href='https://blog.nelhage.com/2010/03/security-doesnt-respect-abstraction/'>https://blog.nelhage.com/2010/03/security-doesnt-respect-abstraction/</a></li><li><a href='http://sunnyday.mit.edu/safer-world.pdf'>http://sunnyday.mit.edu/safer-world.pdf</a></li><li><a href='https://www.adaptivecapacitylabs.com/john-allspaw/'>https://www.adaptivecapacitylabs.com/john-allspaw/</a></li><li><a href='https://www.etsy.com/codeascraft/blameless-postmortems'>https://www.etsy.com/codeascraft/blameless-postmortems</a></li><li><a href='https://increment.com/security/approachable-threat-modeling/'>https://increment.com/security/approachable-threat-modeling/</a></li><li><a href='https://www.nytimes.com/2022/11/17/arts/music/taylor-swift-tickets-ticketmaster.html'>https://www.nytimes.com/2022/11/17/arts/music/taylor-swift-tickets-ticketmaster.html</a></li><li><a href='https://www.hillelwayne.com/post/are-we-really-engineers/'>https://www.hillelwayne.com/post/are-we-really-engineers/</a></li><li><a href='https://www.hillelwayne.com/post/we-are-not-special/'>https://www.hillelwayne.com/post/we-are-not-special/</a></li><li><a href='https://www.hillelwayne.com/post/what-we-can-learn/'>https://www.hillelwayne.com/post/what-we-can-learn/</a></li><li><a href='https://lotr.fandom.com/wiki/Denethor_II'>https://lotr.fandom.com/wiki/Denethor_II</a></li><li><a href='https://twitter.com/sarahjeong/status/1587597972136546304'>https://twitter.com/sarahjeong/status/1587597972136546304</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We talk to Kevin Riggle (<a href='https://twitter.com/kevinriggle'>@kevinriggle</a>) about complexity and safety. We also talk about the Twitter acquisition. While recording, we discovered a new failure mode where Kevin couldn&apos;t hear Thomas, but David and Deirdre could, so there&apos;s not much Thomas this episode. If you ever need to get Thomas to voluntarily stop talking, simply mute him to half the audience!<br/><br/><a href='https://twitter.com/kevinriggle'>https://twitter.com/kevinriggle<br/></a><br/><b>Transcript: </b><a href='https://beta-share.descript.com/view/WTrQGK4xEVj'>https://beta-share.descript.com/view/WTrQGK4xEVj</a><b> </b><br/><br/><b>Errata</b></p><ul><li>It was the Mars Climate Orbiter that crashed due to a units mismatch</li><li>David confused the Dreamliner with the 737 Max</li></ul><p><b>Links</b></p><ul><li><a href='https://free-dissociation.com/blog/posts/2018/08/why-is-it-so-hard-to-build-safe-software/'>https://free-dissociation.com/blog/posts/2018/08/why-is-it-so-hard-to-build-safe-software/</a></li><li><a href='https://complexsystems.group/'>https://complexsystems.group/</a></li><li><a href='https://how.complexsystems.fail/'>https://how.complexsystems.fail/</a></li><li><a href='https://noncombatant.org/2016/06/20/get-into-security-engineering/'>https://noncombatant.org/2016/06/20/get-into-security-engineering/</a></li><li><a href='https://blog.nelhage.com/2010/03/security-doesnt-respect-abstraction/'>https://blog.nelhage.com/2010/03/security-doesnt-respect-abstraction/</a></li><li><a href='http://sunnyday.mit.edu/safer-world.pdf'>http://sunnyday.mit.edu/safer-world.pdf</a></li><li><a href='https://www.adaptivecapacitylabs.com/john-allspaw/'>https://www.adaptivecapacitylabs.com/john-allspaw/</a></li><li><a href='https://www.etsy.com/codeascraft/blameless-postmortems'>https://www.etsy.com/codeascraft/blameless-postmortems</a></li><li><a href='https://increment.com/security/approachable-threat-modeling/'>https://increment.com/security/approachable-threat-modeling/</a></li><li><a href='https://www.nytimes.com/2022/11/17/arts/music/taylor-swift-tickets-ticketmaster.html'>https://www.nytimes.com/2022/11/17/arts/music/taylor-swift-tickets-ticketmaster.html</a></li><li><a href='https://www.hillelwayne.com/post/are-we-really-engineers/'>https://www.hillelwayne.com/post/are-we-really-engineers/</a></li><li><a href='https://www.hillelwayne.com/post/we-are-not-special/'>https://www.hillelwayne.com/post/we-are-not-special/</a></li><li><a href='https://www.hillelwayne.com/post/what-we-can-learn/'>https://www.hillelwayne.com/post/what-we-can-learn/</a></li><li><a href='https://lotr.fandom.com/wiki/Denethor_II'>https://lotr.fandom.com/wiki/Denethor_II</a></li><li><a href='https://twitter.com/sarahjeong/status/1587597972136546304'>https://twitter.com/sarahjeong/status/1587597972136546304</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author></itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/11753287-software-safety-and-twitter-with-kevin-riggle.mp3" length="42217743" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-11753287</guid>
+ <pubDate>Thu, 24 Nov 2022 03:00:00 -0500</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11753287/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11753287/transcript.json" type="application/json" />
+ <itunes:duration>3516</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:season>2</itunes:season>
+ <itunes:episode>7</itunes:episode>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Matrix, with Martin Albrecht &amp; Dan Jones</itunes:title>
+ <title>Matrix, with Martin Albrecht &amp; Dan Jones</title>
+ <description><![CDATA[<p>No not the movie: the secure group messaging protocol! Or rather all the bugs and vulns that a team of researchers found when trying to formalize said protocol. Martin Albrecht and Dan Jones joined us to walk us through &quot;Practically-exploitable Cryptographic<br/>Vulnerabilities in Matrix&quot;.<br/><br/><b>Links:</b> </p><ul><li>https://nebuchadnezzar-megolm.github.io/static/paper.pdf</li><li>https://nebuchadnezzar-megolm.github.io</li><li>Signal Private Group system: https://eprint.iacr.org/2019/1416.pdf</li><li>https://signal.org/blog/signal-private-group-system/</li><li>https://spec.matrix.org/latest/</li><li>WhatsApp Security Whitepaper: https://www.whatsapp.com/security/WhatsApp-Security-Whitepaper.pdf</li><li>https://www.usenix.org/conference/usenixsecurity21/presentation/albrecht FS, PCS etc</li><li>Other clients: https://nvd.nist.gov/vuln/detail/CVE-2022-39252 https://nvd.nist.gov/vuln/detail/CVE-2022-39254 https://nvd.nist.gov/vuln/detail/CVE-2022-39264 </li><li>https://dadrian.io/blog/posts/roll-your-own-crypto/</li><li>https://podcasts.apple.com/us/podcast/the-great-roll-your-own-crypto-debate-feat-filippo-valsorda/id1578405214?i=1000530617719 </li><li>WhatsApp End-to-End Encrypted Backups: https://blog.whatsapp.com/end-to-end-encrypted-backups-on-whatsapp</li><li>Roll your own and Telegram: https://mtpsym.github.io/ </li></ul><p><br/><b>Transcript</b>: https://beta-share.descript.com/view/u3VFzjvqrql<br/><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>No not the movie: the secure group messaging protocol! Or rather all the bugs and vulns that a team of researchers found when trying to formalize said protocol. Martin Albrecht and Dan Jones joined us to walk us through &quot;Practically-exploitable Cryptographic<br/>Vulnerabilities in Matrix&quot;.<br/><br/><b>Links:</b> </p><ul><li>https://nebuchadnezzar-megolm.github.io/static/paper.pdf</li><li>https://nebuchadnezzar-megolm.github.io</li><li>Signal Private Group system: https://eprint.iacr.org/2019/1416.pdf</li><li>https://signal.org/blog/signal-private-group-system/</li><li>https://spec.matrix.org/latest/</li><li>WhatsApp Security Whitepaper: https://www.whatsapp.com/security/WhatsApp-Security-Whitepaper.pdf</li><li>https://www.usenix.org/conference/usenixsecurity21/presentation/albrecht FS, PCS etc</li><li>Other clients: https://nvd.nist.gov/vuln/detail/CVE-2022-39252 https://nvd.nist.gov/vuln/detail/CVE-2022-39254 https://nvd.nist.gov/vuln/detail/CVE-2022-39264 </li><li>https://dadrian.io/blog/posts/roll-your-own-crypto/</li><li>https://podcasts.apple.com/us/podcast/the-great-roll-your-own-crypto-debate-feat-filippo-valsorda/id1578405214?i=1000530617719 </li><li>WhatsApp End-to-End Encrypted Backups: https://blog.whatsapp.com/end-to-end-encrypted-backups-on-whatsapp</li><li>Roll your own and Telegram: https://mtpsym.github.io/ </li></ul><p><br/><b>Transcript</b>: https://beta-share.descript.com/view/u3VFzjvqrql<br/><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/11614796-matrix-with-martin-albrecht-dan-jones.mp3" length="47835808" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-11614796</guid>
+ <pubDate>Wed, 02 Nov 2022 01:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11614796/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11614796/transcript.json" type="application/json" />
+ <itunes:duration>3984</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:season>2</itunes:season>
+ <itunes:episode>6</itunes:episode>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>SOC2, with Sarah Harvey</itunes:title>
+ <title>SOC2, with Sarah Harvey</title>
+ <description><![CDATA[<p>We have Sarah Harvey (<a href='https://twitter.com/worldwise001'>@worldwise001</a> on Twitter) to talk about SOC2, what it means, how to get it, and if it&apos;s important or not. The discussion centers around two blog posts written by Thomas:</p><ul><li>SOC2 Starting Seven: https://latacora.micro.blog/2020/03/12/the-soc-starting.html</li><li>SOC2 at Fly: https://fly.io/blog/soc2-the-screenshots-will-continue-until-security-improves/</li></ul><p><b>Links:</b></p><ul><li>Tailscale recent post on getting SOC2’d: <a href='https://tailscale.com/blog/soc2-type2/'>https://tailscale.com/blog/soc2-type2/</a></li><li>SSO Tax: <a href='https://sso.tax/'>https://sso.tax</a></li><li>David’s previous job: <a href='https://getnametag.com/'>https://getnametag.com</a></li><li>David&apos;s other startup: <a href='https://censys.io/'>https://censys.io</a></li><li>Thomas works at <a href='https://fly.io/'>https://fly.io</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><b>Transcript</b>: <a href='https://beta-share.descript.com/view/XF24jrLSOX9'>https://beta-share.descript.com/view/XF24jrLSOX9</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We have Sarah Harvey (<a href='https://twitter.com/worldwise001'>@worldwise001</a> on Twitter) to talk about SOC2, what it means, how to get it, and if it&apos;s important or not. The discussion centers around two blog posts written by Thomas:</p><ul><li>SOC2 Starting Seven: https://latacora.micro.blog/2020/03/12/the-soc-starting.html</li><li>SOC2 at Fly: https://fly.io/blog/soc2-the-screenshots-will-continue-until-security-improves/</li></ul><p><b>Links:</b></p><ul><li>Tailscale recent post on getting SOC2’d: <a href='https://tailscale.com/blog/soc2-type2/'>https://tailscale.com/blog/soc2-type2/</a></li><li>SSO Tax: <a href='https://sso.tax/'>https://sso.tax</a></li><li>David’s previous job: <a href='https://getnametag.com/'>https://getnametag.com</a></li><li>David&apos;s other startup: <a href='https://censys.io/'>https://censys.io</a></li><li>Thomas works at <a href='https://fly.io/'>https://fly.io</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><b>Transcript</b>: <a href='https://beta-share.descript.com/view/XF24jrLSOX9'>https://beta-share.descript.com/view/XF24jrLSOX9</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/11510254-soc2-with-sarah-harvey.mp3" length="44390119" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-11510254</guid>
+ <pubDate>Sun, 16 Oct 2022 17:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11510254/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11510254/transcript.json" type="application/json" />
+ <itunes:duration>3697</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:season>2</itunes:season>
+ <itunes:episode>5</itunes:episode>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Nate Lawson II</itunes:title>
+ <title>Nate Lawson II</title>
+ <description><![CDATA[<p>This episode got delayed because David got COVID. Anyway, here&apos;s Nate Lawson: The Two Towers.</p><ul><li>Steven Chu: <a href='https://en.wikipedia.org/wiki/Steven_Chu'>https://en.wikipedia.org/wiki/Steven_Chu</a></li><li>CFB: <a href='https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Cipher_feedback_(CFB)'>https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Cipher_feedback_(CFB)</a></li><li>CCFB: <a href='https://link.springer.com/chapter/10.1007/11502760_19'>https://link.springer.com/chapter/10.1007/11502760_19</a></li><li>XXTEA: <a href='https://en.wikipedia.org/wiki/XXTEA'>https://en.wikipedia.org/wiki/XXTEA</a></li><li>CHERI: <a href='https://cseweb.ucsd.edu/~dstefan/cse227-spring20/papers/watson:cheri.pdf'>https://cseweb.ucsd.edu/~dstefan/cse227-spring20/papers/watson:cheri.pdf</a></li></ul><p><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/0KOcX9TR05p'>https://share.descript.com/view/0KOcX9TR05p</a><br/><br/><b>Errata</b>:</p><ul><li>Pedram Amini did in fact do Pai Mei</li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>This episode got delayed because David got COVID. Anyway, here&apos;s Nate Lawson: The Two Towers.</p><ul><li>Steven Chu: <a href='https://en.wikipedia.org/wiki/Steven_Chu'>https://en.wikipedia.org/wiki/Steven_Chu</a></li><li>CFB: <a href='https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Cipher_feedback_(CFB)'>https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Cipher_feedback_(CFB)</a></li><li>CCFB: <a href='https://link.springer.com/chapter/10.1007/11502760_19'>https://link.springer.com/chapter/10.1007/11502760_19</a></li><li>XXTEA: <a href='https://en.wikipedia.org/wiki/XXTEA'>https://en.wikipedia.org/wiki/XXTEA</a></li><li>CHERI: <a href='https://cseweb.ucsd.edu/~dstefan/cse227-spring20/papers/watson:cheri.pdf'>https://cseweb.ucsd.edu/~dstefan/cse227-spring20/papers/watson:cheri.pdf</a></li></ul><p><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/0KOcX9TR05p'>https://share.descript.com/view/0KOcX9TR05p</a><br/><br/><b>Errata</b>:</p><ul><li>Pedram Amini did in fact do Pai Mei</li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/11410130-nate-lawson-ii.mp3" length="60011534" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-11410130</guid>
+ <pubDate>Thu, 29 Sep 2022 17:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11410130/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11410130/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11410130/transcript.srt" type="application/srt" />
+ <itunes:duration>4999</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:season>2</itunes:season>
+ <itunes:episode>4</itunes:episode>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Nate Lawson: Part 1</itunes:title>
+ <title>Nate Lawson: Part 1</title>
+ <description><![CDATA[<p>We bring on Nate Lawson of Root Labs to talk about a little bit of everything, starting with cryptography in the 1990s.<br/><br/><b>References</b></p><ul><li>IBM S/390: https://ieeexplore.ieee.org/document/5389176</li><li>SSLv2 Spec: https://www-archive.mozilla.org/projects/security/pki/nss/ssl/draft02.html</li><li>Xbox 360 HMAC: https://beta.ivc.no/wiki/index.php/Xbox_360_Timing_Attack</li><li>Google Keyczar HMAC bug (reported by Nate): https://rdist.root.org/2009/05/28/timing-attack-in-google-keyczar-library/</li></ul><p><b>Errata</b></p><ul><li>HMAC actually published in 1996, not 1997</li><li>&quot;That was one of the first, I think hardware applications of DPA was, was, um, satellite TV cards.&quot; Not true, they first were able to break Mondex, a MasterCard smart card</li></ul><p><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/lhzrbt6hDeL'>https://share.descript.com/view/lhzrbt6hDeL</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We bring on Nate Lawson of Root Labs to talk about a little bit of everything, starting with cryptography in the 1990s.<br/><br/><b>References</b></p><ul><li>IBM S/390: https://ieeexplore.ieee.org/document/5389176</li><li>SSLv2 Spec: https://www-archive.mozilla.org/projects/security/pki/nss/ssl/draft02.html</li><li>Xbox 360 HMAC: https://beta.ivc.no/wiki/index.php/Xbox_360_Timing_Attack</li><li>Google Keyczar HMAC bug (reported by Nate): https://rdist.root.org/2009/05/28/timing-attack-in-google-keyczar-library/</li></ul><p><b>Errata</b></p><ul><li>HMAC actually published in 1996, not 1997</li><li>&quot;That was one of the first, I think hardware applications of DPA was, was, um, satellite TV cards.&quot; Not true, they first were able to break Mondex, a MasterCard smart card</li></ul><p><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/lhzrbt6hDeL'>https://share.descript.com/view/lhzrbt6hDeL</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/11291490-nate-lawson-part-1.mp3" length="57754251" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-11291490</guid>
+ <pubDate>Fri, 09 Sep 2022 16:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11291490/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11291490/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/11291490/transcript.srt" type="application/srt" />
+ <itunes:duration>4811</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:season>2</itunes:season>
+ <itunes:episode>3</itunes:episode>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Hot Cryptanalytic Summer feat. Steven Galbraith</itunes:title>
+ <title>Hot Cryptanalytic Summer feat. Steven Galbraith</title>
+ <description><![CDATA[<p>Are the isogenies kaput?! There&apos;s a new attack that breaks all the known parameter sets for SIDH/SIKE, so Steven Galbraith helps explain where the hell this came from, and where isogeny crypto goes from here.<br/><br/><b>Transcript:</b> <a href='https://share.descript.com/view/Xiv307FvOPA'>https://share.descript.com/view/Xiv307FvOPA</a><br/><br/><b>Merch</b>: <a href='https://merch.scwpodcast.com/'>https://merch.scwpodcast.com</a><br/><br/><b>Links:</b></p><ul><li><a href='https://eprint.iacr.org/2022/975.pdf'>https://eprint.iacr.org/2022/975.pdf</a></li><li><a href='https://eprint.iacr.org/2022/1026.pdf'>https://eprint.iacr.org/2022/1026.pdf</a></li><li><a href='https://ellipticnews.wordpress.com/2022/07/31/breaking-supersingular-isogeny-diffie-hellman-sidh/'>https://ellipticnews.wordpress.com/2022/07/31/breaking-supersingular-isogeny-diffie-hellman-sidh/</a></li><li>GPST active adaptive attack against SIDH: <a href='https://eprint.iacr.org/2016/859.pdf'>https://eprint.iacr.org/2016/859.pdf</a></li><li>Failing to hash into supersingular isogeny graphs: <a href='https://eprint.iacr.org/2022/975.pdf'>https://eprint.iacr.org/2022/518.pdf</a></li><li><a href='https://eprint.iacr.org/2022/975.pdf'>https://research.nccgroup.com/2022/08/08/implementing-the-castryck-decru-sidh-key-recovery-attack-in-sagemath/</a></li><li>Kuperberg attack via Peikert: <a href='https://eprint.iacr.org/2019/725'>https://eprint.iacr.org/2019/725</a>.pdf</li><li>SQISign: <a href='https://eprint.iacr.org/2020/1240.pdf'>https://eprint.iacr.org/2020/1240.pdf</a></li><li>(Post recording)  Breaking SIDH in polynomial time:<br/><a href='https://eprint.iacr.org/2022/975.pdf'>https://eprint.iacr.org/2022/1038.pdf</a></li></ul><p><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Are the isogenies kaput?! There&apos;s a new attack that breaks all the known parameter sets for SIDH/SIKE, so Steven Galbraith helps explain where the hell this came from, and where isogeny crypto goes from here.<br/><br/><b>Transcript:</b> <a href='https://share.descript.com/view/Xiv307FvOPA'>https://share.descript.com/view/Xiv307FvOPA</a><br/><br/><b>Merch</b>: <a href='https://merch.scwpodcast.com/'>https://merch.scwpodcast.com</a><br/><br/><b>Links:</b></p><ul><li><a href='https://eprint.iacr.org/2022/975.pdf'>https://eprint.iacr.org/2022/975.pdf</a></li><li><a href='https://eprint.iacr.org/2022/1026.pdf'>https://eprint.iacr.org/2022/1026.pdf</a></li><li><a href='https://ellipticnews.wordpress.com/2022/07/31/breaking-supersingular-isogeny-diffie-hellman-sidh/'>https://ellipticnews.wordpress.com/2022/07/31/breaking-supersingular-isogeny-diffie-hellman-sidh/</a></li><li>GPST active adaptive attack against SIDH: <a href='https://eprint.iacr.org/2016/859.pdf'>https://eprint.iacr.org/2016/859.pdf</a></li><li>Failing to hash into supersingular isogeny graphs: <a href='https://eprint.iacr.org/2022/975.pdf'>https://eprint.iacr.org/2022/518.pdf</a></li><li><a href='https://eprint.iacr.org/2022/975.pdf'>https://research.nccgroup.com/2022/08/08/implementing-the-castryck-decru-sidh-key-recovery-attack-in-sagemath/</a></li><li>Kuperberg attack via Peikert: <a href='https://eprint.iacr.org/2019/725'>https://eprint.iacr.org/2019/725</a>.pdf</li><li>SQISign: <a href='https://eprint.iacr.org/2020/1240.pdf'>https://eprint.iacr.org/2020/1240.pdf</a></li><li>(Post recording)  Breaking SIDH in polynomial time:<br/><a href='https://eprint.iacr.org/2022/975.pdf'>https://eprint.iacr.org/2022/1038.pdf</a></li></ul><p><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/11123170-hot-cryptanalytic-summer-feat-steven-galbraith.mp3" length="37883482" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-11123170</guid>
+ <pubDate>Thu, 11 Aug 2022 14:00:00 -0400</pubDate>
+ <itunes:duration>3155</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:season>2</itunes:season>
+ <itunes:episode>2</itunes:episode>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Passkeys feat. Adam Langley</itunes:title>
+ <title>Passkeys feat. Adam Langley</title>
+ <description><![CDATA[<p>Adam Langley (Google) comes on the podcast to talk about the evolution of WebAuthN and Passkeys!<br/><br/>David&apos;s audio was a little finicky in this one. Believe us, it sounded worse before we edited it. Also, we occasionally accidentally refer to U2F as UTF. That&apos;s because we just really love strings.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/pBAXADn8gKW'>https://share.descript.com/view/pBAXADn8gKW</a><br/><br/><b>Links</b>:</p><ul><li><a href='https://www.youtube.com/watch?v=xghjqgj4peA&amp;t=540s'>GoogleIO Presentation</a></li><li><a href='https://developer.apple.com/videos/play/wwdc2022/10092/'>WWDC Presentation</a></li><li><a href='https://w3c.github.io/webauthn/'>W3C WebAuthN</a></li><li>Adam&apos;s blog on <a href='https://www.imperialviolet.org/2022/07/04/passkeys.html'>passkeys</a> and <a href='https://www.imperialviolet.org/2021/10/20/cablev2.html'>CABLE</a></li><li><a href='https://github.com/w3c/webauthn/pull/1755'>Cable / Hybrid PR</a></li><li><a href='https://fidoalliance.org/specs/fido-v2.0-ps-20190130/fido-client-to-authenticator-protocol-v2.0-ps-20190130.html'>CTAP spec </a>from FIDO</li><li>Noise <a href='https://noiseexplorer.com/patterns/NKpsk0/'>NKPSK</a></li><li><a href='https://tailscale.com/blog/how-tailscale-works/'>DERP</a></li></ul><p><br/><b>Don&apos;t forget about merch!</b> <a href='https://merch.securitycryptographywhatever.com/'>https://merch.securitycryptographywhatever.com/</a><br/><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Adam Langley (Google) comes on the podcast to talk about the evolution of WebAuthN and Passkeys!<br/><br/>David&apos;s audio was a little finicky in this one. Believe us, it sounded worse before we edited it. Also, we occasionally accidentally refer to U2F as UTF. That&apos;s because we just really love strings.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/pBAXADn8gKW'>https://share.descript.com/view/pBAXADn8gKW</a><br/><br/><b>Links</b>:</p><ul><li><a href='https://www.youtube.com/watch?v=xghjqgj4peA&amp;t=540s'>GoogleIO Presentation</a></li><li><a href='https://developer.apple.com/videos/play/wwdc2022/10092/'>WWDC Presentation</a></li><li><a href='https://w3c.github.io/webauthn/'>W3C WebAuthN</a></li><li>Adam&apos;s blog on <a href='https://www.imperialviolet.org/2022/07/04/passkeys.html'>passkeys</a> and <a href='https://www.imperialviolet.org/2021/10/20/cablev2.html'>CABLE</a></li><li><a href='https://github.com/w3c/webauthn/pull/1755'>Cable / Hybrid PR</a></li><li><a href='https://fidoalliance.org/specs/fido-v2.0-ps-20190130/fido-client-to-authenticator-protocol-v2.0-ps-20190130.html'>CTAP spec </a>from FIDO</li><li>Noise <a href='https://noiseexplorer.com/patterns/NKpsk0/'>NKPSK</a></li><li><a href='https://tailscale.com/blog/how-tailscale-works/'>DERP</a></li></ul><p><br/><b>Don&apos;t forget about merch!</b> <a href='https://merch.securitycryptographywhatever.com/'>https://merch.securitycryptographywhatever.com/</a><br/><br/>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Deirdre Connolly, Thomas Ptacek, David Adrian</itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/11122508-passkeys-feat-adam-langley.mp3" length="45395760" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-11122508</guid>
+ <pubDate>Thu, 11 Aug 2022 12:00:00 -0400</pubDate>
+ <itunes:duration>3781</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:season>2</itunes:season>
+ <itunes:episode>1</itunes:episode>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Hertzbleed</itunes:title>
+ <title>Hertzbleed</title>
+ <description><![CDATA[<p>Side channels! Frequency scaling! Key encapsulation, oh my! We&apos;re talking about the new Hertzbleed paper, but also cryptography conferences, &apos;passkeys&apos;, and end-to-end encrypting yer twitter.com DMs.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/lPM4lsxha63'>https://share.descript.com/view/lPM4lsxha63</a><br/><br/><b> Links:</b></p><ul><li><a href='https://ellipticnews.wordpress.com/2022/06/14/hertzbleed-attack/'><b>Hertzbleed Attack | ellipticnews (wordpress.com)</b></a></li><li><a href='https://www.hertzbleed.com/hertzbleed.pdf'><b>https://www.hertzbleed.com/hertzbleed.pdf</b></a></li><li><a href='https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3920031'><b>https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3920031</b></a></li></ul><p><b>Merch</b>: <a href='https://merch.scwpodcast.com/'>https://merch.scwpodcast.com</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Side channels! Frequency scaling! Key encapsulation, oh my! We&apos;re talking about the new Hertzbleed paper, but also cryptography conferences, &apos;passkeys&apos;, and end-to-end encrypting yer twitter.com DMs.<br/><br/><b>Transcript</b>: <a href='https://share.descript.com/view/lPM4lsxha63'>https://share.descript.com/view/lPM4lsxha63</a><br/><br/><b> Links:</b></p><ul><li><a href='https://ellipticnews.wordpress.com/2022/06/14/hertzbleed-attack/'><b>Hertzbleed Attack | ellipticnews (wordpress.com)</b></a></li><li><a href='https://www.hertzbleed.com/hertzbleed.pdf'><b>https://www.hertzbleed.com/hertzbleed.pdf</b></a></li><li><a href='https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3920031'><b>https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3920031</b></a></li></ul><p><b>Merch</b>: <a href='https://merch.scwpodcast.com/'>https://merch.scwpodcast.com</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/10812724-hertzbleed.mp3" length="42256933" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-10812724</guid>
+ <pubDate>Fri, 17 Jun 2022 22:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10812724/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10812724/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10812724/transcript.srt" type="application/srt" />
+ <itunes:duration>3519</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>OMB Zero Trust Memo, with Eric Mill</itunes:title>
+ <title>OMB Zero Trust Memo, with Eric Mill</title>
+ <description><![CDATA[<p>The US government <a href='https://www.whitehouse.gov/wp-content/uploads/2022/01/M-22-09.pdf'>released a memo</a> about moving to a zero-trust network architecture. What does this mean? We have one of the authors, <a href='https://konklone.com/'>Eric Mill</a>, on to explain it to us.<br/><br/>As always, your <a href='https://twitter.com/scwpod'>@SCWPod</a> hosts are Deirdre Connolly (<a href='https://twitter.com/durumcrustulum'>@durumcrustulum</a>), Thomas Ptacek (<a href='https://twitter.com/tqbf'>@tqbf</a>), and David Adrian (<a href='https://twitter.com/davidcadrian'>@davidcadrian</a>).<br/><br/>Transcript: <a href='https://share.descript.com/view/UayEVA596OK'>https://share.descript.com/view/UayEVA596OK</a><br/><br/>Links:</p><ul><li><a href='https://www.whitehouse.gov/wp-content/uploads/2022/01/M-22-09.pdf'>OMB Memo</a></li><li><a href='https://www.federalregister.gov/documents/2021/05/17/2021-10460/improving-the-nations-cybersecurity'>Executive order on cybersecurity</a> </li><li><a href='https://www.oit.va.gov/programs/piv/index.cfm'>PIV card</a> <ul><li><a href='https://csrc.nist.gov/publications/detail/sp/800-157/final'>Derived PIV</a></li></ul></li><li><a href='https://cloud.google.com/beyondcorp'>BeyondCorp</a></li><li><a href='https://hstspreload.org/'>HSTS Preloading</a><ul><li><a href='https://home.dotgov.gov/management/preloading/'>.gov preloading</a> </li></ul></li><li><a href='https://jhalderm.com/pub/papers/mail-imc15.pdf'>Neither Rain, Nor Snow, Nor MITM</a></li><li><a href='https://www.whitehouse.gov/wp-content/uploads/2021/10/M-22-01.pdf'>EDR memo</a></li><li><a href='https://join.tts.gsa.gov/'>Technology Transformation Services (TTS)</a></li><li><a href='https://isitchristmas.com/'>Is it Christmas?</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>The US government <a href='https://www.whitehouse.gov/wp-content/uploads/2022/01/M-22-09.pdf'>released a memo</a> about moving to a zero-trust network architecture. What does this mean? We have one of the authors, <a href='https://konklone.com/'>Eric Mill</a>, on to explain it to us.<br/><br/>As always, your <a href='https://twitter.com/scwpod'>@SCWPod</a> hosts are Deirdre Connolly (<a href='https://twitter.com/durumcrustulum'>@durumcrustulum</a>), Thomas Ptacek (<a href='https://twitter.com/tqbf'>@tqbf</a>), and David Adrian (<a href='https://twitter.com/davidcadrian'>@davidcadrian</a>).<br/><br/>Transcript: <a href='https://share.descript.com/view/UayEVA596OK'>https://share.descript.com/view/UayEVA596OK</a><br/><br/>Links:</p><ul><li><a href='https://www.whitehouse.gov/wp-content/uploads/2022/01/M-22-09.pdf'>OMB Memo</a></li><li><a href='https://www.federalregister.gov/documents/2021/05/17/2021-10460/improving-the-nations-cybersecurity'>Executive order on cybersecurity</a> </li><li><a href='https://www.oit.va.gov/programs/piv/index.cfm'>PIV card</a> <ul><li><a href='https://csrc.nist.gov/publications/detail/sp/800-157/final'>Derived PIV</a></li></ul></li><li><a href='https://cloud.google.com/beyondcorp'>BeyondCorp</a></li><li><a href='https://hstspreload.org/'>HSTS Preloading</a><ul><li><a href='https://home.dotgov.gov/management/preloading/'>.gov preloading</a> </li></ul></li><li><a href='https://jhalderm.com/pub/papers/mail-imc15.pdf'>Neither Rain, Nor Snow, Nor MITM</a></li><li><a href='https://www.whitehouse.gov/wp-content/uploads/2021/10/M-22-01.pdf'>EDR memo</a></li><li><a href='https://join.tts.gsa.gov/'>Technology Transformation Services (TTS)</a></li><li><a href='https://isitchristmas.com/'>Is it Christmas?</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Deirdre Connolly, Thomas Ptacek, David Adrian</itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/10767220-omb-zero-trust-memo-with-eric-mill.mp3" length="43620286" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-10767220</guid>
+ <pubDate>Fri, 10 Jun 2022 21:00:00 -0400</pubDate>
+ <itunes:duration>3633</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Tink, with Sophie Schmieg</itunes:title>
+ <title>Tink, with Sophie Schmieg</title>
+ <description><![CDATA[<p>We talk about Tink with Sophie Schmieg, a cryptographer and algebraic geometer at Google.<br/><br/>Transcript: <a href='https://beta-share.descript.com/view/v2Q5Ix8pvbD'>https://beta-share.descript.com/view/v2Q5Ix8pvbD</a><br/><br/>Links:</p><ul><li>Sophie: <a href='https://twitter.com/SchmiegSophie'>https://twitter.com/SchmiegSophie</a></li><li>Tink: <a href='https://github.com/google/tink'>https://github.com/google/tink</a></li><li>RWC talk: <a href='https://youtube.com/watch?t=1028&amp;v=CiH6iqjWpt8'>https://youtube.com/watch?t=1028&amp;v=CiH6iqjWpt8</a></li><li>Where to store keys: <a href='https://twitter.com/SchmiegSophie/status/1413502566797778948'>https://twitter.com/SchmiegSophie/status/1413502566797778948</a></li><li>EAX mode: <a href='https://en.wikipedia.org/wiki/EAX_mode'>https://en.wikipedia.org/wiki/EAX_mode</a></li><li>AES-GCM-SIV: <a href='https://en.wikipedia.org/wiki/AES-GCM-SIV'>https://en.wikipedia.org/wiki/AES-GCM-SIV</a></li><li>Deterministic AEADs: <a href='https://github.com/google/tink/blob/master/docs/PRIMITIVES.md#deterministic-authenticated-encryption-with-associated-data'>https://github.com/google/tink/blob/master/docs/PRIMITIVES.md#deterministic-authenticated-encryption-with-associated-data</a></li><li>Thai Duong: <a href='https://twitter.com/XorNinja'>https://twitter.com/XorNinja</a></li><li>AWS-SDK Vuln: <a href='https://twitter.com/XorNinja/status/1310587707605659649'>https://twitter.com/XorNinja/status/1310587707605659649</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We talk about Tink with Sophie Schmieg, a cryptographer and algebraic geometer at Google.<br/><br/>Transcript: <a href='https://beta-share.descript.com/view/v2Q5Ix8pvbD'>https://beta-share.descript.com/view/v2Q5Ix8pvbD</a><br/><br/>Links:</p><ul><li>Sophie: <a href='https://twitter.com/SchmiegSophie'>https://twitter.com/SchmiegSophie</a></li><li>Tink: <a href='https://github.com/google/tink'>https://github.com/google/tink</a></li><li>RWC talk: <a href='https://youtube.com/watch?t=1028&amp;v=CiH6iqjWpt8'>https://youtube.com/watch?t=1028&amp;v=CiH6iqjWpt8</a></li><li>Where to store keys: <a href='https://twitter.com/SchmiegSophie/status/1413502566797778948'>https://twitter.com/SchmiegSophie/status/1413502566797778948</a></li><li>EAX mode: <a href='https://en.wikipedia.org/wiki/EAX_mode'>https://en.wikipedia.org/wiki/EAX_mode</a></li><li>AES-GCM-SIV: <a href='https://en.wikipedia.org/wiki/AES-GCM-SIV'>https://en.wikipedia.org/wiki/AES-GCM-SIV</a></li><li>Deterministic AEADs: <a href='https://github.com/google/tink/blob/master/docs/PRIMITIVES.md#deterministic-authenticated-encryption-with-associated-data'>https://github.com/google/tink/blob/master/docs/PRIMITIVES.md#deterministic-authenticated-encryption-with-associated-data</a></li><li>Thai Duong: <a href='https://twitter.com/XorNinja'>https://twitter.com/XorNinja</a></li><li>AWS-SDK Vuln: <a href='https://twitter.com/XorNinja/status/1310587707605659649'>https://twitter.com/XorNinja/status/1310587707605659649</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a>, <a href='https://twitter.com/tqbf'>Thomas Ptacek</a>, and <a href='https://twitter.com/davidcadrian'>David Adrian</a>. </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security Cryptography Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/10697566-tink-with-sophie-schmieg.mp3" length="48294380" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-10697566</guid>
+ <pubDate>Sat, 28 May 2022 17:00:00 -0400</pubDate>
+ <itunes:duration>4022</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Cancellable Crypto Takes, and Real World Crypto </itunes:title>
+ <title>Cancellable Crypto Takes, and Real World Crypto </title>
+ <description><![CDATA[<p>Live from Amsterdam, it&apos;s cancellable crypto hot takes! A fun little meme, plus a preview of the Real World Crypto program!<br/><br/>Transcript: <a href='https://share.descript.com/view/GiVlw4qKV2i'>https://share.descript.com/view/GiVlw4qKV2i</a><br/><br/>Links:<br/><br/>Tony&apos;s twete: <a href='https://twitter.com/bascule/status/1512539700220805124'>https://twitter.com/bascule/status/1512539700220805124</a><br/>Real World Crypto 2022: <a href='https://rwc.iacr.org/2022'>https://rwc.iacr.org/2022</a><br/>Merch! <a href='https://merch.scwpodcast.com'>https://merch.scwpodcast.com</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Live from Amsterdam, it&apos;s cancellable crypto hot takes! A fun little meme, plus a preview of the Real World Crypto program!<br/><br/>Transcript: <a href='https://share.descript.com/view/GiVlw4qKV2i'>https://share.descript.com/view/GiVlw4qKV2i</a><br/><br/>Links:<br/><br/>Tony&apos;s twete: <a href='https://twitter.com/bascule/status/1512539700220805124'>https://twitter.com/bascule/status/1512539700220805124</a><br/>Real World Crypto 2022: <a href='https://rwc.iacr.org/2022'>https://rwc.iacr.org/2022</a><br/>Merch! <a href='https://merch.scwpodcast.com'>https://merch.scwpodcast.com</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/10428127-cancellable-crypto-takes-and-real-world-crypto.mp3" length="51191514" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-10428127</guid>
+ <pubDate>Tue, 12 Apr 2022 20:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10428127/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10428127/transcript.json" type="application/json" />
+ <itunes:duration>4264</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Lattices and Michigan Football, feat. Chris Peikert</itunes:title>
+ <title>Lattices and Michigan Football, feat. Chris Peikert</title>
+ <description><![CDATA[<p>We&apos;re back! With an episode on lattice-based cryptography, with Professor Chris Peikert of the University of Michigan, David&apos;s alma mater. When we recorded this, Michigan football had just beaten Ohio for the first time in a bajillion years, so you get a nerdy coda on college football this time!<br/><br/>Transcript: <a href='https://share.descript.com/view/El2a4Z7OLsd'>https://share.descript.com/view/El2a4Z7OLsd</a><br/><br/>Slides: <a href='https://web.eecs.umich.edu/~cpeikert/pubs/slides-qcrypt.pdf'>https://web.eecs.umich.edu/~cpeikert/pubs/slides-qcrypt.pdf</a><br/><br/>Links:<br/><br/>He Gives C-Sieves on the CSIDH:<b> </b><a href='https://eprint.iacr.org/2019/725'>https://eprint.iacr.org/2019/725</a><br/>Lattice-based Cryptography: <a href='https://cims.nyu.edu/~regev/papers/pqc.pdf'>https://cims.nyu.edu/~regev/papers/pqc.pdf</a><br/>NIST PQC Competition: <a href='https://csrc.nist.gov/Projects/post-quantum-cryptography'>https://csrc.nist.gov/Projects/post-quantum-cryptography</a><br/> The 2nd Bar Ilan Winter School on Cryptography Lattice- Based Cryptography and Applications: <a href='https://www.youtube.com/playlist?list=PL8Vt-7cSFnw2OmpCmPLLwSx0-Yqb2ptqO'>https://www.youtube.com/playlist?list=PL8Vt-7cSFnw2OmpCmPLLwSx0-Yqb2ptqO</a><br/>A Decade of Lattice Cryptography: <a href='https://eprint.iacr.org/2015/939.pdf'>https://eprint.iacr.org/2015/939.pdf</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We&apos;re back! With an episode on lattice-based cryptography, with Professor Chris Peikert of the University of Michigan, David&apos;s alma mater. When we recorded this, Michigan football had just beaten Ohio for the first time in a bajillion years, so you get a nerdy coda on college football this time!<br/><br/>Transcript: <a href='https://share.descript.com/view/El2a4Z7OLsd'>https://share.descript.com/view/El2a4Z7OLsd</a><br/><br/>Slides: <a href='https://web.eecs.umich.edu/~cpeikert/pubs/slides-qcrypt.pdf'>https://web.eecs.umich.edu/~cpeikert/pubs/slides-qcrypt.pdf</a><br/><br/>Links:<br/><br/>He Gives C-Sieves on the CSIDH:<b> </b><a href='https://eprint.iacr.org/2019/725'>https://eprint.iacr.org/2019/725</a><br/>Lattice-based Cryptography: <a href='https://cims.nyu.edu/~regev/papers/pqc.pdf'>https://cims.nyu.edu/~regev/papers/pqc.pdf</a><br/>NIST PQC Competition: <a href='https://csrc.nist.gov/Projects/post-quantum-cryptography'>https://csrc.nist.gov/Projects/post-quantum-cryptography</a><br/> The 2nd Bar Ilan Winter School on Cryptography Lattice- Based Cryptography and Applications: <a href='https://www.youtube.com/playlist?list=PL8Vt-7cSFnw2OmpCmPLLwSx0-Yqb2ptqO'>https://www.youtube.com/playlist?list=PL8Vt-7cSFnw2OmpCmPLLwSx0-Yqb2ptqO</a><br/>A Decade of Lattice Cryptography: <a href='https://eprint.iacr.org/2015/939.pdf'>https://eprint.iacr.org/2015/939.pdf</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/10238739-lattices-and-michigan-football-feat-chris-peikert.mp3" length="50443981" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-10238739</guid>
+ <pubDate>Sat, 12 Mar 2022 22:00:00 -0500</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10238739/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10238739/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/10238739/transcript.srt" type="application/srt" />
+ <itunes:duration>4201</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Biscuits, feat. Geoffroy Couprie</itunes:title>
+ <title>Biscuits, feat. Geoffroy Couprie</title>
+ <description><![CDATA[<p>We&apos;ve trashed JWTs, discussed PASETO, Macaroons, and now, Biscuits! Actually, multiple iterations of Biscuits! Pairings and gamma signatures and Datalog, oh my! 🍪 <br/><br/>Transcript: <a href='https://beta-share.descript.com/view/jHZJPab0n4g'>https://beta-share.descript.com/view/jHZJPab0n4g</a><br/><br/>Links:<br/><br/><b>Biscuits V2</b>: <a href='https://www.biscuitsec.org/'><b>https://www.biscuitsec.org</b></a><br/><br/><b>Experiments iterating on  Biscuits: </b><a href='https://github.com/biscuit-auth/biscuit/tree/master/experimentations'><b>https://github.com/biscuit-auth/biscuit/tree/master/experimentations</b></a><b><br/><br/>Apache Pulsar: </b><a href='https://pulsar.apache.org/'><b>https://pulsar.apache.org</b></a><b><br/><br/>Spec: </b><a href='https://github.com/biscuit-auth/biscuit/blob/master/SPECIFICATIONS.md'><b>https://github.com/biscuit-auth/biscuit/blob/master/SPECIFICATIONS.md</b></a><b><br/></b><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We&apos;ve trashed JWTs, discussed PASETO, Macaroons, and now, Biscuits! Actually, multiple iterations of Biscuits! Pairings and gamma signatures and Datalog, oh my! 🍪 <br/><br/>Transcript: <a href='https://beta-share.descript.com/view/jHZJPab0n4g'>https://beta-share.descript.com/view/jHZJPab0n4g</a><br/><br/>Links:<br/><br/><b>Biscuits V2</b>: <a href='https://www.biscuitsec.org/'><b>https://www.biscuitsec.org</b></a><br/><br/><b>Experiments iterating on  Biscuits: </b><a href='https://github.com/biscuit-auth/biscuit/tree/master/experimentations'><b>https://github.com/biscuit-auth/biscuit/tree/master/experimentations</b></a><b><br/><br/>Apache Pulsar: </b><a href='https://pulsar.apache.org/'><b>https://pulsar.apache.org</b></a><b><br/><br/>Spec: </b><a href='https://github.com/biscuit-auth/biscuit/blob/master/SPECIFICATIONS.md'><b>https://github.com/biscuit-auth/biscuit/blob/master/SPECIFICATIONS.md</b></a><b><br/></b><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9973086-biscuits-feat-geoffroy-couprie.mp3" length="42448279" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9973086</guid>
+ <pubDate>Sat, 29 Jan 2022 01:00:00 -0500</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9973086/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9973086/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9973086/transcript.srt" type="application/srt" />
+ <itunes:duration>3535</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Tailscale, feat. Avery Pennarun and Brad Fitzpatrick</itunes:title>
+ <title>Tailscale, feat. Avery Pennarun and Brad Fitzpatrick</title>
+ <description><![CDATA[<p>“Can I Tailscale my Chromecast?” <br/><br/>You love Tailscale, I love Tailscale, we loved talking to Avery Pennarun and Brad Fitzpatrick from Tailscale about, I dunno, Go generics. Oh, and TAILSCALE! And DNS. And WASM.<br/><br/>People:</p><ul><li>Avery Pennarun (@apenwarr)</li><li>Brad Fitzpatrick (@bradfitz)</li><li>Deirdre Connolly (@durumcrustulum)</li><li>Thomas Ptacek (@tqbf)</li><li>David Adrian (@davidcadrian)</li><li>@SCWPod</li></ul><p>Links:</p><ul><li>DERP server: <a href='https://github.com/tailscale/tailscale/tree/main/derp'>https://github.com/tailscale/tailscale/tree/main/derp</a></li><li><a href='https://xtermjs.org/'>https://xtermjs.org/</a></li><li>The Tail at Scale : <a href='https://research.google/pubs/pub40801/'>https://research.google/pubs/pub40801/</a></li><li>Raft: <a href='https://raft.github.io/'>https://raft.github.io/</a></li><li>Litestream: <a href='https://litestream.io/'>https://litestream.io/</a></li><li>MagicDNS: <a href='https://tailscale.com/kb/1081/magicdns/'>https://tailscale.com/kb/1081/magicdns/</a></li><li>Netstack: <a href='https://github.com/google/netstack'>https://github.com/google/netstack</a></li></ul><p>Transcript: <a href='https://share.descript.com/view/2NAe5jEcEqB'>https://share.descript.com/view/2NAe5jEcEqB</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>“Can I Tailscale my Chromecast?” <br/><br/>You love Tailscale, I love Tailscale, we loved talking to Avery Pennarun and Brad Fitzpatrick from Tailscale about, I dunno, Go generics. Oh, and TAILSCALE! And DNS. And WASM.<br/><br/>People:</p><ul><li>Avery Pennarun (@apenwarr)</li><li>Brad Fitzpatrick (@bradfitz)</li><li>Deirdre Connolly (@durumcrustulum)</li><li>Thomas Ptacek (@tqbf)</li><li>David Adrian (@davidcadrian)</li><li>@SCWPod</li></ul><p>Links:</p><ul><li>DERP server: <a href='https://github.com/tailscale/tailscale/tree/main/derp'>https://github.com/tailscale/tailscale/tree/main/derp</a></li><li><a href='https://xtermjs.org/'>https://xtermjs.org/</a></li><li>The Tail at Scale : <a href='https://research.google/pubs/pub40801/'>https://research.google/pubs/pub40801/</a></li><li>Raft: <a href='https://raft.github.io/'>https://raft.github.io/</a></li><li>Litestream: <a href='https://litestream.io/'>https://litestream.io/</a></li><li>MagicDNS: <a href='https://tailscale.com/kb/1081/magicdns/'>https://tailscale.com/kb/1081/magicdns/</a></li><li>Netstack: <a href='https://github.com/google/netstack'>https://github.com/google/netstack</a></li></ul><p>Transcript: <a href='https://share.descript.com/view/2NAe5jEcEqB'>https://share.descript.com/view/2NAe5jEcEqB</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9890092-tailscale-feat-avery-pennarun-and-brad-fitzpatrick.mp3" length="56456982" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9890092</guid>
+ <pubDate>Sat, 15 Jan 2022 04:00:00 -0500</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9890092/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9890092/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9890092/transcript.srt" type="application/srt" />
+ <itunes:duration>4702</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>true</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>The feeling&#39;s mutual: mTLS, feat. Colm MacCárthaigh</itunes:title>
+ <title>The feeling&#39;s mutual: mTLS, feat. Colm MacCárthaigh</title>
+ <description><![CDATA[<p>We recorded this months ago, and now it&apos;s finally up!<br/> <br/>Colm MacCárthaigh joined us to chat about all things TLS, <a href='https://github.com/aws/s2n-tls'>S2N</a>, MTLS, SSH, fuzzing, formal verification, implementing state machines, and of course, DNSSEC.<br/><br/>Transcript: <a href='https://share.descript.com/view/tjrQu8wZKT0'>https://share.descript.com/view/tjrQu8wZKT0</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We recorded this months ago, and now it&apos;s finally up!<br/> <br/>Colm MacCárthaigh joined us to chat about all things TLS, <a href='https://github.com/aws/s2n-tls'>S2N</a>, MTLS, SSH, fuzzing, formal verification, implementing state machines, and of course, DNSSEC.<br/><br/>Transcript: <a href='https://share.descript.com/view/tjrQu8wZKT0'>https://share.descript.com/view/tjrQu8wZKT0</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9801340-the-feeling-s-mutual-mtls-feat-colm-maccarthaigh.mp3" length="50797603" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9801340</guid>
+ <pubDate>Wed, 29 Dec 2021 01:00:00 -0500</pubDate>
+ <itunes:duration>4231</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Holiday Call-in Spectacular!</itunes:title>
+ <title>Holiday Call-in Spectacular!</title>
+ <description><![CDATA[<p>Happy New Year! Feliz Navidad! Merry Yule! Happy Hannukah! Pour one out for the log4j incident responders!<br/><br/>We did a call-in episode on Twitter Spaces and recorded it, so that&apos;s why the audio sounds different. We talked about BLOCKCHAIN/Web3 (blech), testing, post-quantum crypto, client certificates, ssh client certificates, threshold cryptography, U2F/WebAuthn, car fob attacks, geese, and more!<br/><br/>Transcript: <a href='https://share.descript.com/view/N9ROtj1AiW0'>https://share.descript.com/view/N9ROtj1AiW0</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/> </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Happy New Year! Feliz Navidad! Merry Yule! Happy Hannukah! Pour one out for the log4j incident responders!<br/><br/>We did a call-in episode on Twitter Spaces and recorded it, so that&apos;s why the audio sounds different. We talked about BLOCKCHAIN/Web3 (blech), testing, post-quantum crypto, client certificates, ssh client certificates, threshold cryptography, U2F/WebAuthn, car fob attacks, geese, and more!<br/><br/>Transcript: <a href='https://share.descript.com/view/N9ROtj1AiW0'>https://share.descript.com/view/N9ROtj1AiW0</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/> </p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9767820-holiday-call-in-spectacular.mp3" length="59171550" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9767820</guid>
+ <pubDate>Tue, 21 Dec 2021 21:00:00 -0500</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9767820/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9767820/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9767820/transcript.srt" type="application/srt" />
+ <itunes:duration>4929</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>WireGuard, feat. Jason Donenfeld</itunes:title>
+ <title>WireGuard, feat. Jason Donenfeld</title>
+ <description><![CDATA[<p>Hey, a new episode! We had a fantastic conversation with Jason Donenfeld, creator of our favorite modern VPN protocol: WireGuard! We touched on kernel hacking, formal verification, post-quantum cryptography, developing with disassemblers, and more!<br/><br/>Transcript: <a href='https://share.descript.com/view/olVgXGtRpsY'>https://share.descript.com/view/olVgXGtRpsY</a><br/><br/>Links: </p><ul><li><b>WireGuard: </b><a href='https://blog.cryptographyengineering.com/should-you-use-srp'>https://www.wireguard.com</a></li><li><b>Tamarin</b>: <a href='https://tamarin-prover.github.io'>https://tamarin-prover.github.io</a></li><li><b>IDApro</b>: <a href='https://hex-rays.com/ida-pro'>https://hex-rays.com/ida-pro</a></li><li><b>NIST PQC</b>: <a href='https://csrc.nist.gov/projects/post-quantum-cryptography/round-3-submissions'>https://csrc.nist.gov/projects/post-quantum-cryptography/round-3-submissions</a></li><li><b>WireGuard Patreon</b>: <a href='https://www.patreon.com/zx2c4'>https://www.patreon.com/zx2c4</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Hey, a new episode! We had a fantastic conversation with Jason Donenfeld, creator of our favorite modern VPN protocol: WireGuard! We touched on kernel hacking, formal verification, post-quantum cryptography, developing with disassemblers, and more!<br/><br/>Transcript: <a href='https://share.descript.com/view/olVgXGtRpsY'>https://share.descript.com/view/olVgXGtRpsY</a><br/><br/>Links: </p><ul><li><b>WireGuard: </b><a href='https://blog.cryptographyengineering.com/should-you-use-srp'>https://www.wireguard.com</a></li><li><b>Tamarin</b>: <a href='https://tamarin-prover.github.io'>https://tamarin-prover.github.io</a></li><li><b>IDApro</b>: <a href='https://hex-rays.com/ida-pro'>https://hex-rays.com/ida-pro</a></li><li><b>NIST PQC</b>: <a href='https://csrc.nist.gov/projects/post-quantum-cryptography/round-3-submissions'>https://csrc.nist.gov/projects/post-quantum-cryptography/round-3-submissions</a></li><li><b>WireGuard Patreon</b>: <a href='https://www.patreon.com/zx2c4'>https://www.patreon.com/zx2c4</a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9667632-wireguard-feat-jason-donenfeld.mp3" length="58418604" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9667632</guid>
+ <pubDate>Sun, 05 Dec 2021 17:00:00 -0500</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9667632/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9667632/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9667632/transcript.srt" type="application/srt" />
+ <itunes:duration>4866</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>true</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>PAKEs, oPRFs, algebra, feat. George Tankersley</itunes:title>
+ <title>PAKEs, oPRFs, algebra, feat. George Tankersley</title>
+ <description><![CDATA[<p>A conversation that started with PAKEs (password-authenticated key exchanges) and touched on some cool math things: PRFs, finite fields, elliptic curve groups, anonymity protocols, hashing to curve groups, prime order groups, and more. <br/><br/>With special guest, George Tankersley!<br/><br/>Transcript: <a href='https://share.descript.com/view/X8x8oO2Q8Tw'>https://share.descript.com/view/X8x8oO2Q8Tw</a><br/><br/>Links: </p><ul><li><b>SRP deprecation: </b><a href='https://blog.cryptographyengineering.com/should-you-use-srp'>https://blog.cryptographyengineering.com/should-you-use-srp</a></li><li><b>OPAQUE: </b><a href='https://www.ietf.org/id/draft-irtf-cfrg-opaque-06.html'>https://www.ietf.org/id/draft-irtf-cfrg-opaque-06.html</a></li><li><b>obfs: </b><a href='https://github.com/shadowsocks/simple-obfs'><b>https://github.com/shadowsocks/simple-obfs</b></a></li><li><b>Elligator: </b><a href='https://elligator.cr.yp.to/'><b>https://elligator.cr.yp.to</b></a></li><li><b>Hash to Curve: </b><a href='https://www.ietf.org/archive/id/draft-irtf-cfrg-hash-to-curve-12.html'><b>https://www.ietf.org/archive/id/draft-irtf-cfrg-hash-to-curve-12.html</b></a></li><li><b>Magic Wormhole: </b><a href='https://github.com/magic-wormhole/magic-wormhole'><b>https://github.com/magic-wormhole/magic-wormhole</b></a></li><li><b>Biscuits: </b><a href='https://github.com/CleverCloud/biscuit'><b>https://github.com/CleverCloud/biscuit</b></a></li><li><b>Ristretto: </b><a href='https://ristretto.group/'><b>https://ristretto.group</b></a></li><li><b>Monero signature bug: </b><a href='https://www.getmonero.org/ru/2017/05/17/disclosure-of-a-major-bug-in-cryptonote-based-currencies.html'><b>https://www.getmonero.org/ru/2017/05/17/disclosure-of-a-major-bug-in-cryptonote-based-currencies.html</b></a></li><li><b>SIDH smooth-order supersingular curves: </b><a href='https://link.springer.com/chapter/10.1007/978-3-662-53018-4_21'><b>https://link.springer.com/chapter/10.1007/978-3-662-53018-4_21</b></a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>A conversation that started with PAKEs (password-authenticated key exchanges) and touched on some cool math things: PRFs, finite fields, elliptic curve groups, anonymity protocols, hashing to curve groups, prime order groups, and more. <br/><br/>With special guest, George Tankersley!<br/><br/>Transcript: <a href='https://share.descript.com/view/X8x8oO2Q8Tw'>https://share.descript.com/view/X8x8oO2Q8Tw</a><br/><br/>Links: </p><ul><li><b>SRP deprecation: </b><a href='https://blog.cryptographyengineering.com/should-you-use-srp'>https://blog.cryptographyengineering.com/should-you-use-srp</a></li><li><b>OPAQUE: </b><a href='https://www.ietf.org/id/draft-irtf-cfrg-opaque-06.html'>https://www.ietf.org/id/draft-irtf-cfrg-opaque-06.html</a></li><li><b>obfs: </b><a href='https://github.com/shadowsocks/simple-obfs'><b>https://github.com/shadowsocks/simple-obfs</b></a></li><li><b>Elligator: </b><a href='https://elligator.cr.yp.to/'><b>https://elligator.cr.yp.to</b></a></li><li><b>Hash to Curve: </b><a href='https://www.ietf.org/archive/id/draft-irtf-cfrg-hash-to-curve-12.html'><b>https://www.ietf.org/archive/id/draft-irtf-cfrg-hash-to-curve-12.html</b></a></li><li><b>Magic Wormhole: </b><a href='https://github.com/magic-wormhole/magic-wormhole'><b>https://github.com/magic-wormhole/magic-wormhole</b></a></li><li><b>Biscuits: </b><a href='https://github.com/CleverCloud/biscuit'><b>https://github.com/CleverCloud/biscuit</b></a></li><li><b>Ristretto: </b><a href='https://ristretto.group/'><b>https://ristretto.group</b></a></li><li><b>Monero signature bug: </b><a href='https://www.getmonero.org/ru/2017/05/17/disclosure-of-a-major-bug-in-cryptonote-based-currencies.html'><b>https://www.getmonero.org/ru/2017/05/17/disclosure-of-a-major-bug-in-cryptonote-based-currencies.html</b></a></li><li><b>SIDH smooth-order supersingular curves: </b><a href='https://link.springer.com/chapter/10.1007/978-3-662-53018-4_21'><b>https://link.springer.com/chapter/10.1007/978-3-662-53018-4_21</b></a></li></ul><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9439685-pakes-oprfs-algebra-feat-george-tankersley.mp3" length="54135700" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9439685</guid>
+ <pubDate>Tue, 26 Oct 2021 19:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9439685/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9439685/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9439685/transcript.srt" type="application/srt" />
+ <itunes:duration>4509</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>&quot;Patch, Damnit!&quot;</itunes:title>
+ <title>&quot;Patch, Damnit!&quot;</title>
+ <description><![CDATA[<p>A lot of fixes got pushed in the past week! Please apply your updates! <br/>Apple, Chrome, Matrix, Azure, and more nonsense.<br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/>Links!<br/><a href='https://www.technologyreview.com/2021/09/15/1035813/us-sold-iphone-exploit-uae'>The accuvant story in MIT Technology Review</a><br/>All the Apple platforms <a href='https://support.apple.com/en-us/HT212807'>patched</a> <a href='https://citizenlab.ca/2021/09/forcedentry-nso-group-imessage-zero-click-exploit-captured-in-the-wild/'>FORCEDENTRY</a> no-click 0-day<br/>Chrome <a href='https://chromereleases.googleblog.com/2021/09/stable-channel-update-for-desktop.html'>patched some 0-days</a> that were being exploited in the wild<br/>PASETO <a href='https://paragonie.com/blog/2021/09/promoting-misuse-resistance-in-paseto-libraries'>update</a> <br/><br/>Transcript: <br/><a href='https://share.descript.com/view/Um4im6a3dqj'>https://share.descript.com/view/Um4im6a3dqj</a><br/><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>A lot of fixes got pushed in the past week! Please apply your updates! <br/>Apple, Chrome, Matrix, Azure, and more nonsense.<br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/>Links!<br/><a href='https://www.technologyreview.com/2021/09/15/1035813/us-sold-iphone-exploit-uae'>The accuvant story in MIT Technology Review</a><br/>All the Apple platforms <a href='https://support.apple.com/en-us/HT212807'>patched</a> <a href='https://citizenlab.ca/2021/09/forcedentry-nso-group-imessage-zero-click-exploit-captured-in-the-wild/'>FORCEDENTRY</a> no-click 0-day<br/>Chrome <a href='https://chromereleases.googleblog.com/2021/09/stable-channel-update-for-desktop.html'>patched some 0-days</a> that were being exploited in the wild<br/>PASETO <a href='https://paragonie.com/blog/2021/09/promoting-misuse-resistance-in-paseto-libraries'>update</a> <br/><br/>Transcript: <br/><a href='https://share.descript.com/view/Um4im6a3dqj'>https://share.descript.com/view/Um4im6a3dqj</a><br/><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9225773-patch-damnit.mp3" length="53974830" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9225773</guid>
+ <pubDate>Mon, 20 Sep 2021 04:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9225773/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9225773/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9225773/transcript.srt" type="application/srt" />
+ <itunes:duration>4496</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>How to be a Certificate Authority, feat. Ryan Sleevi</itunes:title>
+ <title>How to be a Certificate Authority, feat. Ryan Sleevi</title>
+ <description><![CDATA[<p>Not the hero the internet deserves, but the one we need: it&apos;s Ryan Sleevi!<br/><br/>We get into the weeds on becoming a certificate authority, auditing said authorities, DNSSEC, DANE, taking over country code top level domains, Luxembourg, X.509, ASN.1, CBOR, more JSON (!), ACME, Let&apos;s Encrypt, and more, on this extra lorge episode with the web PKI&apos;s Batman.<br/><br/><br/>Transcript: <a href='https://share.descript.com/view/61pZGOJlqu6'>https://share.descript.com/view/61pZGOJlqu6</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Not the hero the internet deserves, but the one we need: it&apos;s Ryan Sleevi!<br/><br/>We get into the weeds on becoming a certificate authority, auditing said authorities, DNSSEC, DANE, taking over country code top level domains, Luxembourg, X.509, ASN.1, CBOR, more JSON (!), ACME, Let&apos;s Encrypt, and more, on this extra lorge episode with the web PKI&apos;s Batman.<br/><br/><br/>Transcript: <a href='https://share.descript.com/view/61pZGOJlqu6'>https://share.descript.com/view/61pZGOJlqu6</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9146390-how-to-be-a-certificate-authority-feat-ryan-sleevi.mp3" length="67838713" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9146390</guid>
+ <pubDate>Mon, 06 Sep 2021 04:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9146390/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9146390/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9146390/transcript.srt" type="application/srt" />
+ <itunes:duration>5651</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Apple&#39;s CSAM Detection, feat. Matthew Green</itunes:title>
+ <title>Apple&#39;s CSAM Detection, feat. Matthew Green</title>
+ <description><![CDATA[<p>We&apos;re talking about Apple&apos;s new proposed <a href='https://www.apple.com/child-safety/'>client-side CSAM detection system</a>. We weren&apos;t sure if we were going to cover this, and then we realized that not all of us have been paying super close attention to what the hell this thing is, and have a lot of questions about it. So we&apos;re talking about it, with our special guest Professor Matthew Green.<br/><br/>We cover how Apple&apos;s system works, what it does (and doesn&apos;t), where we have unanswered questions, and where some of the gaps are.<br/><br/>Transcript: <a href='https://share.descript.com/view/cEni6L9rMxI'>https://share.descript.com/view/cEni6L9rMxI</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/>Links:<br/><a href='https://www.apple.com/child-safety/pdf/CSAM_Detection_Technical_Summary.pdf'>https://www.apple.com/child-safety/pdf/CSAM_Detection_Technical_Summary.pdf</a></p><p><a href='https://www.apple.com/child-safety/pdf/Apple_PSI_System_Security_Protocol_and_Analysis.pdf'>https://www.apple.com/child-safety/pdf/Apple_PSI_System_Security_Protocol_and_Analysis.pdf</a></p><p><a href='https://www.law.cornell.edu/uscode/text/18/2258A'>https://www.law.cornell.edu/uscode/text/18/2258A</a></p><p><a href='https://www.missingkids.org/content/dam/missingkids/gethelp/2020-reports-by-esp.pdf'>https://www.missingkids.org/content/dam/missingkids/gethelp/2020-reports-by-esp.pdf</a></p><p><a href='https://www.reuters.com/article/us-apple-fbi-icloud-exclusive/exclusive-apple-dropped-plan-for-encrypting-backups-after-fbi-complained-sources-idUSKBN1ZK1CT'>https://www.reuters.com/article/us-apple-fbi-icloud-exclusive/exclusive-apple-dropped-plan-for-encrypting-backups-after-fbi-complained-sources-idUSKBN1ZK1CT</a></p><p><a href='https://en.wikipedia.org/wiki/The_purpose_of_a_system_is_what_it_does'>https://en.wikipedia.org/wiki/The_purpose_of_a_system_is_what_it_does</a></p><p><a href='https://research.fb.com/blog/2021/02/understanding-the-intentions-of-child-sexual-abuse-material-csam-sharers/'>https://research.fb.com/blog/2021/02/understanding-the-intentions-of-child-sexual-abuse-material-csam-sharers/</a></p><p><a href='https://www.nytimes.com/interactive/2019/11/09/us/internet-child-sex-abuse.html'>https://www.nytimes.com/interactive/2019/11/09/us/internet-child-sex-abuse.html</a></p><p><a href='https://www.apple.com/child-safety/pdf/Expanded_Protections_for_Children_Frequently_Asked_Questions.pdf'>https://www.apple.com/child-safety/pdf/Expanded_Protections_for_Children_Frequently_Asked_Questions.pdf</a></p><p><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We&apos;re talking about Apple&apos;s new proposed <a href='https://www.apple.com/child-safety/'>client-side CSAM detection system</a>. We weren&apos;t sure if we were going to cover this, and then we realized that not all of us have been paying super close attention to what the hell this thing is, and have a lot of questions about it. So we&apos;re talking about it, with our special guest Professor Matthew Green.<br/><br/>We cover how Apple&apos;s system works, what it does (and doesn&apos;t), where we have unanswered questions, and where some of the gaps are.<br/><br/>Transcript: <a href='https://share.descript.com/view/cEni6L9rMxI'>https://share.descript.com/view/cEni6L9rMxI</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/>Links:<br/><a href='https://www.apple.com/child-safety/pdf/CSAM_Detection_Technical_Summary.pdf'>https://www.apple.com/child-safety/pdf/CSAM_Detection_Technical_Summary.pdf</a></p><p><a href='https://www.apple.com/child-safety/pdf/Apple_PSI_System_Security_Protocol_and_Analysis.pdf'>https://www.apple.com/child-safety/pdf/Apple_PSI_System_Security_Protocol_and_Analysis.pdf</a></p><p><a href='https://www.law.cornell.edu/uscode/text/18/2258A'>https://www.law.cornell.edu/uscode/text/18/2258A</a></p><p><a href='https://www.missingkids.org/content/dam/missingkids/gethelp/2020-reports-by-esp.pdf'>https://www.missingkids.org/content/dam/missingkids/gethelp/2020-reports-by-esp.pdf</a></p><p><a href='https://www.reuters.com/article/us-apple-fbi-icloud-exclusive/exclusive-apple-dropped-plan-for-encrypting-backups-after-fbi-complained-sources-idUSKBN1ZK1CT'>https://www.reuters.com/article/us-apple-fbi-icloud-exclusive/exclusive-apple-dropped-plan-for-encrypting-backups-after-fbi-complained-sources-idUSKBN1ZK1CT</a></p><p><a href='https://en.wikipedia.org/wiki/The_purpose_of_a_system_is_what_it_does'>https://en.wikipedia.org/wiki/The_purpose_of_a_system_is_what_it_does</a></p><p><a href='https://research.fb.com/blog/2021/02/understanding-the-intentions-of-child-sexual-abuse-material-csam-sharers/'>https://research.fb.com/blog/2021/02/understanding-the-intentions-of-child-sexual-abuse-material-csam-sharers/</a></p><p><a href='https://www.nytimes.com/interactive/2019/11/09/us/internet-child-sex-abuse.html'>https://www.nytimes.com/interactive/2019/11/09/us/internet-child-sex-abuse.html</a></p><p><a href='https://www.apple.com/child-safety/pdf/Expanded_Protections_for_Children_Frequently_Asked_Questions.pdf'>https://www.apple.com/child-safety/pdf/Expanded_Protections_for_Children_Frequently_Asked_Questions.pdf</a></p><p><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Deirdre Connolly, Thomas Ptacek, David Adrian</itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9099774-apple-s-csam-detection-feat-matthew-green.mp3" length="38147868" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9099774</guid>
+ <pubDate>Fri, 27 Aug 2021 23:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9099774/transcript" type="text/html" />
+ <itunes:duration>3177</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>Platform Security Part Deux, feat. Justin Schuh</itunes:title>
+ <title>Platform Security Part Deux, feat. Justin Schuh</title>
+ <description><![CDATA[<p>We did not run out of things to talk about: Chrome vs. Safari vs. Firefox. Rust vs. C++. Bug bounties vs. exploit development. The Peace Corps vs. The Marine Corps.<br/><br/>Transcript: <a href='https://share.descript.com/view/DpeqIOCREyZ'>https://share.descript.com/view/DpeqIOCREyZ</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>We did not run out of things to talk about: Chrome vs. Safari vs. Firefox. Rust vs. C++. Bug bounties vs. exploit development. The Peace Corps vs. The Marine Corps.<br/><br/>Transcript: <a href='https://share.descript.com/view/DpeqIOCREyZ'>https://share.descript.com/view/DpeqIOCREyZ</a><br/><br/>Find us at:<br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><br/></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9063230-platform-security-part-deux-feat-justin-schuh.mp3" length="57649694" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9063230</guid>
+ <pubDate>Sat, 21 Aug 2021 00:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9063230/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9063230/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9063230/transcript.srt" type="application/srt" />
+ <podcast:soundbite startTime="4324.471" duration="48.0" />
+ <itunes:duration>4802</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>What do we do about JWT? feat. Jonathan Rudenberg</itunes:title>
+ <title>What do we do about JWT? feat. Jonathan Rudenberg</title>
+ <description><![CDATA[<p>🔥JWT🔥<br/><br/>We talk about all sorts of tokens: JWT, PASETO, Protobuf Tokens, Macaroons, and Biscuits. With the great Jonathan Rudenberg!<br/><br/>After we recorded this, Thomas went deep on tokens even beyond what we talked about here: <a href='https://fly.io/blog/api-tokens-a-tedious-survey/'>https://fly.io/blog/api-tokens-a-tedious-survey/</a><br/><br/>Transcript: <a href='https://share.descript.com/view/pb428e60pPo'>https://share.descript.com/view/pb428e60pPo</a><br/><br/>Find us at:<br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>🔥JWT🔥<br/><br/>We talk about all sorts of tokens: JWT, PASETO, Protobuf Tokens, Macaroons, and Biscuits. With the great Jonathan Rudenberg!<br/><br/>After we recorded this, Thomas went deep on tokens even beyond what we talked about here: <a href='https://fly.io/blog/api-tokens-a-tedious-survey/'>https://fly.io/blog/api-tokens-a-tedious-survey/</a><br/><br/>Transcript: <a href='https://share.descript.com/view/pb428e60pPo'>https://share.descript.com/view/pb428e60pPo</a><br/><br/>Find us at:<br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf</a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a><br/><a href='https://twitter.com/scwpod'>https://twitter.com/scwpod</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/9020991-what-do-we-do-about-jwt-feat-jonathan-rudenberg.mp3" length="53973358" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-9020991</guid>
+ <pubDate>Thu, 12 Aug 2021 16:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9020991/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9020991/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/9020991/transcript.srt" type="application/srt" />
+ <podcast:soundbite startTime="0.0" duration="30.0" />
+ <itunes:duration>4496</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>The Great &quot;Roll Your Own Crypto&quot; Debate, feat. Filippo Valsorda</itunes:title>
+ <title>The Great &quot;Roll Your Own Crypto&quot; Debate, feat. Filippo Valsorda</title>
+ <description><![CDATA[<p>Special guest <a href='https://twitter.com/filosottile'>Filippo Valsorda</a> joins us to debate with Thomas on whether one should or should not &quot;roll your own crypto&quot;, and how to produce better cryptography in general.<br/><br/>After we recorded this, David went even deeper  on &apos;rolling your own crypto&apos; in a blog post here: <a href='https://dadrian.io/blog/posts/roll-your-own-crypto/'>https://dadrian.io/blog/posts/roll-your-own-crypto/</a><br/><br/>Transcript: <a href='https://share.descript.com/view/2tqKjLxleKM'>https://share.descript.com/view/2tqKjLxleKM</a><br/><br/>Links:<br/><a href='https://peter.website/meow-hash-cryptanalysis'>https://peter.website/meow-hash-cryptanalysis</a><br/><a href='https://arxiv.org/pdf/2107.04940.pdf'>https://arxiv.org/pdf/2107.04940.pdf</a><br/><a href='https://ristretto.group/'>https://ristretto.group</a><br/><a href='https://filippo.io/heartbleed'>https://filippo.io/heartbleed</a><br/><br/>Find us at:<br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf </a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Special guest <a href='https://twitter.com/filosottile'>Filippo Valsorda</a> joins us to debate with Thomas on whether one should or should not &quot;roll your own crypto&quot;, and how to produce better cryptography in general.<br/><br/>After we recorded this, David went even deeper  on &apos;rolling your own crypto&apos; in a blog post here: <a href='https://dadrian.io/blog/posts/roll-your-own-crypto/'>https://dadrian.io/blog/posts/roll-your-own-crypto/</a><br/><br/>Transcript: <a href='https://share.descript.com/view/2tqKjLxleKM'>https://share.descript.com/view/2tqKjLxleKM</a><br/><br/>Links:<br/><a href='https://peter.website/meow-hash-cryptanalysis'>https://peter.website/meow-hash-cryptanalysis</a><br/><a href='https://arxiv.org/pdf/2107.04940.pdf'>https://arxiv.org/pdf/2107.04940.pdf</a><br/><a href='https://ristretto.group/'>https://ristretto.group</a><br/><a href='https://filippo.io/heartbleed'>https://filippo.io/heartbleed</a><br/><br/>Find us at:<br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf </a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/8953842-the-great-roll-your-own-crypto-debate-feat-filippo-valsorda.mp3" length="43797827" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-8953842</guid>
+ <pubDate>Sat, 31 Jul 2021 18:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/8953842/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/8953842/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/8953842/transcript.srt" type="application/srt" />
+ <itunes:duration>3648</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+ <item>
+ <itunes:title>NSO group, Pegasus, Zero-Days, i(OS|Message) security</itunes:title>
+ <title>NSO group, Pegasus, Zero-Days, i(OS|Message) security</title>
+ <description><![CDATA[<p>Deirdre, Thomas and David talk about NSO group, Pegasus,  whether iOS a burning trash fire, the zero-day market, and whether rewriting all of iOS in Swift is a viable strategy for reducing all these vulns.<br/><br/>Transcript: <a href='https://share.descript.com/view/PQRb3nsY7N4'>https://share.descript.com/view/PQRb3nsY7N4</a><br/><br/>Find us at:<br/><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf </a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></description>
+ <content:encoded><![CDATA[<p>Deirdre, Thomas and David talk about NSO group, Pegasus,  whether iOS a burning trash fire, the zero-day market, and whether rewriting all of iOS in Swift is a viable strategy for reducing all these vulns.<br/><br/>Transcript: <a href='https://share.descript.com/view/PQRb3nsY7N4'>https://share.descript.com/view/PQRb3nsY7N4</a><br/><br/>Find us at:<br/><br/><a href='https://twitter.com/durumcrustulum'>https://twitter.com/durumcrustulum</a><br/><a href='https://twitter.com/tqbf'>https://twitter.com/tqbf </a><br/><a href='https://twitter.com/davidcadrian'>https://twitter.com/davidcadrian</a></p><p>&quot;Security. Cryptography. Whatever.&quot; is hosted by <a href='https://twitter.com/durumcrustulum'>Deirdre Connolly</a> (@durumcrustulum), <a href='https://twitter.com/tqbf'>Thomas Ptacek</a> (@tqbf), and <a href='https://twitter.com/davidcadrian'>David Adrian</a> (@davidcadrian).</p>]]></content:encoded>
+ <itunes:author>Security, Cryptography, Whatever </itunes:author>
+ <enclosure url="https://www.buzzsprout.com/1822302/8926799-nso-group-pegasus-zero-days-i-os-message-security.mp3" length="42922244" type="audio/mpeg" />
+ <guid isPermaLink="false">Buzzsprout-8926799</guid>
+ <pubDate>Mon, 26 Jul 2021 19:00:00 -0400</pubDate>
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/8926799/transcript" type="text/html" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/8926799/transcript.json" type="application/json" />
+ <podcast:transcript url="https://feeds.buzzsprout.com/1822302/8926799/transcript.srt" type="application/srt" />
+ <itunes:duration>3575</itunes:duration>
+ <itunes:keywords></itunes:keywords>
+ <itunes:episodeType>full</itunes:episodeType>
+ <itunes:explicit>false</itunes:explicit>
+ </item>
+</channel>
+</rss>