Carl Olson

Results 14 issues of Carl Olson

Here is a working version of archival with the ability to select files. It is mostly done, I just want to improve the file select styling and review my work....

It would be interesting to see what SSAO could bring to OSRS. I imagine building interiors would look much better. Has anyone tried this? Looking at SSAO implementations it seems...

enhancement

When using `bsconfig.json` to generate `tailwind.css` the first build fails. Builds after the first are fine once `tailwind.css` has been created. ```json { "sources": [ { "dir": "src", "subdirs": true,...

It looks like other ReScript PPX projects (like `graphql-ppx` and `styled-ppx`) allow backticks. ``` Warning number 108 src/Options.res:2:37-42 1 │ @react.component 2 │ let make = () => Uninterpreted delimiters...

[A Virtual File System](https://avf.sourceforge.net/) is a common way to access archives as a filesystem. Currently I don't know of any tool that will find files inside archives inside a mounted...

feature-request

This is hard to explain, so [here](https://github.com/CarlOlson/rescript-shadow-test ) is a reproducible example. The names of workspaces and modules were chosen to somewhat reflect the project I discovered this in. This...

```rescript external toString: [> ] => string = "%identity" #Hello->toString->Js.log ``` [Playground](https://rescript-lang.org/try?version=v11.1.2&code=KYDwLsBOB2CGA2ACMB7AymSBLaBzAXIgNoB8iAuogLxkDOmOu1iARAKRYAmw0YWYATxYAoYQGIAEsHjwUAWhKoM2PAoBStAHSzcwoA) ``` (source_file [0, 0] - [3, 0] (external_declaration [0, 0] - [0, 47] (value_identifier [0, 9] - [0,...

```rescript module type T = { type t } module T = { type t } let make = (): module(T) => module(T) module T2 = unpack(make(): T) ``` [Playground](https://rescript-lang.org/try?version=v11.1.2&code=LYewJgrgNgpgBAFwJ4Ad4BU4F44G8BQciq8C+AvvvqJLHJjgUcmohVbAnMAIYDW8HAAoAlAC5u4aDCHoR2AHyTaMuVRrT6AJmxwIAOxQ8AxnyG8BoiWqA)...

Importing code from another workspace often creates an error: ``` 4 ┆ switch value { 5 ┆ | Some(arr) => 6 ┆ module Array = await Belt.Array 7 ┆ Js.log(arr->Array.keepMap(x...

bug