frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: DirectXSplat – D3D12 Gaussian splatting up to 2.4× faster than gsplat

https://github.com/pbkx/DirectXSplat
1•rmi0•1m ago•0 comments

Show HN: I built a tool that runs 258 automated checks against a WordPress site

https://wpaudit.cc/
1•mysticmetal•2m ago•0 comments

OpenAI's Astra uses "recurrent depth" to think silently

https://www.reddit.com/r/singularity/comments/1w4wc0p/openais_astra_uses_recurrent_depth_to_think/
1•armcat•3m ago•0 comments

Show HN: Gawkbot – open-source Grok bot with local vms for each bot

https://gawk.bot
2•najmuzzaman•10m ago•0 comments

Why Nvidia called their next generation compute "Feynman"

https://www.youtube.com/watch?v=TxM5B-9TFoM
1•echohive42•13m ago•0 comments

Sleep regularity – where do we go from here?

https://academic.oup.com/sleep/article/49/8/zsag114/8661334
1•petreradu•14m ago•0 comments

Who governs what autonomous AI agents execute?

https://zenodo.org/records/22003768
1•lcm3•16m ago•0 comments

We made it faster, it got worse

https://medium.com/@gurvinder372/article-2-we-made-it-faster-it-got-worse-75895de64a9e
1•gps372•16m ago•0 comments

A Little Over, a Little Under

https://granot.io/a-little-over-a-little-under/
1•tomgs•17m ago•0 comments

Show HN: 1Dial, an AI you can call/Text to get real-world tasks done

https://www.1dial.ai/
3•harshil9968•17m ago•0 comments

The John Ternus era begins at Apple

https://techcentral.co.za/john-ternus-apple-ceo-tim-cook/285604/
2•deepmem•17m ago•0 comments

Show HN: Orchestrate frontier AIs on the subscriptions you already pay for

https://github.com/PolyHelper/C1
1•PolyHelper•19m ago•0 comments

Discord's Bet on Gamified Ads

https://discorder.tools/blog/discord-play-quest-plus/
1•souvic•19m ago•0 comments

Meet the People Taking over Hacker News

https://www.ycombinator.com/blog/meet-the-people-taking-over-hacker-news
2•gurjeet•23m ago•0 comments

Show HN: Browser SplitView Master – view up to 16 websites in one Chrome window

https://chromewebstore.google.com/detail/browser-splitview-master/ngkcpcmnmbdchbejbgiegaiagpljkkhj
1•mysticmetal•25m ago•1 comments

Skills vs. MCP tools for AI agents: When to use which

https://blog.logrocket.com/skills-vs-mcp-tools-agent-guide/
2•qikouki•32m ago•0 comments

Community, Censorship, and Why Hope Still Matters: Naomi Kritzer Interview

https://forceandfable.com/2026/04/06/whyhopestillmatters_naomikritzerinterview/
2•bryanrasmussen•32m ago•0 comments

Dyson CameraJet: The only toothbrush with a camera and a jet

https://www.dyson.com/discover/news/latest/introducing-camerajet
1•samaysharma•35m ago•0 comments

Pelliamonds

https://achromath.substack.com/p/pelliamonds
1•vismit2000•40m ago•0 comments

AI safety is designed in the West, and failing users everywhere

https://restofworld.org/2026/ai-safety-bias/
1•thm•43m ago•0 comments

Fungible Memories for Automated Technology Mapping and Retargeting: PLDI'26 Talk [video]

https://www.youtube.com/watch?v=TgqyyV7GqC4
1•matt_d•45m ago•0 comments

Just Bury Your Trash

https://worksinprogress.co/issue/just-bury-your-trash/
3•barry-cotter•50m ago•1 comments

Amazon, Synopsys to cut more than 275 Bay Area tech jobs

https://www.sfchronicle.com/tech/article/amazon-synopsys-tech-layoffs-22413103.php
3•vismit2000•52m ago•0 comments

VRML Virtual Reality Modeling Language (1995)

https://www.w3.org/MarkUp/VRML/
1•sssilver•54m ago•0 comments

New Jersey eases restrictions on residential solar panels

https://gothamist.com/news/a-whole-new-world-new-jersey-eases-restrictions-on-residential-solar-p...
3•geox•59m ago•0 comments

Back to Focus: a macOS app that nudges you when you drift

https://apps.apple.com/us/app/back-to-focus/id6802041602?mt=12
1•suyogedth•1h ago•0 comments

The Emergent Symbolic Structure of Artificial Neural Networks

https://arxiv.org/abs/2608.29530
26•schmuhblaster•1h ago•2 comments

A one-second timer in a closed modem binary was capping my ISP at 14.4k

https://dialup.litenet.tel/research/v34-modem/
1•szeremeta•1h ago•0 comments

"Enshittification" Isn't Real

https://www.a16z.news/p/enshittification-isnt-real
3•kwar13•1h ago•1 comments

M-DISC – DVD/Blu-ray compatible discs that may last up to 1000 years

https://en.wikipedia.org/wiki/M-DISC
2•gurjeet•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!