Akash Kava
Akash Kava
Constructing object/array literals eat up significant time, to improve speed, we can lift such literals out side of function, thus by creating a closure, will remove need of initialization. And...
Optimize `(...arguments)`, we can pass reference to existing `Arguments` struct as we no longer use `callee`.
**Describe the bug** Creating HTTP/2 server mentioned in the example works well with Firefox because Firefox still uses HTTP/1.1 to connect to web server. However, chrome has implemented `CONNECT` method...
DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. As per `punnycode` , https://www.npmjs.com/package/punycode , `require("punnycode")` should be replaced with `require("punnycode/")`
Can you please add some documentation about how to maintain consistency in terms of running it from browser? 1. Can multiple `PGLite` easily access single storage (IndexedDB)? 2. Will it...
This is great tool to test cookies, but in some test cases, browsers or application fail to sync cookies if set via AJAX request. So it would be great if...
https://astexplorer.net/#/gist/033016ca9df38fea6ac05b61a474df63/74f7e3fff5a4f3771383394151c4a36454399f92 Is there anyway to retain attribute spacing? Check `a` attribute in `h1`. Text Nodes contain whitespaces and whitespace can retain correctly. I know attribute doesn't have prefix/suffix whitespaces in...
[Positron-JS](https://github.com/Positron-JS/positron-web-view) - An advanced Web View with native JavaScript Context to access .NET APIs from hybrid applications inspired from capacitor/Cordova. The project contains cli to create a MAUI Project and...
This is the code, ```javascript import pg from "pg"; try { const c = new pg.Client({ host: "192.168.0.155", port: 5432, user: "postgres", password: "abcd123", database: "db1234" }); await c.connect(); }...
I am using container as mentioned below, ```yml version: '3.4' name: cloud-server services: clam-av: image: clamav/clamav restart: always container_name: clam-av volumes: - clamdb:/var/lib/clamav - /home/clam-av/:/tmp/ ports: - 3310:3310 environment: -...