frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Web app that lets you send email time capsules

https://resurf.me
11•walrussama•34m ago•0 comments

Show HN: Lockenv – Simple encrypted secrets storage for Git

https://github.com/illarion/lockenv
33•shoemann•4h ago•8 comments

Show HN: ReadyKit – Superfast SaaS Starter with Multi-Tenant Workspaces

https://readykit.dev/
62•level09•1w ago•10 comments

Show HN: Cdecl-dump - represent C declarations visually

https://github.com/bbu/cdecl-dump
28•bluetomcat•11h ago•10 comments

Show HN: PVAC FHE over hypergraphs with LPN security

https://github.com/octra-labs/pvac_hfhe_cpp
5•0x0ffh_local•6d ago•0 comments

Show HN: Spotify Wrapped but for LeetCode

https://github.com/collinboler/leetcodewrapped
27•collinboler2•17h ago•10 comments

Show HN: Crier – Push notifications via TCP or MQTT (no public IP needed)

https://github.com/skorotkiewicz/crier
2•modinfo•5h ago•0 comments

Show HN: FuseCells – a handcrafted logic puzzle game with 2,500 levels

https://apps.apple.com/us/app/fusecells-logic-grid-puzzle/id6754704139
35•keini•1d ago•24 comments

Show HN: Tascli, a command line based (human) task and record manager

https://github.com/Aperocky/tascli
41•Aperocky•1d ago•18 comments

Show HN: Kraa – Writing App for Everything

https://kraa.io/about
125•levmiseri•4d ago•73 comments

Show HN: S3 compatible store with 1M IOPS(4K-R,p99~5ms), BYOC in 5min with rust

https://github.com/fractalbits-labs/fractalbits-main
23•fractalbits•1d ago•7 comments

Show HN: I replaced my premium workout app with vibecode

https://strengthquest.lovable.app/
7•maddmann•11h ago•1 comments

Show HN : WealthYogi - Net worth Tracker

https://apps.apple.com/gb/app/wealthyogi-net-worth-tracker/id6753881658
5•aalbatross•11h ago•0 comments

Show HN: Onlyrecipe 2.0 – I added all features HN requested – 4 years later

https://onlyrecipeapp.com/?url=https://www.allrecipes.com/turkish-pasta-recipe-8754903
200•AwkwardPanda•3d ago•157 comments

Show HN: Walrus – a Kafka alternative written in Rust

https://github.com/nubskr/walrus
156•janicerk•6d ago•49 comments

Show HN: OpenFret – Guitar inventory, AI practice, and a note-detection RPG

https://openfret.com?referral=showhn
3•openfret•14h ago•0 comments

Show HN: Tacopy – Tail Call Optimization for Python

https://github.com/raaidrt/tacopy
94•raaid-rt•1w ago•53 comments

Show HN: MTXT – Music Text Format

https://github.com/Daninet/mtxt
123•daninet•1w ago•39 comments

Show HN: Pbnj – A minimal, self-hosted pastebin you can deploy in 60 seconds

https://pbnj.sh/
67•bhavnicksm•2d ago•16 comments

Show HN: HCB Mobile – financial app built by 17 y/o, processing $6M/month

https://hackclub.com/fiscal-sponsorship/mobile/
176•mohamad08•5d ago•65 comments

Show HN: I was reintroduced to computers: Raspberry Pi

https://airoboticist.blog/2025/12/01/i-was-reintroduced-to-computers-raspberry-pi/
84•observer2022•6d ago•31 comments

Show HN: Minimal container-like sandbox built from scratch in C

https://github.com/Sahilb315/runbox
5•Sahil121•23h ago•0 comments

Show HN: TapeHead – A CLI tool for stateful random access of file streams

https://github.com/emamoah/tapehead
19•emamoah•1d ago•4 comments

Show HN: Fresh – A new terminal editor built in Rust

https://sinelaw.github.io/fresh/
183•_sinelaw_•4d ago•149 comments

Show HN: I built a dashboard to compare mortgage rates across 120 credit unions

https://finfam.app/blog/credit-union-mortgages
388•mhashemi•4d ago•129 comments

Show HN: Radioactive Pooping Knights

https://minichessgames.com/#/play/pooping-knights
27•patrickdavey•2d ago•8 comments

Show HN: Microlandia, a brutally honest city builder

https://microlandia.city
142•phaser•4d ago•25 comments

Show HN: Sloppylint – A linter for AI-generated Python code

https://github.com/rsionnach/sloppylint
19•kyub•2d ago•3 comments

Show HN: I was frustrated of 85% of my technical interviews, I built SharpSkill

https://sharpskill.fr/en
3•Enjoyooor•22h ago•1 comments

Show HN: AI Paul Graham

https://www.paulgraham-nia.com/
4•arlanrakh•1d ago•5 comments
Open in hackernews

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

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

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

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