Guillem

Results 30 comments of Guillem

@apoberejnyi Thank you for the post! The idea explained is simple enough to test it in one of my projects.

Happening as well with the following code: ```fsharp // Errors.fs module Errors = exception AuthError of message: string * code: string // Main.fs let login = promise { let! optionUser...

Unfortunately with the current rescript pipe formatting this enhancement is impossible: ```res let add = (x, y) => x + y 3 ->add(3) ->add(2) ->add(4) ->Js.log ``` Gets formatted into:...

Yup, sorry for not including that. The dev dependency `bs-platform` in the package json is ^8.4.2, and my global packages installed: ``` $ bsc -version BuckleScript 8.4.2 ( Using OCaml:4.06.1+BS...

@chenglou IMO, seeing the huge popularity of a tool like Prettier, I'd just copy their JSX formatting style. Not because I think it is the best of the world, but...

If helps anyone, I had this problem after cloning the SAFE dojo repo. I just opened vscode in a child folder, I wasn't at the root of the project.

I've personally tested this one with sqlc v1.13.0 and with [type overrides](https://docs.sqlc.dev/en/stable/reference/config.html#per-column-type-overrides) this can be easily worked around. Could that solve it @tv42 ?

Hello there I implemented my own rate limiter with httpTransport and friends, but I wonder if the rate limiting affects the timeout of the request, because I am getting a...

Well, I went with this instead: https://air-datepicker.com/

Related work would be the [ts2fable project](https://github.com/fable-compiler/ts2fable), but I don't know how hard would be to implement that. In my experience with it was not that great, it needed a...