Jason Walton

Results 37 issues of Jason Walton

If you do this: ```js var logger = bunyan.createLogger({ name: "My Application", streams: [ { stream: process.stdout }, { stream: esStream, type: 'raw' } ], serializers: bunyan.stdSerializers }); ``` Then...

Hey, just wondering if you've though about calling `input.setCustomValidition(error)` to set a custom validation message (around about [here](https://github.com/wsmd/react-use-form-state/blob/c196327450ca101b76e33bc05f7cba0f52d940da/src/useFormState.js#L126))? Is there some reason you're not doing this? Does this have some...

enhancement

According to the [spec](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#parameterExplode), "When `style` is `form`, the default value [for explode] is true. For all other styles, the default value is false." However, according to [this documentation](https://swagger.io/docs/specification/serialization/), in...

clarification
param serialization

![image](https://user-images.githubusercontent.com/1771003/100897307-8f0da000-348d-11eb-92b4-21e4366c9d56.png) According to this the "max" is 37ms, but looking at the graph we can clearly see several spikes up into 50ms range. The demo gif in the README.md has...

Coffeescript: ```coffeescript x = ('presenter' in req.account?.feature) ``` Run this through decaffeinate and you get: ```js const x = (Array.from(req.account != null ? req.account.feature : undefined).includes('presenter')); ``` But, run this...

incorrect-output

`swagger project create test`, using express, installs [email protected]. ```sh $ swagger project create test (Pick "express") $ cd test $ npm install --save [email protected] $ npm start ``` Then send...

I just added e3w to my Kubernetes deploy, and was a little confused that I couldn't see any keys in etcd. Then I tried adding a couple of keys: ![image](https://user-images.githubusercontent.com/1771003/66491101-39538880-ea80-11e9-8a68-36d7eab89334.png)...

The README.md claims this supports nested styles, but I didn't see any examples. I tried: ```go colorful := termenv.String("colorful").Foreground(termenv.ANSIRed) hello := termenv.String("Hello", colorful.String(), "world").Foreground(termenv.ANSIBlue).String() fmt.Println(hello) ``` But this printed something...

If I clone a third party repo, and `cd` into the folder, and then run `npm install`, if there's a volta pin in the third party repo, Volta wil just...

enhancement

On the latest version, when I try to access port 80, I get: ``` Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py", line 101, in get_response request.path_info) File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 252,...