frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

First AI bot appears on Starcraft Ladder, wins against progamer

https://tl.net/forum/brood-war/646339-bot-on-ladder
1•maloga•25s ago•0 comments

Show HN: Quick commerce coverage map of India

https://darkstoremap.in/
1•ghoshbishakh•3m ago•0 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
2•tliltocatl•3m ago•0 comments

Psiphon

https://forge.psiphon.ca/en/what-is-psiphon
1•Bluestein•4m ago•0 comments

If You Knew God Exists, Wouldn't You Become a Priest?

https://joecmarshall.com/posts/if-you-knew-god-exists-wouldnt-you-become-a-priest/
2•webappsecperson•7m ago•1 comments

Show HN: Wattai.dev – Free Decision Intelligence

https://wattai.dev/
2•namanvyas•7m ago•0 comments

Real attackers don't think in bug bounty scopes

https://rushter.com/blog/security-bb-and-scopes/
1•f311a•9m ago•0 comments

Show HN: I got Claude Code and Codex to argue about my code

https://github.com/chen-985211/cleancode
1•Tide-N•9m ago•0 comments

RubyLLM: What's New in 2.0

https://rubyllm.com/whats-new-in-2-0/
1•ksec•9m ago•0 comments

Over 10 years later, Gabe Newell's advice to devs still holds up

https://www.pcgamer.com/gaming-industry/game-development/over-10-years-later-gabe-newells-advice-...
1•Brajeshwar•12m ago•0 comments

Google knows you – does AI?

https://www.scanora.ai
1•davinciyaner•12m ago•0 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
1•codetiger•14m ago•1 comments

Bible Fascinator

https://designs.drawingwithdata.com/fascinator
1•trekhleb•14m ago•0 comments

I Designed a Microprocessor

https://www.youtube.com/watch?v=q6ytRHaTEXI
1•i2pi•14m ago•1 comments

Show HN: Jev Slop Filter for X and LinkedIn

https://github.com/adamnroman/slop-filter
1•adamisnotroman•15m ago•0 comments

RetinaFace: Open-source precise AI face detection and analysis

https://retinaface.com/
1•teleforce•16m ago•0 comments

Decoding Jev

https://navinpai.github.io/decoding-jev/
1•madmax108•17m ago•0 comments

The Tech Bro in the Treaty Room

https://www.politico.com/news/magazine/2026/09/18/jacob-helberg-state-china-ai-profile-01082572?c...
1•ksec•18m ago•0 comments

Company Dynasties Die in the Dark

https://investing101.substack.com/p/dynasties-die-in-the-dark
1•rwmj•18m ago•0 comments

Show HN: Preuve AI, stress-test your startup idea before you build

https://preuve.ai
1•vincentbuilds•21m ago•0 comments

The Story of Fckgw-RHQQ2-Yxrkt-8TG6W-2B7Q8

https://twitter.com/davepl1968/status/2099883465256865923
1•ksec•21m ago•0 comments

A proxy that scans LLM requests/attach for secrets before they reach the model

https://github.com/ghuntley/preflight
1•ghuntley•25m ago•0 comments

I build a Outbound API Gateway for managing third-party dependencies

https://github.com/asstgr/asstgropensource
1•asstgr•26m ago•0 comments

The Journey of a Migratory Shorebird

https://www.newyorker.com/magazine/2026/09/21/the-incredible-journey-of-a-migratory-shorebird
1•wallflower•29m ago•0 comments

Costco rations motor oil as prices quadruple and supplies run dry

https://www.ft.com/content/64f90ab8-5fb0-4594-a900-d03e5ca051e3
4•bookofjoe•31m ago•1 comments

Crop Milk

https://en.wikipedia.org/wiki/Crop_milk
1•suopspaces•33m ago•0 comments

The monopoly behind your TI graphing calculator

https://www.theverge.com/podcast/997725/the-hidden-monopoly-behind-your-ti-graphing-calculator
2•Brajeshwar•38m ago•0 comments

Researchers escape OpenAI Codex sandbox to run commands on host

https://www.bleepingcomputer.com/news/security/researchers-escape-openai-codex-sandbox-to-run-com...
1•Brajeshwar•38m ago•0 comments

Basic Kerberos Authentication (F5 DevCentral Community)(2019) [video]

https://www.youtube.com/watch?v=u7MQoSN19O4
1•vismit2000•42m ago•0 comments

Codelytra

https://www.npmjs.com/package/@ezducate/codelytra
1•iqbal1980•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!