Vedant Roy

Results 96 comments of Vedant Roy

While this PR is getting merged -- will my production server be affected? E.g; will it currently crash if a file upload is too large? I'm not in any position...

Great! I guess to give additional context, it's not like I want to destroy the entire migrations folder. There might already be 3 migrations in the migrations folder (that have...

@colinhacks Here's a script I wrote that serves this functionality for now: ```javascript #! /usr/bin/env node const fs = require("fs"); const path = require("path"); const child_process = require("child_process"); const MIGRATION_FOLDER...

I encountered this error when trying to build Browsix. You can solve it by using an older version of node. https://stackoverflow.com/questions/55921442/how-to-fix-referenceerror-primordials-is-not-defined-in-node

I think I'm also running into this error on the file pdf.worker.min.js. Found in a build of this: https://github.com/mozilla/pdf.js/ Not a big issue though, I'll add the file to my...

Also curious as to whether this is possible!

I used the custom FFMPEG installer script, but that doesn't seem to install libav-format. I can install libav-format using Ubuntu's package manager, but I think that installs the unpatched version.

Following up on this, this is a slightly patched version of the tokenizer in this repo (just made one of the methods an instance method instead of a module method):...

Ok, I figured out the issue. When the event-loop is almost blocked because there's an infinite while-loop, pino will not print anything. The problem is -- this is quite bad,...