frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: 18 Words

https://18words.com/
122•pompomsheep•1h ago•60 comments

Show HN: FableCut – A browser video editor AI agents can drive (zero deps)

https://github.com/ronak-create/FableCut
16•ronak_parmar•32m ago•4 comments

Show HN: Arcaide – Explore code with multi-level call graphs

https://arcaide.foo
7•aqula•55m ago•2 comments

Show HN: Kiyeovo 1.0 release- dual network-mode decentralized E2EE P2P messenger

https://github.com/Realman78/Kiyeovo/releases/tag/kiyeovo-1.0.0
8•Realman78•36m ago•0 comments

Show HN: Virena, a minimal vision-language-action robot model you can read

https://github.com/BuceaGeorgia/VIRENA
2•georgia_bucea•37m ago•0 comments

Show HN: Microsoft releases Flint, a visualization language for AI agents

https://microsoft.github.io/flint-chart/#/
324•chenglong-hn•20h ago•118 comments

Show HN: Slopera, a browser that hallucinates every page with an LLM

https://github.com/fresswolf/Slopera
3•fresswolf•45m ago•0 comments

Show HN: Noema – AI personas debate US listed stocks

https://itsnoema.com
2•hobbescotch•45m ago•0 comments

Show HN: OpenTab – a lazygit-style TUI for your AI token spend

https://github.com/hamidi-dev/opentab
2•hamidi-dev•47m ago•0 comments

Show HN: Yamanote.fun – A complete soundscape for Tokyo's Yamanote line

https://www.yamanote.fun/
216•madebymagnolia•2d ago•46 comments

Show HN: Yogen – 500 AI agents argue about your idea before you bet on it

https://github.com/michaelwrites67-ctrl/yogen
2•michaelruocco•49m ago•0 comments

Show HN: Wizard, Self-extending autonomous AI agent in one Rust binary

https://github.com/teddytennant/wizard
3•Theodoretennant•51m ago•1 comments

Show HN: An open World Cup 2026 prediction ledger with sha256 receipts

https://github.com/sgInnora/wc2026-prediction-ledger
2•Innoraai•54m ago•0 comments

Show HN: Android Developer Verification Package blacklisted in Aurora Store

3•bewilderbeast•56m ago•0 comments

Show HN: OpenDescent - a P2P messenger with no central server (libp2p, Ed25519)

https://open-descent.com
2•Jaguwa•1h ago•0 comments

Show HN: Agent scans 130 careers pages nightly, scores jobs vs. your resume

https://github.com/tarunlnmiit/autopilot-jobhunt
2•tarunlnmiit•1h ago•1 comments

Show HN: Battle LLM Robots – Prompt your LLM, Submit your bot, Watch it battle

https://battlellmrobots.com
3•Jeremy1026•1h ago•0 comments

Show HN: Ffvii Realtime – speed up FFVII Tactical Mode slow-mo to realtime

https://github.com/robesris/ffvii-realtime
2•explosionpunch•1h ago•0 comments

Show HN: A control-theory approach to detecting LLM agent instability

https://github.com/vishal-dehurdle/state-harness
2•visha1v•1h ago•0 comments

Show HN: Replace emails and phone numbers with <ob-fus-ca-ted>

https://github.com/hirasso/html-obfuscator
2•rasso•1h ago•0 comments

Show HN: Agentic Alternative to Jupyter Notebook

https://www.clusy.io
4•eldar_hsnv•1h ago•0 comments

Show HN: Agent Sessions – local history and a live quota meter for Codex/Claude

https://jazzyalex.github.io/agent-sessions/
2•jazzyalex•1h ago•0 comments

Show HN: Built a Spell Check for Regulatory Compliance in your code

https://www.scrutora.com
3•vimaldwivedi86•1h ago•0 comments

Show HN: SoulOS–State&persona management for agents without giving up your LLM

https://mziqudhd92.github.io/soul-os/
2•ls1911•1h ago•2 comments

Show HN: Follow London Trains in 3D

https://ride.nexttrain.london/
146•mgranados•4d ago•59 comments

Show HN: Agentic FC – a football management SIM played by AI agents over MCP

https://github.com/gaemi/agentic-fc
2•gaemi•3h ago•0 comments

Show HN: Frugon – Find which LLM calls a cheaper model could handle (local, MIT)

https://github.com/Rodiun/frugon
25•jarodrh•2d ago•6 comments

Show HN: I built a budgeting app where the AI does the bookkeeping

https://play.google.com/store/apps/details?id=com.wladradchenko.fehu&hl=en_US
2•wladradchenko•39m ago•0 comments

Show HN: OpenScreenShot: open-source full-page screenshot and annotation tool

https://openscreenshot.app
14•pghqdev•12h ago•3 comments

Show HN: OCR-grab: Flameshot clone that adds OCR

https://github.com/talalalrwas/ocr-grab
3•tgol•4h ago•0 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.