HackerTrans
热门最新趋势评论往期问答秀出招聘

jedreckoning

no profile record

提交

Fin123

github.com
2 分·作者 jedreckoning·4个月前·1 评论

[untitled]

1 分·作者 jedreckoning·4个月前·0 评论

评论

jedreckoning
·4个月前·讨论
a different take, of interest
jedreckoning
·4个月前·讨论
fighting excel in headless runs using COM. fighting AG grid building excel apps, blowing out tons of js trying to match excel dashboards. drift between dashboard and app, endless. users accidentally over writing excel models. no version control.

decided to just re-write excel. ended up being a little bit of github for excel, faster excel using Polars lazyframe, AG grid but embedded spreadsheet (so it's the same thing the user builds), and native versioning.

ai is integrated to write plugin code, not be "copilot". code is also versioned.

just a bunch of stuff i run into coding on trading desks, tried to solve it. open source.

https://github.com/reckoning-machines/fin123_public?tab=read...
jedreckoning
·4个月前·讨论
Hi HN — I built fin123 after repeatedly seeing trading desks rewrite spreadsheet logic inside application code.

Typical workflow today:

Analyst builds Excel model Developer rewrites formulas in Python / JS Application table

That rewrite step is painful and error-prone and endless.

fin123 takes a different approach: the worksheet itself is the artifact:

Worksheet spec... Compiled worksheet (deterministic artifact)... Application embeds the viewer

Design goals:

- deterministic builds - offline computation - finance-safe joins and lookups - Polars-backed table evaluation - explicit lifecycle: commit, build, verify, release

The core engine is open source (Apache-2.0) and runs fully locally.

Happy to answer questions.
jedreckoning
·4个月前·讨论
cool idea. good idea doing a demo as well.