YCM Jason

Results 53 comments of YCM Jason

> Displaying progress is useful not only for users with slow network - the slow part can also happen on the server side. e.g. when the route is loading some...

Using the expo plugin as [instructed](https://docs.page/invertase/react-native-google-mobile-ads#setting-up-google-admob) in the doc, I also encounter the same error even for 14.0.1. ``` Build file '/home/expo/workingdir/build/node_modules/react-native-google-mobile-ads/android/build.gradle' line: 85 * What went wrong: A problem...

AMAZING SOLUTION! THANK YOU! https://github.com/drizzle-team/drizzle-orm/issues/2853#issuecomment-2668459509 is now resolved and we can use import agian! FWIW, here's a slightly less verbose version of the setup file: ```ts import { PGlite }...

But obviously they depend on `options`, so perhaps `options` should be set from a different level instead of at createHelpers. Perhaps a feasible api would be something like... ```ts const...

@iuioiua Thank you for the response. I believe my earlier comment addresses the concern about consistent configuration. The options object should be a per-app configuration because it determines where the...

As a follow-up, it may be helpful to look at prior art like Firebase Auth SDK. Firebase treats the configuration as global for the app, allowing multiple providers to share...

@iuioiua in case you miss the above.

I am more than happy to pick this up. Before I do so tho, perhaps it's worth exploring how we want the API to look like? Here are a few...

Actually, it might not be possible to support this feature for ambiguous objects. E.g. ```js Object.assign(this, obj1); ``` Since obviously `obj1` can be of any type in JS; hence there...

@bartlomieju Thanks for the prompt reply. I have tried changing the task script to ``` "test:unit": "deno test --some-special-flags \"src/**/*.test.ts\"", ``` Then run `deno task test:unit path/to/test.ts`. All unit tests...