frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

'RAMageddon' hits consumer electronics as AI drains chip supply

https://www.ft.com/content/ea9a9dcc-b1df-49b0-b80c-f320161b9efa
2•sbulaev•2m ago•0 comments

Tell HN: Anthropic should make Claude the Author and me the Co-Author

2•xeonax•3m ago•0 comments

US Republicans revolt against Flock AI surveillance as backlash intensifies

https://www.ft.com/content/b207536e-6def-4080-878f-d0eba61d11e0
1•sbulaev•3m ago•0 comments

British Museum faces question over Peter Thiel's private Bayeux Tapestry viewing

https://www.londondaily.news/__sentry/balanced/british-museum-faces-questions-over-peter-thiels-p...
1•frm88•5m ago•0 comments

A makeover for college: No gym, no meal plan and two years of work

https://www.npr.org/2026/09/01/nx-s1-5935431/college-reinvented-vermont-work-experience
1•juanplusjuan•5m ago•0 comments

Indonesia's Anak Krakatau eruption halts flights, schools, fishing

https://www.reuters.com/business/environment/indonesias-jakarta-airport-suspends-flights-due-ash-...
1•wslh•9m ago•0 comments

Show HN: Cartoon Photography

https://mkornreich.me/projects/cartoonphotography/
1•enjoyyourlife•14m ago•0 comments

New Twitter Rebrands to Tweet.app After Court's Double-Edged Ruling

https://www.engadget.com/2251699/new-twitter-rebrands-to-tweet-app-after-court-double-edged-ruling/
1•Anon84•15m ago•0 comments

Show HN: Lantunnel – a P2P-first private mesh for reaching your LANs

https://github.com/lantunnel/lantunnel
2•buhuipao•23m ago•0 comments

You almost certainly should connect to Tor through a VPN

https://www.privacyguides.org/en/advanced/tor-overview/
2•Cider9986•28m ago•0 comments

Keep Our Servers Running: Your Recurring Donation Goes 3X This September

https://blog.archive.org/2026/09/01/keep-our-servers-running-your-recurring-donation-goes-3x-this...
46•sonicrocketman•40m ago•11 comments

The eBPF Pivot – From Hardware Lock-In to Programmable Networking

https://ebpf.io/blog/cloudflare-replatforming-1/
2•syumei•44m ago•0 comments

Quick thoughts on GitHub Actions Aug 26 incident

https://surfingcomplexity.blog/2026/08/29/quick-thoughts-on-github-actions-aug-26-incident/
1•aray07•49m ago•0 comments

Workday reads two-column resumes left-to-right and interleaves them

https://www.cvai.dev/blog/why-workday-scrambles-two-column-resumes
2•quackquavk•52m ago•0 comments

RSS Amplifier Re-Publishes 19 Full NLJ Articles Without Permission

https://thenewleafjournal.com/rss-amplifier-re-publishes-19-full-nlj-articles-without-permission/
1•rdmuser•53m ago•0 comments

Ask HN: Looking for an old submission about sneering culture

3•annex-winged-cr•59m ago•0 comments

Agent Optimized Codebases

https://12gramsofcarbon.com/p/agentics-agent-optimized-codebases
1•theahura•1h ago•0 comments

Mother convicted of: her 5 yo walks short way to pond alone in Virginia

https://www.washingtonpost.com/dc-md-va/2026/09/06/5-year-old-walked-alone-gated-community-his-mo...
8•doctorpangloss•1h ago•1 comments

Nevarro, newsletter discovery and management platform

https://nevarroapp.com
2•Linden207•1h ago•0 comments

Ask HN: What are other "uncrackable benchmarks"?

3•Nail2680•1h ago•1 comments

Claude formalized Fermat's Last Theorem in 11 days

https://www.anthropic.com/news/formalizing-fermats-last-theorem
2•fourfire•1h ago•1 comments

Emacs/Wayland Window Manager in pure elisp

https://github.com/thkoch2001/rau
2•thkoch•1h ago•1 comments

Tinkering with J Space

https://darshanmakwana412.github.io/2026/09/extracting-steering-vectors-from-j-space/
1•martianvoid•1h ago•0 comments

OpenLedger – Local-first double-entry accounting, MCP-native (Apache 2.0)

https://github.com/Attri-Inc/open-ledger
1•gtmattri•1h ago•0 comments

Boeing 767 overran Miami runway

https://avherald.com/h?article=540409db&opt=0
7•r2sk5t•1h ago•2 comments

Epigenetic reprogramming as a key to reverse ageing and increase longevity

https://pubmed.ncbi.nlm.nih.gov/38272265/
2•andsoitis•1h ago•1 comments

Ask HN: Those still optimistic about a career in software – why?

3•cipherdc•1h ago•7 comments

Donut math: how donut.c works (2011)

https://www.a1k0n.net/2011/07/20/donut-math.html
1•azhenley•1h ago•0 comments

Attention Developers: New Open IssueTracker Ticket on Data Deletion Fraud

https://issuetracker.google.com/issues/557281747
1•Bitu79•1h ago•0 comments

Show HN: Gigantic Research, Friend

1•KnoxProtocol•1h ago•2 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!