frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: A Karpathy-style LLM wiki your agents maintain (Markdown and Git)

https://github.com/nex-crm/wuphf
80•najmuzzaman•2h ago•32 comments

Show HN: I've built a nice home server OS

https://lightwhale.asklandd.dk/
136•Zta77•13h ago•49 comments

Show HN: Browser Harness – Gives LLM freedom to complete any browser task

https://github.com/browser-use/browser-harness
105•gregpr07•20h ago•53 comments

Show HN: LLMs consume 5.4x less mobile energy than ad-supported web search

https://dupr.at/thermodynamic-efficiency-inversion
3•duprat•2h ago•0 comments

Show HN: Gova – The declarative GUI framework for Go

https://github.com/NV404/gova
124•aliezsid•1d ago•26 comments

Show HN: VT Code – Rust TUI coding agent with multi-provider support

https://github.com/vinhnx/VTCode
8•vinhnx•7h ago•2 comments

Show HN: Agent MCP Studio – build multi-agent MCP systems in a browser tab

https://www.agentmcp.studio
6•stealthtsdb•4h ago•1 comments

Show HN: Honker – Postgres NOTIFY/LISTEN Semantics for SQLite

https://github.com/russellromney/honker
297•russellthehippo•1d ago•78 comments

Show HN: Agent Vault – Open-source credential proxy and vault for agents

https://github.com/Infisical/agent-vault
138•dangtony98•2d ago•54 comments

Show HN: Tolaria – Open-source macOS app to manage Markdown knowledge bases

https://github.com/refactoringhq/tolaria
288•lucaronin•1d ago•130 comments

Show HN: Nimbus – Browser with Claude Code UX

https://usenimbus.app/
10•pycassa•15h ago•1 comments

Show HN: HNswered – watches for replies to your Hacker News posts and comments

https://github.com/adam-s/HNswered
13•dataviz1000•15h ago•20 comments

Show HN: Built an AI that maps 17 facial dimensions and shows what to improve

https://realsmile.online
4•realsmile•6h ago•0 comments

Show HN: Collaborative sentence builder with real-time voting

https://www.sentensus.com/
4•cd-4•7h ago•0 comments

Show HN: Bunny Agent – Build Coding Agent SaaS via Native AI SDK UI

https://github.com/buda-ai/bunny-agent
2•chepy•7h ago•0 comments

Show HN: Lilo – a self-hosted, open-source intelligent personal OS

https://github.com/abi/lilo
4•abi•15h ago•3 comments

Show HN: leaf – a terminal Markdown previewer with a GUI-like experience

https://github.com/RivoLink/leaf
38•RivoLink•1d ago•21 comments

Show HN: #1 On This Day

https://onthisday-theta.vercel.app
11•starzmustdie•19h ago•1 comments

Show HN: RoboAPI – A unified REST API for robots, like Stripe but for hardware

https://github.com/amitb-quantum/roboapi
6•xmas123•11h ago•2 comments

Show HN: Built a daily game where you sort historical events chronologically

https://hisorty.app/
68•damiannn•2d ago•59 comments

Show HN: Broccoli, one shot coding agent on the cloud

https://github.com/besimple-oss/broccoli
74•yzhong94•2d ago•49 comments

Show HN: GoModel – an open-source AI gateway in Go

https://github.com/ENTERPILOT/GOModel/
210•santiago-pl•3d ago•75 comments

Show HN: Codex context bloat? 87% avg reduction on SWE-bench Verified traces

https://www.npmjs.com/package/pando-proxy
6•george_ciobanu•13h ago•2 comments

Show HN: I built a CLI that turns your codebase into clean LLM input

https://github.com/NoahCristino/llmcat
6•cristinon•13h ago•0 comments

Show HN: I Reverse Engineered Codex Background Computer Use

https://github.com/actuallyepic/background-computer-use
6•anupamb•13h ago•0 comments

Show HN: Obscura – V8-powered headless browser for scraping and AI agents

https://github.com/h4ckf0r0day/obscura
6•jryio•14h ago•0 comments

Show HN: No AI – My Express.js codebase handled over $50M in prod

https://github.com/AnthonyBudd/express-ts-api-template
5•johnsmith2076•14h ago•0 comments

Show HN: Markdown as a Database

https://github.com/molefrog/lilmd
6•molefrog•14h ago•1 comments

Show HN: Claude Code Manager

https://claude.ldlework.com/
3•ldlework•14h ago•1 comments

Show HN: I built a simple site to reduce tool overload and improve focus

5•saeefwaleed•14h ago•1 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.