Michel Boudreau

Results 139 comments of Michel Boudreau

@UtsavChokshiCNU It's important to use the custom clerk provider with the custom clerk instance to inject `_is_native=1` in the query string to do the native flow. It's also required to...

@UtsavChokshiCNU Hey mate, We actually didn't implement this flow for our desktop app yet, we're using the example at the github repo given for the time being as it's working...

@lj3954 when is 4.9.5 going to be release? This is a fairly big bug...

I have the same issue and it's driving me mad. I thought I was going crazy because there's a lot of chatter around this being a solved problem. If it...

Has this ever been fixed? There's a mention that [filter_by with id is fixed in v26 here](https://github.com/typesense/typesense/issues/503), which is suppose to be the mechanism that `_eval` works with, but for...

Yeah, I've just hit this myself which is frustrating as we really wanted to show GPU usage/temp to our users.

@sebhildebrandt After looking into this, I don't think you need powershell at all. You can just use node's `child_process` to run `exec` on any command with pretty good performance. For...

Actually, scratch that, I had assumed it was because you used powershell to call nvidia-smi, but that doesn't seem to be the case. You are using `exec`, but seem to...

@TheRedfoox I ended up calling `nvidia-smi` directly from node, which should be on the PATH for any user with nvidia drivers installed: ``` export const getGPUs = async (): Promise...