frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The main thing about P2P meth is that there's so much of it (2022)

https://dynomight.net/p2p-meth/
2•tomjakubowski•2m ago•0 comments

Context Forking to Save Time, Tokens and Trouble

https://www.humanlayer.com/blog/context-forking-to-save-time-trouble-and-tokens
1•0xblacklight•3m ago•0 comments

Show HN: Pico-intl – Type-safe internationalization with CLI localization gates

https://github.com/Elioz404/pico-intl
1•Elioz404•5m ago•0 comments

Gas Stations Under Attack

https://www.newsweek.com/iran-hacking-tank-readers-us-gas-stations-report-11957814
2•yoloman2•5m ago•0 comments

Erlang/OTP 29.0

https://www.erlang.org/news/188
1•pyinstallwoes•6m ago•0 comments

Urlsify.com Free (forever) Link shortener with Analytics

https://old.reddit.com/r/startups_promotion/comments/1te5th8/urlsifycom_free_forever_link_shorten...
1•godlymod•8m ago•0 comments

Broken windows theory

https://en.wikipedia.org/wiki/Broken_windows_theory
1•Austin_Conlon•9m ago•0 comments

Ghost Job Detector – AI that decodes fake job posts and HR lies

https://ghost-job-detector-rlcx.vercel.app/
1•aliabdm•10m ago•0 comments

NASA-cleanroom microbial isolates survival in simulated space/Martian conditions

https://journals.asm.org/doi/10.1128/aem.02065-25
1•bookofjoe•10m ago•0 comments

Colorado governor commutes sentence of election denier Tina Peters

https://www.theguardian.com/us-news/2026/may/15/colorado-governor-tina-peters
2•asib•15m ago•0 comments

SQL patterns I use to catch transaction fraud

https://analytics.fixelsmith.com/posts/sql-fraud-patterns/
1•redbell•17m ago•0 comments

Shell RT

https://github.com/wgallios/shell-rt
1•wgallios•19m ago•0 comments

How Diamonds Are Made

https://diamond.jaydip.me/
1•lemonberry•21m ago•0 comments

Striking New Views of the First Atomic Bomb Test

https://spectrum.ieee.org/trinity-nuclear-test
2•lemonberry•22m ago•0 comments

Google tests 5 GB cap for users who skip phone numbers

https://www.theregister.com/personal-tech/2026/05/15/google-tests-5-gb-cap-for-users-who-skip-pho...
1•jnord•24m ago•0 comments

Tuwunel – Matrix Chat and Voice/Video/Screen Conferencing for Groups

https://docs.zeropolis.net/doku.php/tech:tuwunel
1•unethical_ban•24m ago•1 comments

Datacenters slurping juice help drive 75% jump in PJM power prices

https://www.theregister.com/on-prem/2026/05/15/datacenters-slurping-juice-help-drive-75-jump-in-p...
1•jnord•24m ago•0 comments

Spectre Programming Language

https://spectre-docs.pages.dev
2•asdkop•25m ago•0 comments

OnlyCats – TikTok for Cats

https://onlycats.cc
4•stagas•26m ago•0 comments

Ask a Foolish Question

https://www.gutenberg.org/cache/epub/33854/pg33854-images.html
1•orsenthil•26m ago•1 comments

Show HN: WolfSPDM a embedded focused requester SPDM 1.2 Stack built on WolfSSL

https://github.com/aidangarske/wolfSPDM
1•aidangarske•28m ago•0 comments

Programming Z3

https://z3prover.github.io/papers/programmingz3.html
2•RohanAdwankar•28m ago•0 comments

Upgrade Symfony 2.8.x to 7x Prime v2.9.0.0 – Tested With PHP 8.5.6

https://blog.se7enx.com/7x-releases-7x-prime-v2-9-0-0-the-symfony-v2-drop-in-upgrade-to-php-8-sup...
1•7x•29m ago•0 comments

Comments Are More Important Than Code–Jef Raskin (2005)

https://queue.acm.org/detail.cfm?id=1053354
1•danhite•30m ago•1 comments

Squillions

https://www.lrb.co.uk/the-paper/v48/n09/john-lanchester/squillions
2•hhs•30m ago•0 comments

What I Learned About Resilience From Y Combinator [video]

https://www.youtube.com/watch?v=KBjtRJSblMU
1•billclerico•35m ago•1 comments

Congress Introduces Bill to Permanently Block Chinese Vehicles from US

https://www.caranddriver.com/news/a71293972/congress-introduces-bill-chinese-cars-ban/
1•m463•36m ago•1 comments

Book review: Time and the world

https://ndpr.nd.edu/reviews/time-and-the-world-every-thing-and-then-some/
1•hhs•37m ago•0 comments

The dawn of 24/7 solar power

https://www.ft.com/content/b5c53f48-0f8c-4ef8-9152-53feffe60461
3•doener•38m ago•0 comments

Adobe Latest Target in Wave of Lawsuits over AI Voice Training

https://news.bloomberglaw.com/privacy-and-data-security/adobe-latest-target-in-wave-of-lawsuits-o...
1•1vuio0pswjnm7•42m 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!