AI大佬集体转向政治发声
Yann LeCun 连续转发35条反特朗普政治推文,Sam Altman 则发布世界杯观赛内容。AI 顶级人物正将公共影响力投入政治议题,而非技术讨论。
LeCun 的密集政治发声时间点值得注意——Meta 正面临欧盟 AI 法案合规压力,同时其 Llama 系列开源策略被美国政府以国家安全名义审查。高调站队民主党可能是对冲监管风险的姿态,也可能是个人行为,但 Meta 至今未作切割说明。
对 AI 创业者而言,这是一个信号:头部实验室的公关策略正在从"技术中立"转向"价值观明确",未来招聘、融资、政策游说都可能需要选边。如果你在北美做 AI 基础设施或面向政府的市场,现在需要评估创始团队的政治可见度是否会成为客户决策因素。
RT @DemocraticWins: BREAKING: CNN just aired a devastating montage of all the times that Donald Trump accused others of using their public…
查看原文 →RT @MikeLevin: To everyone celebrating the first flight on Qatar Force One today, understand what you are actually applauding. A foreign…
查看原文 →RT @MeidasTouch: 🚨 TRUMP’S FINANCIAL DISCLOSURE JUST DROPPED…AND IT’S WORSE THAN YOU THOUGHT. The U.S. Office of Government Ethics release…
查看原文 →RT @PeteButtigieg: If there's one thing Americans can agree on, it's that there's too much money in politics. But the Supreme Court just…
查看原文 →going to world cup games is always awesome, but watching the USA win in the USA during USA birthday week was just incredible
查看原文 →RT @mjfree: TRUMP & EPSTEIN ARE CHILD SEX TRAFFICKERS Please don't forget why MAGA Monsters are hiding 2.5M incriminating pages of The Dam…
查看原文 →RT @SamanthaJPower: Starting in early 2025, Elon Musk and the Trump administration began terminating USAID's programs and firing its staff…
查看原文 →RT @YourAnonCentral: Elon Musk gets mad when people point out that DOGE and its USAID cuts killed thousands, if not hundreds of thousands,…
查看原文 →RT @OurShallowState: He's an adjudicated rapist, and SCOTUS knows it. He fomented an insurrection, and Jack Smith knows it. He botched a pa…
查看原文 →RT @amanpour: Trump's "net worth is off the charts, bigger than what it was prior to this presidency." @maggieNYT says we're just scratchin…
查看原文 →RT @davidaxelrod: The sheer scale and audacity of what Trump and his family are doing to monetize the presidency in every possible way for…
查看原文 →RT @CrookedMedia: Share this so Elon Musk can’t pretend kids didn’t die when he destroyed USAID. https://t.co/jPXjS9dbUo
查看原文 →RT @BulwarkOnline: "Every one of these children had a name. They had dreams, loves, and futures. Their lives were as valuable and special a…
查看原文 →RT @davidaxelrod: In his SOTU speech in 2010, @barackobama warned that with it's Citizens United decision, the SCOTUS had "opened the flood…
查看原文 →RT @SenMarkKelly: While working Americans are struggling to make ends meet, Trump enriched himself to the tune of $2.2 billion last year.…
查看原文 →RT @nytimes: President Trump reaped at least $2.2 billion from his family’s holdings last year, a new filing shows. https://t.co/Rdp8KHJLxl
查看原文 →RT @ylecun: @andykonwinski Exactly. I've been disseminating a similar message for years. The concentration of power in AI and the desire…
查看原文 →RT @StevenBeschloss: Donald Trump made more than $2 billion last year while lying that affordability issues are a hoax and prices are going…
查看原文 →RT @Designarena: BREAKING: Gemini Omni Flash by @GoogleDeepMind is 1st overall on Video Arena with an Elo of 1404. Gemini Omni Flash estab…
查看原文 →RT @thedailybeast: The former beauty queen claims Trump's pageants were "a playground" for Epstein to funnel vulnerable young women into hi…
查看原文 →RT @tylerblack32: Since Trump took office: * Elon net worth is $980B (+$500B) * Donald Trump's family ~$10B, up about $7B * Top 15 billion…
查看原文 →RT @sbg1: The Great Algae Conspiracy Theory, sure to go down in history along with Hugo Chavez stole the 2020 election, the windmills are k…
查看原文 →RT @lukaskuhn77: 🔥 We introduce LeVLJEPA: the first fully non-contrastive end-to-end vision-language pretraining method competitive with CL…
查看原文 →RT @SenSchumer: $2.2 BILLION for the Trump family. Higher costs for the American people. https://t.co/kvtw061jcw
查看原文 →RT @ziv_ravid: 1/ On Training in Imagination - Dwarkesh's episode has a segment on dreaming as one of the next training paradigms. The i…
查看原文 →RT @LarryBoorstein: DOGE showed they were morons with a series of gotcha moments: - DOGE claimed to have discovered USAID was paying for co…
查看原文 →RT @randall_balestr: Oops, SIGReg did it again! Large scale (CC12M->Datacomp-L) vision-language JEPA pretraining beats CLIP and SigLIP obje…
查看原文 →Here is how to build your first agentic loop with Claude Code: 1. Open your terminal. 2. Create an empty folder and move into it. 3. Run the following command: ************************* claude -p "Write fibonnacy(n) in a Python file. Write tests for it, including edge cases. Run pytest after every change. Don't stop until every test passes." \ --allowedTools "Read,Write,Edit,Bash(python3 -m pytest:*),Bash(pytest:*)"\ --max-turns 15 ************************* That's it. If you have Python and pytest installed on your system, Claude will implement the Fibonacci function and test it. There are 3 things you need to know about this command: First, it uses the -p flag to run Claude Code non-interactively. It takes a prompt, runs the full agent loop, prints the result, and exits. Second, the --allowedTools flag pre-approves exactly what the agent can touch, so Claude doesn't need to ask you every time. Third, the --max-turns flag caps the number of agentic turns the loop can run. When it hits the cap, the run exits with an error instead of grinding forever. This is just a simple "Hello World"-type example to get you started. The key on every loop is the verification step: how does the agent know it is done? Coming up with the evaluation criteria is probably the most important step in building a loop. In this example, I'm asking Claude to write unit tests and use them to evaluate the code. This works for something simple, but you'll need a much more robust evaluation for anything more complex. Something worth mentioning: building the verification step is where a ton of my time is going right now. The agent is writing the code, and the agent is verifying that the code (and the product) work as intended. My job has become defining what "works" looks like.
查看原文 →My agent is now paying for its own data. No API key. No account. No credit card. Check the video I recorded. This uses the x402 open protocol built by Coinbase, along with a simple skill. This is an open protocol governed by the Linux Foundation. To complete a goal, an agent can now search for an actor on the Apify Store, pay for it, and use it without any human intervention. The way it works is pretty simple: 1. Your agent finds an Actor it wants to use 2. It sends a request 3. The Actor sends back an HTTP 402 "Payment Required" response 4. Agent authorizes payment from a wallet in USDC on Base 5. The Actor runs 6. User receives the result The model is pay-as-you-go: the agent authorizes a spending ceiling, pays only for usage, and the remaining balance is automatically settled. This brings an entire marketplace of AI tools into the agentic economy. Here is the skill you need. Add it to your agent, and it will take care of everything for you: https://t.co/XOUav6W9aM If you want to know how this works, including what you can do with $1, read this post: https://t.co/Uy60PgoePf Thanks to the Apify team for partnering with me on this post.
查看原文 →RT @lessin: The Narrative Strategy of Sam Altman on CNBC today… Some notes from discussing this ‘we will give America 5% of OpenAI’ idea……
查看原文 →Paris looks like a postcard. I think the city is the most beautiful among all the Western European capitals. It's big, colorful, walkable, charming, and full of life wherever you go. Every time I come, I feel an immense joy that is hard to explain. I don't speak French, but I've never had issues communicating with locals. I know Americans say that French people are rude, but I think it's just a difference in how we interact with others. The food is second to none. In my book, it's one of the top 3 cuisines, along with Italian and Spanish food. One of the things that impresses me most is the city's design. Around 1850, Napoleon III decided to redesign Paris and appointed Baron Georges-Eugène Haussmann to do it. The guy didn't pull any punches. He demolished a large part of the city, created massive boulevards, built parks throughout Paris, modernized the city’s water and sewer systems, and created avenues connecting its most important monuments. But the most important thing he did was establish building regulations. Thanks to this, Paris still looks like a postcard: buildings of similar height, with a shared architectural style. No matter where you look, you see the same elegant apartment buildings, with iron balconies and soft cream-colored façades. Beautiful.
查看原文 →RT @JL_Baseball: Again, 2 weeks missed. No rehab. Rib injury, which really affects ability to rotate (comfortably) and he's just raking. He…
查看原文 →RT @nxthompson: The last paragraph of @AnneApplebaum’s piece on what patriotism means ahead of our 250th Independence Day. https://t.co/0NQ…
查看原文 →RT @lessin: We don’t take stakes in healthy companies. Proposing that as last ditch regulatory capture attempt in commodity market is 😢 ……
查看原文 →