Jonathan Poltak Samosir
Jonathan Poltak Samosir
I had this problem too, but managed to solve it after finding this post from the forums: https://forums.fast.ai/t/duckduckgo-search-not-working/105738/18 It replaces the `duckduckgo_search` package usage with the function `search_images_ddg` from `fastbook`...
@deedy5 the update flag's in the original command (`pip install -Uqq fastai duckduckgo_search`), but it didn't work for us
Alright, that solution does work for me on Kaggle too :)
I would love to hear an update on this too. As the deadline for Manifest V3 comes closer for Chrome extensions (only a few more months!), existing extensions that relied...
I managed to (mostly) fix this for my MV3 Chrome extension use-case by using `patch-package` to set all `userVisibleOnly` flags to `false` in FB messaging. Hacky, but it works until...
Good to hear @maneesht For anyone stumbling onto this issue with the same problem: We ended up using the `xhr-shim` package on NPM to polyfill `global['XHMLHttpRequest']`, after which `firebase/storage` works...
Yes, via the `uploadBytes` and `uploadString` methods
No it's currently not part of our use-case. Many of these uploads can happen as part of longer running "sync" function, where we currently only count each as pending or...
I see. As I didn't need to use this feature, I didn't realize it was a limitation of the `fetch` API until now. A bit of a reading around tells...
@MishaMgla you should only need something like this in your entry point file's top-level scope: ```js import XMLHttpRequest from 'xhr-shim' global['XMLHttpRequest'] = XMLHttpRequest ``` I'm on 0.1.2 of the package