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

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
A
About on SuperTechFans

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
Building The World Now: six months of stack notes
Anestis · 2026-04-22 · via DEV Community
Cover image for Building The World Now: six months of stack notes

Anestis

About six months ago I started The World Now as a side project, an attempt to build a news site where the pipeline is mostly automated but the editorial judgment still feels like a human made the call.

No filler, no scraped soup, no "10 things you won't believe." Here's where it's at and what's running under the hood.

## The stack

  • Next.js 15 on Vercel, App Router, RSC where it makes sense. Turbopack for dev, which is genuinely fast but eats HMR state maybe once a day and forces a restart.
  • MongoDB Atlas for articles, events, users, engagement. One DB doing most of the work.
  • AWS Lambda + Serverless Framework for the article generation pipeline. Cron-triggered, drafts with Grok-4, runs an editorial QA pass, publishes when it passes.
  • Resend for email — three audiences: free daily, free weekly, paid weekly deep-dive.
  • Stripe for the paid tier.
  • Mediavine for display ads on the free tier.

Nothing fancy. The interesting part isn't any single piece, it's the pipeline.

## The article pipeline

Every hour a Lambda wakes up, decides whether to publish, then:

  1. Pulls from ~20 sources (France24, Times of Israel, ReliefWeb, a few RSS endpoints I wrote custom parsers for).
  2. Dedups against the last 14 days of articles and against unique-image-across-all-articles.
  3. Drafts in one of two formats: BREAKING_NEWS (short, fast, ~1,100 words) or SITUATION_REPORT (long-form, context-heavy, ~1,500 words with secondary and tertiary images).
  4. Generates hero + secondary images, with placeholders while they render.
  5. Runs editorial QA — word-count checks, unique-image gate, citation format, no clickbait titles, no bare brackets, no word-count trailers leaking in.
  6. If QA fails: one retry. If it fails twice: drop the article entirely. I'd rather publish fewer good ones than patch bad ones.

Last 20 articles audited averaged 55 citations per BREAKING_NEWS and 70 per SITUATION_REPORT. That's the part I'm proudest of — the thing is genuinely grounded, every claim traceable.

## What's going wrong

Google doesn't love me. Every page in my ranking-target set is
showing "Crawled, currently not indexed" in Search Console. I've been at this for weeks now, structured data tightened, internal linking cleaned up, manual URL inspections, sitemap pings. Nothing moves.

Google then sees the pages, reads them, and shrugs.

Bing, on the other hand, is crushing it. +37.6% impressions week over week, consistent top-10 positions on a handful of competitive
queries, and a traffic mix that's well over 60% Bing at this point.
Which is a sentence I never expected to write.

So the plan is: double down on what's working, and keep trying to get out of Google jail.

## What's next

  • Per-location earthquake pages (/earthquakes-today/[location]) with live USGS data — 15 country/state variants, each with its own fault systems, safety playbook, and official channels (JMA for Japan, ShakeAlert for California, ITSAK for Greece, and so on). Generic templates with a name swap won't cut it; each one needs to actually be useful for that specific place.
  • A "listen on your commute" version of the weekly deep-dive using voice cloning. Evaluating VoxCPM2 vs Inworld TTS-1.5 vs ElevenLabs right now — cost vs quality is the current blocker.
  • Getting out of Google jail. Somehow.

## The link

If you want to poke around:
the-world-now.com

If you've been through the "crawled, currently not indexed" wall and something actually worked — drop it in the comments. I'll owe you