Franky Diaz-Trepat

Results 16 comments of Franky Diaz-Trepat

> @franky-continu Try "1 */1 * * * *". Zero second randomly seems problematic. > > @Hexagon Thanks for the suggestion. I will give a try. Thank you so much...

> Another thing to try (even though it might be a long shot) is to omit `/1` from minutes. > > `*/1` is pretty much the same expression as `*`...

Sounds fantastic, I really like this project by the way. I hope the bcc comes up quick to be nothing too important.

First of all, thank you so much for the rapid and thorough response. I am using the latest version. and I'm going to try the Open example. I'll send you...

Same error: ```javascript var new_file_path = files.file.path.substr(0, files.file.path.lastIndexOf("/")) + '/' + files.file.name; fs.renameSync(files.file.path, new_file_path); var extract_to_directory = files.file.path.substr(0, files.file.path.lastIndexOf("/")) + '/' + scormContent._id.toString(); //fs.createReadStream(new_file_path).pipe(unzipper.Extract({path: extract_to_directory})).on('error', function(error) { unzipper.Open.file(new_file_path).then(directory => directory.extract({path:...

OMG I was just about to post this: `alias npm='node --max_old_space_size=8000 /usr/bin/npm'` About adding more memory to the process. I'll check this version right now

Hmm so far it hasn't. my package entry and I manually installed it with npm install ....... --save `"unzipper": "github:zjonsson/node-unzipper#filesizeknown",` I'll try the promise OPen approach from before with this...

Nice, looks awesome. In my code with the .Open.file(....etc promise. I get a constant output of this ``` 19:54:02.581Z ERROR continu-api: HiddenException: { Error: EMFILE: too many open files, open...

So here is my code: ```javascript async function extract(file, directory) { const directory = await unzipper.Open.file(file); await directory.extract({path: directory}); return 'done'; } extract(new_file_path, extract_to_directory).then(function () { // Checking old DOS...