frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Canadian sues DHS over alleged Google data grab tied to social media posts

https://www.cbc.ca/news/world/us-dhs-aclu-lawsuit-canadian-john-doe-9.7187851
1•cdrnsf•7m ago•0 comments

How to Generate Terraform from Existing AWS Resources

https://www.ops0.com/blog/generate-terraform-from-existing-aws-resources
1•sureshpaulchamy•8m ago•0 comments

Worlds first OptoSAR Satellite launched

https://www.indiatoday.in/science/story/galaxeye-mission-drishti-optosar-satellite-launch-india-p...
3•raks619•11m ago•0 comments

Australian Renewable Energy Hub

https://research.csiro.au/hyresource/australian-renewable-energy-hub/
1•mooreds•11m ago•0 comments

Critical RCE found in Obsidian Tasks plugin

https://zeroquarry.com/research/obsidian-tasks-rce/
2•eskibars•12m ago•1 comments

AI at Discount

https://tomtunguz.com/ai-at-discount/
1•swolpers•15m ago•0 comments

Data Race Freedom in OxCaml

https://kcsrk.info/ocaml/oxcaml/x-ocaml/blogging/2026/05/07/data-race-freedom-in-oxcaml/
1•matt_d•18m ago•0 comments

Got the syntax highlighting right, theming too – EaglePress.org v1.43

https://eaglepress.org
2•eagle10ne•19m ago•0 comments

Show HN: Loxai.tech and Neutboom – Gen AI's frontier of individuality

https://www.neutboom.com
1•audreyfei•19m ago•0 comments

SpaceX is starting to move on from the most successful rocket

https://arstechnica.com/space/2026/05/spacex-is-starting-to-move-on-from-the-worlds-most-successf...
1•rbanffy•20m ago•0 comments

Mojo 1.0 Beta

https://mojolang.org/
2•sbt567•20m ago•0 comments

Why Are Morel Mushrooms Hard to Grow?

https://mushroomwowhub.com/why-are-morel-mushrooms-hard-to-grow/
2•thunderbong•21m ago•0 comments

Coding plan comparisons based on actual usage

https://sites.diy/blog/2026-05-01-coding-plan-comparisons/
1•gmays•25m ago•0 comments

DNA matches identify four more sailors from Franklin expedition

https://uwaterloo.ca/news/media/dna-matches-identify-four-more-sailors-franklin-expedition
1•bandrami•27m ago•0 comments

Claude Code CVE-2026-39861:sandbox escape via symlink

https://github.com/advisories/GHSA-vp62-r36r-9xqp
2•Armor1AI•30m ago•1 comments

Anthropic response to 1-click pwn: Shouldn't have clicked 'ok'

https://www.theregister.com/security/2026/05/07/claude-code-trust-prompt-can-trigger-one-click-rc...
3•Lihh27•31m ago•0 comments

Hexo accidentally made the repository private and lost all stars

https://github.com/orgs/hexojs/discussions/5775
1•ZeroAurora•32m ago•0 comments

Stop paying twice for storage. Use your spare webhosting as your own cloud drive

https://github.com/KyleBenzle/FreeCloud
1•Hilliard_Ohiooo•35m ago•0 comments

Thermal event affecting AWS AZ use1-az4

https://health.aws.amazon.com/health/status#786566
4•themenomen•36m ago•0 comments

Companies help parents try to pick their babies' traits

https://text.npr.org/nx-s1-5704317
1•mooreds•36m ago•1 comments

Bliss (Photograph)

https://en.wikipedia.org/wiki/Bliss_(photograph)
1•cainxinth•38m ago•0 comments

Silver, Silk, and States: The Spanish Empire and Ming China

https://andrewhuangster.substack.com/p/silver-silk-and-states-how-a-single
3•soupspaces•38m ago•0 comments

SDLC is a power tool, not a compliance document

https://blog.robbowley.net/2026/05/07/your-sdlc-is-a-power-tool-not-a-compliance-document/
2•8organicbits•42m ago•0 comments

Anthropic and the Department of War

https://www.hyperdimensional.co/p/clawed
2•mooreds•42m ago•0 comments

Summer of Math Expositions(2021-2025) – 3b1B archive

https://some.3b1b.co/archive?category=video&year=2021&page=1
1•num42•45m ago•0 comments

Archive.today requires scanning a QR code on your phone to use

https://archive.fo
3•Cider9986•46m ago•1 comments

Show HN: AnamDB – An AI-native, differentiable Datalog engine written in Rust

https://github.com/jam5991/anam
1•jam5991•46m ago•0 comments

Agentic Coding at ClickHouse

https://clickhouse.com/blog/agentic-coding
1•ubolonton_•47m ago•0 comments

It's time to stop using SMS, here's why [video]

https://www.youtube.com/watch?v=B9BWXvn-rB4
1•Cider9986•47m ago•0 comments

Anthropic's Mythos Threw the White House AI Strategy into Chaos

https://www.wsj.com/tech/ai/trump-ai-anthropic-mythos-regulation-2378971f
1•RyanShook•47m 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!