Michael J. Ryan
Michael J. Ryan
For those following, there seems to be a lot of movement on a newer go based sqlcmd, not sure if future containers will be based on this, or not... but...
Could you please include either the command line(s) or relevant portions of the compose file(s) used to run the instances? I haven't run into this issue, but it could help....
Glad to see this... I tend to prefer RS* for JWT.. though I also tend to try to support multiple signers sometimes... so usually have to create my own middleware...
This is now very important in order to publish the most recent changes, this really needs to be refactored more, re-tested and a few other pieces.
Being able to mark files as UTF8 or CP437 and converting for terminals of one type or the other would be nice.
For anyone interested, here's my work in progress boilerplate for the server portion that supports webpack + react + hmr, with koa. (I also have material-ui, but very little done...
Any update on this? the PR above was closed without merge.
Create a timeoutPromise wrapper... ``` function timeoutPromise(timeout, err, promise) { return new Promise(function(resolve,reject) { promise.then(resolve,reject); setTimeout(reject.bind(null,err), timeout); }); } ``` You can then wrap any promise... ``` timeoutPromise(100, new Error('Timed...
@littledan I saw that, but didn't see an indication that it was in release, as a native implementation doesn't mean it's part of the spec.
Just a though... but is there a Dockerfile that can do Linux platform builds on? If that was in place, would be possible to build, then pluck the executable from...