frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Ghidra MCP Server – 110 tools for AI-assisted reverse engineering

https://github.com/bethington/ghidra-mcp
111•xerzes•5h ago•32 comments

Show HN: Craftplan – I built my wife a production management tool for her bakery

https://github.com/puemos/craftplan
395•deofoo•2d ago•98 comments

Show HN: Zerobrew – Alternative to Homebrew

https://github.com/lucasgelfond/zerobrew
3•worldsavior•23m ago•1 comments

Show HN: BPU – An embedded scheduler for stable UART pipelines

7•DenisDolya•3d ago•1 comments

Show HN: Find better round trips – TSP challenge

https://tsp-game.graphhopper.com/
2•oblonski•2h ago•0 comments

Show HN: Octosphere, a tool to decentralise scientific publishing

https://octosphere.social/
55•crimsoneer•19h ago•28 comments

Show HN: Sandboxing untrusted code using WebAssembly

https://github.com/mavdol/capsule
75•mavdol04•22h ago•21 comments

Show HN: Safe-now.live – Ultra-light emergency info site (<10KB)

https://safe-now.live
181•tinuviel•1d ago•90 comments

Show HN: C discrete event SIM w stackful coroutines runs 45x faster than SimPy

https://github.com/ambonvik/cimba
60•ambonvik•20h ago•16 comments

Show HN: Yutovo – visual online and desktop calculator inside a text editor

https://yutovo.com
3•denprog•5h ago•0 comments

Show HN: Latex-wc – Word count and word frequency for LaTeX projects

https://www.piwheels.org/project/latex-wc/
9•sethbarrettAU•1d ago•4 comments

Show HN: PII-Shield – Log Sanitization Sidecar with JSON Integrity (Go, Entropy)

https://github.com/aragossa/pii-shield
16•aragoss•20h ago•9 comments

Show HN: I built "AI Wattpad" to eval LLMs on fiction

https://narrator.sh/llm-leaderboard
28•jauws•19h ago•31 comments

Show HN: Ec – a terminal Git conflict resolver inspired by IntelliJ

https://github.com/chojs23/ec
8•neozz•12h ago•0 comments

Show HN: Adboost – A browser extension that adds ads to every webpage

https://github.com/surprisetalk/AdBoost
122•surprisetalk•1d ago•127 comments

Show HN: OpenClaw Assistant – Replace Google Assistant with Any AI

https://github.com/yuga-hashimoto/OpenClawAssistant
2•YugaHashimoto•9h ago•0 comments

Show HN: difi – A Git diff TUI with Neovim integration (written in Go)

https://github.com/oug-t/difi
44•oug-t•23h ago•47 comments

Show HN: Librediffusion: C++ / CUDA Reimplementation of StreamDiffusion

https://github.com/jcelerier/librediffusion
3•jcelerier•10h ago•0 comments

Show HN: Reimplementing PyTorch from scratch (MLP, CNN) to learn the internals

https://github.com/geyuxu/nn-from-scratch
3•geyuxu•15h ago•1 comments

Show HN: Minikv – Distributed key-value and object store in Rust (Raft, S3 API)

https://github.com/whispem/minikv
67•whispem•1d ago•36 comments

Show HN: Real-world speedrun timer that auto-ticks via vision on smart glasses

https://github.com/RealComputer/GlassKit/tree/main/examples/rokid-rfdetr
4•tash_2s•16h ago•2 comments

Show HN: Wikipedia as a doomscrollable social media feed

https://xikipedia.org
435•rebane2001•2d ago•141 comments

Show HN: Randomly discovered websites from the open internet every 60 minutes

https://randcrawl.com/
2•whothatcodeguy•11h ago•0 comments

Show HN: Mementomori.club – We All Die. Don't Lose Track

https://mementomori.club
5•titusblair•12h ago•2 comments

Show HN: Emmtrix ONNX-to-C Code Generator for Edge AI Deployment

https://github.com/emmtrix/emx-onnx-cgen
6•emx-can•18h ago•0 comments

Show HN: NanoClaw – “Clawdbot” in 500 lines of TS with Apple container isolation

https://github.com/gavrielc/nanoclaw
519•jimminyx•2d ago•222 comments

Show HN: AnsiColor, resilient ANSI color codes for your TUI

https://ansicolor.com
3•gurgeous•13h ago•0 comments

Show HN: ÆTHRA – Writing Music as Code

103•CzaxTanmay•5d ago•33 comments

Show HN: I built an AI twin recruiters can interview

https://chengai.me/
2•Charlie112•13h ago•3 comments

Show HN: Apate API mocking/prototyping server and Rust unit test library

https://github.com/rustrum/apate
32•rumatoest•3d ago•21 comments
Open in hackernews

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

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

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

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