Alexander Kerschhofer

Results 4 issues of Alexander Kerschhofer

This page https://github.com/tonaljs/tonal/tree/main/packages/chord-detect says: With ES6 import: `import { ChordDetect } from "@tonaljs/tonal";` and then use it like `ChordDetect.detect(["D", "F#", "A", "C"]); // => ["D7"]` In practice this gives me...

https://github.com/webrtc/FirebaseRTC/blob/b1d98aa103eb63b6874d52b2023b25fba81cbd50/public/app.js#L33 According to the [docs](https://firebase.google.com/docs/reference/js/firebase.firestore.CollectionReference#doc), the `doc()` method doesn't return a promise. So why the `await` in this line?

https://github.com/shama/letswritecode/blob/3102a79da3b7289dd2a6dd70f57b7dcb50b53d9d/p2p-video-chat-webrtc/index.js#L35 ``` + video.srcObject = stream; - video.src = window.URL.createObjectURL(stream) ``` source: https://www.fxsitecompat.dev/en-CA/docs/2017/url-createobjecturl-stream-has-been-deprecated/

I've noticed you are utilizing named credentials to store to call the OpenAI endpoints. It seems to me like you are doing this to store the OpenAI API key. So...