frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
262•volotat•1d ago•58 comments

Show HN: Foremerge – Catch intent conflicts between parallel coding agents

https://github.com/naw103/foremerge
42•naw103•15h ago•12 comments

Show HN: Lossless-memory – a personal AI memory that never summarizes

https://github.com/aru-labs/lossless-memory
62•aru-labs•19h ago•21 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
106•codetiger•1d ago•39 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
161•radius89•1d ago•76 comments

Show HN: Vellum, the best diagram editor you'll ever use

https://vellum.blueprintr.io
13•JoshJamesAnthon•15h ago•6 comments

Show HN: Jev Powered Obsidian Search

https://github.com/Emlembow/jev-graph-search
3•MikeLembo•7h ago•0 comments

Show HN: jevals – replacing LLM judges with typed Jev decisions

https://github.com/openlayer-ai/jevals
42•gbayomi•1d ago•3 comments

Show HN: Sigabrt.dev – cronjob monitor with an SSH TUI

https://sigabrt.dev
78•4815162342•2d ago•35 comments

Show HN: WebGCM – a global climate model running in the browser on WebGPU

https://gcm.echorelay.net/
4•jlhawn•10h ago•0 comments

Show HN: Gdocs-me-up: a high-fidelity Google Docs exporter

https://github.com/behdad/gdocs-me-up
20•behdad•1d ago•8 comments

Show HN: Blackgit – use Git to only download those cared files

https://github.com/zhuzhonghua/blackgit
3•zhonghua•11h ago•2 comments

Show HN: Differential – a TUI diff reviewer with semantic grouping

https://github.com/thepartly/differential
3•gogoout•12h ago•0 comments

Show HN: CUA-S1 – A System One Model for Computer Use

https://github.com/trycua/cua
90•frabonacci•2d ago•10 comments

Show HN: Four-Leaf MCP, open-source job search and interview prep

https://github.com/fourleafai/clover-public
3•frank_clover•13h ago•0 comments

Show HN: Combinators in Array Languages

https://blog.softwarewrighter.com/2026/09/21/rabbit-hole-sage-y-combinator/
3•softwarewright•13h ago•0 comments

Show HN: Primescript – Academic Markdown editor with vector search and LaTeX

https://primescript.com
2•mac-r•5h ago•0 comments

Show HN: Viaduct – C4 models that coding agents can read and update

https://c4.quietgridlabs.com/
3•igrlgkv•14h ago•0 comments

Show HN: AURA – Open-source behavioral threat detection for LLMs

https://github.com/kate8382/AURA
2•kate8382•14h ago•0 comments

Show HN: Lightspeed, build real time apps the Laravel way (+asteroids demo)

16•jv22222•1d ago•4 comments

Show HN: Agent Chaperone – Screen AI agent tool calls and results with Jev

https://github.com/agent-chaperone/agent-chaperone
4•sepehrsafari•15h ago•0 comments

Show HN: Fusion-runtime – self-hosted voice agents, STT+LLM+TTS in one process

https://github.com/SamarthUrs18/fusion-runtime
2•samarthurs18•15h ago•0 comments

Show HN: AI Changed How We Write Code. Why Hasn’t Code Review Changed?

https://github.com/otobongfp/code-graph-view
3•otobong•15h ago•2 comments

Show HN: A GUI for non programmers for Epic's version control system Lore

https://www.anchorpoint.app/lore
5•m_niedoba•22h ago•0 comments

Show HN: A website that tracks US food prices every day

https://www.kadoa.com/food-prices
28•hubraumhugo•12h ago•9 comments

Show HN: We built a network for AI agents and humans to exchange services

https://gingerpal.com/
2•streetai•15h ago•1 comments

Show HN: Distributed SQLite on Modal

https://github.com/modal-projects/sqlite-modal
4•botirk•15h ago•1 comments

Show HN: Judge HN Threads with Jev

https://hnjudge.vercel.app
4•rishi_•16h ago•0 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
249•steveybrown•4d ago•138 comments

Show HN: All of FreeCAD 1.1.3, every workbench and FEM, running in the browser

https://freecad.virtastic.app/
4•dumpstertechops•16h ago•2 comments
Open in hackernews

Show HN: Fahmatrix – A Lightweight, Pandas-Like DataFrame Library for Java

https://github.com/moustafa-nasr/fahmatrix
46•mousomashakel•1y ago
Hey HN, I’ve built Fahmatrix, a minimal, fast Java library for working with tabular data — inspired by Python’s pandas, but designed for performance and simplicity on the JVM.

After working extensively with Python’s data stack, I often ran into limitations related to speed, especially in larger or long-running data workflows. So I built Fahmatrix from scratch to offer similar APIs for manipulating CSVs, performing summary statistics, slicing rows/columns, and more — but all in Java.

Features:

Lightweight and dependency-free

CSV/TSV import with auto-headers

Series/DataFrame structures (like pandas)

describe(), mean(), stdDev(), percentile() and more

Fast parallel operations on numeric columns

Java 17+ support

Docs: https://moustafa-nasr.github.io/Fahmatrix/ GitHub: https://github.com/moustafa-nasr/fahmatrix

I’d love feedback from the Java and data communities — especially if you’ve ever wanted a simple dataframe utility in Java without needing full-scale ML libraries.

Happy to answer any questions!

Comments

rickette•1y ago
Congrats on putting this out there. There isn't a de facto pandas-like library in Java like you said. But for Kotlin there is: https://github.com/Kotlin/dataframe
mousomashakel•1y ago
Thanks so much! Yep, I’ve seen the Kotlin DataFrame lib — very elegant. Fahmatrix is meant for plain Java users who want similar capabilities without switching ecosystems. Appreciate the support!
uwemaurer•1y ago
Always great to see efforts to make working with data frames easier. Here are some similar data frame libraries for Java:

https://github.com/jtablesaw/tablesaw

https://github.com/dflib/dflib

My preferred way is just use duckdb java API. I didn't see anything better in performance/efficiency. Also a SQL query is often easier to write

theanonymousone•1y ago
Yes. It has bothered me for a long time too. Maybe the best mix is a dataframe library with basic operations (column select, non-null etc), which also allows SQL for more complex stuff?
radus•1y ago
Polars and duckdb interoperate nicely and can enable this flexibility
theanonymousone•1y ago
Does Polars have a Java library?
mousomashakel•1y ago
Totally agree that SQL can be the best tool for many jobs. My goal with Fahmatrix is to serve the opposite niche: where devs want something that's Java-native, procedural, and simple without reaching for an external engine. SQL support or DSL might come later though — I see the appeal.
skanga•1y ago
What about Tablesaw, Apache Arrow? How does this compare ...
mousomashakel•1y ago
Good question. I’ll publish benchmarks soon, but the core difference is that Fahmatrix is fully Java, no JNI, and minimalistic — ideal for small projects or environments like Android. Tablesaw and Arrow are more powerful, but heavier. Fahmatrix aims to be the “just enough” middle ground.
owlstuffing•1y ago
Nice!

I’m currently using manifold-sql with duckdb for this.

mousomashakel•1y ago
Thanks! That’s a great combo — manifold-sql + duckdb gives you strong typing with powerful SQL under the hood. Fahmatrix is aiming to complement that approach for cases where you want quick, native Java code without SQL — e.g., when building data flows or custom logic inline. Would love to hear if you’ve hit any pain points that a Java-native approach could help with.
theanonymousone
•
1y ago
Sure. So maybe notehr comment would be to make it (particularly the Series class), as compatible with Java Streams as possible.

Next step would likely be compatibility with popular libraries such as Apache Commons Math: https://commons.apache.org/proper/commons-math/userguide/sta...

mousomashakel•1y ago
Thanks! I'm aware of those great projects. Fahmatrix aims to offer a lightweight, dependency-free alternative that’s easy to embed in any Java app. DuckDB is super impressive, especially for SQL-heavy tasks — but my goal is more about a native, fluent API for those who prefer direct Java code over SQL.