frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

https://play.templatical.com
63•oahmadov•4h ago•18 comments

Show HN: PHP-fts – Full-text search engine in pure PHP, no extensions

https://github.com/olivier-ls/php-fts
2•asmodios•33m ago•0 comments

Show HN: Mac Juice Monitor – Bluetooth battery levels in the macOS menu bar

https://github.com/p32929/mac-juice-monitor
4•heliskyr2•1h ago•3 comments

Show HN: Tilde.run – Agent Sandbox with a Transactional, Versioned Filesystem

https://tilde.run/
94•ozkatz•5h ago•80 comments

Show HN: Airbyte Agents – context for agents across multiple data sources

136•mtricot•1d ago•40 comments

Show HN: Tuiql – A keyboard-driven SQL database client in the terminal

https://github.com/okira-e/tuiql
3•okira_e•3h ago•0 comments

Show HN: Upskill – skill to find skills for your AI agents

https://github.com/Autoloops/upskill
4•kushalpatil07•3h ago•8 comments

Show HN: DoodleMate: Animate Your Child's Hand Drawings Without Generative AI

https://doodlemate.com/
6•hjessmith•3h ago•6 comments

Show HN: Skymap – a 3D galaxy catalog explorer in the browser via WebGPU

https://skymap.rulkens.com/
5•thereallex•5h ago•8 comments

Show HN: Explore color palettes inspired by 3000 master painter artworks

https://paletteinspiration.com/
203•ouli•1d ago•74 comments

Show HN: Prospero Is Superpowers for Writing

https://brianguthrie.com/p/prospero/
2•bguthrie•5h ago•1 comments

Show HN: NFC tags are good material for pranks on Android

https://mastodon.social/@maxwellito/116524250100439866
16•maxwellito•7h ago•2 comments

Show HN: BattleClaws – A battle arena where AI agents fight autonomously

https://battleclaws.ai/
6•bryhaw•7h ago•0 comments

Show HN: Guten – Android ereader for Project Gutenberg's 70k+ free books

https://play.google.com/store/apps/details?id=com.bhunt.guten&hl=en_US
4•bethanyhunt•6h ago•1 comments

Show HN: Migrate your Evernote archive to Google Drive or local files

https://github.com/meizy/evernote-to-gdrive
2•meizy•10h ago•0 comments

Show HN: nfsdiag – A NFS diagnostic application

https://github.com/lsferreira42/nfsdiag
82•lsferreira42•4d ago•6 comments

Show HN: Apple's SHARP running in the browser via ONNX runtime web

https://github.com/bring-shrubbery/ml-sharp-web
182•bring-shrubbery•3d ago•46 comments

Show HN: I built a new word game, Wordtrak

https://wordtrak.com/blog/2026-05-05-I-built-a-new-word-game
72•qrush•1d ago•42 comments

Show HN: A Mutating Webhook to automatically strip PII from K8s logs

https://github.com/aragossa/pii-shield
24•aragoss•1d ago•4 comments

Show HN: Better Design – 28 Shadcn design systems (OSS, MCP: Cursor/Claude Code)

https://github.com/marvkr/better-design
11•marvinkr•21h ago•0 comments

Show HN: Ableton Live MCP

https://github.com/bschoepke/ableton-live-mcp
118•bschoepke•3d ago•78 comments

Show HN: Rdprrap – Rust Port of RDPWrap (Multi-Session RDP for Windows Desktop)

https://github.com/kernalix7/rdprrap
3•kernalix7•13h ago•0 comments

Show HN: New Benchmark from SWE-bench team is 0% solved

https://programbench.com/
22•lieret•1d ago•3 comments

Show HN: Codeberg (Forgejo) CLI, built with Xclif

https://codeberg.org/thatxliner/codeberg-cli
15•thatxliner•1d ago•1 comments

Show HN: I Built a Museum Exhibit

https://knhash.in/built-an-exhibit/
38•kn81198•3d ago•3 comments

Show HN: Hallucinopedia

http://halupedia.com/
57•bstrama•4h ago•58 comments

Show HN: Orch8 – Durable workflow engine in Rust, one binary, Postgres or SQLite

https://github.com/orch8-io/engine
23•_alphageek•1d ago•3 comments

Show HN: I indexed 8,643 BSides talks across 227 chapters and 6 continents

https://allbsides.com/
24•Parkado•1d ago•8 comments

Show HN: Pollen – distributed WASM runtime, no control plane, single binary

https://github.com/sambigeara/pollen
136•sambigeara•6d ago•63 comments

Show HN: DAC – open-source dashboard as code tool for agents and humans

https://github.com/bruin-data/dac
118•karakanb•1w ago•35 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.