Anand Chowdhary

Results 218 comments of Anand Chowdhary

You can also checkout Uppload for file handling: https://github.com/elninotech/uppload

@maxheld83, this would be a wonderful addition to your action and will solve many use cases for us! Is it possible to have a quick review here? 😄

Pinging @maxheld83 again 😄

> A cross-platform way to run commands in parrallel. [concurrently](https://www.npm.red/package/concurrently) is the standard in cross-platform parallel scripts running, and supports both npm and spawning, but, as the name suggests, doesn't...

Lots of people are going to come here now that GitHub has opened this as a critical severity: https://github.com/advisories/GHSA-fj58-h2fr-3pp2. What will a PR to fix this look like? Should we...

Yes, if you're using NestJS DTOs, this is sufficient and in most cases you don't need to do much else: ```ts app.useGlobalPipes( // Globally validate DTOs new ValidationPipe({ // Strip...

Seems like all Prisma-supported databases have support for multiple creations in one query, so it won't require any significant refactoring? - MySQL: http://dev.mysql.com/doc/refman/5.5/en/insert.html - SQLite: https://stackoverflow.com/questions/1609637/is-it-possible-to-insert-multiple-rows-at-a-time-in-an-sqlite-database - PostgreSQL: https://www.postgresql.org/docs/8.2/sql-insert.html

@AdamPflug Do you have a rough timeline for this?

I used `pdf2json` to parse the PDF and get its width and height, and then used these values in `pdf2pic`. This helper method returns the width and height from a...

This fixed it for me. Thanks, @abeeralshaer! Perhaps you can make a PR?