AI 资讯
Repositioning retail for the AI era
Artificial intelligence is rapidly reshaping retail, but not in the ways consumers might immediately notice. The biggest transformation may not be flashy virtual try-ons or chatbot shopping assistants, but in how decisions are made behind the scenes: how products surface in search results, how inventory moves through supply chains, how engineers ship code faster, and…
AI 资讯
World Cup Teams Are in a Race for AI Dominance
This year, FIFA is providing an AI agent that any team can use. Is it enough to level the playing field or will future winners be determined by which team can afford the best tools?
AI 资讯
IBM claims world’s first sub-1 nanometer chip technology
IBM’s nanostack transistors could boost chip performance or energy efficiency.
AI 资讯
British Police Built a Sprawling Crime-Prediction Machine. Some Results Couldn’t Be Trusted
As UK police embrace the AI revolution, a WIRED investigation reveals the messy inside story of one region’s experiment with predictive analytics.
AI 资讯
Creating Specialized AI Agents: Developer, Tester, Reviewer, Documenter
One universal AI agent sounds convenient. One agent to read tickets, write code, generate tests,...
AI 资讯
A24 Knows You’re Mad About the Google AI Collab
Indie movie fans are upset about Google DeepMind’s $75 million investment in the studio, which comes as AI companies are deepening their influence in Hollywood.
AI 资讯
I Met With China’s Top AI Experts. They’re Freaking Out, Too
The AI arms race between China and the US has researchers on both sides worried about a “Chernobyl moment.”
AI 资讯
Facebook rolls out an AI companion app for creators
The new app, which is currently being tested with select creators, will have Facebook's recently launched AI creator assistant built into it.
AI 资讯
Valor Equity Partners looks to raise a $2.5B Fund VII, per Bloomberg
New details have emerged about Valor's latest fund, which last year announced it was raising an unspecified amount of capital.
AI 资讯
Qualcomm Buys Buzzy Chip Startup Modular for Nearly $4 Billion
Modular, one of the most promising chip software startups of the AI era, heads for a multibillion-dollar exit.
AI 资讯
The emergence of the web data infrastructure layer for AI
AI is booming. New use cases are emerging each day. To capitalize on the technology’s potential, enterprises require data at scale. In many cases, though, the relevant information is blocked or unstructured, which limits its use by AI models. To understand this challenge, consider the foundation of the web itself. The web was not designed…
AI 资讯
Presentation: Rules for Understanding Language Models
Naomi Saphra discusses 5 rules governing language model behavior, breaking down why LLMs act like populations rather than individuals. She explains how tokenization creates strange semantic blind spots and highlights the mechanics of sycophancy, showing how models leverage subtle data associations to match user biases and demographics - even guessing political views based on favorite sports teams. By Naomi Saphra
AI 资讯
YouTube settles early test case over social media harm to children
Google has settled a lawsuit with a minor known who claimed that social media platforms harmed them.
科技前沿
Police tout using drone to disarm incapacitated person in “nationwide first”
Promo video comes as more US police departments fly drones as first responders.
AI 资讯
Microsoft Expands Azure Kubernetes Service with Bare Metal, Fleet Management and AI Infrastructure
At this year's Microsoft Build 2026, Microsoft unveiled a broad set of enhancements to Azure Kubernetes Service (AKS) aimed at making Kubernetes a first-class platform for AI training, inference, and large-scale cloud-native applications. By Craig Risi
AI 资讯
The Oversight Board says Meta needs to do more to protect regular people from sexualized deepfakes
Meta's Oversight Board has made several suggestions to make reporting sexualized AI deepfakes easier and more effective for ordinary people.
AI 资讯
How to Build a Tool that Track Which World Cup Players Are Blowing Up on Social Media
Every World Cup there's a moment. Some player nobody outside their domestic league had heard of scores an absolute screamer in a knockout match, and by the time they've finished celebrating, their follower count is climbing like a rocket. I always found that fascinating, but I could never see it happening in real time. By the time the "X gained 3 million followers!" tweets show up, the surge is already over. So this tournament I built a little tracker that snapshots player follower counts on a schedule and shows me the growth curve as it happens. Here's how it works. Why the official APIs were a dead end My first instinct was to do this "properly" with official APIs. That died fast: Instagram's Graph API won't give you follower counts for accounts you don't own. TikTok's research API is academics-only and takes weeks of applications. X's API now starts at $100/month. I just wanted public follower counts — numbers anyone can see by opening the app. I didn't want a data partnership and a legal review. I ended up using SociaVault , which wraps the public profile data from each platform behind one API and one key. One request, one credit, JSON back. The shared client Everything runs through one tiny helper: // Node 18+ has fetch built in const API_KEY = process . env . SOCIAVAULT_API_KEY ; const BASE = " https://api.sociavault.com " ; async function sv ( path , params ) { const url = new URL ( BASE + path ); Object . entries ( params ). forEach (([ k , v ]) => url . searchParams . set ( k , v )); const res = await fetch ( url , { headers : { " X-API-Key " : API_KEY } }); if ( ! res . ok ) throw new Error ( ` ${ res . status } ${ await res . text ()} ` ); return res . json (); } Grabbing follower counts across platforms Each platform nests the count slightly differently, so I use fallback chains to stay defensive: async function instagramFollowers ( username ) { const data = await sv ( " /v1/scrape/instagram/profile " , { username }); const p = data . data ?. user ?? dat
科技前沿
The $400 million machine powering the future of chipmaking
Jos Benschop is climbing a ladder to get to the top of his newest machine. It’s a bit of a schlep. The contraption is the size of a double-decker bus—more than 150 tons of gleaming precision-milled aluminum covered in thousands of snaking tubes, colored cables, and pressurized tanks. From the ground, it looks like a…
科技前沿
Meta Pauses Employee-Tracking Program Following Internal Data Leak
The move comes after the company left potentially sensitive data from the initiative exposed internally.
AI 资讯
Meta Exposed Data Internally From Its Controversial Employee-Tracking Program
Employees had previously raised concerns about the initiative, which involves collecting workers’ keystroke data to train AI models.