frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: JSON Support – Free JSON and CSV to Excel Conversion Without Signups

https://www.jsonsupport.com/
1•Sharanxxxx•5m ago•0 comments

Have We Forgotten How to Design?

https://lmnt.me/blog/have-we-forgotten-how-to-design.html
1•maguay•8m ago•0 comments

Amazon EC2 Beta (20 years ago)

https://aws.amazon.com/blogs/aws/amazon_ec2_beta/
1•jeffbarr•10m ago•0 comments

Sleepwalker: Passive Backdoor with Its Own Command Language

https://r136a1.dev/2026/08/24/sleepwalker-a-passive-backdoor-with-its-own-command-language/
1•defrost•11m ago•0 comments

Show HN: Safepine OS – A Quantitative Finance Engine in D Language (LGPL)

https://safepine.co/
1•safepine•15m ago•0 comments

How to Design an Animation

https://kciter.so/posts/how-to-design-animation/en/
2•kciter•23m ago•1 comments

Show HN: How to Fish Wiki – Bosses, Fish and Guides

https://how-to-fish-game.wiki
1•light001•24m ago•0 comments

Right-Sized Language Model

https://joecooper.me/blog/cpuhaiku/
1•thatjoeoverthr•27m ago•0 comments

NYC's 911 System Had an Outage. Officials Kept Quiet About It

https://www.nytimes.com/2026/08/24/nyregion/mamdani-911-outage-nyc.html
4•ChrisArchitect•30m ago•2 comments

SiFive's First Server Platform

https://chipsandcheese.com/p/sifives-first-server-platform
1•geerlingguy•31m ago•0 comments

Nvidia Is Spending $6B to Build a Powerful U.S. Alternative to Chinese AI

https://www.wsj.com/tech/ai/nvidia-is-spending-6-billion-to-build-a-powerful-u-s-alternative-to-c...
3•Charles_Wdy•32m ago•0 comments

Show HN: Probability calibration that doesn't flatten your scores

https://github.com/finite-sample/calibre
1•neehao•35m ago•0 comments

The dementia vaccine some of us are taking without realising

https://www.sciencefocus.com/the-human-body/dementia-vaccine-taking-without-realising
3•bananamogul•36m ago•0 comments

Cursor Router chooses the right model for the task

https://cursor.com/blog/how-cursor-router-works
3•gmays•38m ago•0 comments

Thomson Reuters Standard for High Stakes AI

https://www.thomsonreuters.com/en-us/posts/innovation/thomson-reuters-standard-for-high-stakes-ai/
1•andsoitis•43m ago•0 comments

Don't take your subagent's word for it

1•Marvin_RunAI•50m ago•0 comments

IBM Z and LinuxONE Dual-ISA Processor and AI Acceleration at Hot Chips 2026

https://www.servethehome.com/ibm-z-and-linuxone-dual-isa-processor-and-ai-acceleration-at-hot-chi...
2•fork-bomber•52m ago•0 comments

Show HN: Aquifer – Admission control for bursty vLLM traffic

https://github.com/rjpruitt16/aquifer
1•rjpruitt16•53m ago•0 comments

FDA approves first Alzheimer's blood test for Americans as young as 40

https://newatlas.com/brain/alzheimers-dementia/fda-approves-first-alzheimers-blood-test/
1•Gaishan•55m ago•1 comments

We gave every agent a computer

https://onecli.sh/blog/why-we-gave-every-agent-a-computer
5•Jonathanfishner•56m ago•0 comments

Show HN: Hierarchical to-do calendar for solo founders

1•eltonlin•1h ago•1 comments

Canada to announce retaliatory tariffs as Trump tells leaders to 'fall in line'

https://apnews.com/article/canada-trade-trump-ontario-53c4f83c8365c14b372b314396ae8179
3•mikhael•1h ago•0 comments

AliExpress uses Inaudible sounds to fingerprint browsers

https://arstechnica.com/security/2026/08/aliexpress-caught-fingerprinting-visitors-after-sending-...
1•Gaishan•1h ago•0 comments

Show HN: PeerPixel, community-powered AI image generation

https://peerpixel.cc/
1•Jplayz2468•1h ago•0 comments

Trump admin to review Flock cameras in wake of Atlanta protest

https://www.wsj.com/tech/flock-cameras-are-spreading-across-america-the-backlash-is-growing-just-...
4•scottfits•1h ago•0 comments

Is there a pending AI 'debt bomb' crisis? No. This isn't Enron 2.0

https://www.theguardian.com/technology/2026/aug/23/ai-debt-bomb-crisis
1•TMWNN•1h ago•1 comments

Capture why AI wrote each commit, stored in Git-notes

https://github.com/surajsrivastav/gitwhy
2•surajsri2888•1h ago•0 comments

Can you diagnose a broken network faster than Network Doctor?

https://heymaikol.github.io/network-doctor/wiki/Challenge-Mode/
1•heymaikol•1h ago•0 comments

Sellers on Shopee, TikTok call out auto-generated AI ads that mislead customers

https://www.channelnewsasia.com/singapore/ai-generated-videos-shopee-tiktok-misleading-sellers-63...
1•ahonhn•1h ago•0 comments

Show HN: Amendments, simulating the US government with Agents

https://amendments.exe.xyz
2•bryanmikaelian•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!