frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AMD Ryzen AI Halo – $4k AI Dev Kit

https://www.lttlabs.com/articles/2026/07/06/amd-ryzen-ai-halo
132•LabsLucas•2h ago•103 comments

Aluminum foil (2021)

https://dernocua.github.io/notes/aluminum-foil.html
161•firephox•4h ago•65 comments

Kani: A Model Checker for Rust

https://arxiv.org/abs/2607.01504
37•Jimmc414•2h ago•1 comments

Road to Elm 1.0

https://elm-lang.org/news/faster-builds
237•wolfadex•6h ago•99 comments

Real-time map of Great Britain's rail network

https://www.map.signalbox.io
325•scrlk•8h ago•123 comments

Fable 5 On Vending-Bench: Misbehaving, With Plausible Deniability

https://andonlabs.com/blog/fable5-vending-bench
121•optimalsolver•5h ago•74 comments

Stealth robotics startup (YC S26) is hiring principal engineers (Palo Alto)

1•david-venegas•1h ago

Clojure 1.13 adds support for checked keys

https://clojure.org/news/2026/07/02/clojure-1-13-alpha1
125•FelipeCortez•3d ago•24 comments

1k Words: A Writing Contest

https://writingclub.world/1picture1000words
49•surprisetalk•2h ago•17 comments

Show HN: Pulpie – Models for Cleaning the Web

https://usefeyn.com/blog/pulpie-pareto-optimal-models-for-cleaning-the-web/
29•snyy•1h ago•3 comments

Egypt Is Building a New Nile

https://www.theb1m.com/video/egypt-is-building-a-new-nile
38•geox•2d ago•2 comments

OfficeCLI: Office suite for AI agents to read and edit Microsoft Office files

https://github.com/iOfficeAI/OfficeCLI
15•maxloh•1h ago•1 comments

Resetting Xbox

https://news.xbox.com/en-us/2026/07/06/resetting-xbox/
157•dijksterhuis•3h ago•113 comments

CS2 Fog Of War: Server-sided anti-wallhack occlusion culling for CS2 servers

https://github.com/karola3vax/CS2FOW
22•LorenDB•2h ago•1 comments

The AI Superforecasters Are Here

https://www.astralcodexten.com/p/the-ai-superforecasters-are-here
18•surprisetalk•2h ago•12 comments

I Like Small Keyboards

https://samsm.ch/small-keyboards/
10•surprisetalk•5d ago•5 comments

The Supreme Court Just Lit a Fuse Under Flock's License Plate Camera Empire

https://www.yahoo.com/news/politics/articles/supreme-court-just-lit-fuse-130900307.html
29•bilsbie•1h ago•3 comments

Should DayQuil Be Legal?

https://www.theargumentmag.com/p/should-dayquil-be-legal
73•paulpauper•2h ago•88 comments

When 2+2=5

https://arstechnica.com/security/2026/06/ai-browsers-can-be-lulled-into-a-dream-world-where-guard...
54•noashavit•3d ago•24 comments

Introduction to Genomics for Engineers

https://learngenomics.dev/docs/biological-foundations/cells-genomes-dna-chromosomes/
173•yreg•4d ago•26 comments

What Emily Bender meant by "stochastic parrots"

https://spectrum.ieee.org/stochastic-parrot
116•digital55•3h ago•144 comments

Show HN: I Built LangGraph for Swift

https://github.com/christopherkarani/Swarm
13•christkarani•3h ago•3 comments

Nintendo announces new product revisions in Europe with replaceable batteries

https://www.nintendo.com/en-gb/Support/Nintendo-Switch-2/Information-about-upcoming-battery-relat...
212•akyuu•4h ago•140 comments

Apricot Computers: An underrated British brand

https://dfarq.homeip.net/apricot-computers-an-underrated-british-brand/
59•giuliomagnifico•5d ago•19 comments

Building relationships with customers through support didn't turn out as hoped

https://www.uncommonapps.nyc/p/castro-podcasts-things-i-got-wrong-support
280•dabluck•15h ago•169 comments

DOJ Closing Abbott Labs Case Spurs Wider Corporate Crime Retreat

https://news.bloomberglaw.com/us-law-week/doj-closing-abbott-labs-case-spurs-wider-corporate-crim...
88•petethomas•3h ago•24 comments

Amazon will stop accepting new customers for Mechanical Turk

https://techcrunch.com/2026/07/05/amazon-will-stop-accepting-new-customers-for-mechanical-turk/
113•bookofjoe•5h ago•35 comments

Lost and Found

https://walzr.com/lost-and-found
29•walz•16h ago•6 comments

Why low-latency Java still requires discipline?

https://chronicle.software/insights/blogs/why-low-latency-java-still-requires-discipline
61•theanonymousone•4h ago•33 comments

The Complete Homemade Juggling Beanbag Guide

https://www.joshuaclifton.com/juggle/
59•mrauha•4d ago•6 comments
Open in hackernews

Show HN: Pulpie – Models for Cleaning the Web

https://usefeyn.com/blog/pulpie-pareto-optimal-models-for-cleaning-the-web/
26•snyy•1h ago
Hey HN, I'm Shreyash, founder of Feyn. We built Pulpie, a family of Pareto optimal models for cleaning the web. Pulpie strips boilerplate (ads, footers, sidebars) from raw HTML and returns just the main content as HTML or Markdown.

We match SOTA extraction quality while being 20x cheaper. Cleaning 1 billion webpages costs $7,900 with Pulpie versus $159,000 with Dripper, the current leading extractor.

The gains come from architecture. Today's leading extractors are decoders that generate output one token at a time. Each step reads the full model from memory to produce a single token. Conversely, Pulpie models are encoders. They run one forward pass over the full input HTML and label each block as boilerplate or content. As a result, Pulpie is compute-bound while decoders are memory-bound. Cheaper GPUs have relatively more compute than memory bandwidth. This makes Pulpie easy to run optimally.

Here's Pulpie and Dripper cleaning the same pages side by side: https://www.youtube.com/watch?v=ibd-tIiQECo. You can try a side-by-side comparison yourself: https://huggingface.co/spaces/feyninc/pulpie

Our motivation for Pulpie came from building a deep research harness. Every search API returns noisy content that contains ads, nav elements, and sidebars. In one instance, an ad for "Gemini on Pixel" slipped into our search results, got passed into LLM context, and ended up in the final answer served to the user. Pretty embarrassing moment for us but it helped us realize how bad data kills model intelligence. We built Pulpie to get clean data for cheap.

All models are open source on Hugging Face. You can read about our training process and how to use Pulpie here: https://usefeyn.com/blog/pulpie-pareto-optimal-models-for-cl...

Happy to answer any questions!

Comments

lnenad•41m ago
Very nice! Thank you for building this.
rambambram•39m ago
Leeches.