Sergii Kliuchnyk

Results 196 comments of Sergii Kliuchnyk

@ray2501 How about to make your fork available on pgxn and developers will do just `pgxn install monetdb_fdw`?

@saghul `createDTMFSender()` is deprecated. Instead of it `getSenders()` should be used like this ```javascript let sender = pc.getSenders()[0]; sender.dtmf.insertDTMF("1", 500, 50); ``` [getSenders()](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/getSenders), [RTCRtpSender](https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender), [RTCDTMFSender](https://developer.mozilla.org/en-US/docs/Web/API/RTCDTMFSender), [insertDTMF()](https://developer.mozilla.org/en-US/docs/Web/API/RTCDTMFSender/insertDTMF)

@saghul As I understand all of this api are ready on android and ios side, all we need is to proxy them to js side, right? I can try to...

I wrote few scripts, which removes functions declarations from `elk-worker.js` which are not used in my project. I'v got `2.1 MB` of source file (comparing to `4.5 MB` of original...

> @redexp Can you share your scripts? I would like to give that a try. Thank you! https://gist.github.com/redexp/7d4e7b7731c85e4ce8f29c26cb234fad first `npm install -D recast esprima-next` then run `build-dev.js` it will create...

This fix creates this issue #2152 I think `Build.VERSION.SDK_INT >= Build.VERSION_CODES.M` (M = Android 6) should be changed to `Build.VERSION.SDK_INT > Build.VERSION_CODES.R` (R = Android 11)

I can make PR with method ```typescript reloadPhoneAccount(selfManaged: boolean) ``` basically it's just call `telecomManager.unregisterPhoneAccount(account);` and call `this.registerPhoneAccount(context);` again **Why do I need this?** Because of some android OS implementations...

also there well known js framework Astro written on go has their own file format `.astro` which looks almost like I showed in example above and open source parser https://github.com/withastro/compiler

> Are you using `esModuleInterop: true` in tsconfig.json? I'm not, because I'm not using typescript in my project, but my IDE goes down to this error and can't resolve any...