Nick Foscarini

Results 27 comments of Nick Foscarini

Oh I missed the "touchscreen" part of the title. We would have to verify other aspects of touchscreen as well, because you often need more touched states to interact with...

When we're coding HTTP requests, it's generally best practice to separate the HTTP configuration from the HTTP request, because you often have Bearer tokens, basepath, etc. that are needed by...

@gogwilt on the subject of loops, I was referring to SideFX's Houdini where they have a `foreach` node. It's been a long time since I used it, but they had...

I got confused by this as well when I got started.

I don't think this is a stable feature, as users would have side effects from the HTML and then ask the core team to fix them. It would be very...

I'd be interested in helping to get this done. Could be a feature where a `project.ts` is written as a sidecar file when the project is saved. Maybe enabled by...

![image (6)](https://github.com/Ironclad/rivet/assets/50146659/dbf8ff80-0753-42a9-8b76-2b82da3e8db8)

Agreed, we should add the X link now, but we'll probably have to remove it in 12 months. Hahaha....

Question: is `wsl.localhost` a mounted volume or a folder name?

@abrenneke fixing this so Mac/Linux/Windows all use forward slashes requires adding something like this: ``` str = path.resolve(str).split(path.sep).join("/"); ``` To the `NodeNativeApi` file where it calls `readdir()`. https://github.com/Ironclad/rivet/blob/7fb414acc2680bc98b00783b653e01254bf08469/packages/node/src/native/NodeNativeApi.ts#L31 Do you...