惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园_首页
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
美团技术团队
IT之家
IT之家
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园 - 叶小钗
M
MIT News - Artificial intelligence
B
Blog RSS Feed
有赞技术团队
有赞技术团队
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Notable releases I'm watching: Deno 2.8, Models.dev, Deep...
MORINAGA · 2026-06-26 · via DEV Community

Five things from this week's HN and dev.to worth bookmarking if you're building with AI APIs and shipping static sites on a tight budget.

DeepSeek makes the V4 Pro discount permanent

DeepSeek announced this week that their previously temporary V4 Pro price cut is now permanent. The cost gap between DeepSeek and GPT-4o-class APIs at the high-throughput end is now large enough that it's worth benchmarking against your current setup.

I'm running Claude Haiku 4.5 for content generation across three directory sites — structured JSON output at scale. My reason for not switching isn't cost; Haiku produces reliable, schema-conformant output even under pressure, and the caching story (via cache_control: ephemeral on system prompts) cuts the effective cost significantly once you have the caching setup dialed in. But if I were starting fresh today, DeepSeek's permanent pricing would make it a serious contender for batch ETL workloads. The race to the bottom on API pricing is real, and permanent discounts are harder to walk back than promotional ones.

Models.dev — community database of AI model specs

Models.dev launched this week as an open-source, structured database of AI model specs, pricing, and capabilities. The HN score (69) is modest, but the audience is narrow: people who need machine-readable data about what models can do.

The appeal for anyone running an AI directory is direct. I maintain a manually curated model metadata table that tracks context window size, vision support, function calling availability, and pricing tiers. Models.dev could eventually replace that — or at least serve as a daily cross-check. I don't know yet how frequently the data is updated or how accurate the pricing figures are given how fast this market moves, but the GitHub project is worth watching. If it matures into something trustworthy, it could feed the pairwise compare pages automatically rather than requiring manual updates.

Deno 2.8

Deno 2.8 shipped with startup time improvements and standard library additions. I'm not running Deno anywhere in this stack — Bun handles ETL scripts and Node drives the Astro build — but the startup time improvements are interesting for CI contexts where you spin up a short-lived process per ETL batch or per article. Sub-10ms cold starts matter when your GitHub Actions job invokes the same script 200 times in a run.

The monorepo story is still the blocker for migration. Turbo + Bun handles workspace dependencies here without friction. I'd need to see proper, stable workspaces support in Deno before the switching cost makes sense. That said, each Deno release reduces the gap.

Project Glasswing — Anthropic's new interpretability research

Anthropic posted an initial update on Project Glasswing this week. The name references the glasswing butterfly's transparency. The update is intentionally light on technical specifics — it reads more like an intent declaration than a methods paper — but the direction is interpretability: understanding what's actually happening inside the model, not just what it outputs.

Why I'm watching: interpretability research from Anthropic eventually surfaces in model behavior changes that affect structured output reliability. If the team can identify and address whatever mechanism causes occasional malformed JSON from Haiku under load, that has direct downstream value for ETL pipelines like mine. I don't know if Glasswing is targeting that kind of practical problem specifically, but the framing of "transparency" suggests it's not purely theoretical. Worth checking back on when they post a more detailed update.

Kanbots — open source Kanban with a parallel agent per card

Kanbots ran as a Show HN this week and landed 133 points. The concept: a Kanban board where each card gets a dedicated AI agent that runs when the card moves into an active column.

The comparison I keep making is to my current GitHub Actions cron setup, where a single script batch-processes content in sequence with retries. Kanbots makes sense when tasks are heterogeneous and open-ended — research synthesis, content work where the scope expands mid-flight, anything where you can't predict the output size upfront. For my use case, where every ETL step is deterministic and parallelism happens at the script level via batch arrays, per-card agent handoffs would add overhead without benefit. Still, the pattern is interesting enough that I want to watch what workflows people actually build with it before writing it off.


Part of an ongoing 6-month experiment running three AI-curated directory sites. The technical claims here are real; this article was AI-assisted.