Yousef

Results 8 comments of Yousef

@safwank i need something similar and found that this works well ``` def filter(url, opts) do res = cond do String.starts_with?(url, ".") -> true String.starts_with?(url, "/") -> true Map.get(opts, :referrer_url)...

Just encountered this issue, but had no issues passing in the config map returned from ExAws.Config.new(). Could be useful to just add another f ``` @spec presigned_url(http_method :: atom, bucket...

``` const config = { host: CLIENT_SERVER, user: CLIENT_USERNAME, username: CLIENT_USERNAME, password: CLIENT_PASSWORD, algorithms: { compress: ["none"], cipher: [ 'aes128-ctr', 'aes192-ctr', 'aes256-ctr', 'aes128-gcm', '[email protected]', 'aes256-gcm', '[email protected]', 'aes256-cbc' ] } }...

My bad, yes -- I am using this: https://github.com/jyu213/ssh2-sftp-client/blob/master/src/index.js But the issue doesn't seem to exist here as I was able to validate the appropriate inputs. I will retry with...

```var Client = require('ssh2').Client; var conn = new Client(); conn.on('ready', function() { console.log('Client :: ready'); conn.sftp(function(err, sftp) { if (err) throw err; sftp.readdir('/backups', function(err, list) { if (err) throw err;...

Woah -- that did work! Any thoughts on where the issue might lie while streaming the file?

@tomlarkworthy, I also thought 1 meant worse quality but taking a look at the code you'll see otherwise: https://github.com/eugeneware/gifencoder/blob/master/lib/GIFEncoder.js#L226

@refaelos, socket-io v.9 used a pub/sub redis mechanism to transfer state across processes; however, the way it was originally constructed, would not scale well as every request's handshake information was...