frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: CADara - I made an open-source in-browser CAD

https://cadara.app
2•ttouch•3m ago•0 comments

Show HN: GETadb.com – every GET request creates a DB

https://www.getadb.com/
22•nezaj•7h ago•29 comments

Show HN: Git for AI Agents

https://github.com/regent-vcs/re_gent
92•doshay•9h ago•44 comments

Show HN: TRUST – Coding Rust like it's 1989

https://github.com/wojtczyk/trust
155•wojtczyk•1d ago•80 comments

Show HN: tltv – Federation protocol for 24/7 TV channels

https://timelooptv.org/
3•tltv•4h ago•0 comments

Show HN: A lie detector game that reads your pulse through your phone camera

https://kouh.me/tells
3•mrkn1•5h ago•0 comments

Show HN: We built a tool that generates 3D objects with editable, separate parts

https://nova3d.xyz/
5•baigy•6h ago•1 comments

Show HN: UltraCompress – first mathematically lossless 5-bit LLM compression

https://github.com/sipsalabs/ultracompress
4•mounnar•6h ago•0 comments

Show HN: Rejected by YC

https://rejectedbyyc-ten.vercel.app/
4•leonagano•6h ago•3 comments

Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem

https://tilde.run/
196•ozkatz•2d ago•131 comments

Show HN: Agent-skills-eval – Test whether Agent Skills improve outputs

https://github.com/darkrishabh/agent-skills-eval
72•darkrishabh•1d ago•36 comments

Show HN: Stage CLI – An easier way of reading your AI generated changes locally

https://github.com/ReviewStage/stage-cli
44•cpan22•1d ago•31 comments

Show HN: Airbyte Agents – context for agents across multiple data sources

148•mtricot•3d ago•46 comments

Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

https://play.templatical.com
157•oahmadov•2d ago•44 comments

Show HN: Kstack – Skill pack for monitoring/troubleshooting K8s in Claude Code

https://github.com/kubetail-org/kstack
22•andres•1d ago•7 comments

Show HN: AnamDB – An AI-native, differentiable Datalog engine written in Rust

https://github.com/jam5991/anam
10•jam5991•21h ago•1 comments

Show HN: Crit – local review tool for agent plans and code diffs

https://crit.md/
10•tomasz-tomczyk•10h ago•3 comments

Show HN: Runs AI coding agents inside isolated Docker containers

https://github.com/marvincaspar/agent-sanbox
6•matt_callmann•15h ago•0 comments

Show HN: NanoCorp – Create autonomous companies run by AI

https://www.nanocorp.so
6•AdrienBA•11h ago•5 comments

Show HN: PHP-fts – Full-text search engine in pure PHP, no extensions

https://github.com/olivier-ls/php-fts
86•asmodios•2d ago•23 comments

Show HN: Hallucinopedia

http://halupedia.com/
301•bstrama•2d ago•266 comments

Show HN: Corsproxy – Fix CORS Errors Instantly – Free for Development

https://corsproxy.io/
5•mariusbolik•15h ago•4 comments

Show HN: HeatSpectra: Realtime 3D Surface Heat Simulation

https://github.com/tsun3doku/HeatSpectra
3•tsun3doku•21h ago•0 comments

Show HN: Disputron – AI small claims court for petty disputes

https://disputron.ai
8•etaheri•1d ago•4 comments

Show HN: DiffCAD, a FreeCAD workbench to review model changes like code

https://github.com/eblanshey/DiffCAD
6•eblanshey•1d ago•1 comments

Show HN: Explore color palettes inspired by 3000 master painter artworks

https://paletteinspiration.com/
211•ouli•3d ago•82 comments

Show HN: Apple's SHARP running in the browser via ONNX runtime web

https://github.com/bring-shrubbery/ml-sharp-web
182•bring-shrubbery•5d ago•46 comments

Show HN: DAG-based Kanji learning through components

https://mykanji.app/
3•barisozmen•1d ago•0 comments

Show HN: Agentctl, a local control plane for coding agents

https://github.com/chocks/agentctl
2•chocks•21h ago•0 comments

Show HN: Selvedge – an MCP server that captures why AI agents change code

https://selvedge.sh/
4•masondelan•22h ago•3 comments
Open in hackernews

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

https://github.com/moustafa-nasr/fahmatrix
46•mousomashakel•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Polars and duckdb interoperate nicely and can enable this flexibility
theanonymousone•11mo ago
Does Polars have a Java library?
mousomashakel•11mo 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.
theanonymousone•11mo 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•11mo 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.
skanga•11mo ago
What about Tablesaw, Apache Arrow? How does this compare ...
mousomashakel•11mo 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•11mo ago
Nice!

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

mousomashakel•11mo 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.