ax@ax-radar:~/all $ grep -v 'tier=excluded' stream.log
33 srcsignal 72%cycle 04:32

posts · 2026-08-20

50 items · updated 3m ago
RSS live
2026-08-20 · Thu
23:53
33d ago
Ruan YiFeng's Weblog· rssZH23:53 · 08·20
The Career Future of Programmers
Ruan Yifeng cites an industry analysis predicting coding agents will permanently integrate into software development, with manual coding facing tighter restrictions. Management will push programmers to use AI tools more, aiming to lower skill barriers and increase work intensity. Niche-language projects may be rewritten by AI into mainstream languages like Python or TypeScript. The programmer's core job will shift to reviewing AI-generated code and testing AI-made changes.
#Code#阮一峰
editor take
Ruan Yifeng shares an industry take: coding agents become permanent, manual coding gets restricted, niche-language projects get rewritten into Python by AI.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K0·R1
22:47
33d ago
Hacker News Frontpage· rssEN22:47 · 08·20
Detect scraper bots by scroll behavior: burstiness and memory do the trick
The author noticed humans scroll in bursty pauses while bots scroll more uniformly. She applied burstiness and memory metrics from a known paper to scroll events in a public dataset, then trained a LightGBM model with just those two features. It achieved 73.4% accuracy distinguishing humans from various AI scrapers, with most confusion coming from ChatGPT Agent. She admits the method won't work on scroll-free sites but suggests combining it with mouse movement and typing patterns for a general anti-scraping model. The post doesn't specify dataset size or real-world generalization.
#LightGBM#ChatGPT Agent#ClaudeBot
editor take
Two scroll-behavior features (burstiness & memory) let a LightGBM hit 73.4% accuracy on human vs. bot detection; ChatGPT Agent causes most confusion.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K1·R0
22:36
33d ago
TechCrunch AI· rssEN22:36 · 08·20
OpenAI is gaining on Anthropic with business users, new Ramp data shows
Spending data from corporate card provider Ramp shows OpenAI closing the gap with Anthropic among US business users. Companies flip back and forth as each lab ships new models — volatility that should make investors question how sticky enterprise AI spending really is. The post doesn't disclose specific market share figures or methodology beyond citing Ramp's customer transaction data.
#OpenAI#Anthropic#Ramp
editor take
Ramp's corporate card data shows OpenAI closing the spending gap with Anthropic, but the post doesn't share specific share figures or methodology — I'd discount this a bit.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
21:50
33d ago
The Verge · AI· rssEN21:50 · 08·20
Google Discover adds a chatbot-style prompt so you can describe what you want in your feed
Google is adding a prompt box to Discover that lets you describe what you want to see—like 'more AI startup stories, less sports.' The post only shows one screenshot; it doesn't say whether this is powered by Gemini, when it ships, or how many content sources it covers. For now, treat it as a natural-language replacement for manual interest tuning, with real performance TBD.
#Google#Google Discover
editor take
Google Discover adds a prompt box to tune your feed with natural language. The post doesn't say if Gemini powers it or when it ships.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R0
21:24
33d ago
Hacker News Frontpage· rssEN21:24 · 08·20
Code as an Artifact: Are Programming Languages Going Away?
Pradeep Roark responds to Elon Musk's claim that source code is becoming like assembly. He argues that when LLMs do the programming, prompts and context become the new 'code'—a higher abstraction, not the end of code. Programming languages won't disappear because they exist to remove the ambiguity that natural language can't. The post doesn't spell out how LLM-to-binary would work in practice.
#Code#Elon Musk#Pradeep Roark
editor take
Responding to Musk: prompts and context are the new code, not the end of it. Programming languages aren't going away.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K1·R0
19:31
33d ago
r/LocalLLaMA· rssEN19:31 · 08·20
NVIDIA drops a CUDA MCP for AI-assisted GPU coding and performance analysis
NVIDIA released a hosted CUDA MCP that lets AI assistants search official docs, write optimized GPU code, and analyze performance data. The post is blocked by Reddit, so no details on usage, pricing, or supported models. Only the title is confirmed—MCP is a toolchain, not a model, so results depend on the AI you plug in.
#Code#NVIDIA
editor take
NVIDIA released a hosted CUDA MCP for AI-assisted GPU coding, but Reddit blocked the post—no pricing or usage details yet.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K0·R0
19:28
33d ago
Hacker News Frontpage· rssEN19:28 · 08·20
GitHub, autoscaling, and the component substitution fallacy
Lorin Hochstein zooms in on one detail from the recent GitHub outage: the affected service had an autoscaling policy that watched host-service load but ignored Istio sidecar concurrency limits. The sidecar saturated first, and scaling never kicked in. He notes that every service's autoscaling policy is effectively bespoke, and teams are rarely scaling experts, so misconfigurations aren't surprising. The bigger point is the component substitution fallacy—don't just fix the broken part while ignoring how changing traffic patterns, scrapers, retry logic, and HAProxy node saturation all interacted. The post doesn't disclose the exact source or ramp-up profile of the anomalous traffic; those details only live in internal writeups.
#GitHub#Istio#HAProxy
editor take
GitHub's autoscaling watched the service but ignored the Istio sidecar concurrency limit—the sidecar saturated first and scaling never kicked in.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
19:18
33d ago
TechCrunch AI· rssEN19:18 · 08·20
Google gives publishers a button to let readers mark them as a favorite source
Google launches a "Preferred Sources" button that lets readers mark a publisher as a favorite across Search, Discover, and Google News. It's a concession to publishers hit by AI-driven traffic loss. The post doesn't spell out how this signal affects ranking weight or whether users can manage their marked sources.
#Google
editor take
Google adds a 'Preferred Sources' button to boost a publisher's ranking, but doesn't say how much.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K1·R1
19:05
33d ago
Hacker News Frontpage· rssEN19:05 · 08·20
Huzzah: Write prompts in pseudocode, AI generates the code
Developer Daniel Vaughn built Huzzah, an experimental editor that replaces longform natural-language prompts with persistent pseudocode files. You write a .hz file describing the logic, save it, and Huzzah sends the diff to an LLM to generate real code. The author claims it saves tokens, preserves human intent, and feels more like designing code than chatting. It's experimental and open-source on GitHub. The post doesn't specify which models it supports, latency, or whether it works with existing codebases.
#Code#Daniel Vaughn#Huzzah
editor take
Huzzah replaces chat prompts with persistent pseudocode files—save the .hz file and it diffs to generate real code. Saves tokens, preserves intent.
HKR breakdown
hook knowledge resonance
open source
65
SCORE
H1·K1·R0
18:36
33d ago
Hacker News Frontpage· rssEN18:36 · 08·20
TrueFoundry open-sources TrueForge, a runtime harness that turns an LLM into a working agent
TrueFoundry has open-sourced TrueForge, described as an agent harness—the runtime layer that connects an LLM to tools, state, and deployment so it can actually do work. The repo has 2.4k stars and 181 forks, with 32 branches and 49 tags showing active iteration. The README doesn't spell out how it differs from LangChain or CrewAI, and there are no benchmarks or a full tool list yet. I'd treat it as an engineering-focused agent runtime for now and wait for more technical detail.
#TrueFoundry#TrueForge#Open source
editor take
TrueForge open-sources an agent harness, but the README doesn't explain how it differs from LangChain or CrewAI.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K0·R0
17:56
33d ago
AI HOT (Curated Pool)· aihot-apiZH17:56 · 08·20
Anthropic’s approach to teaching and learning AI
Anthropic published a blog post about how it teaches users to use AI effectively. The centerpiece is Claude Academy, a learning platform for users of all skill levels. The post does not disclose course details, user metrics, or effectiveness data—it reads more as a brand philosophy statement than a technical deep dive.
#Anthropic#Claude Academy
editor take
Anthropic launched Claude Academy, but the post is brand philosophy with zero course details or user metrics.
HKR breakdown
hook knowledge resonance
open source
39
SCORE
H0·K0·R0
17:32
33d ago
TechCrunch AI· rssEN17:32 · 08·20
Grok keeps sending gibberish responses to users
xAI's Grok chatbot is outputting gibberish to some users. One user asked it to generate a PDF and got a response like "match it without and your they and two for planets can practical and often cheese…" with nonsense continuing for paragraphs. Another user found links to reinforcement learning research sites in source links. Affected users told TechCrunch they were using Grok Lite and noticed issues as early as Wednesday morning. TechCrunch couldn't reproduce the bug and believes it affects only a small subset of users. xAI didn't respond to a comment request. The Grok Reddit community is flooded with complaints; refreshing the session usually fixes it, but some users report the gibberish returns.
#xAI#Grok#TechCrunch
editor take
Grok Lite is spitting out gibberish to some users; a refresh fixes it temporarily, but xAI hasn't commented.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R0
17:18
33d ago
TechCrunch AI· rssEN17:18 · 08·20
A third of web pages since ChatGPT show signs of AI authorship
A study finds that roughly one-third of web pages published since ChatGPT's launch show signs of AI authorship. The post doesn't detail the detection method or sample size, but the headline figure is striking: nearly one in three new pages may be machine-written.
#ChatGPT
editor take
1 in 3 new web pages may be AI-written, but the study doesn't disclose its detection method or sample size.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K0·R1
17:17
33d ago
Financial Times · Technology· rssEN17:17 · 08·20
Nvidia looks well placed to benefit from the next stage of the AI boom
FT argues Nvidia remains well-positioned for the next AI phase. The post does not disclose specific revenue or product timelines, but highlights its data center business and next-gen architecture as growth drivers.
#Nvidia#Financial Times
editor take
FT argues Nvidia is set for the next AI wave, but the post lacks specific revenue or product timelines—more a trend call.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K0·R0
16:52
33d ago
AI HOT (Curated Pool)· aihot-apiZH16:52 · 08·20
Liquid AI releases DSpark draft models for LFM2.5, up to 3.18× faster inference
Liquid AI released DSpark draft model checkpoints for three LFM2.5 sizes—1.2B, 2.6B, and 8B-A1B—on Hugging Face. DSpark is a speculative decoding method: a lightweight draft model proposes multiple candidate tokens in one forward pass, and the target model verifies them all at once, amortizing weight-loading cost. Throughput improves up to 3.18× on GPU and 2.87× on-device; function-calling latency drops 57% on average for the 2.6B model. Output quality stays the same with minimal memory overhead. llama.cpp and SGLang support it natively.
#Liquid AI#Hugging Face#llama.cpp#Open source
editor take
Liquid AI released speculative decoding draft models for LFM2.5, up to 3.18× GPU throughput with native llama.cpp and SGLang support.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
16:07
33d ago
TechCrunch AI· rssEN16:07 · 08·20
Meta brings Pocket, a vibe-coding game app, to US users
Meta's experimental app Pocket is now rolling out to all US users. It lets you describe game ideas in natural language, and the AI generates playable mini-games you can share. Previously tested in Brazil, the iOS app is live now. The hook is 'vibe coding'—making games by chatting, not coding.
#Meta#Pocket
editor take
Meta's Pocket app goes live in the US—describe a game idea in plain language and it generates a playable mini-game you can share.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R0
16:02
33d ago
AI HOT (Curated Pool)· aihot-apiZH16:02 · 08·20
Mistral launches Agentic Search for multi-step retrieval on complex documents
Mistral's new Agentic Search breaks queries into steps—decompose, retrieve, verify, synthesize—instead of a single search pass. The company claims higher accuracy on complex document queries but the post doesn't disclose benchmark numbers, baselines, pricing, or latency figures. Available via API.
#Mistral
editor take
Mistral's search now decomposes queries into steps, but no benchmarks or pricing yet—I'd hold off.
HKR breakdown
hook knowledge resonance
open source
68
SCORE
H1·K0·R0
16:00
33d ago
AI HOT (Curated Pool)· aihot-apiZH16:00 · 08·20
AlloyDB ScaNN scales vector search to 10 billion vectors with a four-level tree index
Google Cloud's AlloyDB now supports vector search up to 10 billion vectors by adding a four-level tree to its ScaNN index. The post doesn't disclose exact latency or recall improvements, only the index architecture change. For RAG or large-scale vector retrieval, this means AlloyDB can handle 10B embeddings natively without an external vector database.
#Google Cloud#AlloyDB#ScaNN
editor take
AlloyDB adds a fourth tree level to ScaNN, hitting 10B native vector search without a separate vector DB.
HKR breakdown
hook knowledge resonance
open source
39
SCORE
H0·K0·R0
15:29
33d ago
Hacker News Frontpage· rssEN15:29 · 08·20
Vendo: Let users build features on top of your product
Vendo is an open-source tool that lets your users build automations, custom views, and tool integrations directly inside your product. It embeds agent capabilities so users can extend features without writing code. The repo just launched on GitHub with 475 stars, 36 issues, and 54 PRs—decent early traction. The post doesn't disclose technical implementation details or pricing, but the YC S26 backing signals it's still early stage.
#Vendo#YC S26#Open source
editor take
Vendo embeds agents so users can build automations inside your product without code—but the post skips implementation details and pricing.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K1·R0
15:26
33d ago
Hacker News Frontpage· rssEN15:26 · 08·20
Clean up Claude 5's token vomit with a separate LLM
A new GitHub tool called 'vomit' cleans up Claude 5's verbose, token-wasting output. It uses a separate LLM to post-process and compress the 'vomit' into clean text. The post doesn't specify which model does the cleaning or provide performance benchmarks.
#Claude 5#GitHub#zachahn
editor take
A separate LLM post-processes Claude 5's verbose output to save tokens. Clever idea, but no cleaning model or benchmarks disclosed.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R0
15:06
33d ago
Hacker News Frontpage· rssEN15:06 · 08·20
Anti-AI fonts are useless and harmful
Andrew Yaros argues that fonts scrambling text to block AI scraping are a dead end. They break screen readers, locking out disabled users first. Any accessible backdoor for machines leads back to centralized identity checks and privacy nightmares. Worse, these obfuscations act as benchmarks for multimodal models—if a human can see it, an AI will eventually parse it. Yaros says the baseline is clear: all public info will become accessible to anything with permission, so plan around that instead of playing cat and mouse.
#Andrew Yaros#Decoy font#Shield font
editor take
Scrambled fonts block screen readers first, not AI scrapers, and double as free training data for multimodal models.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K1·R0
14:21
33d ago
● P1Hacker News Frontpage· rssEN14:21 · 08·20
Slack introduces Code channels for AI coding agents and team collaboration
Salesforce added Code channels to Slack so coding agents like Claude Code, Devin, and ChatGPT can write code, show diffs, and run live previews inside a channel visible to the whole team. Channels are project-based and auto-archive when done. The post does not disclose pricing or launch date.
#Code#Salesforce#Slack#Anthropic
why featured
Featured · importance 88 · hook + knowledge + resonance
editor take
Slack is adding a dedicated channel type for vibe-coding with AI agents, letting non-engineers prompt code in chat—but pricing and the underlying model are still unknown.
sharp
Slack announced Slack Code yesterday—a new channel type where teams can collaborate directly with AI coding agents inside Slack. The Verge has the full rundown, and it hit Hacker News front page. Both are working off Slack's official blog post, so the details are consistent but thin. The pitch is vibe-coding for non-engineers: product managers, designers, ops people prompting AI to generate code, fix bugs, and deploy, all in a chat thread. Slack is betting that the same people who live in channels all day will want to ship small software changes without leaving the app. I'd hold off on the enthusiasm for two reasons. One, Slack hasn't said which model powers this or what it costs. If it follows the Slack AI playbook, expect a paid add-on. Two, "non-engineers writing code" has been a recurring promise that usually runs into permission headaches, security reviews, and the fact that AI-generated code still needs someone who can read it. The feature is real and shipping, but the gap between a demo channel and production use is where these things tend to stall.
HKR breakdown
hook knowledge resonance
open source
88
SCORE
H1·K1·R1
14:12
33d ago
Hacker News Frontpage· rssEN14:12 · 08·20
Omacosy: Omarchy-style tiling desktop for macOS, no SIP disable needed
Omacosy is a tiling desktop setup for macOS that mimics the Omarchy Linux experience. The author chose AeroSpace over yabai to keep SIP enabled. It runs at 157MB RAM, using AeroSpace, Karabiner, and five custom Swift binaries. Features include focus-follows-mouse, custom menu bar, workspace overview, and trackpad gestures. The install script backs up system state for clean uninstall. Tested only on M1 Max with macOS 26—compatibility elsewhere is unknown.
#Omacosy#Omarchy#AeroSpace
editor take
Omacosy ports the Omarchy tiling desktop to macOS without disabling SIP, runs at 157MB RAM, but tested only on M1 Max with macOS 26.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K1·R0
14:10
33d ago
Hacker News Frontpage· rssEN14:10 · 08·20
Bun 1.4: big Node.js compat jump, rewritten from Zig to Rust
Bun 1.4 adds 1,517 passing Node.js tests, the biggest compatibility jump since 1.0. node:http and node:fs pass over 97% of Node's own tests. Playwright, Next.js 16, and vitest now run on Bun. Idle CPU drops 5x, memory up to 35% less, and Linux startup is 50% faster. Claude Code's production p99 CPU fell from 24% to 10%. The runtime was rewritten from Zig to Rust and ships new built-in APIs like Bun.Image, Bun.WebView, and Bun.cron().
#Bun#Oven#Node.js
editor take
Bun 1.4 rewrites in Rust, passes 1,517 more Node tests, runs Playwright and Next.js 16, and cuts idle CPU 5x.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
14:00
33d ago
The Verge · AI· rssEN14:00 · 08·20
Welcome to the AI crisis in math
The Verge podcast discusses how recent AI discoveries have left the math world 'shell-shocked.' Host Nilay Patel and reporter Robert Hart talk about models like OpenAI's Astra producing proofs that human mathematicians hadn't thought of, sparking an existential crisis about the future of math research. The post doesn't disclose specific model details or technical benchmarks—the focus is on the conversation itself: AI is no longer just fast at calculation but is now 'discovering' math, making mathematicians question their own role.
#Reasoning#The Verge#OpenAI#Nilay Patel
editor take
The Verge podcast: OpenAI's Astra is now 'discovering' proofs human mathematicians missed, sparking an existential crisis.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R1
13:26
33d ago
AI HOT (Curated Pool)· aihot-apiZH13:26 · 08·20
The Claude Code Guide For Startups
Anthropic publishes an official guide for startups using Claude Code, covering five key rules and founder insights. The post does not disclose the specific rules or case details, only confirming it's a practical guide for startup teams.
#Anthropic#Claude Code
editor take
Anthropic posted a Claude Code guide for startups, but the body doesn't list the five rules—only the title has substance.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K0·R0
13:12
33d ago
Hacker News Frontpage· rssEN13:12 · 08·20
Canonical funds automated C-to-Rust translation, using AppArmor as a test case
Canonical and the University of Bristol launched a three-year project to automatically translate large C codebases into safe, maintainable Rust. Current tools either copy C structures too closely or struggle with repository-wide context. The project uses a neurosymbolic approach: split code with traditional analysis, translate with models, then verify behavior. AppArmor and snap-confine serve as real-world case studies, but Canonical says there's no plan to rewrite them yet.
#Code#Canonical#University of Bristol#AppArmor
editor take
Canonical funds a 3-year project to auto-translate large C codebases into safe Rust using a neurosymbolic approach, starting with AppArmor.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K1·R0
13:03
33d ago
Ben's Bites· rssEN13:03 · 08·20
Simple agents: just files and tools
Ben's Bites polled 996 people on personal agent usage. The author argues a personal agent is just files and tools connected to any agentic framework. Files provide context; memory is a file read at session start, not real memory. Users can switch tools freely—point ChatGPT Work at the folder if they dislike Claude's latest writing style. A walkthrough for setting up a clean personal agent from scratch is coming tomorrow.
#Ben's Bites#Claude#ChatGPT Work
editor take
Ben's Bites polled 996 people: a personal agent is just files + tools + any framework; memory is a file read at session start, not real.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R1
12:45
33d ago
Hacker News Frontpage· rssEN12:45 · 08·20
Zellij 0.45.0: nested sessions, Kitty graphics, a fresh UI
Zellij 0.45.0 ships native nested session handling. Previously running Zellij inside Zellij caused doubled status bars and keybinding conflicts; now it detects nesting and offers two modes: zoom into the inner session (toggle with Ctrl o + f) or send keys on focus (Ctrl o + [ to descend, Ctrl o + ] to ascend). Adds Kitty graphics protocol support alongside Sixel—images and plots render inside panes and survive scroll, move, resize. The web client gets a dedicated mobile UI with touch controls and PWA install. Default UI redesigned: pane frames hidden by default, cleaner look. Command-level scrolling (requires OSC133 from shell) lets you jump between prompts, select entire command output, or copy last command's output. Per-client tab sizes allow different layouts for each attached client. The post does not disclose performance benchmarks or known bugs.
#Zellij#Aram Drevekenin#Kitty
editor take
Zellij 0.45 finally handles nested sessions natively—no more fighting double status bars when SSH-ing into a remote box.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K1·R0
12:04
33d ago
Hacker News Frontpage· rssEN12:04 · 08·20
A 125M-parameter transformer autocompletes piano in real time on an iPhone
Simon Edwardsson trained a 125M-parameter transformer that autocompletes piano at ~108 notes/sec on an iPhone 15. The key trick is packing each MIDI note into a single composite token, so the transformer backbone runs once per note instead of once per field. Aggressive data cleaning mattered more than scale—5× more data made the model worse. DPO post-training was added to make outputs more musical, though the post doesn't disclose the number of preference pairs or DPO training details.
#Simon Edwardsson#RollTab
editor take
A 125M model autocompletes piano on-device by packing each MIDI note into a single token, so the transformer runs once per note instead of per field.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
11:42
33d ago
Hacker News Frontpage· rssEN11:42 · 08·20
AI didn't erase the junior engineer's value, it increased it
Braze VP of Engineering Francisco Trindade pushes back on the idea that AI has erased junior engineers' marginal value. He cites an intern who led a long-requested feature from problem discovery through design and delivery—AI wrote most of the code, the intern owned the trade-off decisions. His argument: juniors still add capacity by managing a slice of complexity, and AI has made training them much cheaper. The post does not disclose the project's timeline or quantified business impact.
#Code#Braze#Francisco Trindade
editor take
Braze's VP of Eng argues AI raised junior value, citing an intern who led a years-requested feature; the post doesn't give timeline or business impact, so I'd discount it a bit.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R1
11:03
33d ago
Hacker News Frontpage· rssEN11:03 · 08·20
Seeing beyond BMI: Estimating cardiometabolic risk with smartphone imagery
Google Research published a paper showing that smartphone photos can estimate cardiometabolic risk better than BMI alone. The model analyzes facial, eye, and skin features to predict waist circumference, body fat, and blood lipids. The post doesn't disclose dataset size, model architecture, or clinical validation results—it's exploratory research. Far from a product, but the direction is compelling: pulling health metrics from clinic visits into a phone camera.
#Google Research
editor take
Google shows phone photos can predict waist and blood lipids better than BMI, but no dataset size or model details—still early research.
HKR breakdown
hook knowledge resonance
open source
50
SCORE
H1·K0·R0
10:38
33d ago
Hacker News Frontpage· rssEN10:38 · 08·20
Stanford study: local small models match or beat cloud LLMs on 81% of tasks, putting hyperscaler capex in question
Joachim Klement highlights a Stanford paper (May 2026) showing local SLMs—QWEN 3, GEMMA 3, GPT-OSS, GRANITE 4.0—achieve a 98.6% win/tie rate on chat tasks and 81.2% overall against cloud LLMs like ChatGPT 5 and Claude Sonnet 4.5, while using 50–85% less energy and compute. Reasoning-only win/tie rate is 62.5%, with SLMs still behind on the hardest tier (51.5% success). The paper estimates a $10T addressable market for SLMs in the US. The post does not disclose whether the paper is peer-reviewed.
#Stanford University#QWEN 3#GEMMA 3
editor take
Stanford paper claims local SLMs beat/tie cloud LLMs 98.6% on chat, 81.2% overall, with 50-85% less energy.
HKR breakdown
hook knowledge resonance
open source
68
SCORE
H1·K1·R0
09:30
33d ago
TechCrunch AI· rssEN09:30 · 08·20
Binance now lets AI agents trade, but risk controls are mostly on users
Binance launched Agent OS, letting tools like ChatGPT, Claude Code, and Cursor place trades via exchange API. The platform offers API key permission tiers and daily trade limits, but no built-in anomaly detection or circuit breakers. If an agent loops, duplicates orders, or misreads signals, users eat the loss. The post doesn't say whether Binance does real-time monitoring or post-trade audits.
#Binance#OpenAI#Anthropic
editor take
Binance lets ChatGPT and Claude Code trade via API, but no circuit breaker — you eat the loss.
HKR breakdown
hook knowledge resonance
open source
68
SCORE
H1·K0·R1
09:01
33d ago
Product Hunt · AI· rssEN09:01 · 08·20
Vercel built Zero, a programming language for AI agents
Vercel launched Zero, a programming language purpose-built for AI agents. The post doesn't spell out syntax or capability limits, but the pitch is clear: make agent-written code more controllable and efficient.
#Vercel
editor take
Vercel built Zero, a language for AI agents to write code. No syntax or compatibility details yet — I'd hold off on the hype.
HKR breakdown
hook knowledge resonance
open source
60
SCORE
H1·K0·R0
02:07
34d ago
New York Times Chinese· rssZH02:07 · 08·20
China Achieves First Land Recovery of a Rocket Booster
Private firm LandSpace recovered the first stage of its Zhuque-3 rocket on land in Gansu, about 2 minutes 20 seconds after liftoff. This is China's first land-based booster recovery, following a sea platform success in July. Analysts say it's a key step toward reusable rockets, but China still lags behind SpaceX, which has been landing boosters since 2015.
#蓝箭航天#LandSpace#朱雀三号
editor take
LandSpace nailed China's first land-based booster recovery, following a sea platform success last month.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K1·R0
02:00
34d ago
Financial Times · Technology· rssEN02:00 · 08·20
Who is really buying China’s humanoid robots?
The FT article questions who is actually purchasing China's humanoid robots. The body does not disclose specific buyers or volumes, but the title suggests real demand may be weaker than promoted.
#Financial Times
editor take
FT questions who's actually buying China's humanoid robots — the article doesn't name buyers or volumes.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R1

more

feeds

admin