The israelis killed this little Palestinian girl for fun, as she filmed herself live on air on her phone in a makeshift tent in Gaza | from @Abu_Salah9
For over 60 years, @Pele’s legendary "lost goal" at Rua Javari lived in the memories of those who were there.
In close collaboration with historians, experts and Pelé’s family, we used @GoogleDeepMind technology to bring this iconic moment to life. ⚽️ See the film ↓
One year since USAID was dismantled, and the bill is coming due. On @TheLastWord last night, Lawrence O'Donnell and I talked about the human cost — and Musk's lie that no one has died. USAID staffers repeatedly warned last year about what would happen. Trump, Musk, DOGE, and Rubio didn't care. Full interview here: https://t.co/IJkrsg7NIR
Yesterday was my final day as Director of National Intelligence. I declassified and released never-before-seen documents exposing the truth about Fauci directing millions of US taxpayer dollars to fund dangerous gain-of-function research at the Wuhan lab, worked with the Intelligence Community to suppress the truth about his actions and hide the virus’ lab-leak origins, and lied to Congress while under oath in 2024. It’s time you know the truth. Go to https://t.co/tVwWp0TxZ4 to see for yourself.
They say your phone knows more about you than your mom. So why can't Siri tell me things like how much I spent on food delivery this month?
DM me if you want to try a phone that can.
Tomorrow Vercel is updating its terms to use your code and agent chats for AI training and third-party data sharing. So we just wanted to remind you that the CEO of this company openly aligns himself with Netanyahu.
Most people treat CLAUDE.md like a prompt file.
That’s the mistake.
If you want Claude Code to feel like a senior engineer living inside your repo, your project needs structure.
Claude needs 4 things at all times:
• the why → what the system does
• the map → where things live
• the rules → what’s allowed / not allowed
• the workflows → how work gets done
I call this:
The Anatomy of a Claude Code Project 👇
━━━━━━━━━━━━━━━
1️⃣ CLAUDE.md = Repo Memory (keep it short)
This is the north star file.
Not a knowledge dump. Just:
• Purpose (WHY)
• Repo map (WHAT)
• Rules + commands (HOW)
If it gets too long, the model starts missing important context.
━━━━━━━━━━━━━━━
2️⃣ .claude/skills/ = Reusable Expert Modes
Stop rewriting instructions.
Turn common workflows into skills:
• code review checklist
• refactor playbook
• release procedure
• debugging flow
Result:
Consistency across sessions and teammates.
━━━━━━━━━━━━━━━
3️⃣ .claude/hooks/ = Guardrails
Models forget.
Hooks don’t.
Use them for things that must be deterministic:
• run formatter after edits
• run tests on core changes
• block unsafe directories (auth, billing, migrations)
━━━━━━━━━━━━━━━
4️⃣ docs/ = Progressive Context
Don’t bloat prompts.
Claude just needs to know where truth lives:
• architecture overview
• ADRs (engineering decisions)
• operational runbooks
━━━━━━━━━━━━━━━
5️⃣ Local CLAUDE.md for risky modules
Put small files near sharp edges:
src/auth/CLAUDE.md
src/persistence/CLAUDE.md
infra/CLAUDE.md
Now Claude sees the gotchas exactly when it works there.
━━━━━━━━━━━━━━━
Prompting is temporary.
Structure is permanent.
When your repo is organized this way, Claude stops behaving like a chatbot…
…and starts acting like a project-native engineer.