frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Two Loops: How China's Open AI Strategy Reinforces Its Industrial Dominance [pdf]

https://www.uscc.gov/sites/default/files/2026-03/Two_Loops--How_Chinas_Open_AI_Strategy_Reinforce...
1•robocat•2m ago•0 comments

The First Hit Is Free

https://whattotelltherobot.com/p/the-first-hit-is-free
1•stefie10•6m ago•0 comments

Jira Is Turing-Complete

https://seriot.ch/computation/jira.html
1•beefburger•9m ago•0 comments

Show HN: Synchole is a native P2P data transfer protocol library in Rust

https://github.com/doshareme/synchole
1•vednig•11m ago•0 comments

Starship Launch – Everyday Astronaut [video]

https://www.youtube.com/watch?v=odWYDx3u8A4
3•cwillu•13m ago•0 comments

Ontology vs. Semantic Layer

https://lowhangingdata.com/article/ontology-vs-semantic-layer/
1•mryagerr•17m ago•0 comments

I'm Tired of Listening to Nerds and Dweebs (2025) [video]

https://www.youtube.com/watch?v=3S9OZTQa0eY
2•TMWNN•18m ago•0 comments

Triumph of the Nerds

https://en.wikipedia.org/wiki/Triumph_of_the_Nerds
1•evo_9•22m ago•0 comments

Only 17% of all 64-bit Integers are products of two 32-bit integers

https://lemire.me/blog/2026/05/22/only-17-of-all-64-bit-integers-are-products-of-two-32-bit-integ...
2•yacin•22m ago•0 comments

DeadBro – Lightweight APM for Rails apps (N+1 detection, error tracking, alerts)

https://www.deadbro.com/
1•deadbro•23m ago•0 comments

LT2: Linear-Time Looped Transformers

https://charlesdddd.github.io/lt2/
1•matt_d•26m ago•0 comments

Anthropic's coordinated vulnerability disclosure dashboard

https://red.anthropic.com/2026/cvd/
1•darkamaul•26m ago•0 comments

Sleep research led to a new sleep apnea drug

https://temertymedicine.utoronto.ca/news/how-decades-sleep-research-led-new-sleep-apnea-drug
1•colinprince•29m ago•0 comments

Human cognitive labor will survive

https://interestingstuff.xyz/predictions/human-cognitive-labor-will-survive/
1•interestingstuf•31m ago•0 comments

Event Tensor: A Unified Abstraction for Compiling Dynamic Megakernel

https://arxiv.org/abs/2604.13327
2•matt_d•32m ago•0 comments

The seed oil panic is hurting my cardiac patients

https://www.statnews.com/2026/05/22/seed-oils-healthy-fats-tallow-fact-check-cardiac-health/
4•EA-3167•32m ago•0 comments

Building a Fast Lock-Free Queue in Modern C++ from Scratch

https://jaysmito.dev/blog/blog/04-fast-lockfree-queues/
1•jmax01•34m ago•0 comments

What It's Like to Live with One of Psychiatry's Most Misunderstood Diagnoses

https://www.nytimes.com/2026/01/30/magazine/dissociative-identity-disorder-mental-health.html
1•rendx•35m ago•2 comments

ReconForge – Open-Source Security Reconnaissance Toolkit

https://github.com/ferasbusiness666/ReconForge
2•feroomon2010•38m ago•0 comments

Battle over WiseTech AI job cuts intensifies amid China staff accusations

https://www.afr.com/technology/wisetech-ai-redundancy-fight-worsens-with-china-accusations-202605...
2•dnnddidiej•41m ago•0 comments

Show HN: Open-source private home security camera system (end-to-end encryption)

https://github.com/secluso/core
2•arrdalan•42m ago•0 comments

Twelve Ways to Be Wrong About AI-Assisted Coding

https://third-bit.com/2026/05/20/twelve-ways-to-be-wrong/
1•jllyhill•43m ago•0 comments

Sam Altman's startup is hoping Jared Leto's band will make you scan your eyeball

https://sfstandard.com/2026/05/21/jared-leto-sam-altman-eye-scanner-concert-tour/
2•petethomas•44m ago•0 comments

Mdview and the missing middle between less and Electron

https://blog.leonbecker.de/mdview-and-the-missing-middle-between-less-and-electron/
2•rowbin•47m ago•0 comments

Provenance: A survival toolkit for an AI dominant information landscape

https://vinchenkov.substack.com/p/provenance
1•vinchenkov•48m ago•0 comments

Crucial and Vital Security by Design Principles

https://nocomplexity.github.io/securitybydesign/securityprinciples/
2•runningmike•48m ago•1 comments

Departing Meta Staffer Posts Biting Anti-AI Video Internally Amid Mass Layoffs

https://www.motherjones.com/politics/2026/05/meta-video-ai-training-layoffs-video-exclusive-mci-b...
5•cdrnsf•50m ago•0 comments

Understand Monotonic Deque Pattern Before Practice on LeetCode

https://algo-rhythm.dev/en/monotonic-deque/
6•bytego•54m ago•2 comments

<model-viewer>: Easily display interactive 3D models on the web and in AR

https://modelviewer.dev/
2•Pay08•56m ago•0 comments

SpaceX Is Spending $2.8B to Buy Gas Turbines for Its AI Data Centers

https://www.wired.com/story/elon-musk-spacex-spending-gas-turbines-grok/
3•bookofjoe•57m ago•1 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!