Airbnb CEO @bchesky says more AI founders should be starting consumer businesses.
"I'm on the board of Y Combinator. 87% of companies are enterprise companies per batch."
"Enterprise is awesome... but the biggest prize is consumer. That is what's going to reach daily life for billions of people."
"Think about all the little parts of daily life that are kind of annoying. Pay attention to whoever's in your life and ask: 'How could their daily life be a little bit easier?'"
From his appearance on the show in January.
Announcing a new Claude Code feature: Remote Control. It's rolling out now to Max users in research preview. Try it with /remote-control
Start local sessions from the terminal, then continue them from your phone. Take a walk, see the sun, walk your dog without losing your flow.
Been wrangling a lot of time how to deal with the onslaught of PRs, none of the solutions that are out there seem made for our scale.
I spun up 50 codex in parallel, let them analyze the PR and generate a JSON report with various signals, comparing with vision, intent (much higher signal than any of the text), risk and various other signals.
Then I can ingest all reports into one session and run AI queries/de-dupe/auto-close/merge as needed on it.
Same for Issues. P rompt R equests really are just issues with additional metadata.
Don't even need a vector db. Was thinking way too complex for a while.
There's like 8 PRs for auto-update in the last 2 days alone (still need to ingest 3k PRs, only have 1k so far).
if you have crons on @openclaw you need to run this right now:
my OC was eating up 4GB of ram and crashing randomly.
then I found my sessions.json is 80mb with 2000 orphan sessions from cron jobs - I was writing to this 80mb .jsonl file on every message...
cleaning it up brought my memory usage back down to 380mb from 4gb, and it's blazing fast again.
run this script below to clean up yours - and set up a cron to do it daily (ironic lol)