Youtube Tech Channels

Tech Videos — Week of 2026-05-16 to 2026-05-22#

Watch First#

Build Agents That Run for Hours (Without Losing the Plot) by Anthropic is the required watch of the week for anyone building autonomous systems. It eschews hype for pragmatic scaffolding details, explaining the specific adversarial generator and evaluator patterns necessary to keep LLMs reliably executing software tasks over 12-hour context windows.

Week in Review#

The dominant theme this week is the urgent industry shift from fragile prompt engineering to rigid, deterministic scaffolding for AI agents to prevent massive codebase entropy. Across the board, engineering teams are frantically building protocol-level guardrails—like the Model Context Protocol (MCP), secure execution sandboxes, and neurosymbolic guardians—to stabilize complex agentic workflows. Simultaneously, hardware architecture is formally fracturing, with dedicated silicon and runtime optimizations splitting raw training workloads from constrained edge inference limits.

2026-05-24

Hacker News — 2026-05-24#

Top Story#

Bambu Lab’s aggressive move against an open-source developer is sending shockwaves through the 3D printing community. After Bambu threatened a developer over his fork of OrcaSlicer—which bypassed Bambu’s proprietary network locks using their own AGPL-licensed code—the community has rallied, with prominent advocates and creators pledging tens of thousands of dollars to defend him. It is classic HN drama: a company that built an empire on open-source foundations (like PrusaSlicer and Slic3r) attempting to slam the door shut behind them.

2026-05-24

Sources

Tech Videos — 2026-05-24#

Watch First#

The AI paradox: More automation, more humans, more work | Dan Shipper from Lenny’s Podcast offers the most pragmatic signal today, arguing that AI automation is actually creating more demand for engineering review and pushing IDEs to become the primary operating system for all knowledge work. Instead of replacing engineers, models like GPT-5.5 require heavy oversight, turning software development into a process of managing agents and reviewing AI-generated code.

2026-05-24

Chinese Tech Daily — 2026-05-24#

Top Story#

The most striking report today details how London’s rampant smartphone thefts are fueling a sophisticated extortion ring tied to Chinese electronics markets. Stolen iPhones are smuggled to hubs like Shenzhen, where criminal networks use psychological warfare and violent threats—including fake Apple security alerts and videos of firearms—to coerce victims into unlocking their Apple IDs, allowing the devices to be resold on the black market at a premium rather than scrapped for parts.

AI@X

AI@X — Week of 2026-05-16 to 2026-05-22#

The Buzz#

The era of scaling “pure LLMs” as silver bullets is over, yielding to a pragmatic focus on neurosymbolic architectures where models are tightly embedded in verifiable execution stacks and constrained environments. Simultaneously, this leap in agentic capability has triggered a massive economic reckoning, violently ending the “token subsidy era” as enterprises face staggering inference costs that threaten the viability of multi-trillion dollar AI investments.

2026-05-21

Engineering Reads — 2026-05-21#

The Big Idea#

The software industry is constantly negotiating the tension between convenience and systemic fragility. Whether it’s abdicating code comprehension to LLMs, accepting endemic memory safety and supply-chain vulnerabilities as “acts of god,” or fighting complex tooling to retain local configuration control, our daily micro-choices compound into the security and maintainability baselines of the systems we operate.

Deep Reads#

[Bliki: Vibe Coding] · Martin Fowler · Source “Vibe coding,” a term coined by Andrej Karpathy, involves prompting an LLM to build software without the developer ever looking at the generated code. Fowler differentiates this from “Agentic Programming” (where engineers actively review LLM-generated code), arguing that true vibe coding intentionally ignores internal structure to maximize speed. This approach drastically accelerates prototyping and empowers non-programmers, but it heavily trades away correctness, maintainability, and security. LLM hallucinations and non-deterministic edits mean that unreviewed codebases quickly degrade into unmaintainable, vulnerable spaghetti code with a large attack surface. This is a must-read for engineering leaders and practitioners trying to formalize when to use LLMs for throwaway scripts versus robust, reviewed production systems.

2026-05-23

Hacker News — 2026-05-23#

Top Story#

Pardon MIE? Bypassing Apple MIE The standout post today is a brilliant, highly technical teardown of CVE-2026-28952, revealing how researchers bypassed Apple’s heavily marketed Memory Integrity Enforcement (MIE) on the new M5 silicon. It took a three-person team and an AI assistant just five days to go from zero to a root shell. The vulnerability was a classic integer overflow inside _zalloc_ro_mut—the single trusted kernel function allowed to modify read-only zones—and Apple patched it by simply moving an overflow check two instructions earlier. It’s a perfect reminder that hardware-level memory tagging doesn’t protect you if the authorized gatekeeper can be tricked into writing to the wrong slot.

2026-05-23

Chinese Tech Daily — 2026-05-23#

Top Story#

DeepSeek is reportedly negotiating a massive $10 billion funding round that would push its valuation to roughly $45 billion, with founder Liang Wenfeng planning to personally invest up to 20 billion RMB. The move underscores the company’s commitment to pursuing Artificial General Intelligence (AGI) and open-source models rather than rushing short-term commercialization. At the same time, the company announced permanent price cuts for its DeepSeek-V4-Pro API, dropping the cost to a quarter of its original price starting in June to aggressively court developers.

2026-05-20

Engineering Reads — 2026-05-20#

The Big Idea#

The boundaries of software engineering are being tested by the limits of strict specification: agentic coding tools fail when we cannot mathematically define our intent, while memory-unsafe languages continue to fail because we expect human discipline to substitute for structural guarantees.

Deep Reads#

Three more static code analysis sensors · Birgitta Böckeler · Source Birgitta Böckeler explores the effectiveness of using computational versus inferential sensors to evaluate software modularity. She observes that while traditional computational sensors are adequate for enforcing strict, rule-based dependency checks, they fall short when analyzing complex coupling data. Instead, utilizing an inferential sensor—essentially prompting an LLM to evaluate architectural boundaries—proves much more effective for nuanced reviews of system modularity. This highlights a compelling tradeoff: strict deterministic checks are brittle for high-level architectural constraints, whereas probabilistic inference can better grasp design intent. Engineers building or integrating AI coding agents should read this to understand where deterministic rules end and inferential checks must begin.

2026-05-22

Sources

Engineering @ Scale — 2026-05-22#

Signal of the Day#

Uber radically dropped its recommendation feature freshness latency from 24 hours down to mere seconds by replacing its daily-batch pointwise scoring systems with a near real-time, transformer-based sequence modeling architecture. This proves that migrating complex sequence modeling and listwise GenRec models into real-time pipelines can drastically out-perform traditional batch-computed feature engineering at massive consumer scale.