Stachu Korick

Results 116 issues of Stachu Korick

I've successfully used this tool for [Dark](https://github.com/darklang/dark/blob/main/fsharp-backend/src/Wasm/Wasm.fsproj), yielding a single `.wasm` file - awesome! Currently, `dotnet-wasi-sdk` doesn't seem to respect the `RunAOTCompilation`. Is there a way to adjust the project...

As of #2545 and #4182, we have _hidden_ support for Tuples - we don't allow users to create tuples, leaving the feature "turned off" via [this switch](https://github.com/darklang/dark/blob/a47dbb37ff460275e5c64911d0e02d58bfc8e6e5/client/src/fluid/Fluid.res#L34) Here's work to...

The results are currently aren't ideal, but it's better than nothing. needs tests

given the code ```fsharp ("hello",12345) ``` if I select between the two |s: ```fsharp ("he|llo",12|345) ``` Upon hitting 'delete' I expect the remaining state to be `"he|"` The tuple will...

Given the tuple, `("aaa|aa", "c|cccc", "eeeee")` highlighting between the `|`s and cutting should leave `("aaa", "eeeee")` but leaves `("aaaa", "eeeee")`. There's some off-by-one error here. Once these are done, 2...

![image](https://user-images.githubusercontent.com/906686/184656847-ef5c7e0c-4b1d-4962-830d-eaceb6b4c584.png) I'm not sure the particular circumstances that cause this, but this can lead to a lot of confusion. I plan to be in Fluid code this week, so plant...

component:editor

https://github.com/darklang/dark/issues/4374#issuecomment-1213164413 This functionality could be written in Dark, once traces are exposed. There are subtleties here worth discussing before starting - for example, what should happen when a trace included...

- create an HTTP handler with route `/route` - go to "open in new tab" The browser should direct to the equivalent BWD URL with the `/route` added, but it...

Instead, these would just be encoded as `RT.Response`s. Some brief context/discussion around this [here](https://github.com/darklang/dark/pull/4353#discussion_r942777953).

When working on Dark features, namely when adjusting how Fluid responds to my keyboard input, I keep reaching for the in-Editor Dark debugging experience currently only exposed to 'admins' (right...