Matthew Lieder

Results 46 comments of Matthew Lieder

An alternative implementation I think might work as well, though wouldn't be as automatic, is adding settings for every supported event code, with VideoMotion being the only one enabled by...

Definitely understand! I just changed `codes` to `[SmartMotionHuman%2CSmartMotionVehicle]` and that's been working great for me, so a checkbox route would be just fine for my scenario. Even simpler maybe, a...

Here's an alternative solution I discovered thanks to a semi-related SO post by @davidbaxterbrowne: ```c# var records = await _context.Items .AsNoTracking() .FromSql( "SELECT * FROM dbo.Items WHERE Id IN (SELECT...

`Microsoft.Extensions.Http.Polly` actually uses this package: https://github.com/dotnet/extensions/blob/v3.1.9/src/HttpClientFactory/Polly/src/DependencyInjection/PollyHttpClientBuilderExtensions.cs#L229. It's basically another layer of convenience built around this, allowing it to more easily be used with IHttpClientFactory.

@jagdishuc, see the bottom of issue #10 for how to access the activity and actionbar :)

Looking forward to this! Still being worked on?

Thanks for the quick reply! The only time it works correctly, besides when running a single test at a time of course, is when I group them actually -- it...

`npx aem-packager` isn't ideal since it still prompts to install. We ended up working around it by making aem-packager an optional dependency so it silently fails to install and doesn't...

@davidkarlsen would you be able to take a look at this PR too? It fixes a regression in v1.6 that's been preventing a lot of us from upgrading from v1.5.

Here's a workaround I found to get by until this is fixed -- add it to vite.config.ts / vitest.config.ts: ```typescript resolve: { alias: { '@dsb-norge/vue-keycloak-js': '@dsb-norge/vue-keycloak-js/dist/dsb-vue-keycloak.es.js', }, }, ```