frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Experience Necessary. The Irony of Building a Skilled Team in the Age of AI

https://benversh.substack.com/p/experience-necessary-the-irony-of
1•another-dave•52s ago•0 comments

MUNI is too broke to use more eco-friendly buses

https://sfstandard.com/2026/09/14/muni-skips-electric-buses-fiscal-crisis/
1•kaycebasques•1m ago•0 comments

Types of Search Queries: A Practical Map

https://www.searchplex.net/blog/types-of-search-queries
1•splxai•1m ago•0 comments

Show HN: I made an 8 bit game that teaches beginners to pwn basic C programs

https://github.com/udbhav-s/password-dungeon
1•udbhavs•2m ago•0 comments

VibeSafe Builder – build and launch AI apps with security checks

https://vibesafebuilder.com/
1•sabahatghauri•2m ago•0 comments

Google SearchGuard. Anti-Bot System Exploring

https://igorkozlowski.substack.com/p/google-searchguard-anti-bot-system
1•igor-lemon•2m ago•0 comments

New EU KIDS Act will restrict social media for under-15s

https://www.siliconrepublic.com/business/new-eu-kids-act-will-restrict-social-media-for-under-15s
1•rbanffy•2m ago•0 comments

ProductSpec – Open standard for software intent in the AI agent era

https://github.com/gokulrajaram/ProductSpec
1•yellow_postit•4m ago•0 comments

Six misconceptions about large language models

https://academic.oup.com/pnasnexus/article/5/7/pgag236/8728241?login=false
1•Anon84•4m ago•0 comments

Show HN: KaozKit – JavaScript LLM agents on an engine built for microcontrollers

https://github.com/sebastien-burel/KaozKit
1•sebastienburel•5m ago•0 comments

China tightens travel restrictions for citizens

https://www.bbc.com/news/articles/cqe8x6gkk250o
1•alephnerd•6m ago•0 comments

Heart damage may occur from getting too much light at night

https://www.nbcnews.com/health/heart-health/heart-damage-light-exposure-too-much-at-night-researc...
1•gmays•7m ago•0 comments

Show HN: Panel – A research workspace where the agent can build its own panes

https://github.com/greentfrapp/panel
2•greentfrapp•7m ago•0 comments

Dutch key Defense speeches this year appear to have been fully AI-generated

https://nltimes.nl/2026/09/12/key-defense-speeches-year-appear-fully-ai-generated-analysis
1•Betelbuddy•8m ago•0 comments

We built a graph database service for agent memory

https://blog.getzep.com/why-we-built-a-graph-database-service-for-agent-memory/
1•roseway4•8m ago•0 comments

Sovereign: A Unified GPU Inference Substrate (Fractal Memory, Manifold Routing)

https://github.com/CuppaTea1983/Sovereign/tree/V1
1•michaelrickynea•9m ago•0 comments

AI slowdown: why Altman, Amodei and Musk suddenly agree

https://www.youtube.com/watch?v=y9IgWhTTt4U
1•frag•10m ago•1 comments

Effects of music training on the child's brain and cognitive development

https://pubmed.ncbi.nlm.nih.gov/16597769/
2•taubek•11m ago•0 comments

Markdown feature flags your coding agent can install and manage for you

https://www.dif.sh
1•Herzogda•11m ago•0 comments

Cybersecurity Has an AI Doomer Problem [video]

https://www.youtube.com/watch?v=KMf2RDC5Dyg
1•gessha•11m ago•1 comments

Aside – Meeting notes as Markdown and local dictation for macOS

https://heyaside.com/
1•dominikmartn•12m ago•0 comments

The US is talking about space weapons now

https://breakingdefense.com/2026/09/why-the-us-is-talking-about-space-weapons-now/
4•KinetiNode•13m ago•1 comments

Carnot the most efficient, multi-fuel engine

https://carnotengines.com/technology/
2•thelastgallon•14m ago•0 comments

Hologram: Building Local-First Apps in Pure Elixir

https://www.youtube.com/watch?v=jdg_UrLp0bU
2•jamauro•15m ago•1 comments

LMAX Disruptor – High Performance Inter-Thread Messaging Library

https://lmax-exchange.github.io/disruptor/
1•Bluestein•16m ago•0 comments

How to process incoming call audio on Android / iOS?

1•vivzkestrel•17m ago•0 comments

Show HN: Lume – an open-source terminal you can drive from your phone

https://uselume.dev/
2•hugomyb•22m ago•0 comments

AI is breaking our proxies for expertise

https://www.seangoedecke.com/ai-is-breaking-our-proxies-for-expertise/
5•jbkcc•24m ago•0 comments

AI 'kill switch' may need to be mandatory, Anthropic co-founder tells BBC

https://www.bbc.com/news/articles/cqgk5e2j0gg8o
3•Betelbuddy•24m ago•0 comments

Show HN: Bulkgrid – Search websites and GitHub repositories from your AI agent

https://bulkgrid.com
2•ceglh•24m 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!