frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Govbase – Follow a bill from source text to news bias to social posts

https://govbase.com
53•foxfoxx•1h ago•30 comments

Show HN: Omni – Open-source workplace search and chat, built on Postgres

https://github.com/getomnico/omni
132•prvnsmpth•10h ago•39 comments

Show HN: Gapless.js – gapless web audio playback

https://github.com/RelistenNet/gapless.js
3•switz•19m ago•0 comments

Show HN: Valkey-powered semantic memory for Claude Code sessions

2•kaliades•35m ago•0 comments

Show HN: Web Audio Studio – A Visual Debugger for Web Audio API Graphs

https://webaudio.studio/
47•alexgriss•7h ago•3 comments

Show HN: Timber – Ollama for classical ML models, 336x faster than Python

https://github.com/kossisoroyce/timber
173•kossisoroyce•18h ago•30 comments

Show HN: Try Archetype 360 – AI‑powered personality test, 3× deeper than MBTI

https://archetype360.app/
4•ddesposito•3h ago•3 comments

Show HN: PEP 827 – TS-like type manipulation in Python

https://peps.python.org/pep-0827/
2•1st1•11m ago•0 comments

Show HN: Ledge - Policy layer for AI agent payments (prevents unauthorized txns)

https://github.com/Devendra116/ledge
2•devendra116•2h ago•0 comments

Show HN: Clean Express – a native NNTP/Usenet client for iOS/macOS/visionOS

https://testflight.apple.com/join/DmBXsPhU
4•jim180•2h ago•0 comments

Show HN: MoodJot – Mood tracker mobile app with community feed, built with KMP

https://moodjot.app
3•appmuzzik•3h ago•0 comments

Show HN: Open-source Loom / Screen Studio with editing and auto-zoom

https://github.com/jkuri/Reframed
6•kundi•3h ago•3 comments

Show HN: Ralphex – autonomous GPT Codex agent loop for ChatGPT Pro users

https://github.com/SmolNero/ralphex
3•edgar_ortega•3h ago•0 comments

Show HN: Dungeon Coverage – Unit testing as a dungeon crawler

https://arvindrajnaidu.github.io/dungeon-coverage/
2•arvindrajnaidu•4h ago•0 comments

Show HN: HushBrief – A stateless, zero-retention AI document summarizer

https://hushbrief.app
3•FidelitasLLC•4h ago•0 comments

Show HN: Aigent – A general-purpose AI agent built for self-improvement

https://stefanochiodino.github.io/aigent/
2•StefanoC•4h ago•0 comments

Show HN: Rust Based SEO and AEO Crawler

https://crawler.sh/
2•mehmetkose•4h ago•0 comments

Show HN: Sairo – Self-hosted S3 browser with 2.4ms search across 134K objects

4•ashwathstephen•4h ago•1 comments

Show HN: Two tools to make Claude Code more autonomous

5•yuu1ch13•4h ago•1 comments

Show HN: IDAssist – AI augmented reverse engineering for IDA Pro

https://github.com/jtang613/IDAssist
4•jtang613•5h ago•0 comments

Show HN: Augno – a Stripe-like ERP for manufacturing

3•dalbaugh•5h ago•0 comments

Show HN: RDAP API – Normalized JSON for Domain/IP Lookups (Whois Replacement)

https://rdapapi.io
2•boutetnico•5h ago•0 comments

Show HN: I built a zero-browser, pure-JS typesetting engine for bit-perfect PDFs

https://github.com/cosmiciron/vmprint
70•cosmiciron•1d ago•50 comments

Show HN: Tradefacts.io – US HTS tariff schedule, a JSON API and change detection

https://tradefacts.io
2•PowMan•5h ago•0 comments

Show HN: Atrium – An open-source, self-hosted client portal

https://github.com/Vibra-Labs/Atrium
3•ecotto123•5h ago•0 comments

Show HN: Photon – Rust pipeline that embeds/tags/hashes images locally w SigLIP

https://github.com/hejijunhao/photon
3•pgbouncer•5h ago•1 comments

Show HN: Homebutler – Manage multiple servers from chat, single binary

https://github.com/Higangssh/homebutler
4•swq115•6h ago•0 comments

Show HN: Logira – eBPF runtime auditing for AI agent runs

https://github.com/melonattacker/logira
22•melonattacker•19h ago•2 comments

Show HN: EasyClaw – One-click installer for OpenClaw AI agent

https://github.com/ybgwon96/easyclaw
2•Singularity26•6h ago•1 comments

Show HN: AgentKeeper – cognitive persistence layer for AI agents

3•thinklanceai•6h 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•9mo 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•9mo 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•9mo 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•9mo 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•9mo 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•9mo ago
Polars and duckdb interoperate nicely and can enable this flexibility
theanonymousone•9mo ago
Does Polars have a Java library?
mousomashakel•9mo 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•9mo 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•9mo 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•9mo ago
What about Tablesaw, Apache Arrow? How does this compare ...
mousomashakel•9mo 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•9mo ago
Nice!

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

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