Issue #96Thursday, August 27, 2026

The AI bust is here — and it's real.

Meta bled 60% of its AI teams. Monday.com and two dozen others trimmed staff. The SaaS grind is cracking under AI expectations. Meanwhile, open models from Z are quietly competitive. The tools work; the hype doesn't. Esto te toca — the pivot is over, now comes the work. Why this matters for us: the layoffs and cutbacks ripple through every side hustle and gig in the barbershop, the warehouse, the bodega — real jobs getting real pressure.

ai_scams

A new paper shows how to keep LLMs from being tricked into sharing secrets

Researchers at Microsoft and OpenAI published a paper this week on a class of attacks called model extraction. The idea is simple: send a bunch of queries to a fine-tuned model, read the outputs, and use those to train your own copy of it. The paper shows the attacks are real and works against several popular models.

The authors ran the attacks on GPT-4o, GPT-4o-mini, Claude, Llama, and several others. They also tried a few defense tricks. One is to add noise to the outputs so the extracted model can't learn the fine details. Another is to limit how many queries a user can make. Both help, but neither blocks the attack on its own. The best results come from combining them.

The real takeaway is practical: if you've fine-tuned a model on proprietary data and are serving it over an API, someone can probably reconstruct it. The paper doesn't say how much it would cost or how fast, but the attacks are fast enough to be worth trying. If you're selling model access, this is the kind of thing you should build protections for before someone else does.

Why this matters for us: lots of small shops are running their own fine-tuned models for customer service or internal tools — if those models can be copied, the value they bought is leaking out.

Read the sourcelinks.tldrnewsletter.com
ai_explainer_worthy

Meta scrapped its AI-native pivot — and cut 60% of the teams

Meta tried to go all-in on AI across the company, then quietly walked it back. The internal plan was to make every product AI-native, but it never shipped. Now the company is slashing roughly 60 percent of the teams that were supposed to run it.

The story came out in a Wall Street Journal report and was confirmed by multiple people inside the company. Meta had a big bet on AI, then realized the bets weren't landing. The teams got cut, the plans got scrapped, and the company is moving on.

Why this matters for us: Meta's retreat from a top-down AI push shows that when the money runs out, the grand visions fold — and the people who built them get pushed out too.

Read the sourcearstechnica.com
other

Lovable is eating SaaS — one app at a time

Lovable, the no-code AI builder, is pivoting from a tool you use to build apps into the app itself. The company's new plan: ship a single product that generates whatever you need on the fly, rather than letting you hand-craft interfaces. The pitch is simple — you describe…

Read the sourcelatent.space
ai_scams

Someone just pwned V8 — and it's not what you'd expect

Himanshu Anand spent a free afternoon playing with V8, Google's open-source JavaScript engine that runs Chrome and Node. He found a way to break it. The writeup is raw — no corporate polish, just a dev working through what went wrong and why. V8 is the engine behind basically…

Read the sourceblog.himanshuanand.com
ai_explainer_worthy

Z's Open Alpha model is live — and it's not a toy

Z, a small lab you've probably never heard of, just published their Open Alpha model on Hugging Face. It's open weights and open weights means anyone can download it, fine-tune it, or run it on their own hardware. The press hasn't caught up yet — Tech Crunch is the first major outlet covering it — but the model is already showing up in early benchmarks.

Z is the kind of outfit that doesn't do press tours. They don't have a CEO giving TED talks. They have researchers, open repos, and a Discord where people actually talk about the work. Open Alpha is their flagship model, and it's meant to compete with the big labs without the marketing budget. That's unusual in this space. Most open models are either community collages or marketing exercises for bigger companies.

The model sits in the middle of the current wave — not the biggest, not the cheapest, but a real contender for people who want a model they can actually own and modify. The weights are public, the training data is documented, and the license lets you use it commercially. If you've been waiting for something that doesn't require a paid API call to get useful, this is it.

Why this matters for us: open models are the one piece of AI infrastructure that won't be controlled by a handful of companies, and that matters for every small shop, every immigrant-run business, and every community that needs tools without asking permission.

Read the sourceviktor.com

Daily issue · no spam

Get the daily on your stoop

One short email a day — AI, tech, and what it means for our communities. Plain language, cultural lens, no Silicon Valley jargon.

ai_explainer_worthy

How to test LLMs before shipping — the practical checklist

A new paper from OpenAI and researchers at the University of California, Berkeley maps out how to evaluate language models before they hit production. The authors walk through the full pipeline: picking the right test set, choosing evaluation metrics, running benchmarks, and checking for failure modes like hallucination, bias, and prompt injection. They flag that accuracy isn't the only metric — latency, cost per token, and safety all matter for real systems.

What stands out is the part most teams skip: the adversarial test set. You don't just run the model on normal prompts; you run it on the prompts it's likely to get wrong — edge cases, multi-step reasoning, edge-case inputs. They show that models which look fine on standard benchmarks can still fail hard in production. The paper also covers how to detect when a model is confidently wrong, and how to set up human-in-the-loop review for the cases that need it.

This isn't theory. The authors have tested dozens of models using this framework and the differences are real — some models score well on standard benchmarks but collapse on adversarial tests, others are slower and more expensive for marginal gains. The takeaway is practical: if you're building with LLMs, you need a test set that looks like what your users will actually send, not just the standard leaderboards.

Why this matters for us: small shops and solo builders using OpenAI or Anthropic APIs are the ones most likely to skip these tests — and the ones who get burned when the model starts hallucinating in front of real customers.

other

How DoorDash's AI moderation actually works at scale

DoorDash has built an internal system for routing millions of user messages through an LLM to catch things like fraud, scams, and policy violations. The post breaks down the architecture: it's not a single model call but a layered pipeline with different models handling…

Read the sourcejack-vanlightly.com
ai_explainer_worthy

DoorDash built an LLM moderation system to keep the app honest

DoorDash has put an LLM-based moderation platform into production to handle the flood of user-generated content — reviews, photos, and messages — that a food delivery app of this scale generates every day. The system runs on a standard open-source model and acts as a first pass, flagging content that crosses the line into harassment, fraud, or policy violations before a human ever sees it.

The architecture is straightforward: the model evaluates content on a handful of policy dimensions, scores each one, and sends flagged items to a queue for human review. The idea is to catch the low-hanging fruit at machine speed so the moderation team isn't drowning in spam, fake reviews, or the occasional bad actor trying to game the system. DoorDash has been public about its reliance on AI for content moderation for a while now; this is the next step — a dedicated system rather than a patchwork of ad-hoc classifiers.

What's notable is the honesty in the write-up: the LLM is a first filter, not a replacement for judgment. The human-in-the-loop is the real system. This is how most companies are actually doing it — models do the heavy lifting, people handle the edge cases, and the business keeps moving. DoorDash is one of the bigger examples of this pattern applied to a consumer-facing platform with millions of users.

Why this matters for us: la gente uses these apps every day, and when the moderation works, it keeps the platform usable; when it doesn't, it's our money and our time on the line.

ai_explainer_worthy

A day in the life of an AI-assisted writer

Elizabethtai walks through her typical day using LLMs to handle the parts of writing that eat up time — research, outlines, drafts, editing — while she stays on top of the judgment calls: voice, accuracy, what actually matters to readers. The post is a log of the workflow, not a sales pitch.

It's the kind of practical breakdown the big tech announcements are missing. Meta just scrapped its AI-native pivot, cutting 60 percent of its teams. Salesforce shoved its entire CRM into Claude and claims you'll never need the app again. Meanwhile a writer in the Bay Area is just trying to get the next post out the door without burning out. The real story is what's happening at the ground level, not the boardroom.

Why this matters for us: la gente in Brown and Black communities are the ones actually writing, coding, and building with AI — and the folks making the money on it rarely mention them.

Read the sourceelizabethtai.com
ai_explainer_worthy

When your AI agent has 100,000 tools, it breaks

Viktor is publishing a note on what happens when you give an AI agent access to a massive tool catalog — 100,000 functions, API calls, scripts — and the model is supposed to pick the right one each time. The answer isn't that it gets slightly slower. It's that it starts…

Read the sourceviktor.com
ai_explainer_worthy

Bluesky's Attie goes from bot to open research tool

Bluesky rolled out an update to Attie, its AI assistant, turning it into something you can actually use to dig into conversations across the AT Protocol. Instead of just answering a single question, it now pulls together news, trends, and what people are saying on Bluesky and other apps that speak the same language.

The AT Protocol is the open network Bluesky sits on — think of it as the plumbing under the social feed. By making Attie work across those apps, the company is treating the protocol like a searchable commons rather than a walled garden. That matters because the old social feeds were designed to keep you scrolling. This is the opposite: it's built to answer a question and let you go.

Why this matters for us: if you've been tired of algorithms feeding you outrage, this is one of those moves that quietly puts the search back in social.

Read the sourcetechcrunch.com
other

VW engineers busted for insider trading on Rivian shares

An indictment unsealed Friday charges Volkswagen engineers with insider trading tied to a joint venture with Rivian. Prosecutors allege they used confidential information about the deal to buy stock in the electric-vehicle maker before the market got wind of it. The DOJ filed the charges in the Southern District of New York.

The joint venture is the kind of thing that moves markets — VW brings cash and manufacturing muscle, Rivian brings the EV know-how. When that deal is still locked down inside the companies, the people who know about it are sitting on a gold mine. These engineers apparently took advantage.

Insider trading charges like this aren't new, but the fact that the DOJ is pursuing it years later shows they're keeping a close eye on cross-border deals and the folks who profit from them.

Why this matters for us: When people with inside info on deals between big companies make a quick buck, it's another way the system is rigged against the rest of us who don't have access.

Read the sourcetechcrunch.com

Para la comunidad

Tech affecting the Hispanic community

The stories below land different for our gente — immigration tech, language access, the unbanked, kids of color, gig-worker rights.

labor_workers

Monday.com says AI cut jobs — 20 more companies said the same

Monday.com joined a long line of tech companies this year citing AI as the reason for layoffs. The list runs in reverse chronological order: 20 major firms, all pointing to the same explanation.

It's not just Monday.com. The pattern is the story. Companies are using AI as the cover story for trimming headcount — and the PR spin is getting repetitive. Workers get the memo, but the real question is who's actually being replaced and by what.

This one lands squarely in the labor_workers bucket. The companies aren't telling us what the AI is doing, just that it's doing something. That's the gap: no detail on roles, no breakdown of what was cut, no explanation of what replaced what. Just the one-line excuse repeated across a dozen press releases.

Why this matters for us: when tech companies point the finger at AI for layoffs, the first thing to ask is who gets the axe — and whether the jobs are actually gone or just being called something else.

Read the sourcetechcrunch.com

Past issues

30
Aug 26Wed

Bonds defaulting, robots getting smarter — the usual chaos.

Issue #95
Aug 25Tue

Models are getting heavy, builders are getting real

Issue #94
Aug 24Mon

This week, the world's grinding gears

Issue #93
Aug 23Sun

Lo que viene: labras, filtros, fundadoras, y la migra

Issue #92
Aug 22Sat

La migra and the meta: big tech's growing pains

Issue #91
Aug 21Fri

Open source is bleeding — and so is your wallet

Issue #90
Aug 20Thu

The feed is widening — and it's getting weirder

Issue #89
Aug 19Wed

The day the ground shifted — and the side gigs stayed

Issue #88
Aug 18Tue

AI is growing up — and so are the bills

Issue #87
Aug 17Mon

Lying models, real planes, and the benchmarks that lie to you

Issue #86
Aug 16Sun

AI is learning to lie and steal — and the guardrails are off

Issue #85
Aug 15Sat

La migra moves, gas triples, and the water plants got hacked

Issue #84
Aug 14Fri

Issue 83 — 2026-08-14

Issue #83
Aug 6Thu

Silicon Valley's reckoning is here — y la pregunta es para los de abajo

Issue #75
Aug 5Wed

Issue 74 — 2026-08-05

Issue #74
Aug 3Mon

Software is cheap, math is open, hardware is real — esto es lo que importa.

Issue #72
Aug 2Sun

El teléfono ya no es tuyo — y ni los eclipses se ven fácil

Issue #71
Aug 1Sat

El hardware se vuelve la barrera — y la gente sigue adelante

Issue #70
Jul 31Fri

Silicon, cuts, and the real moat — lo que importa

Issue #69
Jul 30Thu

The internet's noise floor is rising — and la gente is paying for it

Issue #68
Jul 29Wed

Agent swarms are finally paying for themselves

Issue #67
Jul 28Tue

Issue 66 — 2026-07-28

Issue #66
Jul 27Mon

El cohete, la inteligencia, y lo que le toca a la gente

Issue #65
Jul 26Sun

Tecnología y clima — lo que no nos lo dice la gente

Issue #64
Jul 25Sat

Issue 63 — 2026-07-25

Issue #63
Jul 24Fri

Las herramientas que nos rodean se están moviendo — y a veces nos pasan por encima

Issue #62
Jul 12Sun

Lo que importa hoy: la gente, no la máquina

Issue #61
Jul 11Sat

Issue 60 — 2026-07-11

Issue #60
Jul 9Thu

Issue 58 — 2026-07-09

Issue #58
Jul 8Wed

Varianza y el futuro — de la oficina a la comunidad

Issue #57

Daily issue · no spam

Get the daily on your stoop

One short email a day — AI, tech, and what it means for our communities. Plain language, cultural lens, no Silicon Valley jargon.