AI Digest.

Microsoft Doubles Down on Small Models as BTL-3 Crushes 27B Parameters Into an 8GB File

Today's discourse highlights a massive shift away from relying solely on expensive frontier models, with Microsoft and independent developers proving that smaller, highly tuned architectures are the future of enterprise AI. Meanwhile, the software engineering world is experiencing a paradigm shift as legendary developers abandon manual code reviews in favor of extreme constraint-based testing for autonomous agents.

Daily Wrap-Up

The AI industry is undergoing a subtle but massive structural shift, moving away from the obsession with ever-larger frontier models toward highly optimized, task-specific architectures. For months, the prevailing narrative has been that bigger is always better, but the economic realities of running massive models at scale are finally catching up to the hype. Today's conversations prove that the real moat in artificial intelligence is no longer raw parameter count, but rather the systems built around the model. From enterprise giants to independent open-source developers, the focus has decisively pivoted to cost efficiency, local deployment, and hyper-specialized small models that can run seamlessly on consumer hardware.

On the software engineering front, we are seeing a fundamental rewiring of how developers interact with code. The traditional workflow of writing syntax and manually reviewing pull requests is rapidly becoming obsolete in the age of autonomous coding agents. Pioneers of clean code are now openly admitting that they skip reading AI-generated code entirely, opting instead to build elaborate labyrinths of automated constraints, tests, and quality metrics. This represents a massive cultural turning point. The core competency of a software engineer is shifting from syntax creation and manual review to system architecture, telemetry analysis, and test design.

This transition is not without its growing pains, as the cost of running these autonomous loops can quickly spiral out of control if not strictly monitored. As the industry reinvents software engineering from first principles, the ability to trace agent behavior, standardize session data, and enforce strict operational boundaries is becoming the most critical skill set for modern developers. The most practical takeaway for developers: stop obsessing over raw model benchmarks and start investing heavily in your local inference pipelines, strict evaluation metrics, and agent telemetry, because the system architecture surrounding your model is now your primary competitive advantage.

Quick Hits

  • @levelsio drops the ultimate smart home and IoT setup thread, detailing everything from Home Assistant configurations to massive solar battery arrays and the importance of never connecting your smart TV directly to the internet.
  • @callebtc discusses how Buzz leverages Nostr protocols to create an open ecosystem for agent communication, pointing out that open protocols compound in value over time.
  • @jasonfried and @rjs explain why setting arbitrary priority labels in project management tools is a painful trap that masks deeper project interdependencies.
  • @GergelyOrosz shares a hilarious but sad anecdote about fast-growth startup PMs who allegedly lack the attention span to read even a one-page product requirements document.
  • @shubgaur highly recommends @leerob's latest breakdown on the mechanisms behind teaching AI models, noting his exceptional ability to make complex topics accessible.
  • @kimmonismus shares a viral and somewhat terrifying video clip highlighting new AI capabilities and their potentially frightening real-world use cases.
  • @WiFiMoneyGuy shares a guide on how to evaluate whether your LLM models have been secretly nerfed, aiming to help users make their AI agents significantly smarter.
  • @Starlink reminds the tech community that fast, reliable internet remains the foundational backbone for all modern digital and AI-driven operations.

The Enterprise Shift: Small Models, Big Systems

The economics of running massive language models are forcing a stark change in enterprise AI strategy. For the past few years, companies have essentially been renting intelligence from frontier model providers, paying a premium for every single API call. But as the market matures, the focus is shifting toward internal capability. Satya Nadella recently highlighted Microsoft's approach, which serves as a blueprint for the entire industry. Instead of relying entirely on OpenAI's frontier models, Microsoft has been training small, in-house MAI models directly inside their products, using reinforcement learning environments that reward the completion of actual customer tasks rather than just gaming abstract benchmarks.

As Matt Van Horn (@mvanhorn) points out in his breakdown of Nadella's strategy, the tech giant now routes traffic to these smaller custom models wherever they match frontier quality, only calling upon the most expensive models for true frontier needs. He notes that the MAI model running in Excel matches the quality of leading frontier models on common tasks at a fraction of the cost, and remarkably, it runs on older H100 and A100 GPUs instead of requiring the latest silicon. "Small models trained in the product, frontier models on standby. That's the whole strategy," explains @mvanhorn. The real innovation here is that the trick is the system, not the model. The harness, memory, context, tools, and evals all live outside the model, meaning any model can be swapped in or out as needed.

This sentiment is echoing across the startup ecosystem as well. Vas (@vasuman) highlights a growing realization among builders: you simply do not need the most expensive, cutting-edge model to accomplish the majority of enterprise tasks today. By utilizing cheaper models wrapped in highly capable agent harnesses, startups like his are achieving state-of-the-art results on massive economic benchmarks. This pragmatic approach to model selection contrasts sharply with the ongoing regulatory drama in the AI space. David Sacks (@DavidSacks) recently slammed Anthropic for their incessant attempts at regulatory capture. While Marc Benioff praises Anthropic as the fastest-growing company in Silicon Valley history, Sacks argues that their attempts to lobby for regulations are not just unnecessary but frankly gross. The disconnect is clear: the fastest path to enterprise value is building better systems around efficient models, not lobbying the government to protect a frontier model monopoly.

Local AI Reaches New Extremes in Compression

As enterprises look to cut costs, independent developers are proving that you can achieve staggering levels of performance entirely offline. The open-source community has been pushing the boundaries of model quantization for years, but Bad Theory Labs (@Badtheorylabs) just dropped a genuine breakthrough with the release of BTL-3. They have managed to compress a 27 billion parameter agentic coding model down into a single 8.39 gigabyte file. To put that into perspective, it is smaller than a standard 8 billion parameter model running in standard 16-bit precision, yet it retains over 92 percent of the original model's intelligence.

Standard quantization techniques completely fail at this level of compression, so the team had to build an entirely new technical stack from scratch. "Compressing 27B this far normally destroys a model. Standard quantization couldn't do it, so we built the stack ourselves: packed AVQ2 decoder tensors, affine INT4, measured precision islands, packed vocabulary matrices, rank-32 output correction, behavioral repair," notes @Badtheorylabs. The model was explicitly trained for the continuous loop that real autonomous agents live in: reasoning, acting, inspecting results, recovering from errors, and continuing the task. It achieves a 95.12 percent pass rate on HumanEval and handles a massive 262K context window, all while generating 43 tokens per second locally on a single RTX PRO 6000 GPU.

This extreme push toward local efficiency is supported by a growing ecosystem of practical guides. Ahmad (@TheAhmadOsman) highlights new research on minimum viable baselines for local LLM inference, specifically focusing on the nuances of model and cache quantization. The overarching message is that standard out-of-the-box quantization is no longer sufficient for developers who want maximum performance on consumer hardware. The industry is moving toward hyper-optimized, tailored runtimes. Hyperagent (@hyperagentapp) leans into this trend, arguing that developers should not have to install complex dev environments just to run proactive AI agents. By shifting the heavy lifting to cloud-based local switches and offering migration credits, they aim to eliminate the setup burden entirely. The convergence of these trends signals a future where the vast majority of agentic workloads will happen locally on edge devices, completely insulated from the API costs and privacy concerns of cloud providers.

The New Rules of Software Engineering

The implications of these highly capable coding agents are fundamentally rewriting the rules of software development. Akira (@realmcore_) expressed a sentiment shared by many veteran engineers today, noting in absolute disbelief that the industry is collectively reinventing all of software engineering from first principles right before our eyes. The most glaring example of this shift comes from Uncle Bob Martin, the legendary author of Clean Code. In a recent discussion translated and amplified by Baoyu (@dotey), Uncle Bob admitted that he no longer reads any of the code written by his AI agents. His reasoning is straightforward: human reading speed is simply too slow to keep up with the output of modern AI. If developers insist on manually reviewing every line of generated syntax, they completely lose the productivity advantage that AI provides.

Instead of manual review, Uncle Bob advocates for a rigorous system of extreme constraints. "What I do instead is to surround the agents with extreme constraints. Unit tests, gherkin tests, QA procedures, quality metrics, mutation testing, test coverage, and a plethora of others," he explains. By forcing the AI to run a gauntlet of automated tests, he ensures high code quality without ever needing to look at the actual implementation. This marks a monumental shift in the developer skill set. The most valuable engineers are no longer those who write the best syntax, but those who can architect the best test suites, define the strictest rules, and establish the most accurate metrics. Uncle Bob has even launched new courses on agentic discipline, emphasizing that AI does not remove the need for engineering rigor, it simply requires a completely different type of discipline.

However, letting agents run autonomously introduces entirely new operational challenges, particularly when it comes to cost monitoring. Mikyo (@mikeldking) recently traced his Claude Code sessions using a revamped code tracing tool and was shocked by the financial implications of unchecked agent loops. After forgetting to turn off the tracer, he accumulated a massive amount of local session data and realized he was averaging two dollars per turn. This rapid accumulation of costs highlights a critical blind spot in the new autonomous paradigm. To manage this sprawling complexity, standardization is becoming essential. Letta (@Letta_AI) introduced Trajectory, an open-source package designed to normalize agent experience data. By standardizing the session formats of various coding agents like Claude Code, Codex, and deepagents, developers can finally gain consistent visibility into what their agents are doing, how they are performing, and how much they are spending. Without these telemetry standards, managing an army of autonomous coding agents is like flying blind.

The Battle for AI Talent and Hardware

Beneath the software layer, the hardware and talent wars continue to shape the trajectory of the industry. The intersection of deep mathematics and artificial intelligence is becoming the most prized territory in tech. Noah Chrein (@NoahChrein) highlighted a massive milestone in this space, pointing out that Jacob Tsimerman, fresh off winning a Fields Medal, has joined OpenAI. As @NoahChrein notes, bringing in someone with profound mathematical expertise who also understands the practical realities of AI is a massive win for the company. It signals that AI labs are no longer just hiring software engineers, they are recruiting the world's foremost theoretical minds to push the boundaries of what neural networks can achieve.

This movement of top-tier talent highlights the growing ideological and technological divide between Western and Eastern AI development. Kyle (@zeroxkyle) sparked intense conversation by comparing an interview with the CEO of DeepSeek to the standard talking points of Western AI leaders. He described the comparison as a massive reality check, suggesting that the strategic approaches and fundamental philosophies driving AI development in China are diverging significantly from Silicon Valley. This global competition is mirrored in the semiconductor space, where companies are fighting for mindshare and community support.

Ren (@ren_stocks) noted a fascinating shift in corporate marketing, shouting out a relatively small account for breaking the fourth wall and collaborating directly with the financial technology community. AMD, traditionally seen as a stoic chip giant, responded in kind, signaling a mutual appreciation. While it might seem like a minor social media exchange, it underscores a critical reality in the hardware space. AI developers and infrastructure engineers hold immense sway over which chips get adopted. The fact that a major semiconductor manufacturer is actively engaging with niche fintech and AI communities shows just how crucial grassroots developer adoption has become. As models become more compressed and run on a wider variety of local hardware, the loyalty of the developer community will dictate the next generation of hardware winners.

Sources

H
Hyperagent @hyperagentapp ·
You shouldn't have to install a dev environment to run AI agents. Get the always-on, proactive behavior — without the setup burden. OpenClaw switchers get $100 at signup + $500 migration credits.
B
Bad theory labs @Badtheorylabs ·
Today we are Introducing BTL-3. A 27B open-weight agent model built for agentic coding, structural tool use . The complete thing fits in one 8.39GB file under 2.5 bits per parameter smaller than an 8B model in fp16, and retains 92.2% of the 27B itelligence BTL-3 is trained for the loop real agents live in: reason, act, inspect the result, recover, continue. It handles single, sequential, and parallel tool calls and knows when the right move is no tool call at all. HumanEval: 95.12% pass@1 BFCL v4 AST: 88.5% (full 1,240-case set) Multiple tool calls: 95.5% Tool-call abstention: 91.2% 262K context architecture Two editions, both open today. BTL-3 is the maximum-quality checkpoint, for Transformers and vLLM. BTL-3 Compact is the entire model in one standalone 8.39GB GGUF. No base download. No reconstruction. One file, one command, a running agent. Compressing 27B this far normally destroys a model. Standard quantization couldn't do it, so we built the stack ourselves: packed AVQ2 decoder tensors, affine INT4, measured precision islands, packed vocabulary matrices, rank-32 output correction, behavioral repair. 2,416 tensors byte-verified at export. Then we tested whether the agent survived. On a fresh sealed 100-turn tool-contract gate, Compact retained 92.2% of teacher-correct behavior 100% on single, parallel, sequential, and abstention calls. 43 tok/s generation on an RTX PRO 6000. Fully local. Nothing leaves your machine. BTL-3: https://t.co/ddZWWr6i3o Compact: https://t.co/6URHEBGJgG Runtime + source: https://t.co/MjXQR6koKt Apache-2.0 model. MIT runtime.
@
@levelsio @levelsio ·
Things I learnt after buying a house after 1 year and going through lots of shitty products and things and what I'd do know if I bought or build a house again: - home assistant + their HA Green (little box that's open source to connect all your devices with Home Assistant) - LG or Mitsubishi air conditioning in EVERY room, both cooling/heating, every unit should have its own outdoor unit, or you get annoying things like you can't cool one room and heat the other at same time! I think they're called mono splits - xiaomi air purifier in every room, big spaces get the big purifiers, smaller rooms small ones (most air purifiers are too small for the space they're in!) - a good smart lock, it's so good because you come home and your door auto opens (esp nice if you carry stuff) - matic vacuum (they gave me one so I have to disclose but it's GREAT, all the Roomba and Chinese ones suck) - unifi router with access points, outdoor extenders, cameras, doorbell, all PoE - starlink with local fiber backup - tesla dreamwall or other batteries sufficient to power for days (means like 4-8 batteries @ 13kwh per maybe!), then connect your freezer, fridge, stove, etc to it (heavy loads) so you can keep and cook food when shit goes down - related get a Weber Genesis gas bbq so you can always cook food, fun with friends too - solar panels actually sufficient to power (so like 30-50, crazy number but if you get like 15 it's just not enough?) - pool is honestly overrated, you'll almost never use it, also lots of maintenance (we had a massive water leak with a $10,000 water bill this month, so F that) - but u DO want a standalone jacuzzi, that's nice, with lights! - if you care about safety get steel doors with massive locks for other rooms, and make those safe rooms, so if someone comes in you have multiple layers of security - also get weapons to defend you and your family where legally possible! - garden should be permaculture kinda concept with vegetables, herbs and stuff you can grow to eat, like strawberries, rosemary etc - harvia dry sauna, and if outside, add a little changing room to it so you don't exit in the cold outside! - related, build a home gym, get a big power rack with cables, free barbell, smith barbell, everything built in, and then some dumbbells and kettlebells, and a gym bike like concept2, maybe concept2 rowing machine too, with that you can do almost anything to stay fit! then hire personal trainer to come to your house or you will never go! - ALL lights should be changeable to red at night, via home assistant, so you can make everything red at 10pm for sleep! - also get outdoor lights for fun and security (burglars hate lights) - ALL windows black out blinds on outside, for both security and just NO light during sleep - when you're not sleeping, get lots of sunlight, big floor to ceiling glass windows, it's great! - all doors to outside flat on floor level, no stepover edges (like in PT) - preferrably lots of land around your house so you're not close to any neighbors (neighbors are always annoying even if they're nice!) - fellow water kettle, fellow ode 2 coffee grinder - sofas, other interior, make sure to find natural materials, 99% of interior is polyester/plastic - LG makes the best TVs, end of story, but their software is shit and spies on you, NEVER connect them to the internet/WiFi, instead buy an Apple TV box and connect that, that doesn't spy on you and has no ads, then connect it with HDMI and you're good, also no annoying LG TV updates - re: TVs, people show these formulas of like blalba distance to sofa from tv is N meter so now you need 60", in my experience they always sell you a TV like 10-15" too small, we had 77" LG TV and it was like diving into the screen, beautiful, but then we followed the formula and changed it for 65", not the same! get bigger! - get a VERY big bed, 2m wide by 2m long at least, get natural bed sheets/duvet and seperate duvet from partner, the less you wake up when your partner moves the better - guest rooms are a bad idea, it's annoying to have friends and family IN your house for weeks or a month, good luck trying to have SEX! better get a small house or apt near for them or put them in airbnb!!! - add a delivery box outside ur house so delivery people can put packages inside without having to ring your doorbell 10x per day - get a $500 mini projector and big projection screen outside (or a white wall) so you can have movie nights outside w friends
C
calle @callebtc ·
buzz is cool if you're a normie "wow a slack alterantive for agents". buzz is EXTREMELY cool if you know nostr and that it supports everything that works on nostr. there will be thousands of web apps, mobile apps, bots, dashboards, admin tools that all work with buzz because we already built all of it in the last 3 years. crazy how open protocols just compound.
C callebtc @callebtc

wss://buzz.cashu.space https://t.co/m7jHNPeDin

M
Matt Van Horn @mvanhorn ·
TL;DR ELI5 of @satyanadella new post: the best AI product strategy is no longer renting the biggest model. It's training small in-house models inside the product until they match frontier quality on everyday tasks. 🧠 Frontier models are amazing but expensive. Most everyday tasks don't need them 🏋️ Microsoft trained small MAI models inside the actual products (GitHub Copilot, Excel) using RL environments that reward completing real customer tasks, not benchmarks 📊 The MAI model in Excel matches GPT-5.6 quality on the most common tasks at a fraction of the cost, and runs on older H100/A100 GPUs instead of the latest chips 🔀 They now route traffic to MAI wherever it matches frontier quality, and only call OpenAI/Anthropic models for true frontier needs 🧩 The trick is the system, not the model: harness, memory, context, tools, and evals all live outside the model, so any model can be swapped in or out and the product keeps improving 📈 Code model became the Excel model: MAI-Code-1-Flash was the starting checkpoint for the Excel climb, going from ~72% to 86% on their evals 🏢 Same playbook every enterprise can run with their own evals, RL environments, and workflows Small models trained in the product, frontier models on standby. That's the whole strategy.
S satyanadella @satyanadella

Frontier Diffusion & Control

D
David Sacks @DavidSacks ·
It’s true that Anthropic is the fastest growing company that Silicon Valley has ever seen. Which is all the more reason their incessant attempts at regulatory capture are not just unnecessary but frankly gross.
B Benioff @Benioff

What most impresses me about Anthropic (besides unprecedented revenue growth) is their enterprise hat trick: the best model (Claude), the best coding agents (Claude Code), & the best productivity tool (Cowork). Salesforce is proud to be an early investor, customer, and partner. https://t.co/PE1DIGTOnN

G
Gergely Orosz @GergelyOrosz ·
From a friend who joined a fast-growth, later-stage startup: "I was wondering why no one is doing PRDs here. Then I realized that the Head of Product and most PMs are 25-year-olds who don't have the attention span to *read* even a 1-page doc. You lose them after 3 bullet points."
S
Starlink @Starlink ·
Get connected with fast, reliable internet for streaming, video calls, online gaming and more. Order online in minutes.
J
Jason Fried @jasonfried ·
Spot on (as Ryan usually is). In Basecamp we intentionally don't use the word "priority" anywhere in the product. Yet we have tasks, assignments, cards, to-dos, all the things that would normally be prioritized. Marking something as high priority, or ranking it 1-5 or something like that, is a painful trap sprung by software on unassuming teams and project managers. Same as % of a list being done equaling some sort of progress. It's not progress, it's just a list getting done. 9 out of 10 things done on a list doesn't make something 90% done. An indicator of "# of things done" is fact, and that's fine, but representing it as progress is not. Beware of pseudo-labels that are easy to apply. They mask deeper meaning you then ignore.
R rjs @rjs

“Priority” is such a slippery term. I never use it. Instead: - Is it “in” or “out” of a given scope? - If it’s in, what’s the sequence. Is it first, second, third, early, later? Sequence is sometimes due to urgency. But can also be interdependence or progressive enhancement.

∞-modal @NoahChrein ·
Follow this man. He knows a ton of real math and also understands why all of mathematics is relevant to AI. Actually in touch with reality.
G GeorgiIlIvanov @GeorgiIlIvanov

Jacob Tsimerman joining OpenAI off the cusp of his Fields medal at ICM is about to hit the pure math zeitgeist harder than any of the solved Erdős problems or conjectures did. AI just broke through the sound barrier.

A
akira @realmcore_ ·
I cannot fucking believe that everyone is collectively reinventing all of software engineering from first principles What the fuck What happened
R
Ren @ren_stocks ·
I want to give a shoutout to this up-and-coming account @aleabitoreddit , for those who don’t know him, barely reaching 1M followers. And to @AMD, a small chip company trying to make it in the space. In all seriousness, it’s really nice to see FinX break the fourth wall. It takes some serious b… to put yourself out there, but it’s great that some companies appreciate the value this community delivers. Let the multiverse where FinX collabs with industry begin.
A AMD @AMD

The feeling’s mutual. 🤝

K
Kyle @zeroxkyle ·
IMO reading CEO of Deepseek's interview and comparing it to what Western AI leaders are saying is the largest blackpill I've taken today https://t.co/pJsTWm0hrv
宝玉 @dotey ·
前些天 X 上还一堆人讨论要不要看 AI 生成的代码,现在《Clean Code》作者鲍勃大叔都说:“我不看 AI 写的代码” 他的原话是,这是他能利用 AI 生产力的唯一方式。人类读代码太慢了,如果还逐行审查,就丧失了用 AI 的意义。 但不看不等于不管。他的做法是给 AI Agent 设置层层关卡:单元测试、Gherkin 测试(一种用接近自然语言描述软件行为的测试格式)、QA 流程、代码质量指标、变异测试(故意往代码里塞小错误,看测试能不能抓住)、测试覆盖率,等等。 他在今年早些时候还公开了自己的具体实践:一套四个 Agent 组成的流水线,分别负责需求规格化、编码、重构和架构审查,每个阶段都比上一个阶段更形式化,需要的人工干预也更少。他同时还会看测试覆盖率、依赖结构、圈复杂度、模块大小这些指标,从指标推断代码质量,而不是从代码本身。 【注:圈复杂度(Cyclomatic Complexity)衡量代码中独立执行路径的数量,数字越大说明逻辑越复杂,越难维护和测试。】 当 AI 生成代码的速度远超人类阅读代码的速度,代码审查的形态也在跟着改变。以前的核心能力是读代码、写代码,现在可能正在变成写测试、定约束、设指标。鲍勃大叔过去几十年一直在推测试驱动开发(TDD),现在 AI 时代高质量的测试覆盖反而比代码更有价值。 他今年在 O'Reilly 上开了一门课,叫《AI Agents for Clean Code》,也在自己的 Clean Coders 平台推出了新系列《Clean AI: Agentic Discipline》。主旨一样:AI Agent 不是不需要纪律,是需要不同的纪律。
U unclebobmartin @unclebobmartin

I’m significantly older than you. I started coding in the late 60s. My current strategy is to not read any of the code written by my agents. That’s the only way I can take advantage of their productivity. What I do instead is to surround the agents with extreme constraints. Unit tests, gherkin tests, QA procedures, quality metrics, mutation testing, test coverage, and a plethora of others. In the end, I have very high confidence in the code they produce because they’ve had to run the gauntlet of all of my constraints and tests.

V
vas @vasuman ·
The benchmarks imply something that has been whispered about for a while: you don't need the most frontier model to do most work that enterprises need today. You can use a cheaper model. This is exactly what we do at Varick.
O Offloop @Offloop

Introducing Offloop! We're a team of four. Today our multi-agent harness hit state of the art on GDPval, ahead of Claude code and Codex across jobs that pay $2.4 trillion a year in the US. Offloop gives every knowledge worker what the Fortune 500 spends billions on: a high-performing agent army that runs itself and grows the business.

A
Andres @WiFiMoneyGuy ·
I wrote an article today on how to 100x your agents and know for sure if models are nerfed or not.
W WiFiMoneyGuy @WiFiMoneyGuy

how to make your AI agents 100x smarter...

S
shub @shubgaur ·
leerob is so good at breaking down content so fools like me can understand what's happening. Highly recommend reading
L leerob @leerob

How we teach AI models

A
Ahmad @TheAhmadOsman ·
Excellent points for people who run models locally https://t.co/968AiqdhUU
M Mayhem4Markets @Mayhem4Markets

Minimum Viable Baselines for Local LLM Inference: Thoughts on Model and Cache Quantization

L
Letta @Letta_AI ·
Trajectory: A Standard Format for Agent Experience Data
M
Mikyo @mikeldking ·
I started tracing my Claude Code sessions today to test out @ArizePhoenix 's revamped Code Mode MCP. After dogfooding I forgot to turn it off. So now I have about a day's worth of Claude Code traces on my local machine and it's not only fascinating to see how claude code is working under the hood but also the cost-tracking just makes me realize how quickly the dollars add up. Averaging 2 dollars a turn... Yikes.
C
Chubby♨️ @kimmonismus ·
When I see the clip, it starts to scare me a little. Especially when you imagine the use cases. https://t.co/qbKKVAJULD