Augustin Šulc

Results 22 comments of Augustin Šulc

I have the same problem - keyboard and mouse buttons work, no mouse move though. There is no movement indication in the controller preview neither. Can I help you to...

I have figured out the problem - I was using `Xbox (beta)` app. Once I've changed to `Xbox`, the mouse cursor got captured and everything worked as expected.

I think I've figured out the problem - the `/xl/worksheets/sheet1.xml` file contains values formatted based on the current culture (and thus might use various characters as the decimal point). Setting...

@shps951023 Thank you for such a quick response! Let me know if I can be of any help and keep up the great work!

You can use `Stream`: ``` var stream = File.OpenWrite(fileName); MiniExcelLibs.MiniExcel.SaveAs(stream, data); ```

...and it's already mentioned in the [readme](https://github.com/shps951023/MiniExcel#q-how-saveaspathvalue-to-replace-exists-file-and-without-throwing-the-file-xlsx-already-exists-error) - check the last Q&A,

Thank you! Basically, it should be enough to figure out if a route is a parent of the current path. E.g., that `/finance` and `/finance/orders` are parents of the current...

Thank you for your quick response. The use-case I mentioned is right when you configure the API key in env file (so that your users do not need to know/bother).

Exactly! I don't think that sharing OpenAI storage would be a problem. It seems to me that only Assistant's configuration and actual prompting are accessible to other users. Files uploaded...

Great! I was also thinking about using the [Metadata](https://platform.openai.com/docs/api-reference/assistants/createAssistant#assistants-createassistant-metadata) property to store something like "owner". But if you prefer using the DB, it makes sense as well. If you can...