frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: MCP inspection for live Avalonia, WPF, WinUI and MAUI apps

https://github.com/trrahul/XamlMcp
2•trrahul•10m ago•0 comments

Show HN: SendPage – Paste AI-generated HTML, get a link clients can open

https://sendpageapp.com
3•jack714•1h ago•1 comments

Show HN: Wisp – a Linux shell with Lua scripting and structured pipelines

https://github.com/Hinikaa/wisp
3•hinikaa•2h ago•0 comments

Show HN: Habit Dungeon – RPG gamification that helps good habits stick

https://gamifyhabits.app/
2•jackedv•2h ago•1 comments

Show HN: I worked on a new browser for 2 years, today it passed Acid 3

https://code.intellios.ai/cwbrowser/
122•coolwulf•12h ago•35 comments

Show HN: What should the GUI for AI agents look like?

https://marbleos.com/demo
116•akbabu•1d ago•66 comments

Show HN: Lightweight, S3-compatible object storage server

https://vaults3.com/
2•open_source_new•2h ago•0 comments

Show HN: BitBang – Reach machines behind NAT from a browser, no account

https://github.com/richlegrand/bitbang-cli
83•narragansett•19h ago•26 comments

Show HN: Gander, an Android file viewer that asks for no permissions

https://github.com/mokshablr/gander
200•mokshablr•1d ago•72 comments

Show HN: How to build and self-host a code review agent

https://www.trytilde.ai/blog/how-to-build-code-review-agent
27•solsol94•13h ago•4 comments

Show HN: One no-subscriptions online search for all your agent needs

2•freakynit•4h ago•0 comments

Show HN: Distilling DeepSeek into GPT-OSS doesn't transfer censorship. Try it

https://www.ctgt.ai/research/distillation-censorship-transfer
165•cgorlla•1d ago•72 comments

Show HN: Kedge – Full-stack cloud with forkable VM snapshots and global SQLite

https://kedge.dev/
132•wgjordan•2d ago•25 comments

Show HN: Best Books Guide – curated books list with tracking, rating, reviews

https://bestbooks.guide/
2•gste•4h ago•0 comments

Show HN: Open source React Native debugging studio

https://www.nativescope.dev
4•guigg•7h ago•1 comments

Show HN: Slope remade in HTML5 to load instantly on any browser, any device

https://hurtle.site/
36•novlrdotcom•17h ago•19 comments

Show HN: Chronos, 2 terminal games through 50 years of hacking history

https://www.chronos-game.com/
13•xav77•16h ago•4 comments

Show HN: SmokeVPN – All-in-One WireGuard VPN Hub – Switch Exits in Realtime

https://smokevpn.com
6•lobito25•9h ago•3 comments

Show HN: The Goal is simple, there should be an actual free editor

https://sylixide.com
17•Sai-09•17h ago•7 comments

Show HN: I built a cross-browser extension that controls fingerprinting surfaces

https://privacything.com/en/
19•tomaszjanusz•19h ago•10 comments

Show HN: Open-source engine running Gemma 4 26B in 2 GB RAM on any M-series Mac

https://github.com/drumih/turbo-fieldfare
902•gitpusher42•2d ago•339 comments

Show HN: I made a game where you build a CPU from logic gates

https://select.supply/game/chipbuilder
96•laurentiurad•1d ago•67 comments

Show HN: Random OS I made using C

https://github.com/NoTheIdiot/WindogeOS
4•notheidiot•8h ago•2 comments

Show HN: I built a Python obfuscator that keeps production traces debuggable

https://github.com/zhurong2020/pyobfus
2•znhskzj•8h ago•1 comments

Show HN: Sanitizer – Strip sensitive data from documents locally before an LLM

https://provexar.ai/sanitizer
2•MVKozyrev•8h ago•0 comments

Show HN: WhisperKeys - Offline macOS dictation, key-by-key

https://github.com/j-sofia/WhisperKeys
2•j-sofia•8h ago•1 comments

Show HN: TikTok Coin Calculator – viewer costs vs. creator earnings

https://coinvaluecalc.com/
2•zhonglinxin•4h ago•1 comments

Show HN: A little physical breakout clone

https://brontosaurusrex.github.io/physical/v7/
8•brontosaurusrex•19h ago•4 comments

Show HN: GAI – A Go runtime for typed, tool-using LLM agents

https://github.com/lace-ai/gai
3•samuel_kx0•11h ago•0 comments

Show HN: Claude-account – switch Claude Code accounts without logging in again

https://github.com/hamzarehmandeveloper/claude-account
54•hamza_rehman•1d ago•29 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.