frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

In Clover: What does McKinsey do? (2022)

https://www.lrb.co.uk/the-paper/v44/n24/laleh-khalili/in-clover
1•Tomte•2m ago•0 comments

Show HN: Run coding agents on your own machine, steer them from anywhere

https://github.com/phyra-research/roamux
1•mwiki•10m ago•0 comments

Diablo 5 Announced

https://sea.ign.com/diablo-iv/248747/diablo-5-announced
1•nsoonhui•10m ago•0 comments

Ask HN: Should we start airgapping our personal devices?

1•emerongi•11m ago•0 comments

Android – Morphe patch app list

https://morphe-patches.software/#apps
1•dockerd•11m ago•0 comments

Deepfakes are wrecking influencers' credibility, one fake ad at a time

https://www.theguardian.com/technology/2026/sep/12/deepfakes-wrecking-influencers-credibility
2•andsoitis•15m ago•0 comments

Genuine curiosity will always beat performative intellectualism

https://hasifcore.substack.com/p/genuine-curiosity-will-always-beat
1•the-mitr•15m ago•0 comments

Rawtree – A ClickHouse Fork by Tinybird

https://rawtree.com/
2•knuckleheads•15m ago•0 comments

Matt Berry is now a sentient IKEA shelf in Skyrim

https://www.pcworld.com/article/3233287/matt-berry-is-now-a-sentient-ikea-shelf-in-skyrim.html
1•jubayer9906•19m ago•0 comments

Ask HN: What if anyone could sell AI tokens from their idle GPU?

1•edurights-team•19m ago•2 comments

Show HN: How LLMs work, explained through music, football or cricket analogies

https://understand-ai.dev/
1•understandaidev•19m ago•0 comments

Persimmon v0.1 Model Card

https://persimmon.humansand.ai/blog/persimmon-model-card.html
1•pr337h4m•19m ago•0 comments

Little Tikes iconic children's toys go colorless for 'contemporary feel'

https://www.wafb.com/2026/09/10/little-tikes-iconic-childrens-toys-go-colorless-contemporary-feel/
2•Danhale93•22m ago•0 comments

Dramatic insider warnings over AI fall flat with some in Silicon Valley

https://www.bbc.co.uk/news/articles/cq635037g18o
7•chrisjj•23m ago•0 comments

Texts Reveal Kash Patel Ordering Staff to Fight "Ifindretards" Account

https://newrepublic.com/post/215320/texts-kash-patel-order-staff-mean-social-media-posts-ifindret...
3•girish_r•24m ago•0 comments

Massing

https://en.wikipedia.org/wiki/Massing
1•tosh•33m ago•0 comments

This website runs on a Raspberry Pi 4B with only 1 GB of RAM

https://pi.deepakness.com/
2•7777777phil•34m ago•1 comments

Pace the frontier but stop pretending you need anyone else's permission

https://twitter.com/DavidSacks/status/2098973625252708460
1•caaqil•36m ago•0 comments

Software Engineer: I'm Tired of Pretending [video]

https://www.youtube.com/watch?v=H0HwFqBG9KE
3•conferza•38m ago•0 comments

OpenAI built a text generator so good, it's considered too dangerous (2019)

https://techcrunch.com/2019/02/17/openai-text-generator-dangerous/
7•olalonde•39m ago•0 comments

Keep calm and regulate on: Inside the EU's response to AI extinction warnings

https://www.politico.eu/article/eu-response-ai-extinction-warnings/
3•vrganj•39m ago•1 comments

Monitoring Mint with Microcontrollers Running TinyGo

https://www.mrnice.dev/posts/monitoring-mint-part-1/
1•ShayNehmad•40m ago•1 comments

JetKVM Mini

https://jetkvm.com/blog/introducing-jetkvm-mini
22•taubek•41m ago•8 comments

A rant about phishing: It's not the user's fault (and not DNS either)

https://maurycyz.com/misc/domains/
3•birdculture•46m ago•0 comments

Show HN: Fly or Tesla – Compare the cost, time, and stress of flights vs. FSD

https://flyortesla.com/
3•optimizethis•47m ago•3 comments

How are you using a Desktop or Browser AI agent daily?

2•Qhloi•49m ago•0 comments

American Medical Association backs classification of nearsightedness as disease

https://www.aao.org/newsroom/news-releases/detail/ama-backs-formal-classification-nearsightedness
14•plun9•55m ago•6 comments

A remote island, these GPS hackers are preparing for an invisible war

https://www.bbc.com/future/article/20260908-inside-the-fight-to-protect-the-worlds-satellite-signals
4•rayhaanj•56m ago•0 comments

AI staff 'genuinely frightened' for humanity's future

https://www.bbc.com/news/articles/c1kx0gyje9wo
2•dabinat•57m ago•0 comments

Africa's Airliner Fleet May More Than Double by 2045

https://humanprogress.org/africas-commercial-fleet-to-more-than-double-by-2045/
1•andsoitis•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!