Rowan

Results 11 comments of Rowan

@simkea that's exactly how I dealt with it too. Thank you for adding it!

He hasn't maintained this repo since 2022, it's better to fork it.

I've created a pull request which add's the option to configure the score. https://github.com/albertcht/invisible-recaptcha/pull/165

> @mblandfo A fix you could apply to get your tests working again is to mock out the library. In Jest I will do this: > > ```ts > jest.mock('vuex-composition-helpers',...

> Hi, Not entirely related to container images containing the models, but if it can help anyone: > > The way I setup LibreTranslate is with 2 volumes, one for...

I've managed to setup this docker compose, not ideal but it does the job without the need of building the image yourself. Change `load_only_lang_codes` within the entrypoint to add languages...

this is because the package makes use of Node dependencies that aren't available within Vite or the browser. What you can do is pull the package locally and replace them...

I have the same issue with a dedicated server and locally hosted

man i miss this :( i hope its added soon

Consuming an API internally is already possible, see the following examples for a migration: GET: $request = Request::create('/api/users/1', 'GET'); $response = Route::dispatch($request); POST: $request = Request::create('/api/users/1', 'POST', Input::get()); $response =...