frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft Laid Off a 37-Year Vet

https://twitter.com/layoffai/status/2074629736140075212
1•taubek•17s ago•0 comments

The Four Core Areas of Responsibility for an Engineering Manager

https://softwareleads.substack.com/p/the-four-pillars-of-engineering-management
1•kiyanwang•1m ago•0 comments

Show HN: Jot, a menu bar app that catches a thought before it's gone

https://jot.arunbrahma.com
1•masterbrewer•2m ago•0 comments

Highlite – Make any website your virtual whiteboard

https://get-highlite.app
1•ryoann•3m ago•0 comments

Not all model upgrades are upgrades

https://developer.microsoft.com/blog/not-all-model-upgrades-are-upgrades
1•waldekm•4m ago•0 comments

Turn a €5 ESP32-S3 Board into a Browser-Based Workbench for Hardware Hacking

https://www.hackster.io/geo-tp/turn-a-5-esp32-s3-board-into-a-browser-based-workbench-b528dd
1•geotp•5m ago•0 comments

OpenAI to unveil GPT-5.6 on Thursday after delaying launch

https://www.reuters.com/technology/openai-gets-us-approval-broad-gpt-56-rollout-axios-reports-202...
1•adithyaharish•6m ago•0 comments

B2B Payment Platforms for Global Businesses in 2026: A Comparative Guide

https://www.xtransfer.com/blog/b2b-payment-platforms-global-business
1•pingx•6m ago•0 comments

Omp

https://omp.sh/
1•217•6m ago•1 comments

Nextdocs.io – AI Slide Generation

https://www.nextdocs.io
1•galacticdessert•8m ago•0 comments

My Name Is SiMON

https://github.com/ProphetGang/formal_symbol_language
1•ProphetGang•13m ago•1 comments

Vagrant-tart: Vagrant plugin for Tart; run macOS VMs on M-series using Vagrant

https://github.com/letiemble/vagrant-tart
1•gurjeet•19m ago•0 comments

From Quantum Relative Entropy to the Semiclassical Einstein Equations

https://journals.aps.org/prl/pdf/10.1103/lmq8-nsty
1•sonicrocketman•19m ago•0 comments

Notes and reading materials on finite topological spaces

https://math.uchicago.edu/~may/finite
2•gone35•23m ago•0 comments

I built a single endpoint that turns anything into LLM-ready data

https://ingesti.xyz
1•tenesedu•23m ago•0 comments

Boeing 737 cargo plane goes missing off Pakistan coast

https://www.theguardian.com/world/2026/jul/08/boeing-737-cargo-plane-missing-near-karachi
1•tosh•23m ago•0 comments

Fable Advisor

https://github.com/dannymac180/fable-advisor
2•handfuloflight•26m ago•0 comments

Show HN: Relis – Extract Bubble.io app architecture into migration-ready docs

https://relis.dev
2•bubblerme•31m ago•0 comments

Show HN: Codex-profiles – isolated Codex CLI/Desktop profiles

https://ducksss.github.io/codex-profiles/
3•chaipinzheng•32m ago•0 comments

How We Scale PgBouncer

https://clickhouse.com/blog/pgbouncer-clickhouse-managed-postgres
1•samaysharma•39m ago•0 comments

The math that makes senior engineers look like a bad deal

https://blog.grandimam.com/posts/distorted-reality/
1•grandimam•41m ago•0 comments

Meta's Submission Re: State AGs Disgorgement Charts and Supporting Materials [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.cand.419868/gov.uscourts.cand.419868.455.0_1...
1•1vuio0pswjnm7•42m ago•0 comments

Metis by Arm: open-source agentic security harness

https://github.com/arm/metis
1•handfuloflight•45m ago•0 comments

Arthur Clarke in 1940s predicted satellites and the internet of 2000s [video]

https://www.youtube.com/watch?v=D1vQ_cB0f4w
1•simonebrunozzi•46m ago•0 comments

ProductSpec: Open standard for software intent before implementation

https://github.com/gokulrajaram/ProductSpec
1•handfuloflight•49m ago•0 comments

Can We Understand How Large Language Models Reason?

https://cacm.acm.org/news/can-we-understand-how-large-language-models-reason/
2•visha1v•51m ago•0 comments

Show HN: FlareDB – Apache Beam native streaming database for realtime analytics

3•ganeshsivakumar•53m ago•0 comments

The Atari Jaguar Runs Linux

https://hackaday.com/2026/07/07/the-atari-jaguar-runs-linux/
4•methuselah_in•56m ago•0 comments

Shotgun – Opensource Cofounder Framework for Claudecode

https://github.com/Krishnatejavepa/Shotgun
2•krishnatejavepa•1h ago•0 comments

Generative AI might end up being worthless

https://theconversation.com/generative-ai-might-end-up-being-worthless-and-that-could-be-a-good-t...
3•wannabeetle•1h 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!