Urgent.News

What's breaking now, across thousands of outlets.

Tech

Pocket is shutting down. I built a replacement that doesn't use AI

Pocket is shutting down... I built a replacement that doesn't use AI Pocket shut down, and I lost 400+ bookmarks. Instead of complaining, I decided to code an alternative that actually respects user data, stays completely offline-first, and avoids cloud bloat. The Problem with Existing Tools Most read-later apps trap your data behind closed cloud APIs, force monthly subscriptions, or slow down…

Pocket is shutting down, and the user lost over 400 bookmarks. Instead of complaining, the user decided to create an alternative that respects user data, stays offline-first, and avoids cloud bloat. Most read-later apps trap data behind closed cloud APIs, require monthly subscriptions, or slow down the browser. The user examined how newer tools handle article text extraction and found them using OpenAI or Gemini API calls, which adds latency, per-token costs, and hallucinations that rewrite or mangle the original text.

The user wanted a fast, private, and deterministic solution, so they built a DOM parsing and heuristic extraction engine using JavaScript. The system evaluates paragraph density, tag trees, and text-to-link ratios to isolate core content in milliseconds. The text saved is 100% accurate, with no AI hallucinations. The app uses a local-first architecture, keeping bookmarks private and under user control.

The tech stack includes React, Tailwind CSS, custom DOM heuristics, a Chrome extension, and Supabase & Edge Functions for optional features. The user invites the community to try the alternative at fetchmarkapp.com and share feedback on parsing favorite tech blogs or heavy documentation sites.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

A/B testing: when the standard test is the wrong tool

Last week was the standard fixed-horizon test: split traffic 50/50, wait for your pre-calculated sample size, look once, done. That's still the right default most of the time.

  • Traditional fixed-horizon A/B test may not always provide accurate information.
  • Multi-armed bandit algorithms offer dynamic approach to maximize revenue during test.
  • Switchback and hold-out tests are alternative methods for conducting A/B tests.

More from Monday 7 September →