2026-04-28

YouTube — 2026-04-28#

Watch First#

Applied History Today | Hoover Institution is a phenomenal, multi-hour masterclass featuring Niall Ferguson and John Bew on how history isn’t just an academic pursuit, but a critical tool for pattern recognition and geopolitical prediction. It perfectly bridges the gap between historical scholarship and real-world policymaking, making a compelling case for why governments need an “applied history” approach to navigate modern crises.

Highlights by Theme#

News & Business#

For a superb breakdown of China’s currency dynamics, check out 人民币疯涨,为什么?背后有什么秘密? · 小Lin说. The host clearly unpacks why the RMB has been surging against the dollar—pointing to a massive trade surplus and capital repatriation—while brilliantly explaining the macro “impossible trinity” the PBOC is navigating. On the leadership front, Stop Trying to Fit In | Former Goldman Sachs CEO Lloyd Blankfein · CNBC International offers a candid look at Blankfein’s journey from Brooklyn public housing to the top of Wall Street, highlighting how shedding his chip on his shoulder helped him navigate the 2008 financial crisis. Finally, a quick hit from the Financial Times, White-collar prosecutions have fallen further under Trump 2.0 | FT #shorts · Financial Times, notes that white-collar crime enforcement has plummeted to a 40-year low, forcing defense lawyers to pivot to civil work.

2026-04-29

Sources

The Post-Cook Era Takes Shape Amid Hardware Pivots and AI Leaks — 2026-04-29#

Highlights#

Today’s news paints a picture of an Apple in transition under incoming CEO John Ternus, marked by aggressive hardware pivots and mounting supply chain pressures. While the company is reportedly shelving ambitious projects like the M5 Vision Pro and the foldable “iPad Ultra” to focus on next-generation smart glasses, it is simultaneously gearing up for a massive artificial intelligence push with iOS 27’s new camera-integrated Siri capabilities. Looming over these bold product decisions is a brewing component cost crisis that could force Apple to entirely rethink its iPhone pricing strategy by 2027.

2026-04-29

Sources

Bloomberg — 2026-04-29#

Lead Story#

The Federal Reserve held its benchmark interest rate steady at 3.5% to 3.75%, but the decision revealed a deepening internal division with an unprecedented four-way dissent from policymakers who opposed an easing bias. Adding to the institutional drama, Chair Jerome Powell announced he will remain at the central bank as a governor after his term ends next month, drawing sharp criticism as his designated successor, Kevin Warsh, cleared a key Senate committee vote.

2026-04-29

CNBeta — 2026-04-29#

Top Story#

Following the launch of DeepSeek V4, a cnbeta report on Huawei’s AI chips reveals that demand for Huawei’s Ascend 950 series has skyrocketed among Chinese tech giants. Companies like ByteDance, Tencent, and Alibaba are rushing to secure orders for the Ascend 950PR, which is uniquely optimized to support compressed numerical formats for AI computation and outperforms NVIDIA’s China-specific H20 chip. However, with a planned production of only 750,000 units in 2026 and constraints from US export controls on advanced manufacturing equipment, severe supply shortages are expected to persist.

2026-04-29

Sources

Company@X — 2026-04-29#

Signal of the Day#

Microsoft reported a blowout $82.9 billion Q3, revealing that its AI revenue has now surpassed a massive $37 billion annual run rate and that paid Microsoft 365 Copilot seats exceed 20 million. This confirms that enterprise spending on “agentic computing” is translating into immediate, scaled commercial reality rather than just sustained R&D investment.

2026-04-29

Sources

Tech Videos — 2026-04-29#

Watch First#

The math behind how LLMs are trained and served – Reiner Pope MatX CEO Reiner Pope delivers an incredible blackboard breakdown of inference economics, showing exactly how memory bandwidth and KV cache capacity fundamentally dictate batch sizes and latency limits. If you want to cut through the marketing noise and understand why AI APIs cost what they do, or why context length scaling has hit a hard memory wall, this is the single best technical explanation available.

2026-04-29

Sources

Engineering @ Scale — 2026-04-29#

Signal of the Day#

The most critical risk of AI-assisted engineering isn’t vulnerable code, but “cognitive debt”—the widening gap between the code running in production and the team’s actual understanding of its architecture. Engineering leaders must explicitly map AI delegation against business risk and competitive differentiation, treating human comprehension as a load-bearing structure for high-stakes systems rather than a velocity bottleneck.

2026-04-29

Sources

Tech News — 2026-04-29#

Story of the Day#

OpenAI is facing a highly disturbing lawsuit from the families of Canadian school shooting victims after the company allegedly overruled its own safety team’s recommendation to report the shooter to law enforcement. According to whistleblowers, OpenAI opted to deactivate the user’s account to protect their privacy instead of flagging the credible threat of gun violence to authorities, even going so far as to instruct the shooter on how to circumvent the ban.

2026-04-29

YouTube — 2026-04-29#

Watch First#

The disaster I never imagined having to worry about Veritasium explores the terrifying, unpredictable chemistry of “disappearing polymorphs” — using the HIV drug Ritonavir to show how a life-saving medication can suddenly morph into a useless crystal structure worldwide overnight. It is a mind-bending look at a scientific disaster that feels less like chemistry and more like science fiction.

Highlights by Theme#

News & Business#

On the political and agricultural front, CNBC looks at the friction surrounding RFK Jr.’s stance on glyphosate (Roundup), noting how the MAHA movement threatens Bayer and Monsanto despite the chemical’s massive footprint in modern farming. Over on GQ Taiwan, Harvard professor Tarek Masoud breaks down the US-Iran conflict, explaining why Iran’s nuclear capabilities and proxy forces like Hezbollah remain a strategic headache, even as an outright ground invasion remains unlikely. For pure business, WSJ catches up with Bill Ackman on his new closed-end fund IPO and his bullish outlook on AI, while CNBC International profiles the Banyan Group’s founders on surviving decades of hospitality industry volatility without compromising their eco-conscious ethos.

2026-04-30

Engineering Reads — 2026-04-30#

The Big Idea#

As AI models become capable of writing vast amounts of code, our core bottleneck is shifting from generating logic to verifying it. The future of software engineering requires us to aggressively enforce mechanical constraints, utilize correct-by-construction tools, and focus on the “left tail” of subtle system failures to safely orchestrate agentic workflows.

Deep Reads#

Thoughts on WebAssembly as a stack machine · Eli Bendersky WebAssembly functions as a highly readable stack machine augmented by an infinite register file of local variables. Unlike purist stack machines (e.g., Forth) that require mental gymnastics with dup and tuck-swap contortions to organize data, WASM leverages locals to dramatically clarify data flow. At runtime, this semantic sugar doesn’t cost performance; sophisticated compilers like wasmtime easily perform redundant load elimination, mapping these consecutive local accesses directly to native registers without aliasing issues. It is a great reminder that virtual machine abstraction design should favor human readability when the compiler can trivially bridge the gap to hardware efficiency. Read this if you care about virtual machine design or want a deeper intuition for how WASM bridges stack-based execution with register-based hardware.