Lorenzo Stanco

Results 59 comments of Lorenzo Stanco
trafficstars

I suggest merging #55, in which @ErikKrause not only fixed this, but did an excellent job in making the library more friendly to users coming from FirePHP without modifying the...

Thank you very much @mooyoul, your code works great! I managed to copy it into my Puppeteer-powered project, and now I can deploy it on Lambda! The only thing is...

@jakub300 I tried both `puppeteer_skip_chromium_download=1` and `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1` in both `.npmrc` and `.serverlessrc`, but `slss` commands still trigger Puppeteer downloading Chrome :man_shrugging:

@mooyoul My `serverless.yml` is identical, but my `webpack.config.js` is quite different: I have `externals: [require("webpack-node-externals")()]` instead, as shown [here](https://github.com/serverless-heaven/serverless-webpack#node-modules--externals). I'm not practical of Webpack, so I'm not sure of what...

@jakub300 Uh, that's right. But now that I think about it, I can just set the env directly in that `deploy` script. Thank you!

@mooyoul Thank, Puppeteer doesn't download Chrome when packaging if, in Webpack config, I use only: externals: [ 'aws-sdk', 'es6-promise', '@serverless-chrome/lambda', 'ws' ] The reason for the additional two modules there...

I agree everything @tim-elmer said. If you @alebulo just need a quick way to search filenames on the fly (a-la CTRL+F), you could try implementing a basic (but I guess...

@yusufcardinal I don't know if it's the only cause, but take a look at [line 60](https://github.com/yusufcardinal/Minixed/commit/4e6479a773d2d1e54b96f73e0952bdded2cceac9#diff-7413d6453f901e939bbd840c8f0d1c7b20c2ca0e7f71741e4e07c6cf036f16c0R60) in your modified script. There's a check (the last condition) that makes sure the...

Also, why not using a symlink instead of modifying the script? ```sh cd /www/html/foo/bar wget https://raw.githubusercontent.com/lorenzos/Minixed/master/index.php ln -s /medias/foo/bar/ ./baz ``` And configure the script like: ```php $browseDirectories = true;...

Unfortunately this is a PHP issue with [`filesize()`](http://php.net/manual/en/function.filesize.php) returning 32-bit integers, and there's no easy workaround. /cc @urack I'll look into @jkuchar's [BigFileTools](https://github.com/jkuchar/BigFileTools), but I don't think I'll add a...