frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Go-Highway – Portable SIMD for Go

https://github.com/ajroetker/go-highway
4•kingcauchy•2h ago•0 comments

Show HN: Neural Net Flies Navigate through a maze

https://claude.ai/public/artifacts/4c5465b6-c384-4c9f-8a92-a4f840367ec2
8•logicallee•5d ago•3 comments

Show HN: Jot - Offline, source available notetaking/assistant app

https://jot-ai.app/blog/welcome-to-jot
7•robust-cactus•2h ago•1 comments

Show HN: Dealta – A game-theoretic decentralized trading protocol

https://github.com/orgs/Dealta-Foundation/repositories
49•kalenvale•12h ago•27 comments

Show HN: A Bloomberg terminal for finding fresh powder (DuckDB WASM)

https://aryeh-snow.storage.googleapis.com/index.html
4•aribenjamin•55m ago•0 comments

Show HN: Fluxer – open-source Discord-like chat

https://fluxer.app
5•hampus•4h ago•0 comments

Show HN: OpenWorkers – Self-hosted Cloudflare workers in Rust

https://openworkers.com/introducing-openworkers
485•max_lt•1d ago•148 comments

Show HN: Enroll, a tool to reverse-engineer servers into Ansible config mgmt

https://enroll.sh
249•_mig5•2d ago•48 comments

Show HN: Wario Synth – Turn any song into Game Boy version

https://www.wario.style
66•birdmania•1d ago•14 comments

Show HN: I mapped System Design concepts to AI Prompts to stop bad code

https://github.com/nimin1/system-design-vibecoding
4•systemdesignai•6h ago•1 comments

Show HN: Use Claude Code to Query 600 GB Indexes over Hacker News, ArXiv, etc.

https://exopriors.com/scry
378•Xyra•2d ago•136 comments

Show HN: CryDecoder – On-device ML for classifying baby cries (Swift, Core ML)

https://apps.apple.com/us/app/crydecoder-baby-translator/id6756557492
4•evanjusttrying•7h ago•0 comments

Show HN: BusterMQ, Thread-per-core NATS server in Zig with io_uring

https://bustermq.sh/
133•jbaptiste•2d ago•69 comments

Show HN: Startboard – A simple little browser start page and bookmarks organizer

https://startboard.so/
4•SunshineTheCat•8h ago•0 comments

Show HN: Feather – a fresh Tcl reimplementation (WASM, Go)

https://www.feather-lang.dev
29•dhamidi•6d ago•4 comments

Show HN: I created a tool to design and create foamcore inserts for boardgames

https://boxinsertdesigner.com/
52•Rabidgremlin•5d ago•16 comments

Show HN: Text-to-3D Motion Generator (Hunyuan 1.0 wrapper)

https://hy-motion.ai/
5•yeekal•8h ago•1 comments

Show HN: Tasker – An open-source desktop agent for browser and OS automation

https://automatewithtasker.com/
30•schnetzlerjoe•1d ago•29 comments

Show HN: Jsonic – Python JSON serialization that works

https://medium.com/dev-genius/jsonic-python-serialization-that-just-works-3b38d07c426d
24•orrbenyamini•6d ago•13 comments

Show HN: Turning 100-plus comments HN threads into readable discussions

16•freakynit•22h ago•4 comments

Show HN: CheerAd – Let your audience support your website with paid messages

https://cheerad.com/pages/how-to-use.html
3•niyoseris•11h ago•4 comments

Show HN: Gojju, a Fun Programming Language

https://hemanth.github.io/gojju/
7•init0•20h ago•1 comments

Show HN: Verifying Rust implementation logic using Lean 4 as a fuzzing oracle

https://github.com/welltyped-systems/verified-ledger
2•xmaruff•11h ago•1 comments

Show HN: 22 GB of Hacker News in SQLite

https://hackerbook.dosaygo.com
717•keepamovin•3d ago•217 comments

Show HN: PDF to Markdown that preserves layout, images, and tables

https://pdftomarkdown.pro/
5•matthewshere•12h ago•0 comments

Show HN: I built a clipboard tool to strip/keep specific formatting like Italics

https://custompaste.com
32•EvaWorld9•12h ago•14 comments

Show HN: I built a minimal open-source CMS (FREE)

https://github.com/raulcanodev/zenex-cms
5•rawraul•14h ago•1 comments

Show HN: Lock In – A goal Mac tracker controlled by typed commands

https://www.letslockin.xyz/
5•TedOS•14h ago•0 comments

Show HN: Foresight – rolling dice with 2025 weak signals

https://2025.kghosh.me/
3•kelu124•16h ago•0 comments

Show HN: VectorDBZ, a desktop GUI for vector databases

https://github.com/vectordbz/vectordbz
11•snirjka•1d ago•0 comments
Open in hackernews

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

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

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

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