Akash Kava

Results 44 comments of Akash Kava

Sorry, the error wrongly suggested that something was missing, but after digging around the source of v8, I finally found the bug inside V8, here it is. https://bugs.chromium.org/p/v8/issues/detail?id=8342&q=component%3AInspector&can=2 Node has...

@ericwlange I saw the code has been changed, and I see the code for inspector init but I don't see anyway on how to enable it yet. Or is some...

Chrome 121 onwards sends websocket over http/2, so WebSocket over HTTP2 is now kind of mandatory. @brentmjohnson your method works, however the socket is closed by Chrome browser after few...

@brentmjohnson Please Disregard my comment, the issue is with engine.io not handling connect event, your workaround does work correctly. I am currently using your work around to connect to socket.io...

This is the error log. ``` error: terminating connection due to idle-in-transaction timeout at Parser.parseErrorMessage (/app/node_modules/pg-protocol/src/parser.ts:369:69) at Parser.handlePacket (/app/node_modules/pg-protocol/src/parser.ts:188:21) at Parser.parse (/app/node_modules/pg-protocol/src/parser.ts:103:30) at TLSSocket. (/app/node_modules/pg-protocol/src/index.ts:7:48) at TLSSocket.emit (node:events:514:28) at addChunk...

This is by far the most important feature when we are using some framework, where we want to use class name in an expression such as .. ```typescript ``` We...

@tagliala Is there any reason your team does not want to implement this simple feature? I am pro member since two years and I have sent this request on support...

@nmorsman No this does not fix the issue with AWS Route 53, because AWS does not allow saving multiple values for single ResourceRecordSet in different REST calls. In order to...

Can you not convert simple callback into promise using following? ```c# public class AsyncService { public void LoadAsync(JValue input, JValue then, JValue failed) { Task.Run(async () => { try {...