frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

YouTuber, or someone, wantrs to send nice emails to active military personnel

https://mic.sandboxx.us/
1•tempestrose•33s ago•0 comments

Towards a taxonomy of cliches in Space Opera

https://www.antipope.org/charlie/blog-static/2016/03/towards-a-taxonomy-of-cliches-.html
1•rznicolet•4m ago•0 comments

Mexican student creates an acoustic fire extinguisher to put out fire in seconds

https://www.upsocl.com/en/16-year-old-mexican-student-creates-an-acoustic-fire-extinguisher-that-...
2•rguiscard•4m ago•0 comments

Show HN: TIL in AI

https://buildyard.ai/til
1•buildyard•4m ago•0 comments

The Poisoned Chalice and the Court of the Opened Eye

https://danverbraganza.com/writings/the-poisoned-chalice-and-the-court-of-the-opened-eye
1•nvader•6m ago•0 comments

SmartDB Todo tu trabajo con datos, en el contexto de tu proyecto

https://smartdb.bytss.com/
1•luiscasasanchez•7m ago•0 comments

Show HN: Botbin.io – Pastebin for AI agent artifacts with MCP

https://botbin.io/?mcp=true
1•obilgic•9m ago•0 comments

Herdr Studio

https://powerfooI.github.io/herdr-studio/
2•throwaway888abc•10m ago•0 comments

Identity Verification in Japan: What Happens Behind the Scenes

https://www.tokyodev.com/articles/identity-verification-in-japan
1•pwim•11m ago•0 comments

I built a margin tracker for builders after watching them guess in spreadsheets

https://tryobra.com/
1•mytinyrocket•15m ago•0 comments

Donald Trump boxed his party in

https://www.economist.com/united-states/2026/09/10/how-donald-trump-boxed-his-party-in
1•Anon84•16m ago•0 comments

The Kirkversary: An AI Carnival

https://thecarrierwave.substack.com/p/kirkversary-a-bizarre-ai-carnival
1•throwawayq3423•18m ago•0 comments

Setting up OpenCode with Ollama and sbx on Mac

https://tensorsandtokens.com/posts/opencode-ollama/
2•etoxin•19m ago•0 comments

Easter egg: binary code on top of Golden Gate Bridge

https://week-of-ai.com/
1•Scouttie•21m ago•0 comments

Google will buy half the electricity of a nuclear power plant

https://www.bbc.com/news/articles/c8r6y4me2g6o
14•lukaspetersson•22m ago•7 comments

Abu Dhabi buys into China's Luckin Coffee with $1B deal

https://www.ft.com/content/7f9a5140-e3f5-45a9-9620-08b8e819ba41
2•teleforce•23m ago•0 comments

The New Cinema Camera Dominating the Film Industry

https://www.indepthcine.com/videos/new-popular-cinema-camera-2026
3•gwill•26m ago•0 comments

Parameter

https://www.parameter.ai
1•handfuloflight•28m ago•0 comments

ClassicPress: Forked from WordPress without the block editor

https://www.classicpress.net/
1•thunderbong•28m ago•0 comments

DeepSeek 4.1 Flash

https://www.deepseek.com/en/news/deepseek-v4-1-flash/
3•thatxliner•30m ago•0 comments

YuE2 · Frontier Music with Symbolic Planning

https://map-yue2.github.io/
7•sexy_seedbox•31m ago•1 comments

I turned off my algorithm for 24 hours. Is this how social media used to be?

https://www.theguardian.com/media/2026/sep/11/i-turned-off-my-instagram-algorithm-opt-out-social-...
6•billybuckwheat•35m ago•0 comments

FunClock – Relaxing Tick, Animated Clock for Focus and Sleep

https://play.google.com/store/apps/details?id=com.yugakhan.funclock&hl=en_US
1•cflsdf•37m ago•0 comments

Details.so

https://www.details.so/inspo
2•handfuloflight•37m ago•0 comments

Release 13.1.5 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.1.5
2•kyisaiah47•37m ago•0 comments

LightSleep – Gentle Sounds for Better Sleep App

https://play.google.com/store/apps/details?id=com.yugakhan.lightsleep&hl=en_US
1•cflsdf•38m ago•0 comments

Kinapod: Throw metrics from an AirPod in your disc

https://kinapod.com/disk
2•inickt•41m ago•0 comments

New audit combo for AI agents

https://lexifina.com/blog/new-audit-for-ai-agents
2•alansaber•43m ago•1 comments

Show HN: Learn programming by building something you want

https://codeset.ai/
1•Nfsaavedra•44m ago•0 comments

Nari Labs: Multimodal inference at the speed of light

https://narilabs.com/
1•handfuloflight•44m 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!