Tom Howard

Results 19 comments of Tom Howard
trafficstars

Instead of `"replacementOperationId" : "getFoo2"`, I would prefer ``` deprecatedBy: - $ref: '#/paths/~1foo2/get' ``` or something like that. Using an array supports situations where one endpoint is split into two....

Thanks @wraithgar . Based on https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.2.3 , it looks like `age` is a special case. i.e. it's neither a hop-by-hop header or an end-to-end header; I'd call it a cache-to-end...

Thanks @joukewitteveen, is this field generated by Apache Ant, or is this a custom field?

Even though it’s an optional field, any tools that validate junit reports with the current schema will barf on that field. What do you think if we created an “extended”...

One of the problems with XML is that if your code is using the old schema and someone sends you a report containing the new field from the new schema...

Same question here. I've followed the instructions, but nothing is showing up in the toolbar.

Woohoo, I got it working. I had added a `circle.yml` in the root (even though circle now uses `.circleci/config.yml`) but it looks like I needed to restart Visual Code for...

If you don't mind using `Husky`, then there's a component for it over at https://github.com/mountain-pass/cool-bits-for-projen/blob/main/src/components/husky.ts Disclaimer: I'm the author of that component

I tried the mount solution on MacOS, and while this worked for the `date` command on the shell, in Node.js `Intl.DateTimeFormat().resolvedOptions().timeZone` would still equal "UTC". But, if I add the...

Here's the workaround I'm using. In `devcontainer.json` add a `TZ` build arg that uses the local `TZ` and if not set a default. e.g. ```json "build": { "dockerfile": "Dockerfile", "args":...