Pete Murphy

Results 52 comments of Pete Murphy

This is surprising to me—these are the results from this commit https://github.com/purescript/trypurescript/pull/270/commits/0bdd1fd65505807b0f8fd3dabf5048aac5a1bec2 (which is back to being a GET request, encoding the JSON on the server) ``` ❯ hyperfine --warmup...

> Here's an editor prototype with both gist and url-compressed code saving and sharing. > > https://milesfrain.github.io/gist-prototype/?gist=66a6389000ac663e8ba6d97381bfe4d0 https://github.com/milesfrain/gist-prototype I agree this is a neat approach, is there still interest in...

I started looking into this [here](https://github.com/purescript/trypurescript/pull/270) but backend stuff isn't really my strong suit, and I have no idea if I'm going down the right path. Right now I'm starting...

FWIW it was useful for me as someone new trying to build the project and get editor feedback. For whatever reason Haskell Language Server isn’t working for me on this...

> Are you using a tagged release from `ghcup` by any chance? I use the Haskell extension for VS Code, which tries to manage the GHC and HLS versions via...

Out of curiosity, is building HLS from source typical for contributors, or is there another recommended workflow? I don't do much Haskelling, but the only workflows I'm familiar with are...

> ghcup compile hls -g master --ghc 9.2.3 --overwrite-version 1.7.0.1 Nice 👍 this worked for me after bumping my `cabal` version

Still seeing this issue in Firefox (104.0b10 (64-bit))

I'm no @DrBoolean and I'm still a beginner at using this stuff in JavaScript, but if it's any use, I recently found myself reaching for `Maybe` and `Either` in a...

Ah, I hadn't heard of "naked" objects. So a quick fix would be to convert them over to regular objects with `Object.assign` or spread syntax: ```diff - {L.get(["continents"])(data)} + {L.get(["continents"])({...data})}...