EniacMlezi

Results 9 issues of EniacMlezi

I've written a custom driver (https://github.com/EniacMlezi/HandTrackControllerDriver) that works in the SteamVR menu's, but anytime I try to launch a game SteamVR crashes. Windows Event Viewer shows this Application error event...

Implemented a sligthly more dynamic version of the queuethread, also made it singleton to avoid conflicts. This is usefull when the Sensor events will be implemented.

When using the c#11.0 required feature, the generated mappers fail. Editinh Sample.CodeGen for example: ```cs public class Person { public required int ID { get; set; } public string LastName...

open for PR
improvement

I Expected RequireDestinationMemberSource to propagate to dependent child classes. ```cs [AdaptFrom(typeof(A), RequireDestinationMemberSource = true), GenerateMapper] public class ADto { public string NonExistentInSource { get; set; } /* Failure */ public...

When defining an endpoint that has two possible return types with the same status code (both 200 OK), one WITH content and one WITHOUT content: ```cs app.MapGet("/auth/test", Test).WithOpenApi(); internal static...

needs investigation
help-wanted

It seems like store functions get wiped somewhere before the `on:change` handler is reached. Check this [REPL](https://svelte.dev/repl/b3ab9e87a7424eb39147045adf825997?version=4.2.19). Are Stores (and passing functions in general) not supported?

question

In browser environment I can do: ```ts import FHIR from 'fhirclient'; const client = FHIR.client(fhirUrl); ``` To connect to an open server. Now I'm writing a little nodejs tool and...

I would like to see support for configuring [RespectVersionsForSearchIncludes](https://hapifhir.io/hapi-fhir/apidocs/hapi-fhir-jpaserver-model/ca/uhn/fhir/jpa/model/entity/StorageSettings.html#isRespectVersionsForSearchIncludes()) (And maybe some other configuration options, see [Smile CDR](https://smilecdr.com/docs/configuration_categories/fhir_storage_versioned_reference.html)) I feel like it would need to be added here: https://github.com/hapifhir/hapi-fhir-jpaserver-starter/blob/7cd0637c88b0f8d8d8679d0dbf31bfa27e6c7bf2/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java#L154

HAPI Fhir includes support for the `includeHierarchy` parameter when using `$expand` on a ValueSet. This does not seem to work when trying through snowstorm. Is it supposed to be supported?...

enhancement