Live data from Hacker News

Show HN: A graph paper generator that renders vector PDFs in the browser

freegraphpaper.net

11–20 of 27 posts

Re: Show HN: A graph paper generator that renders vector PDFs in the browser

#13
post #2

I got tired of graph-paper sites that print at the wrong scale, hide the PDF behind a signup, or slap a watermark on it. So I built one that's free, has no login, and prints true-to-scale. The interesting part for me was the architecture: a single pure function buildPaper(config) emits geometric primitives (lines / circles / text), and everything is derived from it - the on-screen SVG preview, the in-browser PDF, and…

Well done! Nice design, good utility, and you kept it simple. Thanks for the writeup on the technical approach.

Re: Show HN: A graph paper generator that renders vector PDFs in the browser

#14

Any chance that a pentagon pattern could be added?

You can't tile regular pentagons. How will you specify the space be filled?

There's other pentagon tiling though: https://en.wikipedia.org/wiki/Pentagonal_tiling

Re: Show HN: A graph paper generator that renders vector PDFs in the browser

#16
post #2

I got tired of graph-paper sites that print at the wrong scale, hide the PDF behind a signup, or slap a watermark on it. So I built one that's free, has no login, and prints true-to-scale. The interesting part for me was the architecture: a single pure function buildPaper(config) emits geometric primitives (lines / circles / text), and everything is derived from it - the on-screen SVG preview, the in-browser PDF, and…

This is incredible, thanks for building this!

Re: Show HN: A graph paper generator that renders vector PDFs in the browser

#19
post #2

I got tired of graph-paper sites that print at the wrong scale, hide the PDF behind a signup, or slap a watermark on it. So I built one that's free, has no login, and prints true-to-scale. The interesting part for me was the architecture: a single pure function buildPaper(config) emits geometric primitives (lines / circles / text), and everything is derived from it - the on-screen SVG preview, the in-browser PDF, and…

Nice work! I’ve built something… similar: https://github.com/alexadam/printable-mockups & https://www.printablemockups.com It’s free, open source, no backend needed and you can use it in the browser. I plan to add more widgets and support full page templates, like yours.
Post reply on HN