frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Most of the Renaissance Has Never Been Translated. Source Library Is Opening It

https://www.internetarchive.eu/2026/06/17/most-of-the-renaissance-has-never-been-read-source-libr...
1•dr_dshiv•18s ago•0 comments

Show HN: MCP server that exposes WhatsApp Business API using the PyWA library

https://github.com/Jem-HR/pywa-mcp-server
1•rawdreeg•46s ago•0 comments

Advising Government

https://blogs.bath.ac.uk/iprblog/2023/01/24/advising-government-navigating-complex-and-fast-paced...
1•jruohonen•1m ago•0 comments

Media over QUIC Update 00

https://moq.dev/blog/update-00/
1•dabinat•1m ago•0 comments

The sorry state of skill distribution

https://blog.trailofbits.com/2026/06/03/the-sorry-state-of-skill-distribution/
1•wslh•2m ago•0 comments

Ab-av1: AV1 encoding tool with VMAF sampling and automatic crf calculation

https://github.com/alexheretic/ab-av1
1•lwhsiao•6m ago•1 comments

Single Atom Camera Could See Inside Quantum Computers

https://spectrum.ieee.org/single-atom-camera-quantum-computing
1•rbanffy•7m ago•0 comments

What Is a Nomogram and Why Would It Interest Me?

https://lefakkomies.github.io/pynomo-doc/introduction/introduction.html#what-is-a-nomogram-and-wh...
1•Eridanus2•8m ago•0 comments

'Cost Me the Election': Data Centers Trigger Voter Backlash

https://www.newsweek.com/cost-me-the-election-data-centers-trigger-voter-backlash-12118327
2•randycupertino•8m ago•1 comments

Mercury Agent

https://mercuryagent.sh/
1•kristianpaul•10m ago•0 comments

A MCP server that supports mainstream eBook formats including ePub, PDF and more

https://github.com/onebirdrocks/ebook-mcp
1•tanelpoder•11m ago•0 comments

Fenwick trees for products mod 2ⁿ

http://bitmath.blogspot.com/2026/06/fenwick-trees-for-products-mod-2.html
1•matt_d•11m ago•0 comments

The Graphical User Interface History

https://kartsci.org/kocomu/computer-history/graphical-user-interface-history/
1•joebig•12m ago•0 comments

Ex-NOAA employees laid off by DOGE rebuilt climate website

https://www.climate.us/
3•vincentchau•14m ago•0 comments

In 1973, eight healthy people feigned a single hallucinatory symptom

https://spacedaily.com/k-in-1973-a-stanford-psychology-professor-sent-eight-healthy-people-into-t...
1•branko_d•15m ago•0 comments

Hallucinate.md: The open standard for telling AI not to hallucinate

https://github.com/hallucinatemd/hallucinate.md
1•Rudism•17m ago•0 comments

Anthropic Economic Index report: Cadences

https://www.anthropic.com/research/economic-index-june-2026-report
1•ravirajx7•20m ago•0 comments

OpenAI releases GPT-5.6 to select users vetted by US Government

https://www.ft.com/content/33a306c2-5aaa-45b1-9386-1716fa6a128e
1•WithinReason•20m ago•0 comments

DuckDB SQLite Extension

https://github.com/duckdb/duckdb-sqlite
1•tosh•22m ago•0 comments

Future Transistor Stacking Plans Start to Diverge IBM, Intel, Samsung, and TSMC

https://spectrum.ieee.org/cfet-ibm-plan
1•rbanffy•23m ago•0 comments

Taalas

https://taalas.com/
2•dboon•24m ago•0 comments

Ukraine disguised Nord Stream sabotage mission as a 'porn film'

https://www.telegraph.co.uk/books/non-fiction/nord-stream-conspiracy-bojan-pancevski-review/
2•joe_mamba•24m ago•0 comments

Hate "The Algorithm?" RSS Is One of the Tools You've Been Looking For

https://www.eff.org/deeplinks/2026/06/hate-algorithm-rss-one-tools-youve-been-looking
1•speckx•25m ago•0 comments

Previewing GPT‑5.6 Sol: a next-generation model

https://openai.com/index/previewing-gpt-5-6-sol/
105•minimaxir•25m ago•104 comments

Just Use Postgres for Task Queues

https://www.dbos.dev/blog/making-postgres-queues-scale
1•KraftyOne•26m ago•0 comments

Show HN: To memorize my studies, I made a flashcards app with a dating app UI

https://apps.apple.com/us/app/minder-flashcards-exam-study/id6775268676
1•busymom0•28m ago•0 comments

Can You Terraform Mars?

https://www.nature.com/immersive/d41586-026-01978-8/index.html
2•Schiphol•29m ago•0 comments

AI coding agents could soon cost more than the developers using them

https://www.theregister.com/ai-and-ml/2026/06/24/ai-coding-agents-could-soon-cost-more-than-the-d...
2•beardyw•29m ago•1 comments

AI Learns the "Dark Art" of RFIC Design

https://spectrum.ieee.org/ai-radio-chip-design
2•rbanffy•30m ago•0 comments

The Download: brain-melting heatwaves and unprecedented OpenAI restrictions

https://www.technologyreview.com/2026/06/26/1139780/the-download-heatwaves-brain-health-openai-re...
2•joozio•31m 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!