frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: A game where you build a GPU

https://jaso1024.com/mvidia/
759•Jaso1024•17h ago•158 comments

Show HN: I built a small app for FSI German Course

https://detawk.com/
35•syedmsawaid•2d ago•10 comments

Show HN: Contrapunk – Real-time counterpoint harmony from guitar input, in Rust

https://contrapunk.com/
71•waveywaves•9h ago•30 comments

Show HN: OsintRadar – Curated directory for osint tools

https://osintradar.com/
9•lexalizer•4h ago•1 comments

Show HN: sllm – Split a GPU node with other developers, unlimited tokens

https://sllm.cloud
159•jrandolf•19h ago•78 comments

Show HN: I made open source, zero power PCB hackathon badges

https://github.com/KaiPereira/Overglade-Badges
105•kaipereira•19h ago•10 comments

Show HN: M. C. Escher spiral in WebGL inspired by 3Blue1Brown

https://static.laszlokorte.de/escher/
82•laszlokorte•14h ago•12 comments

Show HN: TurboQuant-WASM – Google's vector quantization in the browser

https://github.com/teamchong/turboquant-wasm
154•teamchong•19h ago•6 comments

Show HN: Bb – Windows API viewer for hackers, in the browser

https://cristeigabriela.github.io/bb-viewer/index.html
3•gabriela_c•3h ago•0 comments

Show HN: I built a frontpage for personal blogs

https://text.blogosphere.app/
757•ramkarthikk•1d ago•190 comments

Show HN: ImPlot v1.0 – 6 years of Immediate-mode plotting for Dear ImGui

https://github.com/epezent/implot
2•brenocq•2h ago•2 comments

Show HN: Apfel – The free AI already on your Mac

https://apfel.franzai.com
718•franze•2d ago•146 comments

Show HN: Pluck – Copy any UI from any website, paste it into AI coding tools

https://www.pluck.so/
16•bring-shrubbery•22h ago•12 comments

Show HN: Signals – finding the most informative agent traces without LLM judges

https://arxiv.org/abs/2604.00356
3•sparacha•7h ago•0 comments

Show HN: ctx – an Agentic Development Environment (ADE)

https://ctx.rs
48•luca-ctx•1d ago•52 comments

Show HN: Ownscribe – local meeting transcription, summarization and search

https://github.com/paberr/ownscribe
11•paberr•21h ago•0 comments

Show HN: Vibooks – Local-first bookkeeping software built for AI agents

https://vibooks.ai/
2•adshao•9h ago•1 comments

Show HN: Travel Hacking Toolkit – Points search and trip planning with AI

https://github.com/borski/travel-hacking-toolkit
92•borski•1d ago•37 comments

Show HN: DocMason – Agent Knowledge Base for local complex office files

https://github.com/jetxu-llm/docmason
7•Jet_Xu•17h ago•0 comments

Show HN: SeekLink – Local hybrid search and link discovery for Obsidian vaults

https://github.com/simonsysun/seeklink
2•simonsysun•10h ago•0 comments

Show HN: Self-Host Excalidraw with Collaboration and Storage

https://github.com/ZimengXiong/ExcaliDash
2•zimengx•11h ago•1 comments

Show HN: Artemis.fyi - Real-time tracker for the Artemis II Moon mission

https://artemis.fyi/
9•dmk•11h ago•0 comments

Show HN: Chrome extension prototype for cross-tab/frame network interception

https://github.com/vsromanc/framelink
3•vsromanc•11h ago•1 comments

Show HN: SwarmFeed – An X-like social platform built for AI agents

https://www.swarmfeed.ai/
3•jamesweb•12h ago•0 comments

Show HN: Mtproto.zig – High-performance Telegram proxy with DPI evasion

https://github.com/sleep3r/mtproto.zig
21•slp3r•1d ago•14 comments

Show HN: Dull – Instagram Without Reels, YouTube Without Shorts (iOS)

https://getdull.app
152•kasparnoor•3d ago•117 comments

Show HN: Ismcpdead.com – Live dashboard tracking MCP adoption and sentiment

https://ismcpdead.com
35•sagirodin•1d ago•23 comments

Show HN: Dev Personality Test

https://personality.4m1r.dev/
5•4m1rk•12h ago•3 comments

Show HN: Made a little Artemis II tracker

https://artemis-ii-tracker.com/
149•codingmoh•2d ago•56 comments

Show HN: Uncompressed – Self-hosted Netflix alternative at 60 Mbps instead of 15

https://uncompressed.media
4•lackoftactics•12h 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
Polars and duckdb interoperate nicely and can enable this flexibility
theanonymousone•10mo ago
Does Polars have a Java library?
mousomashakel•10mo 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•10mo 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•10mo 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•10mo ago
What about Tablesaw, Apache Arrow? How does this compare ...
mousomashakel•10mo 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•10mo ago
Nice!

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

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