Lach

Results 227 comments of Lach

It appears VIVE PRO 2 uses yet another driver: `driver_vive_lh` Which in turn uses `LibLensDistortion.dll` to configure lenses (GetProjectionRaw/ComputeDistortion/Lens center set via property) So i think valve can't fix this...

lensServer is required for using direct mode, but i am too lazy to write any docs :D Basically, for build you need to have rust toolchain with mingw target installed,...

Try to launch steam from terminal, my driver logs are written here, still possible something is broken on its side, i doubt this is version issue, i think your vive...

> HTC Vive Cosmos Can you dump edid and lsusb output from your vive, and specify which resolutions (modes) is allowed to be chosen in Vive console ui? I think...

There are two jsonnet implementations which implement such feature: Xtrasonnet - fork of sjsonnet, primarily focused to be embedded in Java apps: https://github.com/jam01/xtrasonnet/tree/0.5.4#what-kind-of-additions-to-the-jsonnet-language Jrsonnet - general-purpose jsonnet implementation, has this...

Oh, I haven't noticed this :D No, I have taken an idea from xtrasonnet, because often write such code, and this is fairly annoying. The only thing my implementation has...

For automatic dns with systemd-resolved, this polkit rule needs to be added: ```js polkit.addRule(function(action, subject) { if((action.id == "org.freedesktop.resolve1.set-dns-servers" || action.id == "org.freedesktop.resolve1.set-domains") && subject.user == "netbird") { return polkit.Result.YES;...

https://gcc.gnu.org/git/gitweb.cgi?p=gcc.git;h=f50f2efae9fb0965d8ccdb62cfdb698336d5a933 will require SteamVR to be rebuilt with gcc 14 (As I can see, currently SteamVR is built with gcc 9.3.1, which is 4 years old), which will use `posix_memalign`...

`--multi` produces one file per field, following the default manifestification format (json serialization) In theory, this may be fixed by specifying the inner document format (I.e `jsonnet -m . -S...

This is sugar for object coming right after any other expression, it desugars to a + b Relevant part of the specification: $desugar_{expr}(e \{ objinside \}, b) = desugar_{expr}(e +...