frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Drive any macOS app in the background without stealing the cursor

https://github.com/trycua/cua
41•frabonacci•7h ago•19 comments

Show HN: Live Sun and Moon Dashboard with NASA Footage

https://www.lumara-space.app/
155•beeswaxpat•10h ago•55 comments

Show HN: ClusterdOS – Kubernetes without the platform team

https://gitlab.com/aranya-tech/public/clusterdos
2•druid•1h ago•1 comments

Show HN: Effected Keyboard 2 – Effects as You Type

2•vitalipom•3h ago•0 comments

Show HN: A TUI for Markdown view an editing

https://mdee.bkh.dev
3•cloked•3h ago•0 comments

Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview

https://github.com/dirac-run/dirac
366•GodelNumbering•1d ago•141 comments

Show HN: I mapped the latest UK fuel prices by county

https://fuelfox.uk/regional
3•sircipher•5h ago•0 comments

Show HN: Open Bias – proxy that enforces agent behavior at runtime

https://github.com/open-bias/open-bias/
9•algomaniac•5h ago•3 comments

Show HN: Utilyze – an open source GPU monitoring tool more accurate than nvtop

https://www.systalyze.com/utilyze
113•ManyaGhobadi•1d ago•28 comments

Show HN: A terminal spreadsheet editor with Vim keybindings

https://github.com/garritfra/cell
102•garritfra•1d ago•49 comments

Show HN: I wrote a DOOM clone in my own programming language

https://spectrelang.org/log/devlog#cubedoom
6•pizza_man•12h ago•3 comments

Show HN: Ragnerock, an AI data analysis tool

https://www.ragnerock.com
7•mmahowald27•7h ago•4 comments

Show HN: Turning a Gaussian Splat into a videogame

https://blog.playcanvas.com/turning-a-gaussian-splat-into-a-videogame/
236•yak32•5d ago•63 comments

Show HN: Waiting for LLMs Suck – Give your user a game

https://github.com/ftaip/waiting-game
20•dalemhurley•21h ago•12 comments

Show HN: SyncVibe – Code with friends in the terminal, each with your own AI

https://syncvibe.online/
8•curious1008•8h ago•3 comments

Show HN: VoiceGoat – A vulnerable voice agent for practicing LLM attacks

https://github.com/redcaller/voice-goat
6•xmhatx•9h ago•1 comments

Show HN: How much of the Linux kernel is written by AI?

https://assisted-by.dev/
6•snek14•9h ago•3 comments

Show HN: Devicons, +1300 logos and icons in React, SVG, and icon format

https://devicons.io/
6•vorillaz•14h ago•2 comments

Show HN: AgentSwift – Open-source iOS builder agent

https://github.com/hpennington/agentswift
46•hpen•22h ago•9 comments

Show HN: Implementing Patio11's "Dangerous Professional" as a Claude Code Plugin

https://playground.tetraresearch.io/p/implementing-patio11s-dangerous-professional
3•tawb•11h ago•1 comments

Show HN: Unusual Wikipedia

https://unusualwiki.nk412.com/
20•grilledchickenw•1d ago•3 comments

Show HN: PrePrompt – rewrites vague prompts before they reach the LLM

https://preprompt.org/
6•yashdeeptehlan•21h ago•4 comments

Show HN: The Unix Magic poster, annotated (updated)

https://github.com/drio/unixmagic
60•drio•1d ago•7 comments

Show HN: Tiao, A two-player turn-based board game

https://playtiao.com
61•trebeljahr•2d ago•29 comments

Show HN: Free textbook on engineering thermodynamics

https://thermodynamicsbook.com/
174•2DcAf•2d ago•47 comments

Show HN: I built a dating SIM that prepares you for your date

https://claude.ai/public/artifacts/98750067-546b-4c9e-ab62-68cae2941329
3•danish00111•6h ago•1 comments

Show HN: Blotter, a live map of LAPD radio activity

https://blotter.fm
5•s_e__a___n•22h ago•1 comments

Show HN: BeVisible.app - Blog that runs itself

https://www.bevisible.app
6•evanyang•16h ago•2 comments

Show HN: Startup Equity Adventure Game

https://options-game-polymathrobotics.pythonanywhere.com/
34•iliabara•2d ago•26 comments

Show HN: Gate – AI workers handle dev tickets in a visual workspace

https://soliddark.net/gate
3•SolidDark•17h 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•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.