HackerTrans
TopNewTrendsCommentsPastAskShowJobs

wooby

no profile record

Submissions

Programmable Phones

tailrecursion.com
3 points·by wooby·2 เดือนที่ผ่านมา·0 comments

GridCalc: An RPN Spreadsheet for iOS

tailrecursion.com
4 points·by wooby·5 เดือนที่ผ่านมา·3 comments

GridCalc: An RPN Spreadsheet for iOS

tailrecursion.com
1 points·by wooby·5 เดือนที่ผ่านมา·1 comments

Show HN: GridCalc, an RPN Spreadsheet for iOS

2 points·by wooby·5 เดือนที่ผ่านมา·0 comments

ActorAgents

tailrecursion.com
1 points·by wooby·6 เดือนที่ผ่านมา·0 comments

Destination Driven Compilation

tailrecursion.com
2 points·by wooby·6 เดือนที่ผ่านมา·0 comments

comments

wooby
·5 เดือนที่ผ่านมา·discuss
Thank you! I spent a lot of time eliminating launch-time work. Most state is precomputed or lazily initialized after first render. I wanted it to feel like a calculator, not an app.
wooby
·5 เดือนที่ผ่านมา·discuss
I built GridCalc because spreadsheets on phones feel fundamentally wrong.

On desktop, spreadsheets work because you can see formulas, references, and structure all at once. On mobile, that collapses. You’re constantly panning, zooming, tapping small cells, and losing context.

RPN (Reverse Polish Notation) removes parentheses and operator precedence by using a stack. Instead of writing = (a + b) * c, you enter a b + c *. The order of operations is explicit and linear.

GridCalc combines those ideas: a visible RPN stack with a reference grid.

It’s built for quick, ad-hoc modeling on a phone: loan calculations, position sizing, cash flow scenarios, engineering back-of-napkin math.

It’s not trying to replace Excel. It’s trying to make mobile calculation feel native instead of cramped.

Happy to answer questions about design decisions or implementation.
wooby
·5 เดือนที่ผ่านมา·discuss
I built GridCalc because spreadsheets on phones feel fundamentally wrong.

On desktop, spreadsheets work because you can see formulas, references, and structure all at once. On mobile, that collapses. You’re constantly panning, zooming, tapping small cells, and losing context.

RPN (Reverse Polish Notation) removes parentheses and operator precedence by using a stack. Instead of writing = (a + b) * c, you enter a b + c *. The order of operations is explicit and linear.

GridCalc combines those ideas: a visible RPN stack with a reference grid.

It’s built for quick, ad-hoc modeling on a phone: loan calculations, position sizing, cash flow scenarios, engineering back-of-napkin math.

It’s not trying to replace Excel. It’s trying to make mobile calculation feel native instead of cramped.

Happy to answer questions about design decisions or implementation.