frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

FreeToken: Efficient Edge-Native Moe Serving with Bandwidth-Adaptive Execution

https://arxiv.org/abs/2608.16157
1•gmays•1m ago•0 comments

TurnBench

https://turnbench.sesame.com/
1•selimonder•2m ago•0 comments

But where does taste come from?

https://dustycloud.org/blog/but-where-does-taste-come-from/
1•paroneayea•2m ago•0 comments

Show HN: I built a physical dream machine for my wife

https://twitter.com/oblomovius/status/2094053464552698325
1•oblo_mov•3m ago•0 comments

Ask HN: How do I make sure ChatGPT/Claude/Gemini forget all prior conversations?

1•chirau•4m ago•0 comments

ClaudeDevs: We're permanently raising standard weekly limits in Claude Code

https://twitter.com/chandlerwilcox/status/2093742530659766324
1•isolli•5m ago•1 comments

Rust Function Overloading – Call for Experimentation

https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/
1•torutofu•6m ago•0 comments

Write the Fucking Manual

https://wtfmbook.com/
1•theletterf•8m ago•0 comments

Judge rule AI-generated child sex abuse material is protected by First Amendment

https://reason.com/volokh/2026/08/27/home-possession-of-ai-generated-porn-depicting-fake-children...
2•DeepLogin•14m ago•0 comments

90 days of attacks on AI infrastructure

https://www.wiz.io/blog/ai-infrastructure-honeypot
1•coder-pm•21m ago•1 comments

Software project folder structure for isolating agent scope

https://graphthinking.blogspot.com/2026/08/software-project-folder-structure-for.html
1•physicsgraph•21m ago•0 comments

Show HN: Podiom – durable sessions, scheduling and goals for local Claude/Codex

https://github.com/Podiom/Podiom
3•Maphielbso•21m ago•0 comments

Prevalence of Silent Atherosclerosis Across Adult Life

https://doi.org/10.1056/nejmoa2609059
1•sbulaev•23m ago•0 comments

Openpyxl silently drops cached formula values when you edit an unrelated cell

https://kookerella.com/posts/ai-agent-silently-breaks-formula-values/
1•mnicholls•24m ago•0 comments

Zoom activated my mic and played "recording in progress" at 4AM

https://imgur.com/a/0NQ0rFk
3•telmop•25m ago•1 comments

Onefile-unlock: a crypto paywall in one self-contained HTML file

https://raw.githack.com/EltonCherrington/onefile-unlock/main/onefile-unlock.html
1•memctlagent2026•31m ago•0 comments

Why Does Top Gun (1986) Feel So Gay Despite Being About a Straight Navy Pilot?

https://decodingvibes.com/blog/why-top-gun-feels-so-gay-despite-being-about-a-straight-navy-pilot/
1•altmanaltman•32m ago•0 comments

Get(key) in libmdbx by up to x1000 using a lock‑free cache on top of a B‑tree

https://github.com/orgs/Mithril-mine/discussions/314
1•erthink•35m ago•0 comments

Claude Session URL appended to commit messages and PR descriptions by default

https://github.com/anthropics/claude-code/issues/66504
49•sparsesignal•39m ago•29 comments

Ask HN: Do you run A/B Tests?

3•hackeryogi•50m ago•0 comments

Nobody Told Me People Still Code New Games for a 1982 Computer

https://comuniq.xyz/Technology/post?t=1634
3•01-_-•51m ago•0 comments

Sports Engines

https://random.ma.ttias.be/boxermotor
2•Mojah•52m ago•0 comments

AWS mumbles about its cost-busting networking tech when it should be shouting

https://www.theregister.com/networks/2026/08/29/aws-mumbles-about-its-cost-busting-networking-tec...
3•sandbach•53m ago•0 comments

Claude Team Plan for Scientists

https://claude.com/programs/team-plan-for-scientists
2•Anon84•56m ago•0 comments

Vaultwarden Sequence Diagrams

https://app.ilograph.com/demo.ilograph.Vaultwarden/Log%2520In
2•billyp-rva•59m ago•0 comments

No AI Fridays

https://noaifridays.com/
3•xendo•59m ago•3 comments

The MAI Image and Reve 2.1 ranks higher than GPT Image 2 now

https://artificialanalysis.ai/image/leaderboard/editing
2•creatune•1h ago•0 comments

Senior Software Engineer

3•sshahu•1h ago•0 comments

Tinkering is Up: browser-based local reader for Hacker feeds

https://future-secured.com/41133
2•adrianwaj•1h ago•0 comments

FOSDEM 2027: 30 & 31 January 2027 Brussels, Belgium

https://fosdem.org/2027/
2•edward•1h 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!