frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek reverses course with surcharge on peak-hour API use

https://www.scmp.com/tech/big-tech/article/3358868/after-triggering-price-war-deepseek-reverses-c...
1•nh43215rgb•1m ago•0 comments

Cloudflare sets AI crawler deadline: separate search or be blocked

https://www.nbcnews.com/tech/tech-news/cloudflare-sets-ai-crawler-deadline-separate-search-blocke...
1•donohoe•3m ago•0 comments

Anthropic Changed the Sonnet 5 Chart After It Made Sonnet Look Bad

https://www.vincentschmalbach.com/anthropic-changed-sonnet-5-chart-after-it-made-sonnet-look-bad/
1•vincent_s•4m ago•0 comments

AOL and Eventbrite owner Bending Spoons soars 40% on Nasdaq debut

https://www.ft.com/content/aebe2dbb-6d8b-4b3d-82c8-e64aebd4ef70
1•bookofjoe•5m ago•1 comments

OpenAI proposes 5% stake to Trump administration to ease Washington pressure

https://www.cnbc.com/2026/07/02/openai-proposes-us-government-own-5percent-stake-to-address-polit...
1•BafS•6m ago•1 comments

Roosevelt Would Not Understand the E.U.'S Antitrust Fine Against Google (2017)

https://www.newyorker.com/business/adam-davidson/teddy-roosevelt-wouldnt-understand-the-eus-antit...
1•Tomte•7m ago•0 comments

Enabling the use of digital verification services for alcohol age checks in Eng

https://enablingdigitalidentity.blog.gov.uk/2026/06/30/enabling-the-use-of-digital-verification-s...
1•kaelyx•12m ago•1 comments

Ratatui without OS, directly in UEFI

https://github.com/sermuns/ratatuefi
1•sermuns•16m ago•0 comments

Show HN: ScoreMarket – A digital sheet music marketplace

https://www.scoremarket.co.uk
1•anthonydaly•17m ago•0 comments

OpenCode Is Down

2•defly•19m ago•2 comments

A return to two-pizza culture

https://www.allthingsdistributed.com/2026/06/return-to-two-pizza-culture.html
1•ingve•22m ago•0 comments

The Anthropic Fable Ban Is Over. The Battle over How to Tame AI Has Just Begun

https://www.wsj.com/tech/ai/the-anthropic-fable-ban-is-over-the-battle-over-how-to-tame-ai-has-ju...
3•cebert•23m ago•2 comments

Artificial Adventures

https://www.scattered-thoughts.net/writing/artificial-adventures/
2•noelwelsh•23m ago•0 comments

When your software systems don't talk to each other

https://laurieyoung.co.uk/articles/when-your-software-doesnt-talk/
1•Wildfalcon•23m ago•0 comments

Utrecht's fish doorbell closes for the season after 12M views

https://nltimes.nl/2026/07/02/utrechts-fish-doorbell-closes-season-12-million-views
1•TechTechTech•24m ago•0 comments

Trainety – a marketplace for AI project publishers and providers

https://www.trainety.com/
1•xuxurimu•28m ago•0 comments

"Learning to Replicate Expert Judgment in Financial Tasks" – Thinking Machines

https://thinkingmachines.ai/news/learning-to-replicate-expert-judgment-in-financial-tasks/
1•upmind•28m ago•0 comments

Show HN: A YouTube transcript API that survives YouTube's bot war

https://ytranscript.com/developers
1•nopxuan•28m ago•0 comments

'Titan is actually a very reasonable destination for humans'

https://www.space.com/astronomy/saturn/titan-is-actually-a-very-reasonable-destination-for-humans...
1•bookofjoe•29m ago•0 comments

Why I'm Forced to Say Farewell: Google Management Has Lost Its Moral Compass

https://docs.google.com/document/d/1SH9QRTAlL02THgAN2AGmWe9El0_2ZJF6hhgDBx8k97c/edit?tab=t.0
7•vrganj•30m ago•1 comments

Help Test Bahriya – A New Distributed Container Cloud

https://bahriya.cloud
1•meezaan•31m ago•1 comments

What I've Learned from Hacker News (2009)

https://paulgraham.com/hackernews.html
1•adletbalzhanov•32m ago•0 comments

OpenAI in talks to give Trump administration a 5% stake in the company

https://www.cnn.com/2026/07/02/business/openai-trump-stake-intl
2•chirau•32m ago•1 comments

How Datadog measure data completeness at scale

https://www.datadoghq.com/blog/engineering/data-pipeline-completeness/
1•eywek•34m ago•0 comments

Kim Dotcom's legal battle to stay in NZ and avoid extradition to the US

https://www.rnz.co.nz/news/crime-and-justice/652867/kim-dotcom-s-legal-battle-to-stay-in-nz-and-a...
3•Tomte•34m ago•0 comments

The cloud has an address. And that address can burn

https://appedus.com/the-cloud-has-an-address-and-that-address-can-burn/
1•Fisher_L•35m ago•0 comments

Show HN: SophMate – AI Copilot for WordPress/WooCommerce

https://sophmate.ai
1•ahmed_duski•36m ago•0 comments

The cannibalistic trade-off: Why human cannibalism emerges

https://www.pnas.org/doi/10.1073/pnas.2605120123
2•Tomte•39m ago•1 comments

Omarchy Impersonated at Omarchy[.]Net

https://github.com/basecamp/omarchy/discussions/6160
1•arusekk•43m ago•1 comments

Ancient grain shows early lab promise against a key Alzheimer's protein

https://sciencex.com/news/2026-07-ancient-grain-early-lab-key.html
3•pseudolus•45m 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!