Kenny Williams

Results 34 issues of Kenny Williams

## Problem The majority of the time, I like running my tests with `randomize? true`. Rarely, I will have a case where running tests for a specific test suite or...

improvement

Google is working on a new "virtual-dom" project: [Incremental DOM](https://medium.com/google-developers/introducing-incremental-dom-e98f79ce2c5f). Possibly use [this project](https://github.com/google/incremental-dom) to avoid freactive having to do its own diff.

Right now the `:not-found` option expects a symbol that points to a Ring handler. This won't work if my response depends on some options set when starting the server. I...

If my `:not-found` handler function is written in my `build.boot` file then I will get the below error: ``` java.lang.Thread.run Thread.java: 745 java.util.concurrent.ThreadPoolExecutor$Worker.run ThreadPoolExecutor.java: 617 java.util.concurrent.ThreadPoolExecutor.runWorker ThreadPoolExecutor.java: 1142 java.util.concurrent.FutureTask.run FutureTask.java:...

The `WITH` function is quite useful. I'd be interested in a way to determine if a variable used in a formula is a local variable (i.e., defined using `WITH`) or...

It appears the only way to format a duration is using the `unparse-duration` function which returns a string with an implicit format. ``` (time-fmt/unparse-duration (time/period :hours 1)) => "1 hour"...

**Is your feature request related to a problem? Please describe.** I am working on a GraphQL library that works extensively with directives. I would like to write a wrapper function...

According to the `PutObject` operation documented in the AWS S3 Swagger doc [here](https://github.com/APIs-guru/openapi-directory/blob/3ff52758633210dda9b47fa76321ced9717d6d02/APIs/amazonaws.com/s3/2006-03-01/swagger.yaml#L2254-L2267), the body takes the following format: ```yaml - name: body in: body required: true schema: type: object...

The `Blob` definition is defined [here](https://github.com/APIs-guru/openapi-directory/blob/master/APIs/amazonaws.com/lambda/2015-03-31/swagger.yaml#L2750-L2752). A `Blob` is used in a few locations, one of which is in a Code object [here](https://github.com/APIs-guru/openapi-directory/blob/3ff52758633210dda9b47fa76321ced9717d6d02/APIs/amazonaws.com/lambda/2015-03-31/swagger.yaml#L777-L779). According to the [AWS API Reference doc](https://docs.aws.amazon.com/lambda/latest/dg/API_FunctionCode.html),...

When using the `aggregateWindow` function, it will set all the outputted records `_start` and `_stop` columns to the value set in the `range` function. This behavior differs from that of...