◆ Dispatch 008 · 2026-04-26 GSV Fogbank For Code
Fogbank for Code, Pinned Carriers, and a Frontier Model in 90 Gigabytes
“When juniors skip debugging and skip the formative mistakes, they don't build the tacit expertise — and when my generation of engineers retires, that knowledge doesn't transfer to the AI.”
— Lenar Kess, today's narration
A Sunday lineup that runs from a 2-bit quant of DeepSeek V4-Flash on a laptop, through a Java production hang most teams haven't met yet, into the most considered pushback I've read on the AI coding numbers we discussed yesterday. Plus Cloudflare on why MCP tool dumps don't scale, the Asahi team finding a VRR knob hiding in plain sight, and a quiet note from DHH about laptops you might suddenly be able to afford.
- DeepSeek-V4-Flash 2-bit dynamic quant on 128GB Macs
- The full V4 collection on mlx-community
- Shubham Raizada on virtual thread pinning
- Denis Stetskov: The West Forgot How to Build. Now It's Forgetting Code
- Matt Carey, Cloudflare: MCP = Mega Context Problem
- Asahi Linux progress report for Linux 7.0
- DHH on the AMD HX370 holding up against Panther Lake
- Eden AI as a European OpenRouter alternative
Sources
22 cited-
1
DeepSeek-V4-Flash 2-bit dynamic quant fits on a 128GB Mac
X Prince_Canuma — MLX engineer at Lambda; maintainer of the mlx-community Hugging Face org and one of the people who keeps Apple Silicon viable for frontier-adjacent inference.
It's a Q2 mixed dynamic quant recipe (Q2 experts and Q4 the rest) thanks to @antirez's tip (90GB on disk).
x.com/Prince_Canuma/status/2048388876251631… →Details
- Cited text
It's a Q2 mixed dynamic quant recipe (Q2 experts and Q4 the rest) thanks to @antirez's tip (90GB on disk).
- Context
- For a builder, the gap between a frontier model existing and one running on the laptop on your desk is the difference between something to read about and something to use. A 2-bit dynamic quant of V4-Flash on 128GB silicon collapses that gap.
- Key points
- DeepSeek-V4-Flash, posted to mlx-community, lands at 90GB on disk in a 2-bit dynamic quant — small enough to run on 128GB Macs.
- The recipe quantizes experts to Q2 and the rest of the model to Q4, a mixed scheme suggested by Salvatore Sanfilippo (antirez).
- Pre-quantized weights for the full V4 collection are now hosted by the MLX community org thanks to compute support from Lambda.
- Yesterday's brief had this as a passing mention; today it has shipped weights and a working laptop demo.
- Provenance
- Tweet · Primary source
-
2
Java Virtual Threads: The Pinning Problem, the Deadlock, and the Fix in Java 24
Article Shubham Raizada — A working Java engineer writing up notes from JEP 444, JEP 491, and an internal Atlassian incident; the post was widely shared on r/programming over the weekend.
VT-1 is now pinned to CT-1. VT-2 tries to enter the same synchronized block. It blocks waiting for the monitor. VT-2 is now pinned to CT-2. All carrier threads are now pinned. No carrier is available.
shbhmrzd.github.io/java/concurrency/virtual… →Details
- Cited text
VT-1 is now pinned to CT-1. VT-2 tries to enter the same synchronized block. It blocks waiting for the monitor. VT-2 is now pinned to CT-2. All carrier threads are now pinned. No carrier is available.
- Context
- Anyone who flipped on virtual threads in Java 21 expecting a free throughput win is at risk of this exact production hang. The post is the clearest map of the failure mode I've seen, with code you can run yourself.
- Key points
- Java 21 virtual threads multiplex M virtual threads onto N carrier threads via a ForkJoinPool; the throughput win comes from cheap unmount/remount around blocking I/O.
- synchronized blocks pin a virtual thread to its carrier because monitor ownership is tracked by OS thread identity, not virtual thread identity — letting a different VT run on the same carrier would let it re-enter a lock it never acquired.
- Pinning is not a bug by itself; it becomes a deadlock when enough carriers are pinned that no virtual thread can make progress, which is the failure Netflix and Atlassian both hit.
- ReentrantLock uses LockSupport.park, which is virtual-thread-aware, so it unmounts cleanly. Java 24 removes the synchronized pinning behavior entirely (JEP 491).
- The runnable demo with -Djdk.virtualThreadScheduler.parallelism=2 reproduces the exhaustion in 6 seconds versus 2 seconds with ReentrantLock.
- Provenance
- Article · Supporting source
-
3
The West Forgot How to Build. Now It's Forgetting Code
Article Denis Stetskov — Engineering manager running teams in Ukraine; writes From the Trenches, where most of the writing is on the talent pipeline.
It's Fogbank for code. When juniors skip debugging and skip the formative mistakes, they don't build the tacit expertise. And when my generation of engineers retires, that knowledge doesn't transfer to the AI.
techtrenches.dev/p/the-west-forgot-how-to-m… →Details
- Cited text
It's Fogbank for code. When juniors skip debugging and skip the formative mistakes, they don't build the tacit expertise. And when my generation of engineers retires, that knowledge doesn't transfer to the AI.
- Context
- It's the most considered counterweight I've read this month to the cheerful AI-coding numbers. He isn't anti-AI; he's saying the optimization may compound for a decade before you find out it didn't work.
- Key points
- Stetskov draws a parallel between the US defense industry losing the ability to build Stinger missiles after a 20-year production gap, and what he sees happening to the junior software engineering pipeline today.
- The Fogbank case — a nuclear-warhead material the US lost the recipe for because the impurity that made it work existed only in retired workers' heads — is the load-bearing analogy.
- He cites the same METR study from yesterday's brief: experienced devs predicted AI would make them 24% faster, came in 19% slower, with a 43-point gap between prediction and reality.
- His own hiring data: 2,253 candidates, 4 hired — a 0.18% conversion rate for the rare combination of technical skill and judgment to override a confident-sounding model.
- Defense ramp-ups took three to ten years to recover from optimization away. Software senior pipelines are on a similar timescale.
- Provenance
- Article · Supporting source
-
4
MCP = Mega Context Problem — Matt Carey, AI Engineer
Video Matt Carey — Works on MCP and agents at Cloudflare; one of the engineers behind their code-mode approach to API access.
Open API spec is 2.3 million tokens. Into tools, that's something like 1.1 million tokens. And that's never going to fly even with the biggest foundational models.
www.youtube.com/watch?v=YBYUvGOuotE →Details
- Cited text
Open API spec is 2.3 million tokens. Into tools, that's something like 1.1 million tokens. And that's never going to fly even with the biggest foundational models.
- Context
- If you're building an agent against a real product API, this talk is the cleanest articulation of the shape the next year of MCP work has to take. Tool dumps don't scale; progressive discovery does.
- Key points
- Cloudflare's full API is 2,600+ endpoints; loaded as MCP tool definitions, the schemas alone consume roughly 1.1 million tokens.
- Splitting one company's API across 16 product-scoped MCP servers gives you context discipline but loses coverage — most servers ship a fraction of the underlying API.
- Three patterns for progressive discovery: agent-driven CLIs, in-protocol tool search, and code mode where the agent writes typed code against a generated SDK and runs it in a sandboxed isolate.
- The objection to code mode was always 'untrusted code is scary' — Cloudflare's answer is V8 isolates with explicit network and filesystem capability flags.
- Carey's framing: MCP isn't dead, but the default of 'load every tool into context' is dead. The protocol can carry CLIs, tool search, and code mode equally well.
- Provenance
- Video · Supporting source
-
5
Asahi Linux Progress Report: Linux 7.0
Article The Asahi Linux team — The volunteer team porting Linux to Apple Silicon; the progress report is one of the more detailed reverse-engineering writeups in mainstream Linux land.
The parameter we had been setting this entire time had nothing to do with power sequencing, it was the minimum refresh rate toggle for VRR. Setting it to 0 before a modeset simply tells DCP to disable VRR.
asahilinux.org/2026/04/progress-report-7-0 →Details
- Cited text
The parameter we had been setting this entire time had nothing to do with power sequencing, it was the minimum refresh rate toggle for VRR. Setting it to 0 before a modeset simply tells DCP to disable VRR.
- Context
- If you only read AI news, you forget how much of the actual stack you depend on is built by people debugging firmware blobs by hand. This report is a reminder of what work looks like when the model can't help you.
- Key points
- Three years of work in 6.x kernels gives way to Linux 7.0 with substantial Asahi gains: ALS-driven True Tone-style color, PMP power management saving roughly half a watt at idle on M1 Pro (a 20% drop), and Bluetooth audio coexistence finally landing.
- The VRR discovery is a textbook reverse-engineering moment: a parameter the team had set to 0 for years assuming it was a power-on quirk turned out to be the adaptive-sync minimum refresh rate, encoded in fixed-point as 0x300000 for 48Hz.
- Asahi's installer pipeline now runs through GitHub Actions instead of manual CDN admin steps — the previous installer tag was from June 2024, which had become a real problem for distros downstream.
- The audio stack writeup includes a generic ASoC bus-keeper API now merged for 7.1, addressing how Apple chains amp data lines in series — a quirk that may help other embedded platforms too.
- Provenance
- Article · Supporting source
-
6
DHH on the AMD HX370 versus Panther Lake on a 30K-assertion test suite
X dhh — Creator of Rails, co-founder of 37signals; runs HEY's actual production codebase on the laptops he tweets about.
Even if AMD is now beat on battery efficiency, it's worth remembering that the HX370 still performs (exactly!) as well as Panther Lake on heavy multi-core runs like HEY's 30K-assertion test suite. Might be some good dea…
x.com/dhh/status/2048386907474657751 →Details
- Cited text
Even if AMD is now beat on battery efficiency, it's worth remembering that the HX370 still performs (exactly!) as well as Panther Lake on heavy multi-core runs like HEY's 30K-assertion test suite. Might be some good deals to be had on those machines soon!
- Context
- If you're spec'ing a developer machine in the next quarter, the new-chip premium isn't always paying for what you think. Run your own workload before you upgrade.
- Key points
- DHH benchmarks on a real workload: HEY's 30K-assertion test suite, where the AMD HX370 ties Intel's new Panther Lake.
- Panther Lake's claimed advantage is battery efficiency, not raw multi-core throughput — a relevant distinction for developers buying laptops to run tests, not laptops to read email on a plane.
- The implicit point: synthetic benchmarks are not your test suite, and 'last generation' silicon often holds up better than the marketing cycle suggests.
- Provenance
- Tweet · Primary source
-
7
Eden AI — European Alternative to OpenRouter
Source Eden AI — Paris-based aggregator pitching itself as the European OpenRouter, hit the HN front page today with 88 points and 43 comments.
A second OpenRouter-shaped player with EU data-locality guarantees is the kind of plumbing that quietly shows up in procurement requirements two quarters later. Worth knowing about now.
www.edenai.co →Details
- Context
- A second OpenRouter-shaped player with EU data-locality guarantees is the kind of plumbing that quietly shows up in procurement requirements two quarters later. Worth knowing about now.
- Key points
- Pitch is a single API across 500+ LLM and 'expert' models (OCR, STT, TTS, vision, translation), with smart routing, region pinning, and provider fallbacks.
- The hook for an EU buyer is data residency and GDPR posture — OpenRouter routes to whichever inference provider wins the price auction, which is fine for hobby code and not always fine for regulated workloads.
- It's a thin layer; the value is in the routing config, fallback ladder, and audit trail, not the inference itself.
- Provenance
- Source · Background source
-
8
DeepSeek V4 collection on mlx-community
X Prince_Canuma — MLX engineer at Lambda; same author as the Q2-DQ tweet, follow-up announcing the broader collection.
Pre-quantized weights save the average builder a day of recipe tuning, and the profiler caveat is the kind of operational note you only get from people actually shipping on this hardware.
x.com/Prince_Canuma/status/2048354891341378… →Details
- Context
- Pre-quantized weights save the average builder a day of recipe tuning, and the profiler caveat is the kind of operational note you only get from people actually shipping on this hardware.
- Key points
- mlx-community now hosts a full DeepSeek V4 collection of pre-quantized weights, sponsored by Lambda compute.
- Companion tweet notes that traditional Apple Silicon profiler metrics often don't match end-to-end performance — saving 10ms in a module can show no overall improvement, so you need custom metrics.
- Provenance
- Tweet · Primary source
-
9
Prince_Canuma
X Prince_Canuma — MLX community contributor and agent infrastructure developer
DeepSeek-V4-Flash powering 4 parallel agents on Pi (by @badlogicgames). Running on M3 Ultra at ~30-34 tok/s and 160-187GB peak URAM using MLX-LM.
x.com/Prince_Canuma/status/2048347742750064… →Details
- Cited text
DeepSeek-V4-Flash powering 4 parallel agents on Pi (by @badlogicgames). Running on M3 Ultra at ~30-34 tok/s and 160-187GB peak URAM using MLX-LM.
- Context
- This is the first concrete data point showing DeepSeek-V4-Flash as a viable local agent runtime on consumer Apple Silicon. The 30 tok/s speed with four parallel agents suggests the practical floor for multi-agent local workflows is approaching usability.
- Key points
- DeepSeek-V4-Flash (284B total / 13B active params) running on M3 Ultra at 30-34 tok/s
- Four parallel agents running simultaneously on a single Mac
- Peak 160-187GB unified RAM using MLX-LM
- Collaborative effort involving 0xClandestine, pcuenq, kernelpool, ivanfioravanti and others
- Engagement
- 133 likes · 23 retweets
- Provenance
- Tweet · Primary source
-
10
Prince_Canuma
X Prince_Canuma — MLX community contributor and agent infrastructure developer
DeepSeek-V4-Flash-2bit-DQ coming to the mlx-community HF! It's a Q2 mixed dynamic quant recipe (Q2 experts and Q4 the rest) thanks to @antirez's tip (90GB on disk).
x.com/Prince_Canuma/status/2048388876251631… →Details
- Cited text
DeepSeek-V4-Flash-2bit-DQ coming to the mlx-community HF! It's a Q2 mixed dynamic quant recipe (Q2 experts and Q4 the rest) thanks to @antirez's tip (90GB on disk).
- Context
- The mixed Q2/Q4 dynamic quant approach is a practical technique for fitting large MoE models on consumer hardware without the quality loss of uniform quantization. The 90GB footprint makes 128GB Macs the minimum viable configuration.
- Key points
- 2-bit dynamic quantization of DeepSeek-V4-Flash
- Q2 mixed quantization: Q2 for experts, Q4 for the rest
- Weights compressed to ~90GB on disk
- Enables running on 128GB Macs
- Recipe came from antirez (redis creator)'s suggestion
- Provenance
- Tweet · Primary source
-
11
0xSero
X 0xSero — Developer and open source contributor focused on agent frameworks
Pi has implemented the best agent loop that I have read, the pi-mono/agent is only a few files and I use it for teaching the topic. It's the simplest, most efficient harness token wise. Highest cache hit rate, lowest to…
x.com/0xSero/status/2048156544034799675 →Details
- Cited text
Pi has implemented the best agent loop that I have read, the pi-mono/agent is only a few files and I use it for teaching the topic. It's the simplest, most efficient harness token wise. Highest cache hit rate, lowest tokens per session, least bugs.
- Context
- This is one of the clearest endorsements of Pi as a practical agent runtime from someone who's evaluated multiple frameworks. The specific claims about cache hit rate and token efficiency point to concrete engineering advantages.
- Key points
- Pi agent loop described as the best available
- pi-mono/agent is only a few files
- Highest cache hit rate among available harnesses
- Lowest tokens per session, least bugs
- Being used for teaching the topic
- Provenance
- Tweet · Primary source
-
12
anthonyronning
X anthonyronning — Developer building on the Pi agent framework
I've open sourced my Pi + Ax (dspy in ts) + GEPA experiment here. It's an experiment, and completely vibe coded, so don't expect much. I haven't put it through its paces yet, or tested to see how it compares to pi norma…
x.com/anthonyronning/status/204819015790465… →Details
- Cited text
I've open sourced my Pi + Ax (dspy in ts) + GEPA experiment here. It's an experiment, and completely vibe coded, so don't expect much. I haven't put it through its paces yet, or tested to see how it compares to pi normally, but it does seem to work pretty well with qwen 3.5 9B.
- Context
- Ax + GEPA on top of Pi represents the kind of composable tooling the harness ecosystem is moving toward: model-specific prompt optimization and tool tag conversion that work across frameworks. Worth watching even though it's pre-benchmark.
- Key points
- Combines Pi harness with Ax (DSPy equivalent in TypeScript) and GEPA
- Model-specific prompt optimization via GEPA
- Automatic tag conversion between tools and XML
- Open sourced as an early experiment
- Working with qwen 3.5 9B
- Provenance
- Tweet · Primary source
-
13
_Eddited_
X _Eddited_ — Developer building orchestration tooling around the Pi harness
Built a whole app that spins up pi workers in docker per default. Works fast and easy. If you have plugins, you can just mount the folder or copy via Dockerfile. From there you can do a bunch of interesting orchestratio…
x.com/_Eddited_/status/2048367360046764083 →Details
- Cited text
Built a whole app that spins up pi workers in docker per default. Works fast and easy. If you have plugins, you can just mount the folder or copy via Dockerfile. From there you can do a bunch of interesting orchestration. Tell your agent to check the pi docs and build a config.
- Context
- The emergence of higher-level tooling on top of Pi — orchestration, Docker workflows, plugin management — shows the harness is becoming an infrastructure layer rather than just a coding framework. This is where ecosystem moats get built.
- Key points
- Docker-based orchestration of Pi workers
- Plugin mounting via Dockerfile or folder mount
- Agent-driven configuration building from pi docs
- Focus on orchestration rather than model quality
- Provenance
- Tweet · Primary source
-
14
s_streichsbier
X s_streichsbier — Developer posting about Pi harness strengths
Pi is just incredible. works reliably, renders fast, no complexity, /tree, great sdk, token efficient.
x.com/s_streichsbier/status/204821633463141… →Details
- Cited text
Pi is just incredible. works reliably, renders fast, no complexity, /tree, great sdk, token efficient.
- Context
- This is the practical developer's checklist for an agent harness: reliability, speed, simplicity, context management, SDK quality, and token efficiency. The /tree feature for context management is specifically valuable for long-horizon agent workflows.
- Key points
- Reliable operation
- Fast rendering
- Low complexity
- /tree context management support
- Good SDK
- Token efficiency
- Engagement
- 218 likes · 11 retweets
- Provenance
- Tweet · Primary source
-
15
badlogicgames
X badlogicgames — Creator of LibGDX and the Pi agent harness, game developer turned AI tooling builder
wonder what you can come up with using a harness that's actually maleable. doesn't have to be pi, obv.
x.com/badlogicgames/status/2048335785074495… →Details
- Cited text
wonder what you can come up with using a harness that's actually maleable. doesn't have to be pi, obv.
- Context
- Mario's emphasis on malleability over feature completeness signals a shift in harness philosophy: the best framework is the one that bends to your workflow, not the other way around. This is the design principle behind Pi's success.
- Key points
- Malleable harnesses as a design principle
- Pi as the exemplar but not the exclusive option
- Focus on framework flexibility over rigid abstraction
- Engagement
- 38 likes · 0 retweets
- Provenance
- Tweet · Primary source
-
16
mattpocockuk
X mattpocockuk — TypeScript educator and AI coding tool advocate, creator of the total TypeScript course
I feel sorry for Claude Code. I know they're not the one. I'm not overcommitting — not investing too hard. I wonder if they know I'm pulling away.
x.com/mattpocockuk/status/20483157577763269… →Details
- Cited text
I feel sorry for Claude Code. I know they're not the one. I'm not overcommitting — not investing too hard. I wonder if they know I'm pulling away.
- Context
- Matt is one of the most visible advocates of AI coding tools in the TypeScript community. His public signal of pulling away from Claude Code is a notable data point for tracking the competitive dynamics between hosted agent tools and composable alternatives like Pi.
- Key points
- Matt Pocock signaling disengagement from Claude Code
- Explicitly not overcommitting or investing too hard
- Implies Claude Code is not his primary tool going forward
- 555 likes, 96 replies, 118K views
- Engagement
- 555 likes · 12 retweets
- Provenance
- Tweet · Primary source
-
17
milkglass
Article milkglass — Runs engineering teams in Ukraine, author of the essay
When my generation of engineers retires, that knowledge doesn't transfer to the AI. It just disappears.
techtrenches.dev/p/the-west-forgot-how-to-m… →Details
- Cited text
When my generation of engineers retires, that knowledge doesn't transfer to the AI. It just disappears.
- Context
- The essay argues that the current software hiring collapse mirrors the defense industry's production collapse — both optimized away the human pipeline that builds tacit expertise. The Fogbank parallel (knowledge existing only in retired workers) is the core metaphor, and it's specific enough to be testable rather than just rhetorical.
- Key points
- Fogbank story: nuclear weapons material lost when production expertise retired, $69M to reverse-engineer
- Defense industry consolidation: 51 major contractors collapsed into five, workforce fell 65%
- France halted domestic TNT production in 2007; restarted only in 2024
- Stinger missile production took 30 months minimum from order to delivery
- Junior developer timeline: 3-5 years to mid-level, 5-8 to senior, 10+ to principal — can't be compressed by AI
- METR study: experienced developers took 19% longer on real-world tasks with AI tools, predicted 24% speedup
- Salesforce won't hire more engineers in 2025; 54% of engineering leaders expect AI to reduce junior hiring long-term
- Engagement
- 619 likes · 0 retweets
- Provenance
- Article · Supporting source
-
18
EchoOfOppenheimer
Article EchoOfOppenheimer — Reddit poster linking to the Stanford study on bioRxiv
This is a genuine capability milestone for LLMs in biosecurity-relevant domains. 16 functional viruses from an LLM is not a filter bypass — it's the model generating novel, functionally valid sequences. The novel protei…
www.reddit.com/r/OpenAI/comments/1sw0vcf/st… →Details
- Context
- This is a genuine capability milestone for LLMs in biosecurity-relevant domains. 16 functional viruses from an LLM is not a filter bypass — it's the model generating novel, functionally valid sequences. The novel protein finding suggests the model wasn't just copying known data but exploring uncharted sequence space.
- Key points
- Stanford researchers fed a language model DNA sequences and asked it to create a new virus
- Model wrote hundreds of viral sequences, 16 of which worked
- One of the 16 functional sequences used a protein that doesn't exist in any known organism on Earth
- Study published on bioRxiv: https://www.biorxiv.org/content/10.1101/2025.09.12.675911v1.full.pdf
- Engagement
- 295 likes · 0 retweets
- Provenance
- Article · Supporting source
-
19
SnoozeDoggyDog
Article SnoozeDoggyDog — Reddit poster linking to the PC Gamer report on data center energy
The infrastructure cost of the AI buildout is becoming impossible to ignore. These 11 data centers represent the tip of the energy demand spike from AI training, and the gas projects backing them are enormous in scale r…
www.reddit.com/r/singularity/comments/1svfi… →Details
- Context
- The infrastructure cost of the AI buildout is becoming impossible to ignore. These 11 data centers represent the tip of the energy demand spike from AI training, and the gas projects backing them are enormous in scale relative to their geographic footprint.
- Key points
- Gas power projects for just 11 US data center campuses could emit more greenhouse gases than entire countries
- Report from PC Gamer citing energy data
- Engagement
- 190 likes · 0 retweets
- Provenance
- Article · Supporting source
-
20
Eden AI team
Article Eden AI team — European model routing API positioning as an OpenRouter alternative
OpenRouter's dominance in model routing is significant because it controls the traffic between models and developers. A European alternative suggests real concern about vendor concentration and data sovereignty, even if…
www.edenai.co →Details
- Context
- OpenRouter's dominance in model routing is significant because it controls the traffic between models and developers. A European alternative suggests real concern about vendor concentration and data sovereignty, even if Eden AI's actual differentiation and pricing remain unclear.
- Key points
- European alternative to OpenRouter
- Model routing API covering multiple providers
- Front page on HN with 88 points and 43 comments
- Provenance
- Article · Supporting source
-
21
Asahi Linux team
Article Asahi Linux team — Open source project bringing Linux to Apple Silicon Macs
The Asahi project demonstrates what long-haul Apple Silicon Linux support looks like in practice. The PMP power management work is particularly valuable — the real-world battery life difference is measurable. This is up…
asahilinux.org/2026/04/progress-report-7-0 →Details
- Context
- The Asahi project demonstrates what long-haul Apple Silicon Linux support looks like in practice. The PMP power management work is particularly valuable — the real-world battery life difference is measurable. This is upstream-first engineering with Apple-specific optimizations, which is the sustainable model for platform porting.
- Key points
- Asahi Linux reached kernel 7.0 after almost three years of 6.x series work
- VRR (Variable Refresh Rate) support for external displays
- PMP (Power Management Processor) driver saves ~0.5W idle, 20% decrease in idle power
- Bluetooth WiFi coexistence fixes prevent audio dropouts
- Installer now deploys automatically via GitHub workflows
- Bus keeper API merged for upstream speaker amp support
- Reverse engineering of undocumented Apple firmware interfaces continues
- Engagement
- 152 likes · 0 retweets
- Provenance
- Article · Supporting source
-
22
emollick
X emollick — University of Pennsylvania professor studying AI in education and work, author of Co-Intelligence
Ethan has been one of the clearest voices mapping AI capability trajectories over the past two years. His visualization work is designed to cut through benchmark noise and help people think about what's actually changin…
x.com/emollick/status/2048278196596945219 →Details
- Context
- Ethan has been one of the clearest voices mapping AI capability trajectories over the past two years. His visualization work is designed to cut through benchmark noise and help people think about what's actually changing and what isn't. Worth reading directly for the image itself.
- Key points
- Posted a useful image for thinking about AI capability curves
- Image designed to help people think about trajectories intuitively
- 976 likes, 18 replies, 112 retweets
- Engagement
- 976 likes · 112 retweets
- Provenance
- Tweet · Primary source