frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A physical dial that locks your screens until you turn it back

https://miradial.com/
1•Kaljurahn•48s ago•0 comments

Join the Waitlist Mobile App

https://getstreek.com/
1•cnnadozi•2m ago•0 comments

Ambient Signifiers

https://boxesandarrows.com/ambient-signifiers/
1•tosh•3m ago•0 comments

Meta lays off ~8k employees

https://www.businessinsider.com/layoff-meta-severance-details-cobra-jobs-2026-5
1•almogo•3m ago•0 comments

SubAlert – get alerted before any subscription charges you

https://www.subalert.org
1•momolii•4m ago•0 comments

Trusted Publishing for NPM Packages

https://docs.npmjs.com/trusted-publishers/
1•Ozzie_osman•4m ago•0 comments

Investigation of unauthorized access to GitHub's internal repositories

https://xcancel.com/i/status/2056949168208552080
1•doener•5m ago•0 comments

The way you draw circles says a lot about you

https://qz.com/994486/the-way-you-draw-circles-says-a-lot-about-you
2•yzydserd•8m ago•0 comments

How to use Claude Code like you've used it for a year

https://codeaholicguy.com/2026/05/20/claude-code-guide-how-to-use-claude-code-like-youve-used-it-...
1•hoangnnguyen•8m ago•0 comments

Gemini Omni

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-omni/
2•Lucasoato•9m ago•0 comments

Are modern mid-tier knives over-engineered or just well-made?

https://www.paragon-knives.com/
1•bgzlsxaz•11m ago•0 comments

You cannot sell AI written software

https://blog.habets.se/2026/05/You-cannot-sell-AI-written-software.html
1•marcofloriano•14m ago•0 comments

Analysis of CS:GO Win-rates (2020)

https://cryptm.org/posts/2020/06/12/csgo.html
1•tosh•14m ago•0 comments

Ask HN: What are you working on (20 May)

3•Armonsrer•19m ago•3 comments

Two Values in One Integer

https://talkchess.com/viewtopic.php?t=42054
1•prakashqwerty•19m ago•0 comments

A smart home from the 1800's (Tom Scott) [video]

https://www.youtube.com/watch?v=V2lEgMHF2Fo
1•sebzuddas•20m ago•0 comments

'Twilight of the Warriors: Walled in' Exhibition at Kowloon Walled City Park

https://geekculture.co/twilight-of-the-warriors-walled-in-exhibition-at-kowloon-walled-city-park/
1•exvi•21m ago•0 comments

Inside Notion

https://colossus.com/article/inside-notion/
1•tablet•23m ago•0 comments

Borrowed Conscience

https://howstrangeitistobeanythingatall.com/post/2026-05-19-borrowed-conscience
2•alanbotts•24m ago•0 comments

Show HN: Paletty – 800 curated terminal themes and a contrast-aware generator

https://paletty.dev/
1•ivoronin•29m ago•0 comments

The Download: Musk vs. Altman, smart glasses for warfare, and Google I/O

https://www.technologyreview.com/2026/05/19/1137505/the-download-musk-altman-trial-smart-glasses-...
1•joozio•29m ago•0 comments

Ex-Google CEO Eric Schmidt booed at Arizona U commencement speech

https://www.theguardian.com/us-news/2026/may/18/eric-schmidt-ai-university-commencement-speech-booed
5•simonebrunozzi•29m ago•0 comments

Making a GUI for NixOS

https://github.com/kalken/ezconf
3•linux4dummies•30m ago•0 comments

The just-say-no engineer was a ZIRP phenomenon

https://www.seangoedecke.com/the-just-say-no-engineer-was-a-zirp-phenomenon/
2•throwaw12•31m ago•0 comments

MAHA's latest conspiracy? Blaming Bill Gates for spike in tick bites

https://www.independent.co.uk/news/health/maha-bill-gates-pfizer-tick-conspiracy-b2979810.html
2•KnuthIsGod•31m ago•0 comments

AI Could Help the Climate

https://www.economist.com/leaders/2025/04/10/how-ai-could-help-the-climate
2•andsoitis•33m ago•0 comments

MeshCore vs. Meshtastic: Choosing the Right Tactical Network

https://specfive.com/blogs/articles/meshcore-vs-meshtastic
1•DanielSusca•33m ago•0 comments

Roundtables: The Musk vs. Altman Trial

https://www.technologyreview.com/2026/05/19/1137454/roundtables-inside-the-musk-v-altman-trial/
2•joozio•33m ago•0 comments

German government approves new gas power plant auctions to backup wind and solar

https://www.cleanenergywire.org/news/german-government-approves-new-gas-power-plant-auctions-back...
1•leonidasrup•35m ago•0 comments

A twinkling pulsar reveals invisible structures in space

https://www.mpg.de/26493907/0513-radi-a-twinkling-pulsar-reveals-invisible-structures-in-space-15...
1•Tomte•36m 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!