-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdata.json
More file actions
2487 lines (2487 loc) · 411 KB
/
data.json
File metadata and controls
2487 lines (2487 loc) · 411 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "Walmart on ChatGPT, Walmart (and Amazon) Motivations, Spotify Podcasts on Netflix",
"public_url": "https://stratechery.com/?p=17285",
"publish_date": "Thu, 16 Oct 2025 10:00:00 +0000",
"file_location": "./data/Walmart on ChatGPT, Walmart (and Amazon) Motivations, Spotify Podcasts on Netflix.md",
"summary": "Ben discusses Walmart integrating ChatGPT for instant checkout and speculates if Amazon will follow suit. He then touches on Walmart and Amazon's motivations, suggesting that both companies aim to provide a seamless shopping experience. Ben further shifts to Spotify and Netflix forming an alliance against YouTube by hosting Spotify podcasts on Netflix. In the Frequently-Asked Questions section, Ben explains the terms of subscriptions for the Stratechery Update and Stratechery Podcast, mentioning the availability of team subscriptions and the option to switch to an annual plan with a prorated discount. He clarifies that custom invoices are currently only offered to annual subscribers, with plans to add support for all subscribers in the future. Ben also highlights the gifting option for subscriptions, directing interested individuals to the dedicated gifts page."
},
{
"title": "An Interview with Gracelin Baskaran About Rare Earths",
"public_url": "https://stratechery.com/2025/an-interview-with-gracelin-baskaran-about-rare-earths/",
"publish_date": "Wed, 15 Oct 2025 10:00:00 +0000",
"file_location": "./data/An Interview with Gracelin Baskaran About Rare Earths.md",
"summary": "In an interview with Dr. Gracelin Baskaran about rare earths on Stratechery by Ben Thompson, the discussion delves into how the U.S. became reliant on China for rare earths and explores potential solutions for this issue. Dr. Baskaran explains the reasons behind this dependence and suggests strategies that could be employed in the future. Ben also addresses some Frequently-Asked Questions, stating that to subscribe to the Stratechery Podcast, users should visit the Delivery Preferences page for instructions on adding the podcast to their favorite player. He mentions accessing Stratechery via RSS with a Stratechery Passport account and adds that sharing a subscription is not allowed, though team subscriptions are available. Ben explains the option to switch to an annual plan and mentions the availability of custom invoices for annual subscribers. Lastly, he talks about Stratechery's intentionally low-priced model, catering to a wide audience, including students."
},
{
"title": "OpenAI and Broadcom, ChatGPT and XPUs, AMD and Nvidia",
"public_url": "https://stratechery.com/2025/openai-and-broadcom-chatgpt-and-xpus-amd-and-nvidia/",
"publish_date": "Tue, 14 Oct 2025 10:00:00 +0000",
"file_location": "./data/OpenAI and Broadcom, ChatGPT and XPUs, AMD and Nvidia.md",
"summary": "Ben discusses OpenAI's partnership with Broadcom, emphasizing OpenAI's expertise in workload optimization. Moving on to the Frequently-Asked Questions section, Ben clarifies that subscribers can add the Stratechery Podcast to their favorite platforms through the website settings. He details the content accessibility for free account holders versus subscribers, cautioning against sharing subscriptions due to policy restrictions. Ben also mentions team subscriptions, student pricing, and the ability to switch to an annual plan. Additionally, he notes that only annual subscribers have access to custom invoices for corporate or government needs, with potential future support for all subscribers. Lastly, Ben mentions the gifting option available on the Stratechery website for subscriptions."
},
{
"title": "China and Rare Earth Metals, Chips and Rare Earths, The U.S.'s Self-Inflicted Challenge",
"public_url": "https://stratechery.com/2025/china-and-rare-earth-metals-chips-and-rare-earths-the-u-s-s-self-inflicted-challenge/",
"publish_date": "Mon, 13 Oct 2025 10:00:00 +0000",
"file_location": "./data/China and Rare Earth Metals, Chips and Rare Earths, The U.S.'s Self-Inflicted Challenge.md",
"summary": "Ben Thompson discusses China's recent controls on rare earth metals, akin to chip controls, and the challenge the U.S. faces in countering this move by building. While a solution exists in construction, executing it may have limitations. The article also promotes the Stratechery Plus service, highlighting access to the Stratechery Update, Stratechery Interviews, and various podcasts like Dithering, Sharp Tech, Sharp China, and The Greatest Of All Talk, available via SMS, RSS, or the website. The article notes the auto-renewal nature of subscriptions and provides a link for managing multiple subscriptions for teams or companies. In the Frequently-Asked Questions section, Ben explains how listeners can subscribe to the Stratechery Podcast by visiting Delivery Preferences, access Stratechery via RSS, and clarifies sharing policies. Team subscriptions, annual plan upgrades, and affordability, including student accessibility, are also clarified."
},
{
"title": "The OpenAI Hype Cycle, Microsoft's Game Pass Failure, Verizon's Satellites",
"public_url": "https://stratechery.com/2025/the-openai-hype-cycle-microsofts-game-pass-failure-verizons-satellites/",
"publish_date": "Thu, 09 Oct 2025 10:00:00 +0000",
"file_location": "./data/The OpenAI Hype Cycle, Microsoft's Game Pass Failure, Verizon's Satellites.md",
"summary": "In \"The OpenAI Hype Cycle,\" Ben discusses the evolution of OpenAI's DevDay and the hype cycle, Microsoft's acknowledgement of failure with the Game Pass price increase, and Verizon's satellite investment to avoid reliance on SpaceX. He also highlights the benefits of subscribing to Stratechery Plus for access to the Stratechery Update, Stratechery Interviews, and podcasts like Dithering, Sharp Tech, Sharp China, and Greatest Of All Talk, with auto-renewing monthly or annual subscriptions that can be canceled anytime. In \"Frequently-Asked Questions,\" Ben addresses common subscriber queries about the Stratechery Podcast, RSS reading, sharing subscriptions, team subscriptions, annual plan switches, student discounts, custom invoices, and gifting subscriptions while highlighting the importance of adhering to the Terms of Service, and upcoming Passport updates including native support for custom invoices."
},
{
"title": "An Interview with OpenAI CEO Sam Altman About DevDay and the AI Buildout",
"public_url": "https://stratechery.com/2025/an-interview-with-openai-ceo-sam-altman-about-devday-and-the-ai-buildout/",
"publish_date": "Wed, 08 Oct 2025 10:00:00 +0000",
"file_location": "./data/An Interview with OpenAI CEO Sam Altman About DevDay and the AI Buildout.md",
"summary": "Ben Thompson interviewed OpenAI CEO Sam Altman about the recent DevDay keynote where new initiatives were launched, including Apps in ChatGPT. Altman and OpenAI have been active in unveiling GPT-5, the AI video app Sora, and collaborating with various partners for a massive AI buildout. The interview covered infrastructure announcements, Altman's investor skills as CEO, user feedback strategies, and the coherent vision OpenAI is building towards, which could shape the future. Ben discusses how OpenAI's evolution is reminiscent of Amazon Web Services scaling from a project to a product. He highlights the importance of developing tools that empower others to create AI applications. Ben and Sam delve into how organizations like OpenAI can balance the potential dangers of AI with its positive contributions. They also touch on the regulatory challenges that arise with AI advancements and the need for a thoughtful approach to policy-making in this space. Sam Altman explains that OpenAI's main goal is to develop advanced AI, including AGI and superintelligence, and make it beneficial for people by deploying it across various applications. Ben suggests a comparison of OpenAI as the \"Windows of AI\" where it provides a user interface for interactions and infrastructure buildout. Altman believes in the need for a single AI service integrated with various apps for a seamless user experience. He emphasizes the challenges in building sufficient infrastructure to meet the high demand and expresses optimism about OpenAI's research direction. Ben notes that OpenAI's ability to announce deals that significantly impact partner market caps is a unique and somewhat surreal experience for the company. Despite concerns about market influence, he believes there are plenty of well-funded competitors in the AI space, suggesting it won't be a winner-take-all scenario. Ben also highlights the expanding reach of AI into various products, drawing a parallel to the widespread adoption of transistors. Additionally, the conversation touches on the necessity of making substantial infrastructure investments in tandem to meet demands for AI technology and the challenges in coordinating multiple developments simultaneously. Finally, the discussion briefly touches on OpenAI's recent deal with AMD and the importance of TSMC expanding its capacity to meet growing market demands. In the interview, Sam Altman discusses OpenAI's financial approach, noting they expect OpenAI revenue to cover massive deal costs and plan to help with financing. Altman mentions his investing experience has prepared him well for running OpenAI, particularly in capital allocation decision-making. He also explores the importance of saying no to various product ideas and talks about the need for OpenAI technology to be device-agnostic for broader accessibility. Altman hints at forthcoming plans involving hardware, potential memory solutions with partners like Samsung, and overall coherence in OpenAI's strategy, despite appearing scattered at times. Ben discusses how ChatGPT was a surprise success and how the strategy evolved after some missteps by big tech companies, allowing them to gather leverage. The long-term plan of unifying infrastructure and building apps in ChatGPT has been progressing as expected. He compares the consumer and enterprise markets using Google as an analogy, highlighting the convergence of AI tools. Ben emphasizes building an AI service that seamlessly integrates across various platforms, ensuring a positive ecosystem for all partners involved. He mentions the importance of creating a user-friendly experience that benefits both users and partnering companies, instead of opting for a more controlling approach that could hinder partners. Ben discusses the concept of Instant Checkout, highlighting the importance of maintaining a direct merchant-consumer relationship for better user experience. He expresses the belief that other tech companies' products lack the trust associated with ChatGPT due to its focus on providing the best answers to users' queries. Ben further emphasizes the value provided by long-tail services like ChatGPT in helping consumers discover specific products and mentions the potential for affiliate partnerships as a clear win in their business model. Ben discussed the repeatable hit creation mechanism OpenAI has in place, attributing it to talented teams and new leadership like Fidji Simo. He highlighted the importance of brand halo with products like Sora under the ChatGPT umbrella. Ben also mentioned the considerations behind keeping Sora as a separate app from ChatGPT and the challenge of monetization for such usage-heavy tools. Additionally, Ben touched on the intrinsic human desire to create and share, emphasizing how tools like Sora can tap into this latent creative expression demand. Ben discusses the dynamics between copyright holders and AI-generated content, highlighting the difference in response between still images and videos. While initial concerns were raised, many rights holders are now interested in leveraging AI for customized content but with more control over restrictions. Ben predicts a future where copyright holders increasingly see AI-created content as an opportunity to deepen connections with fans and increase value. Ben discusses OpenAI's tendency to hype things on Twitter, which might have led to misconceptions about their products. He acknowledges the need to hype less and admits that they should deserve some grace if they deliver on AI advancements. Ben delves into feedback mechanisms and the importance of balancing user data and listening to user feedback. In terms of managing online sentiment, Ben realizes the discrepancy between how AI enthusiasts and the general public use AI and the challenge of catering to both. Ben also touches on the potential for subscriptions, citing ChatGPT's success, and hints at future updates. He concludes by questioning whether there will be enough electricity for the advancements in AI."
},
{
"title": "OpenAI's Windows Play",
"public_url": "https://stratechery.com/2025/openais-windows-play/",
"publish_date": "Tue, 07 Oct 2025 09:57:32 +0000",
"file_location": "./data/OpenAI's Windows Play.md",
"summary": "In the article \"OpenAI\u2019s Windows Play\" on Stratechery by Ben Thompson, the author delves into OpenAI's ambition to become the \"Windows of AI\" by dominating the AI platform space, akin to Microsoft's historical dominance with Windows in the PC era. Ben discusses the establishment of platforms, highlighting ChatGPT's potential as a popular product with strong user engagement and the integration of various apps within it. OpenAI's strategy aims to position ChatGPT as an operating system, relying on third-party developers for successful integrations. The importance of second sourcing is also examined, drawing parallels to IBM's strategy with Intel and AMD in the PC era, and the evolving competitive landscape in the AI value chain with Nvidia in the lead. Furthermore, Ben reflects on OpenAI's broad approach across consumer touchpoints to APIs, likening it to Microsoft's shift towards services under Satya Nadella. He also addresses the current bubble in the AI industry and suggests durable infrastructure investments as more worthwhile. Ultimately, OpenAI's position as the linchpin of the AI buildout gives them leverage in attracting funding and benefiting from speculative capital in the industry."
},
{
"title": "Sora, AI Bicycles, and Meta Disruption",
"public_url": "https://stratechery.com/2025/sora-ai-bicycles-and-meta-disruption/",
"publish_date": "Mon, 06 Oct 2025 10:04:14 +0000",
"file_location": "./data/Sora, AI Bicycles, and Meta Disruption.md",
"summary": "Ben delves into the success of AI content in the Sora app, challenging initial impressions and emphasizing the importance of creation over consumption, as noted by M.G. Siegler. Reflecting on his career, Ben acknowledges the significance of storytelling and the need for a compelling narrative alongside analysis. He sees being wrong as an opportunity to enhance storytelling and deepen understanding. Examining his creativity blind spot, Ben discusses his unique perspective on AI video apps like Meta's Vibes and OpenAI's Sora, noting his preference for the former as a consumer. He contemplates his alignment with the 1% creating content, recognizing his limitations in content creation on platforms like Sora. Transitioning to the evolution of human communication, Ben explains how AI, particularly tools like Sora, can democratize creativity by removing bottlenecks in idea creation and substantiation. Reflecting on Instagram's growth from a tool to a full-fledged social network, Ben highlights Meta's shift and the emergence of Sora as a disruptor in the market. He expresses concerns about Meta's ability to maintain user attention with AI-generated content and its reliance on centralized content engines. Ben suggests that Meta's optimism about AI may overshadow the potential disruption it poses to established platforms."
},
{
"title": "An Interview with Ben Bajarin About AI Infrastructure",
"public_url": "https://stratechery.com/2025/an-interview-with-ben-bajarin-about-ai-infrastructure/",
"publish_date": "Thu, 02 Oct 2025 10:00:00 +0000",
"file_location": "./data/An Interview with Ben Bajarin About AI Infrastructure.md",
"summary": "In an article on Stratechery by Ben Thompson, an Interview with Ben Bajarin About AI Infrastructure discusses the critical role of AI infrastructure, highlighting Nvidia and Intel as key players in powering machine learning and AI applications. The significance of Stratechery Plus, offering exclusive content like the Stratechery Update, Stratechery Interviews, Dithering, and Sharp Tech podcasts, is emphasized. The Stratechery Update provides detailed analysis through three weekly emails or podcasts, while the Stratechery Interviews feature discussions with industry leaders. The FAQ section clarifies subscribing to the Stratechery Podcast, accessing content via RSS, subscription sharing policies, and available subscription options like team subscriptions and annual plans, with no student discounts. Custom invoices are available upon request after subscribing or upgrading to an annual plan."
},
{
"title": "Sora the App, Sonnet 4.5 and the Question of Models as Processors",
"public_url": "https://stratechery.com/2025/sora-the-app-sonnet-4-5-and-the-question-of-models-as-processors/",
"publish_date": "Wed, 01 Oct 2025 10:00:00 +0000",
"file_location": "./data/Sora the App, Sonnet 4.5 and the Question of Models as Processors.md",
"summary": "Ben discusses OpenAI's AI video app Sora, powered by Sora 2, questioning its long-term appeal. He mentions Cognition's challenges with incorporating a new Anthropic model, indicating that integrating new models is more complex than introducing a new processor. In Frequently-Asked Questions, Ben clarifies inquiries related to subscribing to the Stratechery Podcast and reading content via RSS. He mentions subscriptions for individual use, occasional forwarding of updates, purchasing team subscriptions, switching to annual plans, student discounts, creating custom invoices, and gifting subscriptions. Ben also notes upcoming native support for custom invoices within Passport."
},
{
"title": "OpenAI Instant Checkout, AI and Long Tail E-Commerce, Is AI Different?",
"public_url": "https://stratechery.com/2025/openai-instant-checkout-ai-and-long-tail-e-commerce-is-ai-different/",
"publish_date": "Tue, 30 Sep 2025 10:00:00 +0000",
"file_location": "./data/OpenAI Instant Checkout, AI and Long Tail E-Commerce, Is AI Different?.md",
"summary": "Ben Thompson discusses OpenAI's Instant Checkout, highlighting its potential impact on AI commerce and how it could benefit platforms like Shopify and Etsy compared to Meta's native Checkout. He also delves into AI and Long Tail E-Commerce, exploring the significance of AI in enabling long-tail products to be easily discovered and purchased online. Ben then questions if AI is truly different from other technological advancements, pondering its unique characteristics. In the Frequently-Asked Questions section, Ben explains how to subscribe to the Stratechery podcast and clarifies the rules around sharing subscriptions. He touches on team subscriptions, annual plans with discounts, affordable pricing for students, custom invoices for annual subscribers, and the option to gift subscriptions through the Stratechery website."
},
{
"title": "Meta Vibes, Good Vibes, Vibes Vision",
"public_url": "https://stratechery.com/2025/meta-vibes-good-vibes-vibes-vision/",
"publish_date": "Mon, 29 Sep 2025 10:00:00 +0000",
"file_location": "./data/Meta Vibes, Good Vibes, Vibes Vision.md",
"summary": "In the article Meta Vibes, Good Vibes, Vibes Vision \u2013 Stratechery by Ben Thompson, Ben discusses the intriguing MetaAI Vibes video feed and its potential implications for the future of VR. He highlights the benefits of subscribing to Stratechery Plus for exclusive content like the Stratechery Update, Stratechery Interviews, and various podcasts including Dithering, Sharp Tech, Sharp China, and Greatest Of All Talk, with options to receive updates through SMS, RSS, or the website, and the flexibility to cancel subscriptions. Addressing Frequently-Asked Questions, Ben clarifies guidelines on sharing subscriptions, team subscriptions, switching to annual plans, potential student discounts, creating custom invoices for annual subscribers, and the prospect of native support for custom invoices through Passport updates, while also mentioning the option to gift subscriptions."
},
{
"title": "An Interview with Booking CEO Glenn Fogel About Travel and Aggregation",
"public_url": "https://stratechery.com/2025/an-interview-with-booking-ceo-glenn-fogel-about-travel-and-aggregation/",
"publish_date": "Thu, 25 Sep 2025 10:00:00 +0000",
"file_location": "./data/An Interview with Booking CEO Glenn Fogel About Travel and Aggregation.md",
"summary": "In an interview with Booking CEO Glenn Fogel, Ben Thompson explores various aspects of Booking's business model evolution, network effects, and future direction. They discuss the importance of bundle Aggregation in the travel industry, contrasting Booking's approach with Airbnb's. Glenn emphasizes the significance of customer loyalty and continuous innovation to stay competitive. They reflect on Priceline's success and Booking's transition from the agency model to a dual model approach. Network effects are analyzed as key to Booking's triumph over competitors, with a focus on delivering value to customers. The conversation also touches on managing Google, loyalty programs, the rise of Airbnb, and the concept of a Connected Trip. Glenn outlines Booking's vision to enhance the Connected Trip, leveraging technology and partnerships to adapt to industry advancements like Gen AI."
},
{
"title": "YouTube Restores Suspended Accounts, Free Speech and Cultural Mores, Platform Power",
"public_url": "https://stratechery.com/2025/youtube-restores-suspended-accounts-free-speech-and-cultural-mores-platform-power/",
"publish_date": "Wed, 24 Sep 2025 10:00:00 +0000",
"file_location": "./data/YouTube Restores Suspended Accounts, Free Speech and Cultural Mores, Platform Power.md",
"summary": "Ben discusses YouTube's decision to reinstate banned accounts due to misinformation, emphasizing the importance of free speech in the tech industry and the cultural significance of free expression that big tech companies should promote. In the section \"FAQ,\" he answers common questions about subscribing to Stratechery content, explaining how to subscribe to the podcast, read via RSS, share a subscription, purchase a team subscription, switch to an annual plan, and mentions the absence of a student discount. He also addresses custom invoices for annual subscribers and mentions the upcoming native support for custom invoices, as well as how subscriptions can be given as gifts through the gifts page on their website."
},
{
"title": "The YouTube Tip of the Google Spear",
"public_url": "https://stratechery.com/2025/the-youtube-tip-of-the-google-spear/",
"publish_date": "Tue, 23 Sep 2025 10:00:00 +0000",
"file_location": "./data/The YouTube Tip of the Google Spear.md",
"summary": "In \"The YouTube Tip of the Google Spear,\" Ben Thompson delves into the strategic significance of Nvidia's investment in OpenAI, showcasing the intertwined success stories of both companies in the AI realm. Moving to \"A Brief History of Social Media,\" Ben reflects on the evolution of Twitter, Facebook, and TikTok, acknowledging their distinct impacts on social interactions. Transitioning to \"The Giant in Plain Sight,\" Ben sheds light on YouTube's pioneering role in personalized content delivery and its symbiotic relationship with Google's AI advancements. In \"The DeepMind-to-YouTube Pipeline,\" Ben explores the integration of AI models on YouTube Shorts, emphasizing AI's potential in enhancing content creation and consumption. Expanding on \"AI Monetization,\" Ben discusses YouTube's AI-powered tagging system and its implications for video monetization and digital advertising. Lastly, in \"A Bull\u2019s Journey,\" Ben highlights Google's adaptive nature and the evolving role of YouTube as a cornerstone for Google's AI ventures, envisioning a promising future for Google in the video-centric landscape."
},
{
"title": "Nvidia and Intel, Tan's Earnings Call Negotiation, Deal Specifics",
"public_url": "https://stratechery.com/2025/nvidia-and-intel-tans-earnings-call-negotiation-deal-specifics/",
"publish_date": "Mon, 22 Sep 2025 10:00:00 +0000",
"file_location": "./data/Nvidia and Intel, Tan's Earnings Call Negotiation, Deal Specifics.md",
"summary": "Ben Thompson discusses the historic deal between Nvidia and Intel, highlighting its benefits for both companies but noting that it does not address their underlying challenges. He explains that a subscription to Stratechery Plus, priced at $15 per month or $150 per year, provides access to exclusive content such as the Stratechery Update and Stratechery Interviews. Subscribers can also enjoy podcasts like Dithering, Sharp Tech, Sharp China, and Greatest of All Talk, offering insights on technology, China, NBA, and more. Ben clarifies FAQ about subscribing to the Stratechery Podcast, reading via RSS, sharing subscriptions, purchasing team subscriptions, switching to annual plans, student discounts, custom invoices, gifting subscriptions, and Terms of Service."
},
{
"title": "Meta Ray-Ban Display, Why Less is More, Price and the Neural Band",
"public_url": "https://stratechery.com/2025/meta-ray-ban-display-why-less-is-more-price-and-the-neural-band/",
"publish_date": "Thu, 18 Sep 2025 10:00:00 +0000",
"file_location": "./data/Meta Ray-Ban Display, Why Less is More, Price and the Neural Band.md",
"summary": "Ben discusses Meta's Ray-Ban Display in the article, highlighting their appeal due to their simplicity and limited nature. He emphasizes the concept that less can be more in this context. In the Frequently-Asked Questions section, Ben explains the process of subscribing to the Stratechery Podcast and reading via RSS. He mentions the restrictions on sharing subscriptions and the option to switch to an annual plan. Ben also notes the affordable price of Stratechery, including discounts for students, and the availability of custom invoices for annual subscribers upon request."
},
{
"title": "An Interview with YouTube CEO Neal Mohan About Building a Stage for Creators",
"public_url": "https://stratechery.com/2025/an-interview-with-youtube-ceo-neal-mohan-about-building-a-stage-for-creators/",
"publish_date": "Wed, 17 Sep 2025 10:00:00 +0000",
"file_location": "./data/An Interview with YouTube CEO Neal Mohan About Building a Stage for Creators.md",
"summary": "In an interview with YouTube CEO Neal Mohan, Ben delves into Mohan's background and the recent AI-centric announcements made at YouTube's Made on YouTube 2025 event. They discuss YouTube's role in providing a platform for creators and fostering their success by offering tools for engagement and monetization. Neal Mohan emphasizes the importance of balancing AI with creators' original storytelling and creativity, leveraging technology as a tool rather than a replacement. The interview also covers YouTube's monetization strategies, the platform's commitment to creators, and its expansion into the living room TV space. Mohan reflects on YouTube as a stage where creators shine and discusses the company's efforts to empower creators and safeguard free speech while addressing harmful content. Additionally, they touch on YouTube's history, AI utilization, creator monetization, the YouTube stage, and expansion into TV."
},
{
"title": "An Interview with YouTube CEO Neil Mohan About Building a Stage for Creators",
"public_url": "https://stratechery.com/2025/an-interview-with-youtube-ceo-neil-mohan-about-building-a-stage-for-creators/",
"publish_date": "Wed, 17 Sep 2025 10:00:00 +0000",
"file_location": "./data/An Interview with YouTube CEO Neil Mohan About Building a Stage for Creators.md",
"summary": "Ben interviewed YouTube CEO Neal Mohan about the recent AI-centric announcements made during the annual product event. Mohan highlighted features such as Veo 3, live streaming and podcasting updates, brand collaboration offerings, and AI-enabled auto-tagging. Mohan emphasized YouTube's focus on enhancing creators with AI tools rather than replacing them. The event was unique as creators, not YouTube executives, introduced and demonstrated many features, showcasing the platform's strong ties with the creator community. Ben discussed the importance of balancing the needs of creators, viewers, and advertisers on YouTube. He emphasizes the challenge of managing the competing interests of these groups and how YouTube has evolved to address this issue. Neal Mohan agrees that this delicate balance is crucial for the platform's success. Ben also highlights Neal's point that creators must be given the tools and support they need to thrive on YouTube. Neal Mohan discusses his time at DoubleClick, mentioning his initial jump into startups with NetGravity before the merger that brought him to DoubleClick. He highlights DoubleClick's focus on rebuilding advertising technology post-dot-com bubble burst. Mohan reflects on creating a strategic slide deck for DoubleClick's reinvention in the dotcom 2.0 era, focused on democratizing advertising solutions and improving ROI for both publishers and advertisers. Ben discussed the balance between creators and AI in YouTube, emphasizing that AI is a tool to serve creators. He compared AI to past innovations like drum machines and synthesizers, highlighting that the authenticity and creativity of the creator is what ultimately matters. Neal Margulis discusses YouTube's support for creators and the culture of abundance on the platform, highlighting the focus on enabling all creators, not just established ones. Ben notes that Neal Mohan, an executive at YouTube, acknowledges the vast talent gap between himself and popular YouTubers, emphasizing YouTube as a platform for creators and, in contrast, as a stage manager. Ben acknowledges YouTube's success in shaping the viewing habits of consumers who prefer having all their favorite content in one place, attributing YouTube's dominance in the living room to the platform's wide range of offerings that cater to various preferences. Ben questions how YouTube manages to balance its exclusive content from traditional media investments while staying true to its creator-focused roots. Neal Mohan emphasizes a priority on continuous product innovation and shipping new features to cater to the competitive industry landscape. He highlights the importance of YouTube's revenue-sharing model and the freedom creators have to own their content, stressing the blurred lines between traditional media and YouTube creators."
},
{
"title": "The Oracle Inflection Point, Apple's Price Increase",
"public_url": "https://stratechery.com/2025/the-oracle-inflection-point-apples-price-increase/",
"publish_date": "Tue, 16 Sep 2025 10:00:00 +0000",
"file_location": "./data/The Oracle Inflection Point, Apple's Price Increase.md",
"summary": "In \"The Oracle Inflection Point,\" BT discusses Oracle's decision to take on debt for its AI commitment, signaling a potential inflection point in the AI bubble. He also highlights Apple's significant move to increase iPhone prices in \"Apple\u2019s Price Increase,\" marking a shift in the consumer tech space. Moreover, in the \"Frequently-Asked Questions\" section, BT explains how to subscribe to the Stratechery Podcast and read Stratechery via RSS. He clarifies subscription sharing policies, mentions subscription options like team subscriptions and student discounts, and the ability to create custom invoices for annual subscribers. BT also notes the availability of gifting subscriptions and hints at potential future support for native custom invoices."
},
{
"title": "Oracle Pops, From Databases to AI, Oracle and OpenAI",
"public_url": "https://stratechery.com/2025/oracle-pops-from-databases-to-ai-oracle-and-openai/",
"publish_date": "Mon, 15 Sep 2025 10:00:00 +0000",
"file_location": "./data/Oracle Pops, From Databases to AI, Oracle and OpenAI.md",
"summary": "Ben discusses how Oracle's stock reacted positively to the news of significant future performance obligations, prominently from OpenAI, showcasing potential growth opportunities. He highlights the risks associated with such a move but emphasizes Oracle's advantageous position to benefit from this development. In the Frequently-Asked Questions section, Ben explains the process for subscribing to the Stratechery Podcast, reading via RSS, and the rules around subscription sharing. He also mentions the availability of team subscriptions, switching to an annual plan, and the absence of student discounts while offering custom invoices for annual subscribers upon request."
},
{
"title": "An Interview with Dan Kim About Intel, Nvidia, and the U.S. Government",
"public_url": "https://stratechery.com/2025/an-interview-with-dan-kim-about-intel-nvidia-and-the-u-s-government/",
"publish_date": "Thu, 11 Sep 2025 10:00:00 +0000",
"file_location": "./data/An Interview with Dan Kim About Intel, Nvidia, and the U.S. Government.md",
"summary": "In an interview with Dan Kim, discussions revolve around the CHIPS program and the U.S. government's investment in Intel, as well as the controversy surrounding Nvidia's relationship with China. In the FAQ section, Ben explains how to subscribe to the Stratechery Podcast, read Stratechery via RSS, and abide by the Terms of Service by not sharing subscriptions. Team subscriptions, switching to annual plans for discounts, student pricing accessibility, custom invoices for annual subscribers, and gifting subscriptions are also covered."
},
{
"title": "iPhones 17 and the Sugar Water Trap",
"public_url": "https://stratechery.com/2025/iphones-17-and-the-sugar-water-trap/",
"publish_date": "Wed, 10 Sep 2025 10:32:53 +0000",
"file_location": "./data/iPhones 17 and the Sugar Water Trap.md",
"summary": "In a recent Stratechery article, Ben Thompson examines the latest iPhone releases, praising the technological advancements in the iPhone 17 and the innovative design of the iPhone Air. Despite the impressive features, there seems to be a lack of consumer enthusiasm, indicating a shift in Apple's ability to captivate imaginations as before. Ben reflects on how iPhone launches, once a significant focus for the publication, have dwindled in impact over the years, attributing this change to the tech industry's current emphasis on AI, where Apple lags behind. However, with Apple's return to a two-year iPhone design cycle and the growth of its Services business, the company seems to be regaining vitality. Ben acknowledges Apple's enviable position with its strong fundamentals and potential in the AI space, positioning it as a key player. He discusses the cost of prioritizing profit over innovation, citing the battle with Google over smartphone services and the potential long-term disadvantages for Apple's innovation strategies. Ben also raises concerns about Apple falling into a Sculley-like profit trap, as the company's focus on easy profits may hinder its innovation potential and distance it from its once-revolutionary status in the tech industry."
},
{
"title": "SpaceX Buys Spectrum, Spectrum Specifics, SpaceX's Big Bet",
"public_url": "https://stratechery.com/2025/spacex-buys-spectrum-spectrum-specifics-spacexs-big-bet/",
"publish_date": "Tue, 09 Sep 2025 10:00:00 +0000",
"file_location": "./data/SpaceX Buys Spectrum, Spectrum Specifics, SpaceX's Big Bet.md",
"summary": "In \"SpaceX Buys Spectrum,\" Ben explains that SpaceX's recent spectrum deal is part of a strategic move to gain a competitive edge over rival companies. Despite the bold step, partnerships remain crucial for success. Ben points out the specifics of the spectrum deal in \"Spectrum Specifics,\" highlighting the significance of SpaceX's actions. In \"SpaceX\u2019s Big Bet,\" Ben discusses the necessity for partnerships despite the significant move made by SpaceX. In the \"Frequently-Asked Questions\" section, Ben explains how to add Stratechery Podcast subscriptions to preferred podcast players, subscribe via RSS, and navigate sharing restrictions. Team subscriptions and discounts for students are also addressed, along with gift subscriptions and custom invoices for annual subscribers."
},
{
"title": "Atlassian Buys The Browser Company, Browser Wars, Why Atlassian",
"public_url": "https://stratechery.com/2025/atlassian-buys-the-browser-company-browser-wars-why-atlassian/",
"publish_date": "Mon, 08 Sep 2025 10:00:00 +0000",
"file_location": "./data/Atlassian Buys The Browser Company, Browser Wars, Why Atlassian.md",
"summary": "In the discussion of Atlassian's acquisition of The Browser Company, Ben Thompson questions the long-term potential of browsers despite Atlassian's efforts to introduce an AI-enabled browser for work. Moving on to the Frequently-Asked Questions section, Ben clarifies how to subscribe to the Stratechery Podcast and access the content through RSS. He also mentions restrictions on sharing subscriptions or podcasts and the option for team subscriptions and switching to an annual plan for subscribers."
},
{
"title": "An Interview with Cloudflare Founder and CEO Matthew Prince About Internet History and Pay-per-crawl",
"public_url": "https://stratechery.com/2025/an-interview-with-cloudflare-founder-and-ceo-matthew-prince-about-internet-history-and-pay-per-crawl/",
"publish_date": "Thu, 04 Sep 2025 10:00:00 +0000",
"file_location": "./data/An Interview with Cloudflare Founder and CEO Matthew Prince About Internet History and Pay-per-crawl.md",
"summary": "Ben Thompson interviews Cloudflare CEO Matthew Prince about internet history and the evolution of the pay-per-crawl model. They discuss Prince's background, from his tech-savvy upbringing to founding Cloudflare during his MBA at HBS. The conversation covers Cloudflare's origins, disruptive business model, and symbiotic relationship with online criminals. They explore Cloudflare's growth into various products and innovative approaches, emphasizing efficiency and practical solutions. Cloudflare's niche as a fourth cloud provider focusing on network administration is highlighted, along with its relevance in enabling multi-cloud environments and supporting AI and big data movements. The evolution of the Internet interface towards answer engines and the need for a new content monetization model due to changing web dynamics are also discussed. Cloudflare's aggressive stance on blocking bots and creating new protocols is explained as a response to customer requests and a mission to enhance the internet. Concerns about Google's impact on the publishing industry and potential payment schemes prioritizing fair compensation for content creators are examined. The conversation delves into Cloudflare's role in content moderation, avoiding content quality decisions, and enabling AI companies to rank content based on algorithms. Prince emphasizes the importance of trustworthiness in AI development and the value of diverse perspectives in transformative systems."
},
{
"title": "Google Remedy Decision, Reasonable Remedies, The Google Patronage Network",
"public_url": "https://stratechery.com/2025/google-remedy-decision-reasonable-remedies-the-google-patronage-network/",
"publish_date": "Wed, 03 Sep 2025 10:02:18 +0000",
"file_location": "./data/Google Remedy Decision, Reasonable Remedies, The Google Patronage Network.md",
"summary": "Ben Thompson discusses the recent Google Remedy Decision, emphasizing Google's victory in the search distribution case due to the significance of its patronage network. In the Reasonable Remedies section, Ben explores potential solutions that were considered. The Google Patronage Network section further elaborates on Google's success. Ben also addresses Frequently-Asked Questions, detailing how subscriptions to the Stratechery Podcast can be managed and providing information on sharing subscriptions, team subscriptions, pricing, custom invoices, and gifting options. Ben hints at upcoming native support for custom invoices within Passport."
},
{
"title": "Made by Google 2025, AI Trade-offs, Google and the Long-Term",
"public_url": "https://stratechery.com/2025/made-by-google-2025-ai-trade-offs-google-and-the-long-term/",
"publish_date": "Tue, 02 Sep 2025 10:00:00 +0000",
"file_location": "./data/Made by Google 2025, AI Trade-offs, Google and the Long-Term.md",
"summary": "In the article \"Made by Google 2025, AI Trade-offs, Google and the Long-Term\" by Ben Thompson, he discusses Google's Pixel event and how it has revamped launch events to showcase its smartphone innovations. The article is part of Stratechery and offers subscriptions for exclusive content like the Stratechery Update, Interviews, and podcasts such as Dithering, Sharp Tech, Sharp China, and Greatest Of All Talk. Subscribers have access to updates through various channels and extra resources like the Stratechery Update Schedule. Ben also addresses frequently-asked questions, explaining that subscribing to the Stratechery Podcast involves adding it to a preferred podcast player on the Delivery Preferences page. Sharing subscriptions or podcasts with others is not allowed, as they are for individual subscribers only. Team subscriptions can be purchased, and switching to an annual plan is possible with a prorated discount. While student discounts are not offered due to the intentionally low subscription pricing, custom invoices are available for annual subscribers and may be extended to monthly subscribers in the future."
},
{
"title": "Nvidia Earnings, Moats and China, Nvidia vs. the AI Labs",
"public_url": "https://stratechery.com/2025/nvidia-earnings-moats-and-china-nvidia-vs-the-ai-labs/",
"publish_date": "Thu, 28 Aug 2025 10:00:00 +0000",
"file_location": "./data/Nvidia Earnings, Moats and China, Nvidia vs. the AI Labs.md",
"summary": "In the article \"Nvidia Earnings, Moats and China, Nvidia vs. the AI Labs \u2013 Stratechery by Ben Thompson,\" Ben discusses Nvidia's earnings being impacted by supply constraints and the role of reasoning models in exacerbating the situation. He also explores Nvidia's efforts to reestablish a presence in China. The article mentions that subscribing to Stratechery Plus provides access to exclusive content like the Stratechery Update, Stratechery Interviews, and various podcasts including Dithering, Sharp Tech, Sharp China, and Greatest of All Talk. Subscribers can opt to receive updates via SMS, RSS, or the website. In the \"Frequently-Asked Questions\" section, Ben explains how to subscribe to the Stratechery Podcast and shares that sharing subscriptions or RSS feeds with friends is not allowed, although purchasing a subscription for a team is permitted. He details the process to switch to an annual plan with a prorated discount for the remainder of the current monthly plan. Ben mentions the absence of a student discount but underscores that pricing is kept low for accessibility to all."
},
{
"title": "KPop Demon Hunters, Sony's Risk, The Netflix Aggregator",
"public_url": "https://stratechery.com/2025/kpop-demon-hunters-sonys-risk-the-netflix-aggregator/",
"publish_date": "Wed, 27 Aug 2025 10:00:00 +0000",
"file_location": "./data/KPop Demon Hunters, Sony's Risk, The Netflix Aggregator.md",
"summary": "In the article \"KPop Demon Hunters, Sony\u2019s Risk, The Netflix Aggregator \u2013 Stratechery by Ben Thompson,\" Ben discusses the success of \"KPop Demon Hunters\" as a standout hit, highlighting Sony's decision to not pursue the opportunity while Netflix emerged victorious as an aggregator. The article also promotes Stratechery Plus, which offers exclusive content like the Stratechery Update, Stratechery Interviews, and podcasts for a monthly or yearly fee. In the Frequently-Asked Questions section, Ben explains the subscription process for the Stratechery Podcast and clarifies that subscriptions are for individual use only. He also mentions the option of team subscriptions and the ability to switch to an annual plan for existing subscribers. Despite not offering student discounts, Ben ensures that Stratechery remains reasonably priced for accessibility."
},
{
"title": "U.S. Intel",
"public_url": "https://stratechery.com/2025/u-s-intel/",
"publish_date": "Tue, 26 Aug 2025 10:00:00 +0000",
"file_location": "./data/U.S. Intel.md",
"summary": "Ben Thompson, known as BT, delves into the concept of \"steelmanning\" in his article on U.S. Intel for Stratechery. He contrasts it with straw man arguments and applies it to the debate surrounding the U.S. government acquiring an equity stake in Intel, referencing Scott Lincicome's critiques regarding political interference and market distortions. Despite valid concerns raised by critics, BT notes the unique nature of the semiconductor industry, especially its critical role in national security. In the section \"The Geopolitical Case,\" BT explores the geopolitical ramifications of chip manufacturing locations and the risks associated with Taiwan's importance in the chip supply chain. BT emphasizes the need for long-term decisions in the semiconductor industry in \"Decisions Over Decades,\" discussing Intel's historical choices and the significance of becoming a foundry to remain competitive. In \"Competing with TSMC,\" BT addresses Intel's challenges in rivaling the established reputation of TSMC, underscoring the difficulty in attracting customers away from the industry giant. BT raises concerns about Intel's credibility in \"Intel\u2019s Credibility Problem,\" highlighting the importance of U.S. interests in maintaining Intel Foundry. Finally, in \"Steelmanning,\" BT acknowledges the obstacles to Intel's revival but stresses the necessity of ensuring the viability of Intel Foundry for national security reasons amidst concerns about reliance on foreign semiconductor companies."
},
{
"title": "A Personal Update and Vacation Break",
"public_url": "https://stratechery.com/2025/a-personal-update-and-vacation-break/",
"publish_date": "Tue, 19 Aug 2025 09:00:00 +0000",
"file_location": "./data/A Personal Update and Vacation Break.md",
"summary": "In an article on Stratechery, Ben Thompson provides a personal update, sharing his recent move back to the U.S. from Taiwan for family reasons rather than security concerns. He hints at upcoming changes for Stratechery, including a possible new posting schedule and increased focus on video content. Ben also announces a vacation break to recuperate from the move and the tech industry's August slowdown, promising a return to regular updates soon and thanking readers for their understanding and support."
},
{
"title": "Facebook is Dead; Long Live Meta",
"public_url": "https://stratechery.com/2025/meta-earnings-meta-turns-the-dial-social-network-r-i-p/",
"publish_date": "Thu, 14 Aug 2025 14:34:02 +0000",
"file_location": "./data/Facebook is Dead; Long Live Meta.md",
"summary": "In \"Facebook is Dead; Long Live Meta\" from Stratechery by Ben Thompson, the article delves into Meta's recent positive second-quarter earnings report, showcasing a 22% revenue growth and robust ad business performance amid AI investments that led to an 11% increase in share value. Lessons Learned discusses Meta's shift towards emphasizing current financial performance over future bets, marking a departure from traditional tech company strategies. AI That Matters highlights Meta's successful quarter, crediting AI for efficiency gains in the ads system while cautioning against solely attributing results to AI advancements. Reels and Dials examines Meta's manipulation of impression and price-per-ad growth rates through product additions and ad load optimizations. Social Network R.I.P. addresses Meta's transition towards delivering superintelligence to individuals, moving away from its social network roots and potentially justifying investor confidence in the company's new direction."
},
{
"title": "ChatGPT 5, Product Trade-Offs, Personality and Model Upgrades",
"public_url": "https://stratechery.com/2025/chatgpt-5-product-trade-offs-personality-and-model-upgrades/",
"publish_date": "Wed, 13 Aug 2025 11:07:59 +0000",
"file_location": "./data/ChatGPT 5, Product Trade-Offs, Personality and Model Upgrades.md",
"summary": "Ben Thompson discusses the implications of ChatGPT 5, emphasizing its satisfactory performance and shifting attention to product quality and trade-offs at OpenAI. Subscribing to Stratechery Plus provides exclusive content like Stratechery Updates, Interviews, and podcasts featuring various personalities, offering in-depth analysis of daily news and technology's impact. Updates can be received via SMS, RSS, or the website, with cancelable auto-renewal options. Group subscriptions can be managed through a separate form for ordering multiple accounts. In the FAQ section, Ben clarifies that subscribing to the Stratechery Podcast requires adjusting settings on the website after subscribing, prohibits sharing subscriptions, allows switching to an annual plan, provides a student discount, and offers custom invoices only for annual subscribers. For interviews, intuitively determine the name initials from section headers."
},
{
"title": "China AI Chips, A China Chip Control Framework, Whither HBM",
"public_url": "https://stratechery.com/?p=16663",
"publish_date": "Tue, 12 Aug 2025 10:00:00 +0000",
"file_location": "./data/China AI Chips, A China Chip Control Framework, Whither HBM.md",
"summary": "In the article \"Whither HBM \u2013 Stratechery by Ben Thompson,\" Ben discusses China AI Chips and believes that while President Trump's actions regarding charging Nvidia and AMD for China exports may raise concerns, the overall policy direction is accurate. The section on Frequently-Asked Questions explains how to subscribe to the Stratechery Podcast, add it to a preferred podcast player, access Stratechery via RSS, and abide by the Terms of Service, highlighting that sharing subscriptions is not allowed. Team subscriptions can be purchased, and individuals can switch to an annual plan through their account page by selecting the Annual upgrade option."
},
{
"title": "ESPN + NFL, NFL Strategy, Additional Disney Notes",
"public_url": "https://stratechery.com/2025/espn-nfl-nfl-strategy-additional-disney-notes/",
"publish_date": "Thu, 07 Aug 2025 14:54:11 +0000",
"file_location": "./data/ESPN + NFL, NFL Strategy, Additional Disney Notes.md",
"summary": "Ben Thompson discusses the NFL's equity stake in ESPN and its benefits to Disney in the long run, given the NFL's concerns about tech dominance. In the FAQs section, Ben explains how to subscribe to the Stratechery Podcast, access Stratechery via RSS, and the rules around sharing subscriptions. He also mentions team subscriptions, switching to an annual plan, pricing accessibility, custom invoices, and gifting subscriptions."
},
{
"title": "Paradigm Shifts and the Winner's Curse",
"public_url": "https://stratechery.com/2025/paradigm-shifts-and-the-winners-curse/",
"publish_date": "Wed, 06 Aug 2025 15:33:50 +0000",
"file_location": "./data/Paradigm Shifts and the Winner's Curse.md",
"summary": "In the article \"Paradigm Shifts and the Winner\u2019s Curse\" by Ben Thompson, he delves into the defining pairs of the tech industry, such as Apple and Microsoft, and Apple and Amazon during the smartphone era. He emphasizes Apple's groundbreaking creation of the iPhone, which set the smartphone paradigm, leading to significant market share and profits. Amazon's pivotal development of AWS in 2006 enabled continuous computing through cloud services, playing a vital role in the smartphone era. Ben also discusses winners and losers of this era, with Apple and AWS emerging victorious while Microsoft and Nokia faltered due to their inability to adapt. Google and Samsung succeeded by embracing change and learning from successful models, in contrast to Nokia and Microsoft's resistance. He further examines the AI strategies of Apple and Amazon, noting their focus on specific use cases with their respective chips. Additionally, Ben reflects on Google's journey, acknowledging their adaptability to significant paradigm shifts like mobile and AI dominance, despite past skepticism. He appreciates Google's innovative nature and ability to navigate evolving landscapes, recognizing their success in embracing AI to enhance relevance despite challenges in analyzing their strategy."
},
{
"title": "Apple Earnings; Cook's AI Comments; Apple's AI Strategy, Redux",
"public_url": "https://stratechery.com/2025/apple-earnings-cooks-ai-comments-apples-ai-strategy-redux/",
"publish_date": "Tue, 05 Aug 2025 09:00:00 +0000",
"file_location": "./data/Apple Earnings; Cook's AI Comments; Apple's AI Strategy, Redux.md",
"summary": "Ben discusses Apple's recent earnings report and notes that the company seems to be sticking to its original AI strategy. He points out that subscribers can easily access the Stratechery Podcast through their favorite podcast player via the Delivery Preferences on the website. Ben then explains the restrictions on sharing subscriptions or podcasts with friends and mentions the availability of team subscriptions and the option to switch to an annual plan. He emphasizes the affordable pricing of Stratechery's content, including options for students and custom invoices for annual subscribers. Ben also confirms the ability to gift subscriptions through the dedicated gifts page on the website."
},
{
"title": "Figma S-1, The Figma OS, Figma's AI Potential",
"public_url": "https://stratechery.com/2025/figma-s-1-the-figma-os-figmas-ai-potential/",
"publish_date": "Wed, 30 Jul 2025 11:34:02 +0000",
"file_location": "./data/Figma S-1, The Figma OS, Figma's AI Potential.md",
"summary": "In \"Figma S-1,\" Ben discusses Figma's positioning as an operating system and their potential in an AI-driven future, emphasizing the importance of going public. In \"The Figma OS,\" Ben showcases the subscription offerings of Stratechery Plus, including exclusive content like the Stratechery Update, Interviews, and podcasts. \"Figma\u2019s AI Potential\" highlights how Figma's OS sets them up for success in an AI-driven world. The \"Frequently-Asked Questions\" section clarifies how listeners can subscribe to the Stratechery Podcast and read via RSS, the guidelines for sharing subscriptions, team subscriptions, and switching to an annual plan for a discount."
},
{
"title": "Tesla and Samsung, Customer Service and Intel, The U.S. Semi Supply Chain",
"public_url": "https://stratechery.com/2025/tesla-and-samsung-customer-service-and-intel-the-u-s-semi-supply-chain/",
"publish_date": "Tue, 29 Jul 2025 12:22:04 +0000",
"file_location": "./data/Tesla and Samsung, Customer Service and Intel, The U.S. Semi Supply Chain.md",
"summary": "In the latest Stratechery article by Ben Thompson, the discussion delves into Tesla's partnership with Samsung to develop future chips, potentially cementing Samsung's position in the industry. Ben also addresses Frequently-Asked Questions, pointing out that listeners can subscribe to the Stratechery Podcast through Delivery Preferences. He explains that Stratechery content can be accessed via RSS by creating a Stratechery Passport account, with free and subscriber accounts offering different levels of content. Ben mentions the prohibition against sharing subscriptions and highlights the availability of team subscriptions. Additionally, he outlines the process for switching to an annual plan and mentions the affordability of Stratechery content, with the possibility of providing custom invoices for annual subscribers upon request."
},
{
"title": "TSMC Earnings; A16 and TSMC's Approach to Backside Power; Intel Earnings, Architecture, and AI",
"public_url": "https://stratechery.com/2025/tsmc-earnings-a16-and-tsmcs-approach-to-backside-power-intel-earnings-architecture-and-ai/",
"publish_date": "Mon, 28 Jul 2025 12:17:10 +0000",
"file_location": "./data/TSMC Earnings; A16 and TSMC's Approach to Backside Power; Intel Earnings, Architecture, and AI.md",
"summary": "In the Stratechery article by Ben Thompson, he discusses TSMC and Intel's contrasting approaches to backside power, attributing the difference to their customer-centric and self-serving cultures, which may impact their future outcomes. Ben also addresses frequently asked questions, highlighting how subscribers can add the Stratechery Podcast to their preferred podcast player and access Stratechery via RSS by creating a Stratechery Passport account. He clarifies subscription guidelines, mentioning options like team subscriptions, switching to an annual plan with a discount, and gifting subscriptions."
},
{
"title": "Google Earnings, Google Flips the Switch on Cloud, Search Notes",
"public_url": "https://stratechery.com/2025/google-earnings-google-flips-the-switch-on-cloud-search-notes/",
"publish_date": "Thu, 24 Jul 2025 10:43:40 +0000",
"file_location": "./data/Google Earnings, Google Flips the Switch on Cloud, Search Notes.md",
"summary": "In the Stratechery article, Ben Thompson discusses Google's recent earnings, highlighting the success of its Cloud business and the resilience of its Search revenue. He emphasizes the strategic importance of Google's Cloud growth amidst increasing competition. Ben also addresses FAQs, mentioning that subscribers can access the Stratechery Podcast via Delivery Preferences and can read Stratechery via RSS. He clarifies that individual subscriptions are for personal use, while team subscriptions are available for purchase. Ben further explains that subscribers can switch to an annual plan by selecting the Annual upgrade option on their account page."
},
{
"title": "Netflix Earnings, Apple and F1",
"public_url": "https://stratechery.com/2025/netflix-earnings-apple-and-f1/",
"publish_date": "Tue, 22 Jul 2025 12:59:25 +0000",
"file_location": "./data/Netflix Earnings, Apple and F1.md",
"summary": "In the \"Netflix Earnings\" section, Ben Thompson discusses the potential impact of Netflix introducing advertising and how it might change the service's value proposition. He also considers the possibility of Formula 1 content coming to Apple TV, noting it could be a strategic move for the platform. In the \"Frequently-Asked Questions\" section, Ben provides information on managing Stratechery Podcast subscriptions through Delivery Preferences, accessing Stratechery via RSS with a Stratechery Passport account, and the restrictions on sharing subscriptions. He also details the availability of team subscriptions, annual plan upgrades, and gift subscriptions, as well as the current lack of student discounts and the forthcoming support for custom invoices."
},
{
"title": "Content and Community",
"public_url": "https://stratechery.com/2025/content-and-community/",
"publish_date": "Mon, 21 Jul 2025 12:10:03 +0000",
"file_location": "./data/Content and Community.md",
"summary": "Ben Thompson discusses the evolution of the content industry in his article on Stratechery, highlighting its significance to the publication's business model and its broader implications. He reflects on the historical progression from the invention of the printing press to the current impact of AI on content creation. Ben delves into AI's role in content commoditization, noting its ability to rapidly generate substance and predicting the imminent eradication of bottlenecks in idea substantiation. He analyzes the legal implications of AI-generated content and its transformative nature in copyright cases. Ben explores publishing's three eras and the shift in power dynamics brought by the Internet era. He also evaluates Cloudflare's proposition for a marketplace that connects content creators with AI companies and the potential for a new equilibrium in the AI content market. Ben concludes by emphasizing the importance of building content-based communities and fostering direct reader connections to maximize revenue and combat AI-driven changes in search behavior."
},
{
"title": "Cloudflare's Content Independence Day, Google's Advantage, Monetizing AI",
"public_url": "https://stratechery.com/2025/cloudflares-content-independence-day-googles-advantage-monetizing-ai/",
"publish_date": "Wed, 16 Jul 2025 13:31:13 +0000",
"file_location": "./data/Cloudflare's Content Independence Day, Google's Advantage, Monetizing AI.md",
"summary": "In \"Cloudflare\u2019s Content Independence Day,\" Ben discusses Cloudflare's new R2 storage service as a tool for content creators to gain independence from internet giants like Google. He acknowledges Google's advantages in scale and performance but highlights Cloudflare's focus on privacy and security as attracting customers seeking an alternative. Moving on to \"Monetizing AI,\" Ben explores the potential of services like OpenAI's Codex for monetizing AI models, outlining the challenges and opportunities in this evolving space. In the \"Frequently-Asked Questions\" section, Ben answers queries related to subscribing to the Stratechery Podcast, including how to subscribe, access via RSS, sharing limitations, team subscriptions, annual plans, student discounts, custom invoices, and gifting subscriptions. Ben emphasizes the affordable nature of Stratechery's offerings and mentions plans to introduce native support for custom invoices, directing users to the gifts page for subscriptions."
},
{
"title": "Cognition Buys Windsurf, Nvidia Can Sell to China, Grok 4 and Kimi",
"public_url": "https://stratechery.com/2025/cognition-buys-windsurf-nvidia-can-sell-to-china-grok-4-and-kimi/",
"publish_date": "Tue, 15 Jul 2025 10:00:00 +0000",
"file_location": "./data/Cognition Buys Windsurf, Nvidia Can Sell to China, Grok 4 and Kimi.md",
"summary": "In the article \"Cognition Buys Windsurf, Nvidia Can Sell to China, Grok 4 and Kimi \u2013 Stratechery by Ben Thompson,\" Ben discusses the implications of Cognition's acquisition of Windsurf and the potential impact it may have. He also explores Nvidia's opportunity to sell H20s to China, highlighting the significance of this market. Furthermore, Ben presents Grok 4 and Kimi K2 as indicators of future enhancements in models. In the \"Frequently-Asked Questions\" section, Ben explains how Stratechery Podcast subscribers can adjust their preferences to add podcasts to their favorite player, access the content via RSS, and clarifies the rules around sharing subscriptions. Additionally, Ben mentions the option for team subscriptions, discounts on annual plans, the affordable pricing for students, and the willingness to provide custom invoices for annual subscribers upon request."
},
{
"title": "Google and Windsurf, Stinky Deals, Chesterton's Fence and the Silicon Valley Ecosystem",
"public_url": "https://stratechery.com/2025/google-and-windsurf-stinky-deals-chestertons-fence-and-the-silicon-valley-ecosystem/",
"publish_date": "Mon, 14 Jul 2025 14:06:44 +0000",
"file_location": "./data/Google and Windsurf, Stinky Deals, Chesterton's Fence and the Silicon Valley Ecosystem.md",
"summary": "In the article, Ben Thompson discusses the acquisition of Windsurf's founders and IP by Google in what he calls a \"stinky deal\" due to regulatory interference in the startup ecosystem. He also highlights the subscription-based offerings available with Stratechery Plus, including the Stratechery Update for daily news analysis, Stratechery Interviews with industry leaders, and podcasts like Dithering and Sharp Tech. Subscriptions auto-renew monthly or annually but can be canceled at any time, with team or company subscription options available upon request. In the Frequently-Asked Questions section, Ben provides instructions for subscribing to the Stratechery Podcast and accessing Stratechery via RSS. He mentions that sharing subscriptions with friends is not allowed, but team subscriptions and switching to an annual plan are possible. Ben also notes that Stratechery is affordably priced, accessible to everyone, including students, with the option to generate custom invoices for annual subscribers."
},
{
"title": "Apple + Anthropic?, Apple's Fall, Apple's Options",
"public_url": "https://stratechery.com/2025/apple-anthropic-apples-fall-apples-options/",
"publish_date": "Wed, 09 Jul 2025 10:22:39 +0000",
"file_location": "./data/Apple + Anthropic?, Apple's Fall, Apple's Options.md",
"summary": "In the article \"Apple + Anthropic?\" by Ben Thompson, he discusses Apple's potential partnership with foundation model providers to replace Siri, highlighting the significant impact this decision could have for the company. In the \"Frequently-Asked Questions\" section, Ben explains how to access Stratechery Podcasts and the website through various channels, clarifies subscription sharing rules, mentions options for team subscriptions and annual plans, addresses affordability for students, and discusses custom invoices for annual subscribers, potential native support for custom invoices, and the option to gift a subscription."
},
{
"title": "Tech Philosophy and AI Opportunity",
"public_url": "https://stratechery.com/2025/tech-philosophy-and-ai-opportunity/",
"publish_date": "Tue, 08 Jul 2025 15:06:51 +0000",
"file_location": "./data/Tech Philosophy and AI Opportunity.md",
"summary": "In the article \"Tech Philosophy and AI Opportunity\" on Stratechery by Ben Thompson, there is a discussion on the paradox of AI leading to scarcity-driven financial outcomes, evident in the skyrocketing valuation of Nvidia. The scarcity of AI talent is also highlighted, with high financial rewards attracting individuals due to measurable outputs and universal work requirements. This shift towards individual importance in the AI space contrasts with historical tech norms where companies held more significance. Apple's struggle in retaining AI talent is noted, with their conservative approach to AI investment impacting their pace in AI model training. The tech industry's two philosophies are examined, with Google and Facebook focusing on aiding users in getting things done, while Apple and Microsoft prioritize aiding users in doing work better and more efficiently. The sustaining versus disruptive innovation concept is explored through Meta Platforms and Google's AI approaches. Microsoft's investment in OpenAI and the development of AI products like Copilot align with their philosophy of empowering employees through tools. Anthropic's focus on agentic workloads to replace human tasks showcases a vision of enhancing business results through advanced technology. The article underscores the evolving strategies and blurred boundaries among AI players in the constantly changing AI landscape."
},
{
"title": "Training AI is Not Fair Use?, LLMs and Scale, Pushing on a String",
"public_url": "https://stratechery.com/2025/training-ai-is-not-fair-use-llms-and-scale-pushing-on-a-string/",
"publish_date": "Mon, 07 Jul 2025 12:10:43 +0000",
"file_location": "./data/Training AI is Not Fair Use?, LLMs and Scale, Pushing on a String.md",
"summary": "Ben Thompson discusses Meta's recent fair use case victory concerning Large Language Models (LLMs). Despite the judge initially leaning against LLMs, it may be challenging for future rulings to be made against them. In the Frequently-Asked Questions section, Ben explains that Stratechery offers podcast subscriptions through the website's Delivery Preferences and prohibits sharing subscriptions but allows occasional forwarding of the Stratechery Update. Team subscriptions can be purchased, and subscribers can switch to an annual plan on their account page for a prorated discount. For annual subscribers needing a custom invoice, arrangements can be made by contacting Stratechery directly."
},
{
"title": "An Interview with Sierra Founder and CEO Bret Taylor About AI Agents and Tech History Lessons",
"public_url": "https://stratechery.com/2025/an-interview-with-sierra-founder-and-ceo-bret-taylor-about-ai-agents-and-tech-history-lessons/",
"publish_date": "Thu, 26 Jun 2025 09:55:36 +0000",
"file_location": "./data/An Interview with Sierra Founder and CEO Bret Taylor About AI Agents and Tech History Lessons.md",
"summary": "Ben interviews Sierra founder and CEO Bret Taylor about AI agents like GPT-3 and the importance of understanding tech history. Ben explains how to add podcasts to a podcast player and the differences between free and subscriber access. He also addresses sharing subscriptions, team purchases, switching to annual plans, affordable pricing, custom invoices, gifting subscriptions, and future plans for Passport."
},
{
"title": "Training AI is Fair Use, Product Protection Versus LLM Liability, Piracy and Competition",
"public_url": "https://stratechery.com/2025/training-ai-is-fair-use-product-protection-versus-llm-liability-piracy-and-competition/",
"publish_date": "Wed, 25 Jun 2025 13:55:26 +0000",
"file_location": "./data/Training AI is Fair Use, Product Protection Versus LLM Liability, Piracy and Competition.md",
"summary": "Ben discusses a significant victory for AI in a copyright decision and highlights its potential influence on future legislative action by Congress. In the Frequently-Asked Questions section, Ben explains that the Stratechery Update and Podcast subscriptions are for individual use only, not for sharing, with occasional forwards acceptable. Team subscriptions can be purchased for groups. Subscribers can switch to an annual plan with a prorated discount, while students have access at a reduced rate. Custom invoices are currently available for annual subscribers, with plans for native support in the future, and gift subscriptions can be obtained via the gifts page on the Stratechery website."
},
{
"title": "Talent Wars, NBA Money, AI Money",
"public_url": "https://stratechery.com/2025/talent-wars-nba-money-ai-money/",
"publish_date": "Tue, 24 Jun 2025 14:01:32 +0000",
"file_location": "./data/Talent Wars, NBA Money, AI Money.md",
"summary": "Ben Thompson discusses the escalating Talent Wars in the tech industry, where top AI talents are now commanding salaries comparable to NBA players, hinting that they may still be undervalued. He highlights the significant implications of these developments in the talent market. In the Frequently-Asked Questions section, Ben explains how subscribers can add Stratechery Podcasts to their favorite podcast player and read via RSS by creating a Stratechery Passport account. It is mentioned that sharing subscriptions or RSS feeds is against the Terms of Service, but team subscriptions and switching to an annual plan with a prorated discount are possible. Stratechery is intentionally priced affordably for everyone, including students, with custom invoices available for annual subscribers upon request. Gift subscriptions can be conveniently sent through the gifts page."
},
{
"title": "Checking In on AI and the Big Five",
"public_url": "https://stratechery.com/2025/checking-in-on-ai-and-the-big-five/",
"publish_date": "Mon, 23 Jun 2025 15:25:43 +0000",
"file_location": "./data/Checking In on AI and the Big Five.md",
"summary": "In Ben Thompson's January 2023 article \"Checking In on AI and the Big Five \u2013 Stratechery,\" he delves into the evolving landscape of artificial intelligence and its implications for major tech players. Apple's AI infrastructure is described as minimal, with a more sustaining than disruptive approach recommended, suggesting potential areas for expansion beyond phones. Google stands out for its strong infrastructure and model capabilities, notably Gemini, yet faces challenges due to heavy reliance on internal TPUs. Meta, akin to Apple, is advised to enhance its AI capabilities for personalized content and ads amidst growing competition. Microsoft's AI strategy, anchored by Azure and partnerships like OpenAI, requires continued evolution to sustain its competitive edge. Amazon's optimistic outlook stems from AI benefiting its diverse businesses, with a particular focus on AWS and strategic investments in AI chips. Model makers like OpenAI, Anthropic, and xAI face unique challenges and opportunities, with Meta's AI investments and uncertainties posing potential risks. Ben's nuanced analysis prompts reflection on the transformative potential of AI while cautioning against extreme views on its impact."
},
{
"title": "xAI Raising Money, xAI and Oracle, Xbox = Windows",
"public_url": "https://stratechery.com/2025/xai-raising-money-xai-and-oracle-xbox-windows/",
"publish_date": "Wed, 18 Jun 2025 14:37:51 +0000",
"file_location": "./data/xAI Raising Money, xAI and Oracle, Xbox = Windows.md",
"summary": "Ben Thompson discusses the gap in the adoption of xAI despite the desire for it, as well as the transformation of Xbox into a version of Windows. He also promotes a Stratechery Plus subscription, highlighting exclusive content like the daily Stratechery Update, Stratechery Interviews, and podcasts such as Dithering, Sharp Tech, Sharp China, and Greatest of All Talk. Subscription details and renewal information are provided at the end of the article. In the Frequently-Asked Questions section, Ben addresses adding the Stratechery Podcast to podcast players, reading Stratechery via RSS, sharing restrictions, team subscriptions, annual plan options, and gift subscriptions."
},
{
"title": "Microsoft-OpenAI Drama Continues, WhatsApp Ads, Channel Subscriptions and the Creator Perspective",
"public_url": "https://stratechery.com/2025/microsoft-openai-drama-continues-whatsapp-ads-channel-subscriptions-and-the-creator-perspective/",
"publish_date": "Tue, 17 Jun 2025 13:27:02 +0000",
"file_location": "./data/Microsoft-OpenAI Drama Continues, WhatsApp Ads, Channel Subscriptions and the Creator Perspective.md",
"summary": "Ben Thompson delves into the ongoing Microsoft-OpenAI drama, WhatsApp's new ads and subscriptions, and the creator perspective. He highlights the exclusive content available through a Stratechery Plus subscription, including podcasts like Dithering, Sharp Tech, Sharp China, and Greatest Of All Talk. Ben elaborates on the podcast formats and topics covered in Sharp Tech and Sharp China. In the Frequently-Asked Questions section, he explains how to subscribe to the Stratechery Podcast and clarifies sharing restrictions. Ben also provides details on team subscriptions, annual plan discounts, student accessibility, custom invoices, and gifting options."
},
{
"title": "WBD Split, HBO and Warner, Whither Sports?",
"public_url": "https://stratechery.com/2025/wbd-split-hbo-and-warner-whither-sports/",
"publish_date": "Mon, 16 Jun 2025 14:41:19 +0000",
"file_location": "./data/WBD Split, HBO and Warner, Whither Sports?.md",
"summary": "Ben discusses the split of WarnerBros. Discovery, originating from Turner Broadcasting, in the WBD Split section. He mentions subscribing to Stratechery Plus for access to exclusive content like the Stratechery Update, Stratechery Interviews, and various podcasts. The Stratechery Update offers in-depth analysis of daily news through three weekly emails or podcasts, while Stratechery Interviews feature conversations with industry leaders. The Frequently-Asked Questions section addresses how to subscribe to the Stratechery Podcast and access it through a preferred player, as well as reading via RSS with a Stratechery Passport account. Ben explains that subscriptions are for individual use only, though occasional forwarding is allowed, and annual plan upgrades can be done on the account page with a prorated discount. While there is no student discount, the pricing is kept affordable for all, including students, and gift subscriptions are available. Ben also touches on the potential addition of native custom invoice support for Passport subscriptions in the future."
},
{
"title": "An Interview with \"Apple in China\" Author Patrick McGee",
"public_url": "https://stratechery.com/2025/an-interview-with-apple-in-china-author-patrick-mcgee/",
"publish_date": "Thu, 12 Jun 2025 09:54:34 +0000",
"file_location": "./data/An Interview with \"Apple in China\" Author Patrick McGee.md",
"summary": "Ben discusses how Apple shifted its manufacturing to outsourcing, a change that led to a significant power shift within its supply chain. Patrick McGee explores Apple's evolution in the context of its reliance on external manufacturers, showcasing the company's shift from being in a dominant position to being more reliant and interconnected with its suppliers. In the Frequently-Asked Questions section, Ben explains how to subscribe to the Stratechery Podcast, directing listeners to visit their Delivery Preferences after subscribing for easy instructions on adding the podcast to their favorite player. He clarifies that Stratechery can be read via RSS and mentions the prohibition of sharing accounts due to Terms of Service violations. Ben also notes the availability of team subscriptions, annual plan switches, student discounts, and the option to create custom invoices for annual subscribers. Additionally, gifting a Stratechery subscription can be done by visiting the designated gifts page."
},
{
"title": "Meta + Scale AI?, Meta's Reset, AI as Sustaining Innovation",
"public_url": "https://stratechery.com/2025/meta-scale-ai-metas-reset-ai-as-sustaining-innovation/",
"publish_date": "Wed, 11 Jun 2025 14:02:14 +0000",
"file_location": "./data/Meta + Scale AI?, Meta's Reset, AI as Sustaining Innovation.md",
"summary": "In the analysis by Ben Thompson on Stratechery, he discusses Meta's reported acquisition of 49% of Scale AI and the appointment of CEO Alexandr Wang, suggesting that the deal is more aimed at addressing Meta's Llama issues rather than focusing solely on Scale AI. Moving on to the Frequently-Asked Questions section, Ben clarifies that to subscribe to the Stratechery Podcast, one must visit the Delivery Preferences page post-subscription for instructions. He also mentions that sharing subscriptions is not allowed, but teams can purchase them, and individuals can switch to an annual plan at a discounted rate. Stratechery aims to be affordable for all users, including students, and custom invoices are available upon request for annual subscribers."
},
{
"title": "Apple Retreats",
"public_url": "https://stratechery.com/2025/apple-retreats/",
"publish_date": "Tue, 10 Jun 2025 14:01:39 +0000",
"file_location": "./data/Apple Retreats.md",
"summary": "In \"Apple Retreats,\" Ben Thompson discusses Apple's acknowledgment of last year's mistakes at WWDC regarding unfulfilled AI promises for Siri, and how the company is now retracting from overpromising, as seen in their decision to decline an invite for a podcast with John Gruber. Marco Arment suggests Apple may be avoiding unscripted interviews to manage PR challenges, indicating an overall retreat to safety. Despite criticism, Ben suggests that Apple's withdrawal could be a strategic move. In \"Apple\u2019s Retreat to Its Core Competency,\" Ben highlights Apple's emphasis on design, like the Liquid Glass introduction, showcasing the company's strength in creating unified hardware and software experiences. He mentions how Apple's focus on device integration and Continuity features sets them apart from competitors, underscoring the positive impact of concentrating on core competencies over venturing into AI. \"Apple\u2019s Retreat to Empowering Developers and Partners\" explores Apple's pivot towards supporting app developers with frameworks like the Foundation Models and collaborating with OpenAI. By integrating ChatGPT deeply into Xcode, Apple is embracing a strategy of working with foundational model creators rather than handling AI entirely in-house, a move crucial for future success. \"Apple\u2019s \\[Forced\\] Retreat to App Store Sanity\" suggests Apple may divide the App Store, focusing on gaming with a 70/30 revenue split, while considering a more favorable split for non-gaming apps. Legal battles and regulatory pressures, like the Ninth Circuit Court ruling and the EU's DMA, could challenge Apple's control and integration practices, impacting its unique market position. In \"Retreat and Reset,\" Ben draws parallels between Apple's Liquid Glass and Microsoft's past strategic adjustments following Windows 8's missteps, highlighting Apple's renewed focus on developer empowerment and partner collaborations at WWDC. Although Apple may have missed the AI trend, their retreat towards sustainable strategies could be a positive move forward, indicative of a strategic reset."
},
{
"title": "Vibe Coding, Windsurf and Anthropic, ChatGPT Connectors",
"public_url": "https://stratechery.com/2025/vibe-coding-windsurf-and-anthropic-chatgpt-connectors/",
"publish_date": "Mon, 09 Jun 2025 10:44:58 +0000",
"file_location": "./data/Vibe Coding, Windsurf and Anthropic, ChatGPT Connectors.md",
"summary": "Ben discusses the concept of AI coding, emphasizing how it extends beyond vibe coding. He dives into the intricacies of AI coding dynamics and explains OpenAI's ambition to dominate the field comprehensively. In the Frequently-Asked Questions section, Ben explains how to subscribe to the Stratechery Podcast and access Stratechery via RSS, clarifying that sharing subscriptions with friends is not allowed. He also highlights various subscription options available like team subscriptions, annual plan upgrades, student discounts, custom invoices, and gifting subscriptions."
},
{
"title": "An Interview with Cursor Co-Founder and CEO Michael Truell About Coding With AI",
"public_url": "https://stratechery.com/2025/an-interview-with-cursor-co-founder-and-ceo-michael-truell-about-coding-with-ai/",
"publish_date": "Thu, 05 Jun 2025 10:24:08 +0000",
"file_location": "./data/An Interview with Cursor Co-Founder and CEO Michael Truell About Coding With AI.md",
"summary": "Ben discusses the interview with Michael Truell, focusing on AI coding and the importance of integrating AI into the value chain effectively. He delves into the critical points Truell highlighted regarding the role of AI in the coding process and its impact on various aspects of the industry. In the Frequently-Asked Questions section, Ben explains how to subscribe to the Stratechery Podcast, clarifies that a Stratechery Update subscription should not be shared, outlines the process of purchasing a team subscription, switching to an annual plan, and sending a subscription as a gift."
},
{
"title": "Anduril + Meta, Silicon Valley and the Pentagon, Meta's Motivations",
"public_url": "https://stratechery.com/2025/anduril-meta-silicon-valley-and-the-pentagon-metas-motivations/",
"publish_date": "Wed, 04 Jun 2025 10:52:32 +0000",
"file_location": "./data/Anduril + Meta, Silicon Valley and the Pentagon, Meta's Motivations.md",
"summary": "Ben Thompson discusses Meta's deal with Anduril to develop military headsets. He questions if this collaboration will justify Reality Labs' investment. The article promotes the subscription service, Stratechery Plus, offering exclusive content like the Stratechery Update and various podcasts. Ben provides subscription instructions in the Stratechery Podcast, including RSS access via a Stratechery Passport account. Sharing subscriptions is not allowed, but occasional forwarding is acceptable. Teams can buy subscriptions, individuals can switch to annual plans for discounts, and custom invoices are available upon request. There are no student discounts, but gifting subscriptions is possible through the gifts page."
},
{
"title": "Nike on Amazon; Nike's Disastrous Pivot; Inevitability, Intentionality, and Amazon",
"public_url": "https://stratechery.com/2025/nike-on-amazon-nikes-disastrous-pivot-inevitability-intentionality-and-amazon/",
"publish_date": "Tue, 03 Jun 2025 12:24:43 +0000",
"file_location": "./data/Nike on Amazon; Nike's Disastrous Pivot; Inevitability, Intentionality, and Amazon.md",
"summary": "Ben discusses how Nike's failed direct-to-consumer (D2C) strategy led to a partnership with Amazon. Despite initial challenges, teaming up with Amazon could benefit Nike in the long run. In the Frequently-Asked Questions section, Ben explains how to subscribe to the Stratechery Podcast and access it via RSS. He notes restrictions on sharing subscriptions but allows occasional forwarding of updates. Team subscriptions, annual plans, and student discounts are available, with custom invoices for annual subscribers. A potential upcoming feature is native support for custom invoices in Passport. For gifting subscriptions, there is a designated gifts page."
},
{
"title": "Nvidia Earnings, Nvidia's China Argument, NVLink Fusion",
"public_url": "https://stratechery.com/2025/nvidia-earnings-nvidias-china-argument-nvlink-fusion/",
"publish_date": "Mon, 02 Jun 2025 13:38:26 +0000",
"file_location": "./data/Nvidia Earnings, Nvidia's China Argument, NVLink Fusion.md",
"summary": "Ben analyzes Nvidia's recent earnings report, emphasizing the company's focus on the growing trend in inference and potential challenges from losing the China market. He also discusses Nvidia's strategic shift towards dominating networking for a broader audience, highlighting the benefits of subscribing to Stratechery Plus for exclusive content like the Stratechery Update, interviews, and various podcasts covering tech, China, NBA, and more. Additionally, Ben answers a series of Frequently Asked Questions related to subscribing, sharing, team subscriptions, annual plans, student discounts, custom invoices, and gifting subscriptions, providing clarity on subscription options and sharing policies."
},
{
"title": "An Interview with Plaid Founder and CEO Zach Perret About Plumbing Trust",
"public_url": "https://stratechery.com/2025/an-interview-with-plaid-founder-and-ceo-zach-perret-about-plumbing-trust/",
"publish_date": "Thu, 29 May 2025 10:14:26 +0000",
"file_location": "./data/An Interview with Plaid Founder and CEO Zach Perret About Plumbing Trust.md",
"summary": "In the interview with Plaid's Zach Perret on Stratechery by Ben Thompson, the focus is on the importance of building trust as an ingredient brand in financial services. Ben outlines the various subscription options available through Stratechery Plus, including access to the Stratechery Update and Stratechery Interviews, as well as podcasts like Dithering, Sharp Tech, Sharp China, and Greatest of All Talk. The Stratechery Updates provide in-depth news analysis through three weekly emails or podcasts, while the Stratechery Interviews feature conversations with public CEOs, private company founders, and analysts. The diverse podcast offerings cover a wide range of topics, from technology's impact on society to insights on China, the NBA, and national parks. In the Frequently-Asked Questions section, Ben clarifies the subscription sharing policy, the option for team subscriptions, how to switch to an annual plan, and Stratechery's intentionally low pricing to make it accessible to all, including students."
},
{
"title": "The ESPN Streaming Service, The Status of U.S. Sports Rights, The Danger of Intentionality",
"public_url": "https://stratechery.com/2025/the-espn-streaming-service-the-status-of-u-s-sports-rights-the-danger-of-intentionality/",
"publish_date": "Wed, 28 May 2025 13:04:19 +0000",
"file_location": "./data/The ESPN Streaming Service, The Status of U.S. Sports Rights, The Danger of Intentionality.md",
"summary": "Ben Thompson delves into the implications of the official launch of the ESPN streaming service, noting the shift in intentionality in sports consumption. He explores the strategic impacts of this move on the sports media landscape. In the Frequently-Asked Questions section, Ben provides clarity on subscribing to the Stratechery podcast, accessing it through a preferred podcast player, reading Stratechery via RSS, sharing subscriptions, purchasing team subscriptions, switching to an annual plan, offering student discounts, creating custom invoices, and gifting subscriptions."
},
{
"title": "Claude 4, Anthropic Agents, Human-AI Agents",
"public_url": "https://stratechery.com/2025/claude-4-anthropic-agents-human-ai-agents/",
"publish_date": "Tue, 27 May 2025 13:31:04 +0000",
"file_location": "./data/Claude 4, Anthropic Agents, Human-AI Agents.md",
"summary": "In \"Claude 4, Anthropic Agents, Human-AI Agents \u2013 Stratechery by Ben Thompson,\" Ben Thompson discusses Anthropic's focus on the agent opportunity and the need for scaffolding, pointing out the untapped potential in multi-user AI chatbots. He promotes a subscription to Stratechery Plus for access to exclusive content like the Stratechery Update, Stratechery Interviews, and podcasts including Sharp Tech, Sharp China, Dithering, Greatest of All Talk, and Asianometry. Ben also highlights the diverse range of content available through Stratechery Plus, such as in-depth analysis of current events, interviews with prominent figures, technology-focused podcasts, and discussions on China's influence. In the \"Frequently-Asked Questions\" section, Ben clarifies that subscribers can adjust their Delivery Preferences to add the Stratechery Podcast to their preferred podcast player. Sharing subscriptions is prohibited under the Terms of Service, although occasional forwarding of updates is allowed. Team subscriptions are available, and individuals can switch to an annual plan by selecting the Annual upgrade option on their account page. Ben mentions that student discounts are not offered due to the already low price of Stratechery, ensuring accessibility for all readers."
},
{
"title": "OpenAI Acquires io, OpenAI's Strategic Positioning, Apple's Worsening AI Problem",
"public_url": "https://stratechery.com/2025/openai-acquires-io-openais-strategic-positioning-apples-worsening-ai-problem/",
"publish_date": "Thu, 22 May 2025 10:12:26 +0000",
"file_location": "./data/OpenAI Acquires io, OpenAI's Strategic Positioning, Apple's Worsening AI Problem.md",
"summary": "Ben discusses OpenAI's acquisition of Jony Ive's hardware company, io, questioning whether the move is aimed at challenging Apple directly. He emphasizes the need for Apple to make significant investments in response to this development. In the Frequently-Asked Questions section, Ben clarifies various subscription queries, mentioning individual use, team subscriptions, annual plan upgrades, and student discounts. He talks about creating custom invoices for annual subscribers, hints at adding native support for custom invoices in Passport, and confirms the option to give subscriptions as gifts through the specific gifts page."
},
{
"title": "Google I/O, The Search Funnel, Product Possibilities",
"public_url": "https://stratechery.com/2025/google-i-o-the-search-funnel-product-possibilities/",
"publish_date": "Wed, 21 May 2025 14:25:47 +0000",
"file_location": "./data/Google I/O, The Search Funnel, Product Possibilities.md",
"summary": "Ben Thompson from Stratechery found Google I/O overwhelming but impressive, with Search being the standout product. The article also promotes the subscription-based offering, Stratechery Plus, providing access to exclusive content like the Stratechery Update and podcasts such as Sharp Tech and Sharp China. Ben answers Frequently-Asked Questions regarding adding the Stratechery Podcast to favorite players, reading via RSS with a Stratechery Passport account, and clarifies sharing subscription content against Terms of Service. Team subscriptions are available, and individuals can switch to an annual plan. Stratechery keeps prices low for accessibility, including to students, and can provide custom invoices upon request after subscribing or upgrading to an annual plan."
},
{
"title": "The Agentic Web and Original Sin",
"public_url": "https://stratechery.com/2025/the-agentic-web-and-original-sin/",
"publish_date": "Tue, 20 May 2025 14:48:00 +0000",
"file_location": "./data/The Agentic Web and Original Sin.md",
"summary": "Ben Thompson, in his article \"The Agentic Web and Original Sin \u2013 Stratechery,\" counters Marc Andreessen's idea of integrating payments directly into browsers as a better alternative to advertising for monetizing digital content, citing the success of subscription models in providing ongoing, well-defined value to users. He predicts a continued growth in subscription-based approaches, especially with the emergence of AI-driven content in a digitally abundant era. Ben also delves into the decline of the ad-supported web, attributing it to bad incentives and unsustainable economics, as well as Google's influence in directing users to monetized sites. He expresses concerns about the future of ad-supported content sites amidst shifting user behaviors and the rise of walled gardens and advanced AI technologies. Ben further explores Microsoft's concept of an Open Agentic Web and the importance of agents being able to act on users' behalf, highlighting the need for clear revenue streams to incentivize websites to adapt to this model effectively. He also discusses the potential of stablecoins in addressing micro-transaction challenges, envisioning a new marketplace driven by stablecoin payments, AI-driven auctions, and incentivized high-quality content creation for a mutually beneficial ecosystem involving content producers, AI, and consumers."
},
{
"title": "An Interview with Nvidia CEO Jensen Huang About Chip Controls, AI Factories, and Enterprise Pragmatism",
"public_url": "https://stratechery.com/2025/an-interview-with-nvidia-ceo-jensen-huang-about-chip-controls-ai-factories-and-enterprise-pragmatism/",
"publish_date": "Mon, 19 May 2025 12:58:57 +0000",
"file_location": "./data/An Interview with Nvidia CEO Jensen Huang About Chip Controls, AI Factories, and Enterprise Pragmatism.md",
"summary": "In an article titled \"An Interview with Nvidia CEO Jensen Huang About Chip Controls, AI Factories, and Enterprise Pragmatism\" by Ben Thompson, the interview with Jensen Huang covers a wide range of topics. They discuss Nvidia's control over the supply chain through acquiring Arm, highlighting the company's leadership in AI and its impact on various industries. There's also mention of Nvidia's pragmatic approach to enterprise solutions and client-centric product development. In \"Arab AI and the Chip Diffusion Rule,\" Ben explores Jensen Huang's views on the company's involvement in the AI industry, focusing on solving complex industry problems and building a global AI technology platform. The section \"Nvidia and China\" delves into Huang's strategic insights on competing in China to shape policies effectively and prevent missing out on progress. \"AI GDP Growth\" discusses how Huang anticipated AI's role in boosting the GDP and job creation through increased productivity. The \"Dynamo and Full-Stack Nvidia\" section captures Jensen Huang's keynote on data center energy optimization and the development of the Dynamo ecosystem. \"Enterprise AI and Pragmatism\" emphasizes Nvidia's commitment to performance-per-watt and flexible integration to meet customer preferences. Finally, in \"Whither Gaming,\" Huang underscores the importance of GeForce beyond gaming, touching on complex driver development and Nvidia's open-source approach."
},
{
"title": "Airbnb's New App, Experiences and Services, Chesky's Founder Mode",
"public_url": "https://stratechery.com/2025/airbnbs-new-app-experiences-and-services-cheskys-founder-mode/",
"publish_date": "Wed, 14 May 2025 12:26:44 +0000",
"file_location": "./data/Airbnb's New App, Experiences and Services, Chesky's Founder Mode.md",
"summary": "Ben Thompson discusses Airbnb's new app, evaluating its new experience and service offerings for economic viability. Subscription to Stratechery Plus provides access to exclusive content like the Stratechery Update, Stratechery Interviews, and podcasts such as Sharp Tech, Sharp China, Dithering, and Greatest of All Talk for $15 monthly or $150 annually. In the Frequently-Asked Questions section, Ben clarifies that subscriptions are for individual use only, with team subscriptions available for purchase. Subscribers can switch to an annual plan via their account page, as Stratechery aims to be affordable for everyone, including students. Custom invoices are presently exclusive to annual subscribers, with plans to expand this feature in the future, while subscriptions can be gifted through the dedicated gifts page."
},
{
"title": "OpenAI Restructuring, Microsoft's Rights, Simo and Windsurf",
"public_url": "https://stratechery.com/2025/openai-restructuring-microsofts-rights-simo-and-windsurf/",
"publish_date": "Tue, 13 May 2025 06:48:38 +0000",
"file_location": "./data/OpenAI Restructuring, Microsoft's Rights, Simo and Windsurf.md",
"summary": "Ben Thompson discusses in his article on Stratechery how OpenAI is repositioning itself to become the primary interface for AI technology, with Microsoft's ownership of exclusive rights to GPT-3 being a key strategic move. He also touches on Simo, a new audio-based social network platform, and Windsurf, a VR surfing game adding to the tech landscape. In the Frequently-Asked Questions section, Ben elaborates on subscribing to the Stratechery Podcast, accessing the platform via RSS, sharing subscriptions (not including the Stratechery Update), team subscriptions, switching to annual plans, custom invoices for annual subscribers, and gifting subscriptions through the website."
},
{
"title": "An Interview with SAP CEO Christian Klein About Enterprise AI",
"public_url": "https://stratechery.com/2025/an-interview-with-sap-ceo-christian-klein-about-enterprise-ai/",
"publish_date": "Fri, 09 May 2025 09:13:27 +0000",
"file_location": "./data/An Interview with SAP CEO Christian Klein About Enterprise AI.md",
"summary": "Ben Thompson's interview with SAP CEO Christian Klein offers a deep dive into Klein's career trajectory, from starting as a teenage intern at SAP to becoming CEO at just 39. Klein's leadership focuses on transitioning SAP to the cloud, consolidating offerings, and embracing the AI era through partnerships like that with Databricks for the SAP Business Data Cloud. The conversation delves into the importance of Trust and Transparency in AI, highlighting SAP's commitment to sustainable and ethical practices. Klein's journey showcases his evolution from desiring to be a professional athlete to finding his passion for business processes and technology, with SAP's vocational student program playing a crucial role in his career advancement. Under Klein's leadership, SAP has shifted towards a customer-centric approach, infusing AI into business processes, emphasizing partnerships and integration, and highlighting the value of the SAP Business Network and strategic alliances with major cloud providers like AWS and Azure. Klein believes in the best-of-suite strategy for seamless end-to-end processes and highlights the need for change management to drive successful AI adoption. In terms of competition, SAP's strong data foundation, suite-first approach, and strategic partnerships position it well in the market, with potential for a marketplace of data products through collaborations like the one with Databricks. Overall, the interview provides insights into SAP's strategic direction under Klein's leadership, emphasizing innovation, customer-centricity, and adaptability in the enterprise AI landscape."
},
{
"title": "Microsoft Earnings, Microsoft's Core Capability, Amazon Earnings",
"public_url": "https://stratechery.com/2025/microsoft-earnings-microsofts-core-capability-amazon-earnings/",
"publish_date": "Wed, 07 May 2025 13:00:44 +0000",
"file_location": "./data/Microsoft Earnings, Microsoft's Core Capability, Amazon Earnings.md",
"summary": "In Ben Thompson's article \"Microsoft Earnings, Microsoft\u2019s Core Capability, Amazon Earnings \u2013 Stratechery,\" he delves into how Microsoft and Amazon approach AI in alignment with their core competencies. Microsoft's recent earnings reflect its strengths in cloud computing, while Amazon's earnings highlight its focus on customer-centric AI applications. In the \"Frequently-Asked Questions\" section, Ben details how to access the Stratechery Podcast through Delivery Preferences on the website and how to read Stratechery via RSS with a Stratechery Passport account. He specifies that sharing subscriptions is not allowed but occasional forwarding is acceptable, and team and annual subscriptions come with discounts and benefits like personalized invoices and gifting options."
},
{
"title": "Meta Earnings, Meta's Deteriorating Ad Metrics, CapEx Meta",
"public_url": "https://stratechery.com/2025/meta-earnings-metas-deteriorating-ad-metrics-capex-meta/",
"publish_date": "Tue, 06 May 2025 13:17:26 +0000",
"file_location": "./data/Meta Earnings, Meta's Deteriorating Ad Metrics, CapEx Meta.md",
"summary": "In \"Meta Earnings,\" Ben discusses how Meta's recent earnings report was well-received by investors despite concerns over deteriorating ad metrics. He emphasizes the importance of paying attention to these indicators despite the positive market response. In the \"Frequently-Asked Questions\" section, Ben explains how subscribers can access the Stratechery Podcast, use RSS feeds to access content, and purchase team subscriptions or switch to an annual plan with a prorated discount. He also mentions the option to gift a subscription through the provided gifts page."
},
{
"title": "Platform Power Is Underrated",
"public_url": "https://stratechery.com/2025/platform-power-is-underrated/",
"publish_date": "Mon, 05 May 2025 15:12:09 +0000",
"file_location": "./data/Platform Power Is Underrated.md",
"summary": "In Ben Thompson's article \"Platform Power Is Underrated \u2013 Stratechery,\" Ben reflects on past errors in his analysis, particularly regarding the App Store, acknowledging his evolving perspective on platform power. He delves into Apple's anticompetitive App Store practices, as highlighted by Judge Gonzalez Rogers, and discusses recent developments challenging Apple's dominance, such as Spotify's use of external links to inform users about offers. Ben explores the chicken-and-egg problem faced by platform builders, emphasizing the role of users in driving developer incentives. He contrasts past and present tech markets, noting Meta's shift towards product innovation potentially leading to future platform development. Ben addresses the concept of takings, considering Apple's ownership of user demand as a crucial asset and the need for clear laws to regulate powerful platforms for the public interest."
},
{
"title": "Apple Held in Contempt, The Crux of the Case, The Takings Clause",
"public_url": "https://stratechery.com/2025/apple-held-in-contempt-the-crux-of-the-case-the-takings-clause/",
"publish_date": "Fri, 02 May 2025 09:22:02 +0000",
"file_location": "./data/Apple Held in Contempt, The Crux of the Case, The Takings Clause.md",
"summary": "In the article \"Apple Held in Contempt, The Crux of the Case, The Takings Clause \u2013 Stratechery by Ben Thompson,\" Ben discusses the severe ruling against Apple for non-compliance in the Epic case, while also recognizing a potential win on appeal. He delves into the implications of Apple being held in contempt and the broader significance of the case. In the \"Frequently-Asked Questions\" section, Ben explains how subscribers can add the Stratechery Podcast to their preferred podcast player and gives insights on sharing subscriptions, team subscriptions, annual plans, and student affordability. He mentions custom invoices for annual subscribers and the option to gift a subscription through the Stratechery website."
},
{
"title": "An Interview with Meta CEO Mark Zuckerberg About AI and the Evolution of Social Media",
"public_url": "https://stratechery.com/2025/an-interview-with-meta-ceo-mark-zuckerberg-about-ai-and-the-evolution-of-social-media/",
"publish_date": "Thu, 01 May 2025 09:54:26 +0000",
"file_location": "./data/An Interview with Meta CEO Mark Zuckerberg About AI and the Evolution of Social Media.md",
"summary": "Ben Thompson interviews Meta CEO Mark Zuckerberg about AI and the evolution of social media. They discuss Meta's platform ambitions, the Llama API, and the balance between GPU opportunity cost and training costs. Zuckerberg emphasizes the importance of video in social media's future, the shift to the metaverse, and Meta's focus on AI to personalize user experiences. From the history of F8 conferences to the new LlamaCon developer event, Zuckerberg highlights the importance of adapting to change and promoting open platforms. The release of the Llama API aims to simplify open-source usage, while Meta's open-source strategy focuses on enhancing its ad business and business messaging opportunities. The evolution of social networking into content-focused discovery engines is examined, with Zuckerberg noting the importance of messaging for nuanced social interactions. They delve into Meta AI's potential in business messaging, recommending products, and enhancing subscription revenue. The Meta AI app's vision as a personalized assistant for social interactions is discussed, alongside challenges in market positioning and integration with existing platforms. The impact of tariffs on Meta's business, their focus on developing AR glasses, and the potential of AR and VR in the future market are explored, with Zuckerberg envisioning glasses as future \"phones\" and VR as the future \"TV.\""
},
{
"title": "Amazon, Trump, and Tariff Costs; Amazon Haul and Temu; Political Lessons",
"public_url": "https://stratechery.com/2025/amazon-trump-and-tariff-costs-amazon-haul-and-temu-political-lessons/",
"publish_date": "Wed, 30 Apr 2025 12:42:08 +0000",
"file_location": "./data/Amazon, Trump, and Tariff Costs; Amazon Haul and Temu; Political Lessons.md",
"summary": "Ben highlights the importance of companies like Amazon considering political risk factors, as shown in their clash with the White House over tariffs. Subscribers to Stratechery Plus gain access to various benefits including the Stratechery Update, Stratechery Interviews, and podcasts like Dithering, Sharp Tech, Sharp China, and Greatest Of All Talk for in-depth insights on technology, China, and the NBA. Subscriptions auto-renew monthly/annually but can be canceled at any time. Ben explains subscription details, including how to access the Stratechery Podcast, sharing restrictions, team subscriptions, and switching to an annual plan with immediate prorated charges. Stratechery's affordable pricing aims to be inclusive, with custom invoices available for annual subscribers upon request."
},
{
"title": "Intel Earnings, TSMC Earnings",
"public_url": "https://stratechery.com/2025/intel-earnings-tsmc-earnings/",
"publish_date": "Tue, 29 Apr 2025 09:59:14 +0000",
"file_location": "./data/Intel Earnings, TSMC Earnings.md",
"summary": "Ben Thompson discussed the recent earnings reports of Intel and TSMC in his article. He highlighted Intel's impressive results and TSMC's technological leadership, benefiting from the ongoing chip shortage. Ben emphasized Intel's future strategy, including Foundry Services, as crucial for its growth and relevance in the semiconductor industry, while underscoring TSMC's dominance and the importance of their technology and scale advantage in the market. In the Frequently-Asked Questions section, Ben explained how to subscribe to the Stratechery Podcast and access Stratechery via RSS. He clarified that subscriptions are for individual use only and mentioned team subscriptions and the option to switch to an annual plan for a prorated discount. Ben also noted the deliberate affordability of Stratechery subscriptions, absence of student discounts, and plans for offering custom invoices to annual subscribers in the future."
},
{
"title": "Google Earnings, Search and AI, Building AI Products",
"public_url": "https://stratechery.com/2025/google-earnings-search-and-ai-building-ai-products/",
"publish_date": "Mon, 28 Apr 2025 10:30:59 +0000",
"file_location": "./data/Google Earnings, Search and AI, Building AI Products.md",
"summary": "In the article \"Google Earnings, Search and AI, Building AI Products \u2013 Stratechery by Ben Thompson,\" Ben explores Google's focus on the competition between Search + AI and the potential for AI to surpass Search. The Stratechery Plus subscription offers access to the Stratechery Update, Stratechery Interviews, and various podcasts, such as Dithering, Sharp Tech, Sharp China, and Greatest of All Talk. Subscribers can receive updates via SMS, RSS, or the website, with detailed information on the schedule and subscription management. In the \"Frequently-Asked Questions\" section, Ben addresses adding the Stratechery Podcast to a podcast player, reading Stratechery via RSS, sharing restrictions, team subscriptions, annual plan switches, lack of student discounts, custom invoices for annual subscribers, a forthcoming feature for custom invoices in Passport, and gifting subscriptions through the website's dedicated page."
},
{
"title": "An Interview with Eric Seufert About Digital Advertising During Political Uncertainty",
"public_url": "https://stratechery.com/2025/an-interview-with-eric-seufert-about-digital-advertising-during-political-uncertainty/",
"publish_date": "Thu, 24 Apr 2025 09:56:45 +0000",
"file_location": "./data/An Interview with Eric Seufert About Digital Advertising During Political Uncertainty.md",
"summary": "Ben and Eric discuss the impact of the trade war on digital advertising, highlighting potential consequences for marketing strategies and budgets. They also touch on the Google Ads antitrust case and its significant ramifications for the advertising ecosystem. Despite ongoing challenges and regulatory scrutiny, the conversation explores why the largest platforms continue to dominate the advertising space. Ben explains how to subscribe to the Stratechery Podcast, add it to a favorite podcast player, and read Stratechery via RSS with a Stratechery Passport account. He clarifies subscription sharing rules and mentions team subscriptions, annual plan switches, student discounts, custom invoices for annual subscribers, and sending gift subscriptions through the gifts page."
},
{
"title": "Netflix Earnings, Netflix's Growth Plans, Ads and Price Segmentation",
"public_url": "https://stratechery.com/2025/netflix-earnings-netflixs-growth-plans-ads-and-price-segmentation/",
"publish_date": "Wed, 23 Apr 2025 13:05:54 +0000",
"file_location": "./data/Netflix Earnings, Netflix's Growth Plans, Ads and Price Segmentation.md",
"summary": "In the article by Ben Thompson on Stratechery, discussing Netflix's recent earnings report, Netflix showed strong financial performance in the first quarter with record profit and successful program offerings. Co-CEOs Greg Peters and Ted Sarandos assured stakeholders of Netflix's long-term growth aspirations, emphasizing the company's potential to expand its audience, revenue, and engagement globally. Ben also analyzed Netflix's ambitious growth plans reported by the Wall Street Journal, highlighting revenue growth targets and the anticipated impact of new ad-supported members and price increases. Furthermore, Ben noted the significance of Netflix's recent price increases and the success of introducing ads as a means to drive revenue growth through price segmentation strategies."
},
{
"title": "Apple and the Ghosts of Companies Past",
"public_url": "https://stratechery.com/2025/apple-and-the-ghosts-of-companies-past/",
"publish_date": "Tue, 22 Apr 2025 11:03:16 +0000",
"file_location": "./data/Apple and the Ghosts of Companies Past.md",
"summary": "In Ben Thompson's article \"Apple and the Ghosts of Companies Past \u2013 Stratechery,\" he discusses Apple's challenges with Liberation Day tariffs, AI delivery, and Siri promises. Despite these hurdles, the long-term success of Apple should be considered by reflecting on historical examples of companies that lost their future. Moving on to \"Microsoft and the Internet,\" Ben draws parallels between Microsoft's Internet journey and Apple's AI endeavors, highlighting the importance of openness in shaping tech landscapes. As for \"Intel and the Foundry Model,\" Ben explores Intel's history, struggles in the mobile era, late entry into the foundry business, and declining industry position. These stories serve as cautionary tales to reflect on the potential trajectories of companies like Apple."
},
{
"title": "Google Loses Ad Antitrust Case, Market Definitions and Tying, The Trinko Exception",
"public_url": "https://stratechery.com/2025/google-loses-ad-antitrust-case-market-definitions-and-tying-the-trinko-exception/",
"publish_date": "Mon, 21 Apr 2025 12:17:33 +0000",
"file_location": "./data/Google Loses Ad Antitrust Case, Market Definitions and Tying, The Trinko Exception.md",
"summary": "Ben discusses Google losing its ad antitrust case and how it could impact all Aggregators. Subscribers to Stratechery Plus gain access to exclusive content like the Stratechery Update, Interviews, podcasts such as Sharp Tech and Sharp China, and Dithering - a podcast by Ben and John Gruber. The subscription also provides access to The Greatest of All Talk podcast and various delivery options for the Stratechery Updates. Ben clarifies various subscription-related FAQs, including how to subscribe to the Stratechery Podcast, read via RSS, purchase a team subscription, switch to an annual plan, the absence of a student discount, creating custom invoices for annual subscribers, and the option to gift a subscription."
},
{
"title": "An Interview with Dan Kim and Hassan Khan About CHIPS",
"public_url": "https://stratechery.com/2025/an-interview-with-dan-kim-and-hassan-khan-about-chips/",
"publish_date": "Thu, 17 Apr 2025 11:03:30 +0000",
"file_location": "./data/An Interview with Dan Kim and Hassan Khan About CHIPS.md",
"summary": "In an interview with Dan Kim and Hassan Khan about the CHIPS program, Dan and Hassan share insights on the program's goals, the balance between subsidizing supply and coercing demand, and the role of government in a free market. The interview delves into their considerations regarding leading-edge versus trailing-edge technologies and their optimism that the CHIPS program could serve as a blueprint for U.S. industrial policy in the future. Ben discusses how CHIPS (Creating Helpful and Insightful Personalized Services) was created by Dan Kim and Hassan Khan to help improve student mental health through a peer-support model, leveraging technology and data analytics to pair students with the most suitable peer support. Dan and Hassan discuss their backgrounds and experiences leading up to their involvement in the Biden administration's efforts regarding semiconductors and technology, highlighting the intense yet rewarding nature of their work. They share their challenges and strategies at CHIPS, focusing on evaluating companies through the 4 C\u2019s framework and addressing issues like cost competitiveness and industrial policy. The conversation also covers the importance of the foundry model, the balance between supply and demand in the semiconductor industry, the role of government in shaping industrial policy, and the significance of considering leading-edge versus trailing-edge technologies in government evaluations and program outcomes. The interview emphasizes the importance of collaboration, adaptability, and bipartisan consensus in navigating uncertainties and leveraging American innovation for global advancement."
},
{
"title": "Nvidia H20 Restricted in China, The Huawei CloudMatrix 384, Whither Chip Controls",
"public_url": "https://stratechery.com/2025/nvidia-h20-restricted-in-china-the-huawei-cloudmatrix-384-whither-chip-controls/",
"publish_date": "Wed, 16 Apr 2025 12:35:27 +0000",
"file_location": "./data/Nvidia H20 Restricted in China, The Huawei CloudMatrix 384, Whither Chip Controls.md",
"summary": "Ben Thompson discusses in his article about Nvidia facing regulatory challenges in China with the H20 chip, resulting in a $5.5 billion charge for restricted exports. The H20 chip's limitations make it unsuitable for U.S. supercomputer threats, signifying the end of Nvidia's AI accelerator sales in China. Meanwhile, Huawei launches the CloudMatrix 384, a powerful AI infrastructure architecture challenging Nvidia's offerings, fueled by China's infrastructure production capabilities. Despite import restrictions affecting Huawei's supply chain, TSMC's involvement raises concerns about violations. Ben presents a nuanced view on chip controls, advocating against them while acknowledging their impact on Huawei's capabilities and U.S. AI competitiveness. The developments underscore China's push for chip self-sufficiency, posing challenges for Nvidia's market dominance and future industry dynamics."
},
{
"title": "Meta v. FTC, The Three Facebook Eras, Video Slop and Market Forces",
"public_url": "https://stratechery.com/2025/meta-v-ftc-the-three-facebook-eras-video-slop-and-market-forces/",
"publish_date": "Tue, 15 Apr 2025 12:55:18 +0000",
"file_location": "./data/Meta v. FTC, The Three Facebook Eras, Video Slop and Market Forces.md",
"summary": "In the article \"Meta v. FTC, The Three Facebook Eras, Video Slop and Market Forces \u2013 Stratechery by Ben Thompson,\" Ben argues that the FTC's case against Facebook is flawed as it overlooks the distinction between the three eras of the company, emphasizing the current era's fierce competition. In the \"Frequently-Asked Questions\" section, Ben addresses queries about subscribing to Stratechery, including how to access the podcast, read via RSS, share subscriptions (not permitted), purchase team subscriptions, switch to annual plans, and avail of student discounts. He mentions the potential for custom invoices for annual subscribers and hints at upcoming native support for custom invoices on Passport, while confirming the option to gift subscriptions through the dedicated gifts page."
},
{
"title": "ChatGPT Memory, Boundaries and AI Companions, Auren",
"public_url": "https://stratechery.com/2025/chatgpt-memory-boundaries-and-ai-companions-auren/",
"publish_date": "Mon, 14 Apr 2025 13:46:14 +0000",
"file_location": "./data/ChatGPT Memory, Boundaries and AI Companions, Auren.md",
"summary": "In the latest Stratechery article by Ben Thompson, the ChatGPT Memory section delves into OpenAI's enhancement of ChatGPT's memory capabilities, giving it the ability to recall and adapt responses based on prior conversations, creating a competitive edge and possibly setting a new standard in the chatbot landscape. Moving on to Boundaries and AI Companions, Ben emphasizes the significance of personal boundaries in interactions and explores the potential of AI companions as focused partners without the constraints of human interactions, envisioning various intriguing applications. In the section on Auren, Ben evaluates the chat app's pricy yet promising AI companion service, noting the need for contextualizing AI interactions and underscoring the shift of OpenAI towards consumer tech with features like memory, aligning with Sam Altman's views on personalized AI integration."
},
{
"title": "Liberation and Whiplash",
"public_url": "https://stratechery.com/2025/liberation-and-whiplash/",
"publish_date": "Fri, 11 Apr 2025 14:03:48 +0000",
"file_location": "./data/Liberation and Whiplash.md",
"summary": "Ben Thompson introduces a new weekly digest feature called \"This Week in Stratechery,\" highlighting key articles and podcasts on pressing tech and trade topics. In the Stratechery Updates section, Ben discusses the potential benefits and risks of Trump's tariffs from a US perspective. The \"Dithering\" episode \"Tariffs and Taiwan\" explores the impact of tariffs on tech companies like Apple and the Taiwan-China relationship. In the \"Apple and China\" episode, Ben and John Gruber dissect Apple's approach to privacy and security in China. The \"Asianometry\" podcast, featuring Jon Yu, delves into Xiaomi's influence on Apple's car strategy and manufacturing intricacies like EUV mirrors. The \"Sharp China\" episode with Andrew Sharp and Bill Bishop examines the escalating US-China tensions and potential scenarios for the relationship. Ben also chats with Andrew Sharp on \"Greatest of All Talk\" about NBA team performances and strategies impacting outcomes. The \"Sharp Tech\" discussion with Andrew Sharp delves into American tech companies' manufacturing challenges in Asia and the implications of monopolies on innovation. Ben underscores the importance of demand in driving tech innovation. Stay informed with the latest insights by subscribing to Stratechery."
},
{
"title": "An Interview with Google Cloud Platform CEO Thomas Kurian About Building an Enterprise Culture",
"public_url": "https://stratechery.com/2025/an-interview-with-google-cloud-platform-ceo-thomas-kurian-about-building-an-enterprise-culture/",
"publish_date": "Thu, 10 Apr 2025 09:56:12 +0000",
"file_location": "./data/An Interview with Google Cloud Platform CEO Thomas Kurian About Building an Enterprise Culture.md",
"summary": "Ben introduces an interview with Google Cloud Platform CEO Thomas Kurian, praising Kurian's efforts in building an enterprise service culture and highlighting the recent Google Cloud Next conference keynote. Kurian discusses the company's focus on understanding customers' specific needs, compliance requirements, and industry regulations, providing tailored solutions for different verticals. He also emphasizes the importance of upskilling employees to optimize GCP services. Kurian outlines Google Cloud's commitment to providing top-notch infrastructure for AI adoption, introducing new products like TPUs, Nvidia GPUs, and Cloud WAN for training models and inferencing. The conversation delves into Google Cloud's culture change to adapt to the multi-cloud trend, focusing on effective partnerships and cross-cloud data analysis with products like BigQuery. Kurian discusses the acquisition of Wiz for cybersecurity and the range of TPU and GPU options available to meet diverse AI model needs. The dialogue also covers media models in various industries, showcasing success stories like The Wizard of Oz project and the rapid delivery of models to customers, underscoring the importance of enterprise channels in promoting these tools."
},
{
"title": "American Disruption",
"public_url": "https://stratechery.com/2025/american-disruption/",
"publish_date": "Wed, 09 Apr 2025 11:28:45 +0000",
"file_location": "./data/American Disruption.md",
"summary": "In \"American Disruption,\" Ben reflects on previous Stratechery articles that missed the mark due to uncertainties in predictions, particularly regarding Trump's tariffs. He links America's struggle with modern warfare and high tech production to disruption, emphasizing it as the root cause. \"The Disruption of American Manufacturing\" explores Clayton Christensen's theories, highlighting how innovation in chip production remained in the U.S. while assembly tasks moved to Asia due to cost advantages. Ben discusses the challenges of moving downmarket for companies and countries like the U.S., citing Apple's influence in boosting China's manufacturing capabilities. In \"Beyond Disruption,\" he underscores the importance of catering to demand over supply control in the digital age, using Uber as an example. Ben advocates for a strategic approach to tariffs in \"A Better Plan,\" stressing the need for selective tariffs to incentivize final assembly in trustworthy countries instead of blanket tariffs. Finally, in \"The Melancholy of Internet 3.0,\" Ben expresses disillusionment over the decline of a unique American spirit in technology and advocates for a forward-looking mindset for shaping a new world order."
},
{
"title": "Apple's China Problem, Apple in the Short Term, Tech's Complement Risk",
"public_url": "https://stratechery.com/2025/apples-china-problem-apple-in-the-short-term-techs-complement-risk/",
"publish_date": "Tue, 08 Apr 2025 13:26:44 +0000",
"file_location": "./data/Apple's China Problem, Apple in the Short Term, Tech's Complement Risk.md",
"summary": "Ben Thompson discusses Apple's challenges in China due to tariffs and the company's contributions to China's tech advancement. He also delves into Apple's short-term strategies and analyzes potential risks in the tech industry regarding complementary technologies. Additionally, Ben addresses frequently-asked subscription questions, such as how to subscribe to the Stratechery Podcast and read content via RSS. He highlights individual subscription usage, team subscription options, switching to an annual plan, student pricing, custom invoices for annual subscribers, and gifting subscriptions to others."
},
{
"title": "Trade, Tariffs, and Tech",
"public_url": "https://stratechery.com/2025/trade-tariffs-and-tech/",
"publish_date": "Mon, 07 Apr 2025 12:05:39 +0000",
"file_location": "./data/Trade, Tariffs, and Tech.md",
"summary": "In the article \"Trade, Tariffs, and Tech\" by Ben Thompson, the author discusses the potential outcomes of a conflict between China and Taiwan, highlighting China's manufacturing advantage and the interconnectedness of global supply chains. Ben delves into the historical context of U.S. trade policies post-World War 2, emphasizing China's role in the trade system and its impact on U.S. manufacturing. He also explores the Nixon Shock, drawing parallels between the past economic turmoil and the current trade tariffs. Ben questions the need for a new economic system and suggests addressing structural problems through regulation relief and equal economic opportunities. In the section on tech and tariffs, he discusses how companies like Apple benefit from Asian manufacturing while facing challenges from tariffs, potentially leading to price hikes and decreased sales. Ben predicts negative impacts on advertising-based firms like Meta, Google, and Amazon due to reduced consumer spending and regulatory risks. Overall, the article provides a comprehensive analysis of the intertwined issues surrounding trade, tariffs, and technology in the global economy."
},
{
"title": "An Interview with Snowflake CEO Sridhar Ramaswamy About Data and AI",
"public_url": "https://stratechery.com/2025/an-interview-with-snowflake-ceo-sridhar-ramaswamy-about-data-and-ai/",
"publish_date": "Thu, 27 Mar 2025 10:18:40 +0000",
"file_location": "./data/An Interview with Snowflake CEO Sridhar Ramaswamy About Data and AI.md",
"summary": "In an illuminating conversation between Ben and Snowflake CEO Sridhar Ramaswamy, they delve into a wide array of topics. Starting with Sridhar's journey from Google to Neeva, the discussion transitions to his takeover at Snowflake post-acquisition and the subsequent integration of AI into the platform. The evolution of Snowflake's business model, go-to-market strategies, and focus on AI advancements are thoroughly examined, highlighting the company's innovative approach in the intersection of data and AI. The conversation encompasses the significance of balancing human judgement with AI capabilities in data analysis, the strategic moves to expand Snowflake's value proposition through product enhancements, and the vision of solidifying Snowflake as an integral data partner in the enterprise ecosystem alongside industry giants like Google and Meta over the coming years."
},
{
"title": "OpenAI's New Image Model, Graphic Design and Google, More on Security",
"public_url": "https://stratechery.com/2025/openais-new-image-model-graphic-design-and-google-more-on-security/",
"publish_date": "Wed, 26 Mar 2025 14:40:47 +0000",
"file_location": "./data/OpenAI's New Image Model, Graphic Design and Google, More on Security.md",
"summary": "Ben explores OpenAI's new image generation capabilities and their implications for artificial general intelligence (AGI), while also touching on the broader aspect of security beyond encryption. He emphasizes the value of Stratechery Plus subscriptions, offering access to exclusive content like the Stratechery Update, Stratechery Interviews, and various podcasts. In the Frequently-Asked Questions section, Ben covers sharing restrictions, team subscriptions, annual plan switching with student discounts, custom invoices for annual subscribers, the potential for native support for custom invoices, and gifting subscriptions."
},
{
"title": "The Trump Administration Group Chat, Signal: The Coke of Secure Messaging, Transparency Versus Security",
"public_url": "https://stratechery.com/2025/the-trump-administration-group-chat-signal-the-coke-of-secure-messaging-transparency-versus-security/",
"publish_date": "Tue, 25 Mar 2025 12:05:50 +0000",
"file_location": "./data/The Trump Administration Group Chat, Signal: The Coke of Secure Messaging, Transparency Versus Security.md",
"summary": "Ben Thompson discusses the implications of the Trump administration's mishap with Signal, emphasizing the complexities of secure messaging and the ongoing struggle to balance transparency and security. To subscribe to the Stratechery Podcast, one must adjust their Delivery Preferences on the website post-subscription. Accessing Stratechery via RSS entails creating a Stratechery Passport account and customizing the feed. Sharing subscriptions is prohibited under the Terms of Service, although occasional forwarding is acceptable. Teams can purchase subscriptions, while individuals can switch to an annual plan or inquire about student discounts. For custom invoices, annual subscribers can contact Stratechery, with plans for adding native support for custom invoices in Passport in the future. Subscriptions can also be gifted through the dedicated gifts page."
},
{
"title": "YouTube TV, Wiz, and Why Monopolies Buy Innovation",
"public_url": "https://stratechery.com/2025/youtube-tv-wiz-and-why-monopolies-buy-innovation/",
"publish_date": "Mon, 24 Mar 2025 15:02:47 +0000",
"file_location": "./data/YouTube TV, Wiz, and Why Monopolies Buy Innovation.md",
"summary": "In Ben Thompson's article on Stratechery, he discusses various topics such as YouTube TV, Wiz, and the strategic moves made by Google in the entertainment and tech industries. The article starts with a comparison between Warner Bros. Discovery's Max and YouTube TV's multiview feature during March Madness, highlighting YouTube TV's superior viewing experience due to its access to all cable games. Ben then delves into the history of multiview technology, pointing out YouTube TV's virtual advantage as a virtual Multichannel Video Programming Distributor (vMVPD), enabling them to offer a comprehensive multiview feature without requiring high-powered set-top boxes in viewers' homes. Furthermore, he analyzes YouTube TV's acquisition of NFL Sunday Ticket rights for the 2023 season, emphasizing the platform's aggregation potential and its aim to become the go-to destination for various video content types. Ben also touches upon Google's challenges in product development and aggregation, comparing it to competitors like Amazon and Apple in the streaming space. Finally, he examines Google's strategic acquisition of cybersecurity firm Wiz for $32 billion in cash, aligning with Google Cloud's growth strategy and enhancing AI capabilities in multi-cloud management."
},
{
"title": "An Interview with OpenAI CEO Sam Altman About Building a Consumer Tech Company",
"public_url": "https://stratechery.com/2025/an-interview-with-openai-ceo-sam-altman-about-building-a-consumer-tech-company/",
"publish_date": "Thu, 20 Mar 2025 09:51:56 +0000",
"file_location": "./data/An Interview with OpenAI CEO Sam Altman About Building a Consumer Tech Company.md",
"summary": "In the interview with OpenAI CEO Sam Altman, Ben Thompson delves into Altman's background, motivations, and the evolution of OpenAI, particularly focusing on the introduction of ChatGPT. Altman shares his journey from growing up in St. Louis to founding Loopt and transitioning to Y Combinator, highlighting the transformation of OpenAI from a research lab to a driving force in AGI development. The origin story of ChatGPT reveals strategic decisions made to manage scaling challenges and embrace the unexpected growth of OpenAI as a consumer-facing entity. Despite initial reluctance, OpenAI found success as a consumer tech company, emphasizing the importance of seizing opportunities in the fast-evolving AI landscape. Discussions with Ben touch on topics like advertising, competition, hallucinations, and regulation, highlighting the need for cautious releases and responsible AI advancement. Altman explores the outlook for AI, mentioning possibilities like automated code authorship and the nuances of defining AGI while acknowledging its gradual integration into various industries. Overall, the conversation with Altman offers insights into the strategic decisions and philosophical considerations shaping OpenAI's trajectory in the tech industry."
},
{
"title": "Nvidia GTC and ASICs, The Power Constraint, The Pareto Frontier",
"public_url": "https://stratechery.com/2025/nvidia-gtc-and-asics-the-power-constraint-the-pareto-frontier/",
"publish_date": "Wed, 19 Mar 2025 11:30:46 +0000",
"file_location": "./data/Nvidia GTC and ASICs, The Power Constraint, The Pareto Frontier.md",
"summary": "In his article \"Nvidia GTC and ASICs\", Ben interprets Jensen Huang's keynote at GTC as a strong testament to Nvidia's superiority over ASICs in the realm of inference. In the \"Frequently-Asked Questions\" section, Ben provides details on how subscribers can access the Stratechery Podcast on their preferred podcast player and read Stratechery via RSS by creating a Stratechery Passport account. He emphasizes the prohibition against sharing subscriptions or podcasts but allows occasional forwarding. Ben notes the option for team subscriptions and easily switching to an annual plan on the account page. He highlights Stratechery's affordability for students and the availability of custom invoices for annual subscribers."
},
{
"title": "Intel's New CEO, Reevaluating Gelsinger, Lip-Bu Tan and Cadence",
"public_url": "https://stratechery.com/2025/intels-new-ceo-reevaluating-gelsinger-lip-bu-tan-and-cadence/",
"publish_date": "Tue, 18 Mar 2025 12:52:07 +0000",
"file_location": "./data/Intel's New CEO, Reevaluating Gelsinger, Lip-Bu Tan and Cadence.md",
"summary": "Ben Thompson discusses Intel's new CEO and questions the reevaluation of Pat Gelsinger's leadership at Intel, considering if his departure was solely due to poor execution. Thompson emphasizes the value of subscribing to Stratechery Plus for exclusive content access, including the Stratechery Update and Stratechery Interviews, along with podcasts such as Dithering, Sharp Tech, Sharp China, and the Greatest Of All Talk, providing in-depth tech industry analysis and discussions. He also addresses FAQs regarding subscribing to the Stratechery Podcast, using RSS for content access, sharing subscriptions, team subscriptions, annual plans, student discounts, custom invoices, and gifting subscriptions. Ben clarifies instructions on managing subscriptions, highlights the terms of service on sharing, notes the availability of annual plans, hints at possible future native support for custom invoices, and mentions the option to gift subscriptions to others."
},
{
"title": "Metallica on Vision Pro, Non-Immersive Immersive Video, Ping and AI",
"public_url": "https://stratechery.com/2025/metallica-on-vision-pro-non-immersive-immersive-video-ping-and-ai/",
"publish_date": "Mon, 17 Mar 2025 12:52:19 +0000",
"file_location": "./data/Metallica on Vision Pro, Non-Immersive Immersive Video, Ping and AI.md",
"summary": "Ben Thompson expresses disappointment in Metallica's performance on the Vision Pro device, highlighting Apple's control over the experience. He encourages readers to subscribe to Stratechery Plus for exclusive content like the Stratechery Update, Stratechery Interviews, podcasts such as Dithering, Sharp Tech, and Sharp China, and shows like The Greatest Of All Talk. Ben outlines various delivery options for Stratechery Updates, noting that subscriptions auto-renew but can be canceled anytime. In the Frequently-Asked Questions section, Ben explains how to subscribe to the Stratechery Podcast and access RSS feeds. He mentions the option to buy team subscriptions, switch to annual plans, and the exclusion of student discounts due to the low pricing. Custom invoices are available for annual subscribers and may soon be supported for all subscribers through Passport. Subscriptions can also be gifted through the designated gifts page on the Stratechery website."
},
{
"title": "An Interview with Tailscale Co-Founder and CEO Avery Pennarun",
"public_url": "https://stratechery.com/2025/an-interview-with-tailscale-co-founder-and-ceo-avery-pennarun/",
"publish_date": "Thu, 13 Mar 2025 10:01:53 +0000",
"file_location": "./data/An Interview with Tailscale Co-Founder and CEO Avery Pennarun.md",
"summary": "Ben interviewed Avery Pennarun, the CEO of Tailscale, discussing how Pennarun has been learning to build a New Internet his whole life. The interview highlights Tailscale and Pennarun's insights into networking and technology. The interview took place in the context of Stratechery Plus, a subscription service offering access to various podcasts and exclusive content. Stratechery Plus provides subscribers with access to the Stratechery Update, Stratechery Interviews, and podcasts like Sharp Tech and Sharp China. Subscription details for Stratechery Plus are outlined, giving potential subscribers an overview of the offerings available. Ben explains that listeners can subscribe to the Stratechery Podcast by following easy-to-follow instructions on the Delivery Preferences page. He also mentions that readers can access Stratechery via RSS by creating a Stratechery Passport account and adding their personalized RSS feed. Ben clarifies that sharing a Stratechery Update subscription or RSS feed is against the Terms of Service, but occasional forwarding of updates to interested friends or colleagues is allowed. Additionally, Ben notes that team subscriptions are available for purchase, as well as the option to switch to an annual plan for current subscribers seeking a prorated discount. Lastly, he mentions that Stratechery intentionally offers a low price to make it accessible to everyone, including students, and explains that custom invoices are available for annual subscribers upon request."
},
{
"title": "OpenAI API Updates, Steelmanning the API Business, The Problem With Both",
"public_url": "https://stratechery.com/2025/openai-api-updates-steelmanning-the-api-business-the-problem-with-both/",
"publish_date": "Wed, 12 Mar 2025 13:54:14 +0000",
"file_location": "./data/OpenAI API Updates, Steelmanning the API Business, The Problem With Both.md",
"summary": "In the article \"OpenAI API Updates, Steelmanning the API Business, The Problem With Both\" on Stratechery by Ben Thompson, Ben explores the potential impact of OpenAI's API updates on the API business, questioning whether it will ultimately benefit OpenAI. In the section \"Frequently-Asked Questions,\" Ben clarifies that subscribers can add the Stratechery Podcast to their favorite podcast player through their Stratechery Passport account and outlines the sharing and subscription options available, including team subscriptions and the ability to switch to an annual plan for a discount. He also mentions the affordability of Stratechery's prices, catering to students, and the option for custom invoices for annual subscribers."
},
{
"title": "A Google I/O Idea, The Smartphone AI Value Chain, Apple's Developer Hang-Ups",
"public_url": "https://stratechery.com/2025/a-google-i-o-idea-the-smartphone-ai-value-chain-apples-developer-hang-ups/",
"publish_date": "Tue, 11 Mar 2025 13:40:53 +0000",
"file_location": "./data/A Google I/O Idea, The Smartphone AI Value Chain, Apple's Developer Hang-Ups.md",
"summary": "Ben Thompson discusses the idea behind Google's point of integration and its significance in relation to Apple and AI, suggesting Apple's potential positioning in response. He delves into the value chain of smartphone AI, analyzing how different players contribute to the development and deployment of AI on smartphones. Furthermore, Ben explores Apple's Developer Hang-Ups, shedding light on the reasons behind the perceived tension between Apple and developers. In the Frequently-Asked Questions section, Ben addresses various common inquiries about subscribing to the Stratechery Podcast, sharing subscriptions, team subscriptions, annual plans, student discounts, custom invoices, and gifting subscriptions. Students can access Stratechery at a discounted rate, while annual subscribers can request personalized invoices. Plans are in place to introduce native support for custom invoices in Passport, and users can gift subscriptions through the dedicated gifts page."
},
{
"title": "Apple AI's Platform Pivot Potential",
"public_url": "https://stratechery.com/2025/apple-ais-platform-pivot-potential/",
"publish_date": "Mon, 10 Mar 2025 12:00:05 +0000",
"file_location": "./data/Apple AI's Platform Pivot Potential.md",
"summary": "Ben Thompson discusses Apple's potential pivot towards becoming a platform for artificial intelligence in his article \"Apple AI\u2019s Platform Pivot Potential.\" He highlights Apple's shift from vertical integration to opening up its ecosystem for AI developers, leveraging its massive user base to create a powerful AI platform. In \"Apple\u2019s Bad Week,\" Ben reflects on Apple's struggle with AI, particularly Siri's delayed feature, potential security risks, and the consequences of not addressing them earlier. \"Apple\u2019s Great Week\" outlines the introduction of the M3 Ultra chip, setting new standards in AI capabilities for consumer hardware. In \"Apple Intelligence vs. Apple Silicon,\" Ben compares the delay in Apple Intelligence development with the strategic launch of M3 Ultra. \"Apple Silicon\" delves into Apple's nuanced decision-making process behind developing efficient consumer AI chips like M3 Ultra. In \"Apple Intelligence,\" Ben discusses Apple's motivation for generative AI development and the challenges faced with the delay. \"The Incumbent Advantage\" explores Siri's struggles compared to competitors like Amazon, emphasizing the importance of focusing on functionality. Lastly, in \"An AI Platform,\" Ben suggests that Apple should leverage its hardware advancements to become a platform for AI developers, enabling unforeseen innovations in the market."
},
{
"title": "An Interview with Michael Nathanson About the Streaming Endgame",
"public_url": "https://stratechery.com/2025/an-interview-with-michael-nathanson-about-the-streaming-endgame/",
"publish_date": "Thu, 06 Mar 2025 10:29:47 +0000",
"file_location": "./data/An Interview with Michael Nathanson About the Streaming Endgame.md",
"summary": "Ben discusses his interview with Michael Nathanson on the endgame for traditional media companies as the streaming wars near their end. He also touches on AI bubble questions and the future of analysis in the interview. The podcast offers substantial analysis of the news of the day in three weekly emails or podcasts. Stratechery Interviews feature discussions with leading public CEOs, private company founders, and fellow analysts. Additionally, there are various podcasts available for subscribers, covering topics like technology, China, the NBA, and more. In the Frequently-Asked Questions section, Ben explains the subscription process for the Stratechery Podcast, including accessing it via RSS by creating a Stratechery Passport account. He clarifies sharing policies, team subscriptions, and switching to an annual plan with a prorated discount. Ben notes that while there isn't a student discount, Stratechery is reasonably priced, offering custom invoices for annual subscribers and gifting subscriptions on the gifts page."
},
{
"title": "Alexa+, A Brief History of Alexa, Amazon \u2014 and Apple's \u2014 Mistake",
"public_url": "https://stratechery.com/2025/alexa-a-brief-history-of-alexa-amazon-and-apples-mistake/",
"publish_date": "Wed, 05 Mar 2025 13:16:50 +0000",
"file_location": "./data/Alexa+, A Brief History of Alexa, Amazon \u2014 and Apple's \u2014 Mistake.md",
"summary": "Ben criticizes Amazon's Alexa+ and draws parallels with Apple's past mistakes with Siri, cautioning against overextending and diluting core offerings. He highlights the risk of losing focus and depth in the primary product or service offered. In the Frequently-Asked Questions section, Ben explains how subscribers can add the Stratechery Podcast to their favorite podcast player and access Stratechery via RSS. He clarifies the rules around sharing subscriptions and mentions the availability of team subscriptions. Ben also provides guidance on switching to an annual plan through the account page."
},
{
"title": "More TSMC Fabs in the U.S., Taiwan's Trump Card",
"public_url": "https://stratechery.com/2025/more-tsmc-fabs-in-the-u-s-taiwans-trump-card/",
"publish_date": "Tue, 04 Mar 2025 14:29:55 +0000",
"file_location": "./data/More TSMC Fabs in the U.S., Taiwan's Trump Card.md",
"summary": "In \"More TSMC Fabs in the U.S., Taiwan\u2019s Trump Card\" from Stratechery by Ben Thompson, it is pointed out that although TSMC announced new fabs in the U.S., the lack of specific details indicates that Taiwan still maintains a strategic advantage in semiconductor manufacturing. In the \"Frequently-Asked Questions\" section, Ben clarifies that subscribers can easily add the Stratechery Podcast to their favorite podcast player and access Stratechery via RSS by creating a Stratechery Passport account. He also mentions restrictions on sharing subscriptions, details on team subscriptions, upgrading to an annual plan, and pricing accessibility for students."
},
{
"title": "Microsoft EOLs Skype, Skype's Founding, Microsoft's Skype Charity",
"public_url": "https://stratechery.com/2025/microsoft-eols-skype-skypes-founding-microsofts-skype-charity/",
"publish_date": "Mon, 03 Mar 2025 12:39:22 +0000",
"file_location": "./data/Microsoft EOLs Skype, Skype's Founding, Microsoft's Skype Charity.md",
"summary": "In the article \"Microsoft EOLs Skype, Skype\u2019s Founding, Microsoft\u2019s Skype Charity \u2013 Stratechery by Ben Thompson,\" Ben Thompson criticizes Microsoft for ending Skype, a service he believes they never should have acquired, expressing sadness over the decision. In the \"Frequently-Asked Questions\" section, Ben explains how users can subscribe to the Stratechery Podcast through the Delivery Preferences page, read Stratechery via RSS by creating a Stratechery Passport account, and mentions the prohibition against sharing a Stratechery Update subscription but allows occasional forwarding. He also notes the availability of team subscriptions and the option to switch to an annual plan for a prorated discount on the account page."
},
{
"title": "An Interview with Benedict Evans About AI Unknowns",
"public_url": "https://stratechery.com/2025/an-interview-with-benedict-evans-about-ai-unknowns/",
"publish_date": "Thu, 27 Feb 2025 10:43:15 +0000",
"file_location": "./data/An Interview with Benedict Evans About AI Unknowns.md",
"summary": "In the article \"An Interview with Benedict Evans About AI Unknowns \u2013 Stratechery by Ben Thompson,\" Benedict Evans discusses the key lessons learned about AI and emphasizes understanding unresolved issues for navigating the tech landscape effectively. In the \"Frequently-Asked Questions\" section, Ben explains how to subscribe to the Stratechery Podcast, access Stratechery via RSS feed, and purchase team subscriptions or switch to an annual plan with prorated discounts. Ben also clarifies that sharing subscriptions is limited, but occasional forwarding is allowed, and mentions that Stratechery is priced affordably for all, without offering student discounts."
},
{
"title": "More Chip Curbs?, Google LLM Status Check",
"public_url": "https://stratechery.com/2025/more-chip-curbs-google-llm-status-check/",
"publish_date": "Wed, 26 Feb 2025 14:33:43 +0000",
"file_location": "./data/More Chip Curbs?, Google LLM Status Check.md",
"summary": "Ben discusses the potential risks of lifting the chip ban and emphasizes the uncertainty of those advocating for more restrictions in \"More Chip Curbs?\". He then shifts the focus to Google's current stance on Limited Licensees Managed (LLMs) and the significance of Google Cloud Platform (GCP) in the tech industry in \"Google LLM Status Check\". In \"Frequently-Asked Questions\", Ben answers various FAQs related to subscribing to the Stratechery podcast, reading content via RSS, sharing subscriptions, purchasing team subscriptions, switching to annual plans, student discounts, custom invoices, and gifting subscriptions. Subscribers can easily manage their preferences through their account page and have the option to gift subscriptions to others through the dedicated gifts page on the Stratechery website."
},
{
"title": "AI Promise and Chip Precariousness",
"public_url": "https://stratechery.com/2025/ai-promise-and-chip-precariousness/",
"publish_date": "Tue, 25 Feb 2025 16:53:54 +0000",
"file_location": "./data/AI Promise and Chip Precariousness.md",
"summary": "In \"AI Promise and Chip Precariousness,\" Ben discusses the advancements in AI models, noting that Anthropic's Claude Sonnet 3.7 falls within the GPT-4 class, suggesting that Gen3 models like Grok 3 should have distinct classifications. Meanwhile, the state of AI chips is thriving, with Nvidia, AMD, and Huawei playing significant roles. TSMC is dominating over Intel, necessitating a shift to a foundry model for competitiveness. In \"China and a Changing World,\" Ben explores the global semiconductor industry's shift to Asia and the implications for the U.S. amid changing geopolitics. \"Trump, Taiwan, and TSMC\" delves into the complexities of U.S.-China chip dependencies, while \"What To Do\" highlights the challenges and trade-offs in proposing solutions. Ben's suggestions in \"End the China Chip Ban\" involve reevaluating restrictions on China for broader strategic implications. \"Double Down on the Semiconductor Equipment Ban\" emphasizes plugging loopholes in restrictions to benefit Taiwan's importance, while \"Build Trailing Edge Fabs in the U.S.\" suggests subsidies for U.S. trailing edge chip production. Lastly, \"Intel and the Leading Edge\" proposes strategic moves to establish a strong AI industry on U.S.-made chips."
},
{
"title": "The iPhone 16e; Apple Intelligence Table Stakes; Apple vs. U.K, Continued",
"public_url": "https://stratechery.com/2025/the-iphone-16e-apple-intelligence-table-stakes-apple-vs-u-k-continued/",
"publish_date": "Mon, 24 Feb 2025 15:47:27 +0000",
"file_location": "./data/The iPhone 16e; Apple Intelligence Table Stakes; Apple vs. U.K, Continued.md",
"summary": "In \"The iPhone 16e\" section, Ben Thompson discusses Apple's repositioning of its product lineup with the more expensive iPhone 16e compared to the SE model it replaces. \"Apple Intelligence Table Stakes\" highlights the benefits of subscribing to Stratechery Plus for exclusive content like Stratechery Update, Stratechery Interviews, and podcasts such as Dithering and Sharp Tech. The \"Apple vs. U.K, Continued\" section addresses inquiries about team subscriptions and switching from monthly to annual plans on the Stratechery platform. Ben clarifies that individual subscriptions allow occasional sharing with interested parties, while team subscriptions cater to multiple team members. Customers can take advantage of prorated discounts when switching to annual plans from their account page."
},
{
"title": "An Interview with Manna Founder and CEO Bobby Healy About Drone Delivery",
"public_url": "https://stratechery.com/2025/an-interview-with-manna-founder-and-ceo-bobby-healy-about-drone-delivery/",
"publish_date": "Thu, 20 Feb 2025 10:55:00 +0000",
"file_location": "./data/An Interview with Manna Founder and CEO Bobby Healy About Drone Delivery.md",
"summary": "Ben delves into an interview with Manna's founder and CEO, Bobby Healy, to explore the mechanics and regulations of drone delivery, emphasizing a future focus on suburban areas. Ben also answers several frequently asked questions about Stratechery subscriptions, mentioning that sharing subscriptions is against the Terms of Service, but teams can purchase subscriptions and users can switch to an annual plan. He highlights that Stratechery offers a low price for accessibility, including special options for students, custom invoices for annual subscribers, and the ability to gift a subscription through the gifts page."
},
{
"title": "Encryption and the Uneasy Compromise, Netflix Earnings, The Aggregator's Compounding Advantage",
"public_url": "https://stratechery.com/2025/encryption-and-the-uneasy-compromise-netflix-earnings-the-aggregators-compounding-advantage/",
"publish_date": "Wed, 19 Feb 2025 15:06:34 +0000",
"file_location": "./data/Encryption and the Uneasy Compromise, Netflix Earnings, The Aggregator's Compounding Advantage.md",
"summary": "In the article \"Encryption and the Uneasy Compromise,\" Ben discusses the UK vs. Apple case and the compounding advantage of aggregators showcased through Netflix's earnings. He highlights the benefits of subscribing to Stratechery Plus for access to exclusive content like the Stratechery Update, Stratechery Interviews, and podcasts on various topics. In the \"Frequently-Asked Questions\" section, Ben explains how to subscribe to the Stratechery Podcast, access Stratechery via RSS, and manage team subscriptions. He mentions the option to switch to an annual plan with a prorated discount but clarifies that sharing subscriptions is not allowed. Ben also notes that there is no student discount, as the pricing aims to be accessible to everyone, including students."
},
{
"title": "Grok-3, The Nvidia Shortcut, Competitive Implications",
"public_url": "https://stratechery.com/2025/grok-3-the-nvidia-shortcut-competitive-implications/",
"publish_date": "Tue, 18 Feb 2025 13:13:50 +0000",
"file_location": "./data/Grok-3, The Nvidia Shortcut, Competitive Implications.md",
"summary": "Ben highlights the advanced state of Grok-3 in the article, attributing it to Nvidia's capabilities, which increases the pressure for more investment in the company. He emphasizes the strategic importance of Nvidia's position. Moving on to the Frequently Asked Questions, Ben addresses several queries regarding subscribing to the Stratechery Podcast, reading via RSS, sharing subscriptions, buying team subscriptions, switching to an annual plan, student discounts, creating custom invoices, and gifting subscriptions. It is possible to subscribe to the podcast and read via RSS, while sharing subscriptions is not allowed. Team subscriptions, annual plans, and gifts are available options, with custom invoices currently exclusive to annual subscribers."
},
{
"title": "An Interview with Uber CEO Dara Khosrowshahi About Aggregation and Autonomy",
"public_url": "https://stratechery.com/2025/an-interview-with-uber-ceo-dara-khosrowshahi-about-aggregation-and-autonomy/",
"publish_date": "Thu, 13 Feb 2025 10:52:26 +0000",
"file_location": "./data/An Interview with Uber CEO Dara Khosrowshahi About Aggregation and Autonomy.md",
"summary": "Ben Thompson interviewed Uber CEO Dara Khosrowshahi, discussing Khosrowshahi's background, controversies surrounding his appointment, and Uber's growth in various segments. They delved into the concept of aggregation and autonomy at Uber, highlighting the company's role as an Aggregator and its focus on giving autonomy to drivers. Khosrowshahi shared lessons from his time at Expedia, including the challenges of transforming business models to adapt to the online domain. The conversation also touched on Uber's shift to aggregating supply and the complexities of balancing supply and demand in real-time. They explored challenges faced by Uber, such as managing marketplace balance and maximizing reliability. Khosrowshahi explained Uber's decision to exit the autonomous vehicle market based on safety standards and strategic focus on software. The discussion also covered the potential for the US in autonomous vehicles, the importance of economics in scalability, and the impact of vertical competitors and user experience. Lastly, they talked about Uber Eats' international dominance, growth strategies, competition with DoorDash, and Uber's multi-service platform strength in the long term."
},
{
"title": "Super Bowl Ratings, Netflix to Bid on F1?, Thomson Reuters v. Ross Intelligence",
"public_url": "https://stratechery.com/2025/super-bowl-ratings-netflix-to-bid-on-f1-thomson-reuters-v-ross-intelligence/",
"publish_date": "Wed, 12 Feb 2025 10:57:28 +0000",
"file_location": "./data/Super Bowl Ratings, Netflix to Bid on F1?, Thomson Reuters v. Ross Intelligence.md",
"summary": "In the Stratechery article, Ben Thompson discusses the record ratings of the Super Bowl despite its lack of social media buzz, contrasting it with the NBA's higher social media engagement but lower ratings. He ponders if media consolidation could be a solution to this discrepancy. In another section, Ben mentions a new legal case involving AI between Thomson Reuters and Ross Intelligence. Moving on to the Frequently-Asked Questions segment, Ben explains how to subscribe to the Stratechery Podcast, access it via RSS, and share subscriptions with friends or colleagues. He notes that team subscriptions and the option to switch to an annual plan with a prorated discount are available. While no student discount is offered, the pricing is intentionally accessible to all customers, including students."
},
{
"title": "The U.K. Demands Back Door From Apple, Elon Musk's OpenAI Bid",
"public_url": "https://stratechery.com/2025/the-u-k-demands-back-door-from-apple-elon-musks-openai-bid/",
"publish_date": "Tue, 11 Feb 2025 12:17:22 +0000",
"file_location": "./data/The U.K. Demands Back Door From Apple, Elon Musk's OpenAI Bid.md",
"summary": "In the article \"The U.K. Demands Back Door From Apple, Elon Musk's OpenAI Bid\" by Ben Thompson, Ben discusses the U.K.'s request for Apple to create a back door in its products, suggesting that Apple may consider exiting the country rather than comply. He also touches on Elon Musk's disruptive involvement with OpenAI. In the \"Frequently-Asked Questions\" section, Ben explains how to subscribe to the Stratechery Podcast and emphasizes that sharing subscriptions or RSS feeds is not permitted. He outlines options for purchasing team subscriptions, switching to an annual plan with a prorated discount, and highlights the affordability of Stratechery for students. Ben mentions the possibility of creating custom invoices for annual subscribers and potential future support for custom invoices on Passport. Gift subscriptions can be sent through the gifts page on the website."
},
{
"title": "Deep Research and Knowledge Value",
"public_url": "https://stratechery.com/2025/deep-research-and-knowledge-value/",
"publish_date": "Mon, 10 Feb 2025 15:37:46 +0000",
"file_location": "./data/Deep Research and Knowledge Value.md",
"summary": "In Ben Thompson's article on Stratechery, Deep Research and Knowledge Value, he delves into the concept of Artificial General Intelligence (AGI), likening its definition to Justice Potter Stewart's view on obscenity. Ben defines AGI as AI systems capable of independent task completion and trustworthiness. He explores OpenAI's Deep Research in ChatGPT, powered by the upcoming OpenAI o3 model, highlighting its ability to autonomously conduct complex research tasks. Ben showcases the value of Deep Research through examples, emphasizing its role in synthesizing knowledge effectively. He reflects on the economic value of news, the impact of Deep Research on extracting data, and the potential consequences of AI advancement on job roles like research analysts. Ben concludes with insights on the strategic importance of secrecy in an AI-driven world, as companies seek to protect and profit from original research and discoveries."
},
{
"title": "An Interview with ServiceNow Chairman and CEO Bill McDermott about Enterprise AI Agents",
"public_url": "https://stratechery.com/2025/an-interview-with-servicenow-ceo-bill-mcdermott-about-enterprise-ai-agents/",
"publish_date": "Thu, 06 Feb 2025 10:56:31 +0000",
"file_location": "./data/An Interview with ServiceNow Chairman and CEO Bill McDermott about Enterprise AI Agents.md",
"summary": "In his article \"An Interview with ServiceNow Chairman and CEO Bill McDermott about Enterprise AI Agents,\" Ben Thompson interviews McDermott about the importance of Enterprise AI agents in business. McDermott emphasizes the need for these agents to be trusted, simple, accessible, and productive, with technology seamlessly integrating into daily operations. He highlights the accelerated digital transformation due to the pandemic, underlining the critical role of AI capabilities. McDermott's narrative traces his journey from a deli to CEO at Xerox, emphasizing customer service and seizing opportunities. His tenure at SAP America showcased his leadership style centered around ambitious goals, team inspiration, and customer focus. The article explores how ServiceNow evolved to address diverse architectures and customer needs, positioning itself as the leading enterprise software company of the 21st century. The conversation delves into AI agents, their integration across business functions, and ServiceNow's transformation into an AI operating system for the enterprise. Ben discusses implementing agentic AI to enhance productivity and happiness at work, highlighting the need for evolving job roles and opportunities. The discussion also touches on the agent business model, aiming to provide AI solutions efficiently while driving business value and customer satisfaction. McDermott underscores ServiceNow's adaptability and transformative potential in the AI era, advocating for choosing platforms strategically for future success."
},
{
"title": "An Interview with ServiceNow CEO Bill McDermott about Enterprise AI Agents",
"public_url": "https://stratechery.com/2025/an-interview-with-servicenow-ceo-bill-mcdermott-about-enterprise-ai-agents/",
"publish_date": "Thu, 06 Feb 2025 10:56:31 +0000",
"file_location": "./data/An Interview with ServiceNow CEO Bill McDermott about Enterprise AI Agents.md",
"summary": "In an extensive conversation with ServiceNow CEO Bill McDermott, Ben Thompson provides a comprehensive overview of McDermott's career trajectory from Deli to Xerox, SAP, and finally ServiceNow. McDermott's journey showcases the importance of hard work, customer service, and seizing opportunities, leading him to ServiceNow due to the company's potential for enterprise software innovation. The interview delves into the rise of AI agents in enhancing productivity, with McDermott foreseeing their ubiquitous presence in streamlining workflows and providing personalized recommendations. ServiceNow's strategic response to the pandemic and focus on selective hiring processes and innovative AI products solidify its position in the tech industry. The discussion also covers the integration of AI across different enterprise functions, the benefits of agentic AI in automation and decision-making, and the potential for new job opportunities amidst concerns of AI-related job displacement. McDermott emphasizes ServiceNow's commitment to customer partnership and continuous innovation in driving business transformation, as the company adopts a hybrid business model combining traditional pricing with agentic AI innovation."
},
{
"title": "Google Earnings, Search Status, China Antitrust Actions",
"public_url": "https://stratechery.com/2025/google-earnings-search-status-china-antitrust-actions/",
"publish_date": "Wed, 05 Feb 2025 12:34:02 +0000",
"file_location": "./data/Google Earnings, Search Status, China Antitrust Actions.md",
"summary": "In the article \"Google Earnings, Search Status, China Antitrust Actions\" on Stratechery by Ben Thompson, Ben shares insights on Google's recent earnings report, highlighting that investor disappointment may be exaggerated and acknowledging the positive AI-driven outcomes for Google Search. He also discusses China's antitrust actions against Google and Apple, emphasizing the contrasting reasons behind each investigation. In the \"Frequently-Asked Questions\" section, Ben addresses various subscription-related inquiries regarding the Stratechery Podcast and updates, including how to subscribe, limitations on sharing subscriptions, purchasing team subscriptions, transitioning to an annual plan, and student discount availability. He explains the option to request custom invoices for annual subscribers and the potential future support for native custom invoices. Ben mentions the ability to give subscriptions as gifts through the dedicated gifts page on the Stratechery website."
},
{
"title": "Apple Earnings, OpenAI Deep Research, The Unbundling of Substantiation",
"public_url": "https://stratechery.com/2025/apple-earnings-openai-deep-research-the-unbundling-of-substantiation/",
"publish_date": "Tue, 04 Feb 2025 12:48:42 +0000",
"file_location": "./data/Apple Earnings, OpenAI Deep Research, The Unbundling of Substantiation.md",
"summary": "In the \"Apple Earnings\" section, Ben analyzes Apple's earnings, while in \"OpenAI Deep Research,\" he discusses the separation of substantiation from creation. Stratechery Plus offers exclusive content like the Stratechery Update, Stratechery Interviews, and multiple podcasts such as Dithering, Sharp Tech, Sharp China, and The Greatest of All Talk. Subscription options include SMS, RSS, and website delivery with auto-renewal, as well as team or company subscriptions. Ben addresses \"Frequently-Asked Questions\" by guiding subscribers on accessing the Stratechery Podcast, setting up RSS via Stratechery Passport, discouraging account sharing, and highlighting affordable pricing. The possibility of custom invoices for annual subscribers is also mentioned."
},
{
"title": "The De Minimis Loophole, Impact on Amazon and Meta, AI and Abundance",
"public_url": "https://stratechery.com/2025/the-de-minimis-loophole-impact-on-amazon-and-meta-ai-and-abundance/",
"publish_date": "Mon, 03 Feb 2025 13:39:16 +0000",
"file_location": "./data/The De Minimis Loophole, Impact on Amazon and Meta, AI and Abundance.md",
"summary": "Ben Thompson discusses the implications of Trump's new tariffs targeting the de minimis exception, impacting the growth of Temu and Shein, which in turn affects Amazon and Meta. In the Frequently-Asked Questions section, Ben elaborates on the process of subscribing to the Stratechery Podcast and highlights the Terms of Service regarding sharing subscriptions. He also mentions the options of team subscriptions, switching to an annual plan, and the availability of custom invoices for annual subscribers. Ben suggests reaching out to Stratechery for assistance with custom invoices for monthly subscribers."
},
{
"title": "An Interview with Matthew Ball About the Gaming Slump",
"public_url": "https://stratechery.com/2025/an-interview-with-matthew-ball-about-the-gaming-slump/",
"publish_date": "Fri, 31 Jan 2025 11:30:50 +0000",
"file_location": "./data/An Interview with Matthew Ball About the Gaming Slump.md",
"summary": "Ben Thompson interviews Matthew Ball about the gaming industry slump and its potential causes, such as market saturation and increased competition for consumer time and money. They discuss the impact of Fortnite as a standout success and how the industry's pricing power has diminished, resembling a scenario of perfect competition. They touch on the influence of TikTok on mobile gaming, the upcoming potential of the Switch 2, and the success of PC gaming platforms like Discord and Steam. The conversation also covers the role of AI in entertainment, addressing production disruption and potential shifts in film financing models. They analyze Steam's dominance, China's impact on the gaming market, and the challenges faced by new players in the increasingly competitive industry. Ben mentions the profitability challenges faced by user-generated content platforms like Roblox due to app store fees. The discussion extends to the one-year anniversary of the Apple Vision Pro release, highlighting its limited impact and the potential of AI and neural interface technology in revolutionizing game design paradigms."
},
{
"title": "Microsoft Earnings, Meta Earnings",
"public_url": "https://stratechery.com/2025/microsoft-earnings-meta-earnings/",
"publish_date": "Thu, 30 Jan 2025 13:21:01 +0000",
"file_location": "./data/Microsoft Earnings, Meta Earnings.md",
"summary": "In the article \"Microsoft Earnings, Meta Earnings \u2013 Stratechery by Ben Thompson,\" Ben discusses how MS and Meta are adapting to a world where models are increasingly a commodity, highlighting the importance of optionality in their strategies. In the \"Frequently-Asked Questions\" section, Ben explains how listeners can subscribe to the Stratechery Podcast and notes that sharing subscriptions is not allowed, team subscriptions are available, annual plan switching is possible, and there is intentionally no student discount to keep pricing accessible to all."
},
{
"title": "Asianometry on Japan's Chemical Dominance, Stratechery Updates, and Chinese New Year Schedule Changes",
"public_url": "https://stratechery.com/2025/happy-chinese-new-year-update-tomorrow/",
"publish_date": "Wed, 29 Jan 2025 11:22:03 +0000",
"file_location": "./data/Asianometry on Japan's Chemical Dominance, Stratechery Updates, and Chinese New Year Schedule Changes.md",
"summary": "Ben Thompson's article discusses the benefits of subscribing to Stratechery Plus, which provides access to exclusive content like the Stratechery Update, Stratechery Interviews, and various podcasts. The Stratechery Update offers in-depth analysis of current events through three weekly emails or podcasts. The Stratechery Interviews feature conversations with influential figures in tech and business. Additionally, subscribers gain access to podcasts like Dithering, Sharp Tech, Sharp China, and Greatest Of All Talk, each focusing on different aspects of technology, China, and the NBA. Ben addresses various subscription-related questions in the \"Frequently-Asked Questions\" section of the article, such as how to subscribe to the Stratechery Podcast, reading via RSS, sharing subscriptions, purchasing team subscriptions, switching to an annual plan, student discounts, custom invoices, and gifting subscriptions. He provides clear instructions and links for each scenario, ensuring that readers have all the necessary information to proceed with their desired subscription option."
},
{
"title": "The OpenAI Critique, Comparative Advantage and Infrastructure, Aggregation Theory and Cheap AI",
"public_url": "https://stratechery.com/2025/the-openai-critique-comparative-advantage-and-infrastructure-aggregation-theory-and-cheap-ai/",
"publish_date": "Tue, 28 Jan 2025 12:03:01 +0000",
"file_location": "./data/The OpenAI Critique, Comparative Advantage and Infrastructure, Aggregation Theory and Cheap AI.md",
"summary": "In the article \"The OpenAI Critique, Comparative Advantage and Infrastructure, Aggregation Theory and Cheap AI \u2013 Stratechery by Ben Thompson,\" Ben delves into the implications of DeepSeek on the lack of focus in U.S. tech companies, the challenges with comparative advantage, and the potential for zero marginal cost AI. These factors are crucial in shaping the future landscape of technology and AI development. In the \"Frequently-Asked Questions\" section, Ben clarifies that subscribers can add the Stratechery Podcast to their favorite podcast player via Delivery Preferences, discusses the individual use policy for subscriptions, mentions team subscriptions, annual plan switching, affordable pricing for accessibility, custom invoices for annual subscribers, native support to be added to Passport soon, and the availability of gift subscriptions."
},
{
"title": "DeepSeek FAQ",
"public_url": "https://stratechery.com/2025/deepseek-faq/",
"publish_date": "Mon, 27 Jan 2025 14:05:14 +0000",
"file_location": "./data/DeepSeek FAQ.md",
"summary": "The Stratechery article \"DeepSeek FAQ\" by Ben Thompson delves into DeepSeek's revolutionary `R1` model, highlighting the importance of the `V3` model in the broader AI meta-discussion. Ben explores the innovative development of the `R1` and `R1`\\-Zero models through reinforcement learning, focusing on their multi-token prediction and reasoning capabilities. The article addresses concerns about AI distillation, OpenAI's strategic positioning, China's open-source model strategy, and the potential implications on Nvidia and the chip ban. Ben also analyzes the competitive landscape, stressing the shift towards efficiency and the long-term benefits of AI commoditization."
},
{
"title": "An Interview with Daniel Gross and Nat Friedman About Models, Margins, and Moats",
"public_url": "https://stratechery.com/2025/an-interview-with-daniel-gross-and-nat-friedman-about-models-margins-and-moats/",
"publish_date": "Thu, 23 Jan 2025 11:31:49 +0000",
"file_location": "./data/An Interview with Daniel Gross and Nat Friedman About Models, Margins, and Moats.md",
"summary": "Ben discusses the benefits of subscribing to Stratechery Plus, which includes exclusive content like the Stratechery Update and Stratechery Interviews. Subscribers can also access podcasts such as Dithering, Sharp Tech, Sharp China, and the Greatest Of All Talk. Subscriptions auto-renew monthly or annually but can be canceled anytime. In the Frequently-Asked Questions section, Ben explains how to subscribe to the Stratechery Podcast, read via RSS, and share subscriptions, noting that sharing is against the Terms of Service. However, occasional forwarding of updates is allowed. Individuals can purchase team subscriptions, switch to an annual plan for a prorated discount, and gift subscriptions through the gifts page on the Stratechery website."
},
{
"title": "Stargate, The End of Microsoft and OpenAI",
"public_url": "https://stratechery.com/2025/stargate-the-end-of-microsoft-and-openai/",
"publish_date": "Wed, 22 Jan 2025 14:13:22 +0000",
"file_location": "./data/Stargate, The End of Microsoft and OpenAI.md",
"summary": "Ben Thompson discusses OpenAI's announcement of Stargate and the end of their partnership with Microsoft. He emphasizes the benefits of subscribing to Stratechery Plus, which includes exclusive content like the Stratechery Update, Stratechery Interviews, and podcasts on tech, China, and more. Ben details the subscription offerings, such as in-depth analyses of daily news, interviews with industry leaders, and various podcasts. He suggests accessing the content via SMS, RSS, or visiting the site directly while noting the auto-renewal feature for subscriptions. In the Frequently-Asked Questions section, Ben explains how listeners can subscribe to the Stratechery Podcast and read via RSS. He clarifies rules on sharing subscriptions and offers options for team subscriptions, annual plans, student discounts, custom invoices, and gifting subscriptions through the Stratechery Passport account."
},
{
"title": "Stratechery Updates, DeepSeek-R1, DeepSeek Implications",
"public_url": "https://stratechery.com/2025/stratechery-updates-deepseek-r1-deepseek-implications/",
"publish_date": "Tue, 21 Jan 2025 15:11:24 +0000",
"file_location": "./data/Stratechery Updates, DeepSeek-R1, DeepSeek Implications.md",
"summary": "In the article \"DeepSeek-R1, DeepSeek Implications \u2013 Stratechery by Ben Thompson,\" Ben discusses DeepSeek, a Chinese company with a reasoning model similar to o1 but openly accessible. He also mentions the benefits of subscribing to Stratechery Plus, which offers exclusive content like the Stratechery Update and Stratechery Interviews, alongside podcasts like Dithering, Sharp Tech, Sharp China, and Greatest Of All Talk. The availability of Stratechery Updates through various channels and the flexible subscription options are highlighted. In the \"Frequently-Asked Questions\" section, Ben explains how to subscribe to the Stratechery Podcast and read Stratechery via RSS. Sharing subscriptions or podcasts with friends is not allowed, but occasional forwarding of the Stratechery Update is acceptable. Team subscriptions, switching to an annual plan, and gifting subscriptions are all feasible options."
},
{
"title": "An Interview with Jon Yu About YouTube and Making Semiconductors",
"public_url": "https://stratechery.com/2025/an-interview-with-jon-yu-about-youtube-and-making-semiconductors/",
"publish_date": "Mon, 20 Jan 2025 16:16:56 +0000",
"file_location": "./data/An Interview with Jon Yu About YouTube and Making Semiconductors.md",
"summary": "Ben Thompson introduces an interview with Jon Yu about YouTube and semiconductor manufacturing in the Stratechery Plus bundle, praising Jon's expertise in various tech topics. They discuss Jon's YouTube journey, the importance of finding a niche, and the process of making semiconductor chips from silicon. Jon's channel started with a focus on semiconductors and has evolved over eight years to cover diverse Asian countries beyond China and Taiwan. Ben explores the fabrication process of chips at foundries like TSMC, detailing steps like deposition and lithography. They discuss TSMC's growth compared to Intel, the challenges in chip assembly, and the collaborative nature of the semiconductor supply chain. China's semiconductor growth, Intel's struggles, and Japan's Rapidus efforts are also analyzed. Jon delves into the convergence of consumer electronics and cars, emphasizing software differentiation in standard platforms for car manufacturing and innovation in established companies like Apple. Ben appreciates Jon's detailed content and encourages followers to explore his insightful videos on various tech topics."
},
{
"title": "Stratechery Plus + Asianometry",
"public_url": "https://stratechery.com/2025/stratechery-plus-asianometry/",
"publish_date": "Mon, 20 Jan 2025 16:16:26 +0000",
"file_location": "./data/Stratechery Plus + Asianometry.md",
"summary": "Ben Thompson announces the addition of Jon Yu's Asianometry newsletter and podcast to the Stratechery Plus bundle, praising Jon's technological expertise displayed on his YouTube channel. Jon covers a wide range of topics, including detailed series on semiconductors such as TSMC, showcasing his research skills and curiosity. Ben acknowledges Jon's content creation for Stratechery articles turned into video essays and Sharp Tech clips, extending gratitude for his contributions. Stratechery Plus subscribers can now access Asianometry\u2019s content, appreciating Jon's diverse range of topics from tech to Japanese Whisky and Taiwan convenience stores."
},
{
"title": "Stratechery Plus + Asianometry",
"public_url": "https://stratechery.com/2025/stratechery-plus-asianometry/",
"publish_date": "Mon, 20 Jan 2025 16:16:26 +0000",
"file_location": "./data/Stratechery Plus + Asianometry.md",
"summary": "Ben Thompson has rebranded a Stratechery subscription as Stratechery Plus, which now offers extra content like the Stratechery Update, Stratechery Interview series, and podcasts such as Sharp Tech and Dithering. A recent addition to this lineup is the Asianometry newsletter and podcast by Jon Yu, a popular tech YouTuber known for his in-depth videos, particularly on semiconductors. Subscribers to Stratechery Plus can now enjoy Jon's content through the Asianometry Passport site, which covers a wide range of tech and non-tech subjects with thorough research and a sense of curiosity."
},
{
"title": "No Update: Delayed Interview",
"public_url": "https://stratechery.com/2025/no-update-delayed-interview/",
"publish_date": "Fri, 17 Jan 2025 11:32:59 +0000",
"file_location": "./data/No Update: Delayed Interview.md",
"summary": "The article \"No Update: Delayed Interview\" on Stratechery by Ben Thompson discusses how technical difficulties prevented the scheduled interview from taking place. The interview was meant to feature a conversation with named individuals, however, their names were not disclosed due to the delay. Despite the setback, the article provides a summary of the points that would have been covered in the interview if it had taken place."
},
{
"title": "TikTok Ban Approaches, Generational Implications, Xiaohongshu",
"public_url": "https://stratechery.com/2025/tiktok-ban-approaches-generational-implications-xiaohongshu/",
"publish_date": "Wed, 15 Jan 2025 12:28:14 +0000",
"file_location": "./data/TikTok Ban Approaches, Generational Implications, Xiaohongshu.md",
"summary": "Ben Thompson explores the imminent TikTok Ban Approaches, analyzing the potential ramifications of the app's disappearance, particularly on younger users who have become reliant on its influence and entertainment value. He also delves into the Generational Implications, discussing how the absence of TikTok could significantly impact the digital habits and experiences of the youth. Furthermore, Ben points out China's misunderstanding of Xiaohongshu, or RED, showcasing the country's oversight of the platform's global relevance and reach."
},
{
"title": "AI Diffusion Regulations, Closing Loopholes, The Objections",
"public_url": "https://stratechery.com/2025/ai-diffusion-regulations-closing-loopholes-the-objections/",
"publish_date": "Tue, 14 Jan 2025 13:01:31 +0000",
"file_location": "./data/AI Diffusion Regulations, Closing Loopholes, The Objections.md",
"summary": "Ben Thompson discusses the implications of AI regulations in his article on Stratechery. He acknowledges the Biden administration's valid concerns about the risks associated with AI technology, particularly in terms of exporting it. Ben raises issues regarding the broader implications of such regulations, citing potential unintended consequences and the need to consider precedents."
},
{
"title": "AI's Uneven Arrival",
"public_url": "https://stratechery.com/2025/ais-uneven-arrival/",
"publish_date": "Mon, 13 Jan 2025 14:59:09 +0000",
"file_location": "./data/AI's Uneven Arrival.md",