Hacker News new | ask | show | jobs
by e15ctr0n 3014 days ago
You wrote elsewhere that your output HTML is highly optimized. I viewed the source of the page and I can see that it contains the CSS inside <style> tags and images embedded as base64 encoded text - what software do you use to generate this output?
1 comments

The python scraper base64 encodes all the images, so that data is prepared for the web server. The python library being used is PIL. The CSS is hand-written in a Go template. The goal was to have all the rendering done in a single request, so I choose to embed the CSS and relax the CSP on styles.
Thank you for sharing. This is seriously cool stuff. Please write all this up in a blog post and do a Show HN. :-)