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

posts · 2026-07-04

21 items · updated 3m ago
RSS live
2026-07-04 · Sat
23:51
23d ago
Hacker News Frontpage· rssEN23:51 · 07·04
Zo Computer: a personal cloud computer you control with natural language
Zo Computer is a cloud-based personal computer you control via chat—build websites, run a business, and call AI models. It integrates OpenAI, Anthropic, Google, DeepSeek, and 1000+ tools like Slack, Discord, Gmail. Users report replacing 12 tools and building a site in minutes. Free tier has daily limits; paid unlocks all models. Zo claims to be the "original OpenClaw" but requires no terminal or Mac Mini. The post doesn't disclose pricing tiers, model versions, or latency.
#Agent#Zo Computer#OpenAI#Anthropic
editor take
Zo Computer turns chat into a cloud desktop with 1000+ integrations and multiple models, but pricing and latency aren't disclosed.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R0
23:25
23d ago
Hacker News Frontpage· rssEN23:25 · 07·04
RidgeText uses in-memory layer queues for map composition so the LLM never touches GeoJSON
RidgeText keeps map data in server memory so the LLM only sees lightweight acknowledgments like '847 features queued' before calling generate_map to composite an image. A single wildfire dataset can hit 125K tokens—expensive and error-prone to pass through context. Their approach mirrors Mapbox's layer model: each retrieve_* tool appends a layer to an in-memory queue, and layers are composited in call order at render time. The queue expires after 30 minutes. The renderer currently uses a Mapbox Static API base plus canvas compositing, and can swap to headless Mapbox GL JS later without changing the LLM interface. The post does not disclose cost or latency figures.
#RidgeText#Mapbox
editor take
RidgeText keeps GeoJSON in server memory so the LLM only sees tiny acknowledgments—no 125K-token wildfire datasets clogging context.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K1·R0
21:51
23d ago
Hacker News Frontpage· rssEN21:51 · 07·04
GPT-5.5 Codex reasoning-token clustering at 516/1034/1552 may degrade complex-task performance
A GitHub issue on the OpenAI Codex repo reports that GPT-5.5 reasoning tokens cluster around positions 516, 1034, and 1552. The reporter suspects this pattern hurts code generation quality on complex tasks. The post does not include benchmark numbers, reproduction steps, or a response from OpenAI—it's a community report for now.
#Code#Reasoning#OpenAI#GPT-5.5
editor take
GPT-5.5 reasoning tokens cluster at positions 516, 1034, 1552—community suspects it degrades complex code output.
HKR breakdown
hook knowledge resonance
open source
68
SCORE
H1·K1·R0
19:50
24d ago
● P1Hacker News Frontpage· rssEN19:50 · 07·04
AI reduces junior programmer jobs while total developer employment grows
Stanford ADP payroll data shows US software developers aged 22-25 fell 19% from their late-2022 peak, while ages 41-49 rose 14%. After controlling for firm-level shocks, young workers in AI-automatable occupations still saw a 16% relative decline. Entry-level postings dropped 28%, and CS grads hit 6.1% unemployment—higher than liberal arts majors. Yet total developer employment rose 4.4% over the same period because juniors are only ~8% of the workforce. The BLS category 'computer programmer' (coding to spec) fell 16% in one year; data scientists grew 12%. Meanwhile, GitHub added 36M new accounts and 121M repos in a year, 80% of newcomers used Copilot in their first week, and iOS App Store submissions reversed an eight-year decline with 24% growth in 2025. The author argues the long tail of new developers arrived—they just don't use the job title. The post does not provide data beyond early 2026.
#Code#Stanford Digital Economy Lab#ADP#Bureau of Labor Statistics
why featured
Featured · importance 92 · hook + knowledge + resonance
editor take
Junior dev jobs really are collapsing, but more people are writing code than ever — they just don't call themselves programmers.
sharp
Two sources are on this, both pointing to the same Stanford ADP payroll chart: devs aged 22–25 dropped 19% from their late-2022 peak, while every cohort over 30 grew. The Stanford team controlled for firm-level shocks and interest rate exposure, and the damage still concentrates in AI-automatable roles — that's what makes this more than a post-ZIRP hangover. The twist is that total developer employment rose 4.4% over the same period. Juniors are a small slice of the workforce, so their collapse barely moves the average, which is why aggregate studies keep finding nothing. I'd flag one caveat: using age as a proxy for experience is messy — a 23-year-old could be a senior, a 45-year-old could be a career switcher. But the direction holds. GitHub added 36M new accounts in a year, 80% used Copilot in week one, and iOS App Store submissions reversed an eight-year decline with 24% growth in 2025. The long tail of new builders showed up — they just don't have the job title. What I haven't seen yet: income data for these new builders. Are they making money, or just shipping side projects?
HKR breakdown
hook knowledge resonance
open source
92
SCORE
H1·K1·R1
18:00
24d ago
TechCrunch AI· rssEN18:00 · 07·04
Midjourney wants Hollywood studios to reveal the details of their AI usage
Midjourney is pushing Disney, Universal, and Warner Bros. to disclose their own AI usage in an ongoing copyright lawsuit. The studios sued last year over Midjourney's ability to generate copyrighted characters; Midjourney claims fair use. The current fight is over discovery scope—a judge already ruled the studios must hand over some info, but the exact documents are still disputed.
#Vision#Midjourney#Disney#Universal
editor take
Midjourney flipped the script in its copyright fight, demanding Disney, Universal, and Warner Bros. disclose their own AI use—and a judge already ordered partial compliance.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R1
16:55
24d ago
Hacker News Frontpage· rssEN16:55 · 07·04
Plein Air: A painting matched to your current weather, right now
Plein Air picks a public-domain painting from the Met, Art Institute of Chicago, or Cleveland Museum based on your current weather and season. It uses free Open-Meteo data and rotates sources randomly. Tap the title to see why that painting was chosen. The post doesn't spell out mobile support or latency, but the idea is simple: let a Monet haystack sit through the same rain you're in.
#The Metropolitan Museum of Art#Art Institute of Chicago#Cleveland Museum of Art
editor take
Uses your live weather to pick a matching public-domain painting from museum collections — rain gets you a Monet haystack.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R1
16:30
24d ago
Hacker News Frontpage· rssEN16:30 · 07·04
Zig moves all package management from compiler to build system, shrinks binary 4%
Zig moved all package management logic from the compiler into the build system process. Commands like zig build and zig fetch now run in the maker process, and large parts—package fetching, HTTP client, TLS, Git protocol, compression libraries—are shipped as source code instead of being baked into the compiler binary. The compiler shrank 4%, from 14.1 to 13.5 MiB. Networking code now runs in ReleaseSafe mode, enabling better safety checks and CPU-specific optimizations. The change unblocks a build server protocol needed by ZLS. Four blocking issues remain; the author expects to finish by early August.
#Zig#Andrew Kelley#ZLS
editor take
Zig moved all package management out of the compiler into the build process — compiler binary shrinks 4%, and users can patch networking/crypto code without rebuilding the compiler.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K1·R0
15:51
24d ago
TechCrunch AI· rssEN15:51 · 07·04
What is Mistral AI? Everything to know about the OpenAI competitor
TechCrunch profiles French AI lab Mistral, arguing that judging it as 'the OpenAI of Europe' sets it up for disappointment. Its chat product Vibe (formerly Le Chat) has far less brand recognition than ChatGPT, and Claude is more popular even among founders at Paris' Station F campus. The post notes Mistral has raised significant funding since its 2023 founding with the goal of 'putting frontier AI in everyone's hands,' but does not disclose specific funding amounts, valuation, revenue, or user numbers.
#Mistral AI#OpenAI#Anthropic#Open source
editor take
TechCrunch profiles Mistral: don't judge it as 'the OpenAI of Europe' — even Paris founders prefer Claude over its chat product Vibe.
HKR breakdown
hook knowledge resonance
open source
45
SCORE
H0·K0·R0
14:17
24d ago
Product Hunt · AI· rssEN14:17 · 07·04
Scarlett. puts an AI co-worker inside Slack and iMessage
Scarlett. launched today on Product Hunt as an 'AI co-worker,' not just another bot. It lives inside Slack and iMessage, automates workflows, and claims to run your company on autopilot. Built by Ben Lang and team, powered by Anthropic Claude. Free tier offers 2x credits ($200 value). The post doesn't spell out which workflows it supports or latency. I'd stay cautious—Slack bots are everywhere; real co-worker value depends on integration depth.
#Agent#Scarlett.#Ben Lang#Anthropic Claude
editor take
Scarlett. launched today as an 'AI co-worker' inside Slack and iMessage, but the post doesn't spell out which workflows it supports.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R0
05:37
24d ago
Hacker News Frontpage· rssEN05:37 · 07·04
2026 Unslop AI-Written Fiction Contest Results Announced, $10K Grand Prize
Hyperstition's Unslop contest results are out. A. Best won the $10,000 grand prize for "The June." The process: ~120 applicants each got a 1-month Claude Code subscription or cash to write a prompt generating one short story. Judges picked 6 finalists from ~15 semi-finalists, who each submitted a second story. The post doesn't name the judges or detail the judging criteria.
#Hyperstition#A. Best#Aaron Silverbook
editor take
Unslop contest winner: A. Best's "The June" took the $10k prize, but judges and criteria aren't disclosed.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R0
04:00
24d ago
Financial Times · Technology· rssEN04:00 · 07·04
Who really designed that dress? Fashion reckons with AI
The FT piece covers fashion's growing unease over generative AI and copyright. Brands and designers worry that AI-generated patterns, silhouettes, and even full designs lack legal protection and blur the line between human and machine authorship. It cites cases like a label accused of copying an independent designer after using Midjourney, and how EU rules on training-data disclosure could affect fashion weeks. The article doesn't offer a unified fix—just notes that brands are experimenting with watermarks, blockchain provenance, and internal ethics guidelines on their own.
#Financial Times#Midjourney#European Union
editor take
FT on fashion's AI copyright anxiety: good case studies, no clear fix yet.
HKR breakdown
hook knowledge resonance
open source
50
SCORE
H0·K0·R0
01:30
24d ago
Hacker News Frontpage· rssEN01:30 · 07·04
CueBench launches to score how well developers drive coding agents
CueBench launched a tool for developers: upload your AI coding session logs, get scored on four AI fluency skills (0-100), and receive coaching. Your scores are private; session files are deleted after scoring. The post doesn't specify the four skills or which AI tools are supported.
#CueBench#Benchmark
editor take
Upload your AI coding session logs to CueBench, get scored on four fluency skills (0-100), and receive coaching — scores are private, logs deleted after scoring.
HKR breakdown
hook knowledge resonance
open source
45
SCORE
H1·K0·R0
00:00
24d ago
Computing Life · Share (鸭哥 research reports)· rssZH00:00 · 07·04
AI benchmarks are like EV 0–60 times: they win attention, not pricing power
Yage uses car culture to explain AI benchmarking: 0–60 times are the easiest metric for EVs to win, just like MMLU or SWE-bench scores for models. The Dodge Demon 170 hits ~1.7 s 0–60 but can't price like a Ferrari. MIT research tracking five months of OpenRouter data shows open models catch up to closed benchmarks within 13 weeks, yet closed models still capture 80% of usage and 96% of revenue. The Ferrari 12Cilindri Manuale costs 50% more than the automatic and has a lower top speed—it sells an irreplicable narrative. The piece argues benchmarks are a ticket to enter, not pricing power; what anchors price is context infrastructure, workflow depth, and user trust, none of which a competitor can simply copy.
#Benchmarking#MIT#OpenRouter#Ferrari
editor take
0–60 times explain AI benchmarking: scores are a ticket to enter, not pricing power. MIT data backs it—open models catch up in 13 weeks, closed models still take 96% of revenue.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0

more

feeds

admin