frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Foreign Students Applying to US Colleges Fell 10% This Year

https://www.bloomberg.com/news/articles/2026-08-20/foreign-students-seeking-spots-at-us-colleges-...
2•garbawarb•2m ago•0 comments

What datacenters look like in neighborhoods

https://www.usatoday.com/picture-gallery/tech/2026/08/19/data-center-communities-controversy-phot...
1•ripe•2m ago•1 comments

Kiro Crew

https://kiro.dev/blog/introducing-kiro-crew/
1•gmays•3m ago•0 comments

Promising Results for mRNA Cancer Vaccine from Moderna and Merck

https://time.com/article/2026/08/19/mrna-cancer-vaccine-moderna-merck/
1•paulpauper•4m ago•0 comments

I reverse-engineering the closed GoodNotes format using LLMs

https://github.com/Kaih1825/parser-for-goodnotes
1•Kaih1825•6m ago•1 comments

Mjolnir: Automated Cross-Vendor Adversarial Review

https://blog.brokk.ai/mjolnir-automated-cross-vendor-adversarial-review/
1•jbellis•6m ago•0 comments

Show HN: We chased a weather balloon across Montana and never found it

https://radi8.dev/blog/uplink/
1•radeeyate•6m ago•0 comments

Dark Factory Engineering and Programming as Theory Building

https://chris-parmer.com/dark-factory-and-programming-as-theory-building/
1•chriddyp•7m ago•0 comments

Show HN: See what's behind any website: DNS, hosting, security, tech stack

https://heckzar.app/
1•nimsarajay•7m ago•0 comments

Why Odin?

https://nathany.com/why-odin/
2•ksec•13m ago•0 comments

Show HN: SystemG – An agent-friendly general process composer

https://sysg.dev
2•ra0x3•13m ago•0 comments

'Darth Vader' Wants Flock in San Diego

https://www.404media.co/darth-vader-spoke-in-support-of-flock-at-san-diego-city-council-meeting/
2•cdrnsf•14m ago•0 comments

Show HN: JavaScript library that makes any list a smooth picker of any shape

1•tahazsh•15m ago•0 comments

China lands its Zhuque-3 rocket, rivaling Blue Origin and SpaceX

https://www.scientificamerican.com/article/china-successfully-lands-its-zhuque-3-rocket-rivaling-...
2•beardyw•16m ago•0 comments

URL shortener links stored in your ATProto PDS

https://atpr.to/
2•jcbhmr•16m ago•0 comments

Judge orders Kalshi cease Washington operations (starting August 20)

https://www.atg.wa.gov/news/news-releases/judge-orders-kalshi-cease-numerous-washington-operations
1•travisd•16m ago•1 comments

Windows silently stops delivering WH_KEYBOARD_LL hooks when Chromium has focus

https://github.com/wudaming00/wh-keyboard-ll-chromium
1•wudmaing00•17m ago•0 comments

By all means, keep moving

https://www.sciencedirect.com/science/article/abs/pii/S1053810017302143
2•mabios•18m ago•1 comments

The Milky Way's fastest star could expose our black hole's spin

https://www.scientificamerican.com/article/the-milky-ways-fastest-star-could-expose-our-black-hol...
2•beardyw•19m ago•1 comments

Epic Unhappy with New EU App Store Fee Structure

https://twitter.com/EpicNewsroom/status/2089787577062559951
2•smugma•20m ago•1 comments

Email Infrastructure for ATProto

https://comail.at/
1•jcbhmr•20m ago•0 comments

We're trying to make Kimi K3 cheaper

https://packs.relace.ai/
2•pfunctional•21m ago•1 comments

Textlog Is Now an Open Collective, Part of Open Source Europe

https://opencollective.com/textlog
2•stagas•22m ago•1 comments

Building certgrep.sh: a free CT search engine

https://haveibeensquatted.com/blog/building-certgrep
2•juxhindb•22m ago•1 comments

Arc AGI-3 100% solved with a skill

https://twitter.com/pbshgthm/status/2090087614716297439
1•rochansinha•22m ago•0 comments

Show HN: Validate your idea with AI before you build it

https://foundera.app/
1•solocem•23m ago•0 comments

The Maintainer Is the Interface

https://kennethreitz.org/essays/2026-03-22-the_maintainer_is_the_interface
1•alvis•23m ago•0 comments

RSDF: SDF textures suited to rendering multi-coloured images

https://dysenam.neocities.org/rsdf/about
1•klaussilveira•24m ago•0 comments

Ask HN: One SSH key or many SSH keys?

1•htunnicliff•24m ago•0 comments

Ubicloud increases prices due to rising costs

https://www.ubicloud.com/blog/ubicloud-price-adjustment-2026
1•davidcelis•24m 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!