Chris Veness

Results 66 comments of Chris Veness

It's now over a year since I offered PR #19 – could you merge it please? Thx.

RFC 9111 Section 2 (https://www.rfc-editor.org/rfc/rfc9111.html#section-2) says > The "cache key" is the information a cache uses to choose a response and is composed from, at a minimum, the request method...

https://www.ibm.com/docs/en/cics-ts/6.x?topic=concepts-components-url path = the specific resource in the host

@bartlomieju, the Node.js file watcher for file changes (`node --watch`) clears the scrollback buffer as well as the visible part of the screen. If I have a lot of logged...

@bartlomieju did that explanation make sense? Do you want any further information?

@bartlomieju The Node.js File Watcher apparently uses "\x1Bc" (ESC c – [Reset to Initial State (RIS)](https://vt100.net/docs/vt510-rm/RIS.html)) to clear the screen on file change: - [main/watch_mode.js#L117](https://github.com/nodejs/node/blob/231d5e4437163a2b99e87793d2766bf1ae283f38/lib/internal/main/watch_mode.js#L117) - [main/watch_mode.js#L22](https://github.com/nodejs/node/blob/231d5e4437163a2b99e87793d2766bf1ae283f38/lib/internal/main/watch_mode.js#L22) - [util/colors.js#L35](https://github.com/nodejs/node/blob/231d5e4437163a2b99e87793d2766bf1ae283f38/lib/internal/util/colors.js#L35) I...