Duncan Beaton
Duncan Beaton
All of the images are pulled from [SubtlePatterns](https://github.com/subtlepatterns/SubtlePatterns) repo into [here](https://github.com/dunckr/sketch-subtlepatterns/tree/master/SubtlePatterns). A simplistic way would be to `Export` or `Layer -> Flatten Selection To Bitmap`. This wouldn't match up correctly...
Nice @edge0703 your book looks cool! Yes it's working on 40.
This happened to me. You need to handle `SIGTERM` and close your server so the port is released e.g.: ``` process.on('SIGTERM', async () => { await server.close(); }); await server.listen()...
I had a similar issue (working locally but not on prod/heroku). wkhtmltoimage-binary didn't seem to like requesting urls that were https. I fetched content then passed imgkit the html and...
Need to fix forked package for Node [`v0.10`](https://travis-ci.org/dunckr/retext-cliches/jobs/112382655) ``` npm ERR! notarget No compatible version found: no-cliches@'dunckr/no-cliches#db/export-list' npm ERR! notarget Valid install targets: npm ERR! notarget ["0.0.1","0.0.2","0.0.3","0.0.4","0.0.5","0.1.0"] ```
The problem seems to be related to the Node.js version — `v20.16.0` didn't work for me. Switched to `v14.18.0` and it worked. @jisuo