frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

To achieve major goals, NASA seeks to streamline its organization

https://arstechnica.com/space/2026/05/to-achieve-major-goals-nasa-seeks-to-streamline-its-organiz...
1•LorenDB•42s ago•0 comments

Show HN: Appbun turn any webpage into an inspectable Electrobun desktop app

https://github.com/bigmacfive/appbun
1•bigmacfive•45s ago•0 comments

The Fake Nobel That Duped the Romanian Academy

https://www.scena9.ro/en/article/romanian-academy-nobel-florent-montaclair-chomsky
1•speckx•1m ago•0 comments

Show HN: Interactive first-principles climate physics simulation with explainer

https://earth.crackalamoo.com
1•crackalamoo•1m ago•0 comments

GLP-1s Linked to Lower Risk of Cancer Spread in Four Tumor Types

https://www.medpagetoday.com/meetingcoverage/asco/121397
1•ascorbic•3m ago•0 comments

A PDF let the internet hear the final words in the cockpit of UPS plane

https://www.cnn.com/2026/05/22/us/plane-crash-audio
1•intrasight•3m ago•0 comments

Dutch FIOD dismantled arm of Stark Industries – bulletproof hoster

https://twitter.com/IntCyberDigest/status/2057847058430656518
1•defly•4m ago•0 comments

Show HN: Lilo – An open source personal AI assistant that lives in Telegram

2•abi•5m ago•0 comments

Fusion energy poised for simpler U.S. review

https://www.axios.com/2026/05/22/fusion-energy-simpler-federal-review
1•Brajeshwar•6m ago•0 comments

The Economic Experiment That Upended Reality

https://www.theatlantic.com/ideas/2026/05/minimum-wage-experiment-worked/687255/
1•JumpCrisscross•7m ago•0 comments

Can SAEs Capture Neural Geometry?

https://www.goodfire.ai/research/can-saes-capture-neural-geometry
1•gmays•7m ago•0 comments

Trump Mobile exposed customers' personal data

https://techcrunch.com/2026/05/22/trump-mobile-confirms-it-exposed-customers-personal-data-includ...
4•rippeltippel•8m ago•0 comments

Starbucks scraps AI inventory tool across North America

https://www.reuters.com/business/starbucks-scraps-ai-inventory-tool-across-north-america-2026-05-21/
1•josephcsible•9m ago•0 comments

DeepSeek makes the V4 Pro price discount permanent

https://api-docs.deepseek.com/quick_start/pricing
4•Tiberium•9m ago•0 comments

Rolling Your Own CIAM-Bad Idea or Horrible Idea? (2024)

https://ciamweekly.substack.com/p/rolling-your-own-ciam-bad-idea-or
1•mooreds•10m ago•0 comments

Ask HN: How would you grow a screen recording app after hitting $3.5K MRR?

1•snazarov92•10m ago•0 comments

Design-Based Vulnerabilities on macOS: Oops, Not a One-Shot Fix

https://imlzq.com/apple/macos/2026/05/15/Design-Based-Vulnerabilities-on-macOS-Oops-Not-a-One-Sho...
1•speckx•11m ago•0 comments

SpaceX Taps Crypto Billionaire to Lead First Crewed Mission to Mars

https://gizmodo.com/spacex-taps-crypto-billionaire-to-lead-first-crewed-mission-to-mars-2000762451
2•bookofjoe•12m ago•0 comments

Leopold Aschenbrenner: Situational Awareness Two Years On

https://philippdubach.com/posts/aschenbrenners-receipts/
1•7777777phil•13m ago•0 comments

Fakellm – a mock OpenAI/Anthropic server for testing

https://github.com/1dg618/fakellm
1•1dag618•14m ago•0 comments

Cannes Film Cost $500k to Make. $400k Was AI Compute Costs

https://www.wsj.com/cio-journal/this-cannes-film-cost-500-000-to-make-400-000-was-ai-compute-cost...
1•JimsonYang•16m ago•0 comments

Ask HN: OpenAI, SpaceX/xAI, Anthropic all to IPO, is this a sign of the peak?

2•virgildotcodes•17m ago•0 comments

Cloudflare Dashboard/API is down

https://www.cloudflarestatus.com/incidents/znll7lfnd35h
4•jnettome•19m ago•0 comments

Where to buy anything AI Powered Search

1•SaadZ777•20m ago•2 comments

Harmonics: Learn about additive synthesis and play with interactive string modes

https://melatonin.dev/additive-synth-comic/what-is-a-harmonic/
2•wlll•22m ago•0 comments

The Minimal Retroreflective Microfacet Model

https://jcgt.org/published/0015/01/04/
1•ibobev•24m ago•0 comments

How to convert between wealth and income tax

https://paulgraham.com/winc.html
31•bifftastic•25m ago•64 comments

Show HN: Pablo – a Chrome extension that copies UI from any website

https://www.usepablo.dev/
2•rayansaleh•26m ago•0 comments

Brethof-mind – local long-term memory for Claude Code (SurrealDB, no API)

https://github.com/BrethofAI/brethof-mind
3•brethofai•26m ago•0 comments

Self-Hosting a Forgejo Runner for Codeberg Actions

https://hmmr.online/posts/codeberg-forgejo-runner/
2•ZanderHammer•26m ago•0 comments
Open in hackernews

Show HN: Fast and Quality Code Chunking with Chonkie

1•snyy•1y ago
Hi HN,

We’re Chonkie (https://github.com/chonkie-inc/chonkie) — we build open source tools that help split documents into meaningful chunks for use with AI models.

When you use LLMs over large documents or codebases, you often need to break them into smaller parts to fit the model’s context window. Our chunkers do this in a smart way: they preserve structure and meaning, so only the most relevant pieces are passed into the model. This reduces hallucinations, avoids confusion, and improves performance and accuracy.

Today we’re launching our Code Chunker — a fast, structure-aware way to break down source code into high-quality, token-aware chunks.

How it works:

(See the code: https://github.com/chonkie-inc/chonkie/blob/main/src/chonkie...)

Code Chunker uses tree-sitter (https://tree-sitter.github.io/tree-sitter/) to parse your code into an abstract syntax tree (AST). It then recursively merges and groups nodes in a way that respects both code structure and token limits.

It supports all languages that tree-sitter supports, and is designed to preserve formatting and semantics. Large functions or class definitions won’t be split in the middle of a block — instead, we dive recursively into the AST to produce clean, coherent chunks that fit your configured token budget.

What it’s useful for:

  - Embedding-based code search

  - RAG (retrieval-augmented generation) over codebases

  - Long-context analysis of code

  - Preparing repos for fine-tuning or pretraining
Try it out:

  - Open source package: https://docs.chonkie.ai/chunkers/code-chunker

  - Hosted playground (free with account): https://cloud.chonkie.ai
Happy Chonking!