Janko Marohnić

Results 184 comments of Janko Marohnić
trafficstars

Thanks for reporting. Any idea how to get the AWS SDK to sign the URL with the custom host? I couldn't figure it out, nothing shows up in Google, nor...

How would signing work with direct uploads to a service like S3? There the upload doesn't touch the backend, except for the presign request.

OK, finally got around to taking another look, and everything seems fine. At first I wasn't sure about the signer and dynamic option being differentiated by number of proc arguments,...

@tomekchime I don't remember from the top of my head, I think I just triggered the `input` event manually, possibly by calling `trigger(:input)` on the node.

Your best chance is probably [sequel-devise](https://github.com/ontohub/sequel-devise) gem. However, that's just a hack, the gem just makes Sequel models quack enough like Active Record objects for Devise to work. Devise tried...

In the end I decided for the `TestNearest HEADLESS=false` syntax, without the `-env`, as that was simpler to implement. The environment variables are automatically extracted from the arguments based on...

Thanks @jcupitt for additional info. Since I wasn't able to reproduce the original issue, and since there haven't been other people reporting this issue, I'm closing this.

Please produce a self-contained script that reproduces the problem, from what you posted I'm not able to see what the problem is.

The intention behind not resetting the `uploaded_file` once it's closed was to match the behavior of other IO objects. When working with a `File` object, for example, you cannot do...

Yes, it's intentional that you can call `open`/`close` and `download` multiple times, because there you're more explicit that you're re-opening the file, and "download" implies network requests as well. Here...