frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I mapped every US golf course

https://golfcoursebrowser.com/
92•rickmf•3h ago•41 comments

Show HN: I made some transistor animations

https://brandonli.net/semisim/animations
153•stunningllama•1d ago•19 comments

Show HN: Brolly, a plain-text weather forecast site

https://brolly.sh/forecast/RWFP2qW8
164•jsax•12h ago•49 comments

Show HN: SpinWin – A macOS menu bar app to visually rotate or spin any window

https://github.com/alokdhir/spinwin
35•dbm5•12h ago•8 comments

Show HN: What 180k words look like as a temporal knowledge graph (Oz series)

https://synaptale.com/graph?ch=100
14•ald0r•3h ago•7 comments

Show HN: Writemark, a dependency free web component for inline Markdown editing

38•_boffin_•9h ago•14 comments

Show HN: ZWPlayer – Free player with interactive annotations and subtitle search

https://www.zwplayer.com/
4•logicplayer•4h ago•0 comments

Show HN: MutexCam – Global Camera and Mic Control on Mac for Zoom, Teams, Meet

https://mutex.cam/
3•superquizonline•3h ago•0 comments

Show HN: Axtary – Content Authorization for AI Agents

https://axtary.com
3•Axtary•5h ago•1 comments

Show HN: Rudoc – a 4.5MB Rust document converter

https://github.com/asong56/rudoc
11•sideras56•8h ago•0 comments

Show HN: Raise a virtual pet with your friend/partner

https://dandan.schols.io
2•chaidhat•3h ago•0 comments

Show HN: Rules that stop AI coding agents from breaking working code

https://github.com/avenna01-ceo/claude-code-survival-kr
2•gaiinmaster•3h ago•0 comments

Show HN: Hubo – two agents that implement and review code until they agree

https://github.com/h0ngcha0/hubo
6•hongchao•7h ago•1 comments

Show HN: I enhanced the UX for TemplatesOn, what do you think?

https://templateson.com
2•maz225•3h ago•0 comments

Show HN: Fitter – declarative web-data extraction,running in the browser also

https://pxyup.github.io/fitter/
5•pyxru•4h ago•3 comments

Show HN: Echo – Fable-level results at 1/3 the cost using open-weight models

467•adam_rida•2d ago•221 comments

Show HN: Yorishiro – a macOS terminal where AI agents live

https://github.com/sktkkoo/Yorishiro
41•hakumei•3d ago•13 comments

Show HN: Awsmux – Multi-account AWS CLI, up to 5.4x faster, 7.4x fewer tokens

https://github.com/0hardik1/awsmux
8•0hardik1•10h ago•4 comments

Show HN: QuickFlo – I got sick of exporting business workflows as a consultant

https://quickflo.app/
2•zajasa•5h ago•1 comments

Show HN: Houhou – Resilience Policies Package for TypeScript Async Functions

https://hou2.vercel.app/
3•smokeeaasd•6h ago•1 comments

Show HN: I simulated closing the Strait of Hormuz on real oil trade data

https://globaloilnetwork.staffinganalytics.io/
241•eliotho•2d ago•125 comments

Show HN: Working Async – The new wave of remote work is async-first

https://workingasync.io
7•Log007•12h ago•0 comments

Show HN: Palmier Pro – Open-source macOS video editor built for AI

https://github.com/palmier-io/palmier-pro
188•harrisontin•2d ago•37 comments

Show HN: Routeveil – Shared-element and page transitions engine for React Router

https://www.routeveil.dev/lab/shared-elements
3•milkeviich•7h ago•0 comments

Show HN: I created a way to turn your GitHub contribution graph into a game

https://ykdojo.github.io/gh-commit-history/
3•ykev•10h ago•1 comments

Show HN: Cross-Platform Flutter and React-Native Plugin – FFmpeg-Kit-Extended

2•akashskypatel•7h ago•0 comments

Show HN: Proxmox -> Share your host's Bluetooth with a VM over the network

https://github.com/lucid-fabrics/proxmox-bluetooth
26•wmehanna•10h ago•13 comments

Show HN: OneCLI – OSS credential gateway that keeps secrets out of AI agents

https://github.com/onecli/onecli
105•Jonathanfishner•2d ago•32 comments

Show HN: Desktui – a remote desktop client for your terminal

https://github.com/mishushakov/desktui
8•ushakov•6h ago•0 comments

Show HN: Argus – VSCode Worktree Agent Session Manager

https://marketplace.visualstudio.com/items?itemName=petar-s-dimov.argus-worktree-agent-sessions
3•pdcd•5h 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•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.