frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Slow developer experience will bottleneck fast models

https://www.seangoedecke.com/slow-devex-will-bottleneck-fast-models/
1•gfysfm•22s ago•0 comments

Why Rust Conferences became irrelevant to me

https://blog.veeso.dev/blog/en/why-rust-conferences-became-irrelevant-to-me/
1•devy•40s ago•0 comments

Is GLM-5.3-Flash Mythos-Level at Cyber?

https://generality.org/blog/posts/glm-flash-exploitbench/
2•mamiglia•2m ago•0 comments

AI and Existential Dread

https://seanbarry.dev/posts/ai-and-existential-dread/
1•seanbarry•8m ago•0 comments

Kolmogorov Complexity

https://en.wikipedia.org/wiki/Kolmogorov_complexity
2•sans_souse•10m ago•0 comments

Just one more lane: TfNSW revives WestConnex zombie Alexandria to Moore Park

https://jakecoppinger.com/2026/09/just-one-more-lane-tfnsw-revives-westconnex-zombie-alexandria-t...
1•jakecopp•10m ago•1 comments

Ask HN: What do you miss in language learning apps?

1•zecice•15m ago•0 comments

Show HN: Nowdex – AI agent usage on your iPhone

https://nowdex.app/
1•djyde•17m ago•0 comments

Wild dogs record 2,500-mile trek across Zambia in search of a mate

https://www.bbc.com/news/articles/cy459y5y9yxo
1•brudgers•19m ago•0 comments

Amodei's proposal would effectively outlaw competitive open weight models

https://venturebeat.com/technology/amodeis-ai-slowdown-plan-never-says-open-weights-it-doesnt-hav...
4•dollar•19m ago•0 comments

Catching structural lookahead bias in Python backtests

https://gist.github.com/Say-rik/f1f75261c15b19b1834d55b1f2f92a3a
1•quant_backlog•23m ago•0 comments

Show HN: Learn CRISPR in 3D in any language

https://viewer.10k.science/
1•1auralynn•27m ago•0 comments

No one wants to buy LA's most famous midcentury house

https://www.sfgate.com/la/article/stahl-house-sits-unsold-22422982.php
2•Teever•28m ago•1 comments

A zero-dependency Python loop detector for AI agents

https://github.com/data-gras/savi-loop-guard
1•GSingGras•32m ago•0 comments

Enron Email Dataset

https://www.cs.cmu.edu/~enron/
2•Eridanus2•34m ago•0 comments

The New Tesla Roadster Is Finally Probably Maybe Coming on October 1

https://www.edmunds.com/car-news/tesla-roadster-reveal-date.html
2•RickJWagner•39m ago•1 comments

A Letter from a Machine Learning Engineer

https://nemin.hu/llm-letter/index.html
2•sampsn•39m ago•0 comments

Prosecute Dario and Sam for the felonies their companies have committed [video]

https://www.youtube.com/watch?v=0YIczZDCgsM
2•xqcgrek2•41m ago•1 comments

AI Doomer Hypeloop Suspiciously Serves to Support OpenAI and Anthropic's Agenda

https://www.nakedcapitalism.com/2026/09/openai-anthropic-ai-freeze-doomers-trump-bannon-sanders.html
5•iamnothere•42m ago•1 comments

Want to stop AI from destroying the world? Make it Open Source

2•foxtrot8672•42m ago•1 comments

The powerful millionaires hiding in plain sight

https://www.npr.org/sections/planet-money/2026/09/14/g-s1-143041/the-powerful-millionaires-hiding...
2•monkeydust•42m ago•0 comments

Running Ubuntu on the Lenovo IdeaPad Duet

https://vhaudiquet.fr/blog/duet-ubuntu/
3•vhaudiquet•46m ago•0 comments

Show HN: reqlan – a language for requirement graphs next to the code

https://reqlan.com
1•littletuna4•46m ago•0 comments

Account Deactivated Due to Biological Research

https://www.reddit.com/r/OpenAI/comments/1wd5kpp/account_deactivated_due_to_biological_research/
1•bithammerthunde•52m ago•0 comments

Show HN: VideoHighlighter – offline self-hosted video analyzer

https://github.com/Aseiel/VideoHighlighter
2•Aseiel•55m ago•0 comments

Why is a Nix rollback just a symlink flip?

https://www.labcraft.dev/blog/nix-profiles-generations
2•anandsuresh•58m ago•0 comments

Veilid for Everyone

https://veilid.com/why-use-veilid/
2•Bluestein•1h ago•0 comments

Interpreting Pangram

https://lucumr.pocoo.org/2026/9/14/interpreting-pangram/
3•swah•1h ago•0 comments

Autopoietic Ethics Constitution

https://www.guidavid.com/writing/autopoietic-ethics-constitution.txt
3•gdss•1h ago•0 comments

Personal Statement on AI Risk (Daniel Selsam, OpenAI capabilities)

https://docs.google.com/document/d/e/2PACX-1vQNl3SEX5IyA6d9qHjjFZN-qzGRZNFI6b63g-yu1Fy-ZYkVfCWm7i...
3•yurivish•1h ago•1 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!