Yawar Amin

Results 110 comments of Yawar Amin

Tried `Lwt.nchoose`, unfortunately it turned out not to work–the promise pulling a message from the incoming stream never resolved, and the server just hung. I'll keep thinking about this.

Looks like your local BuckleScript version is not the same as @aweary 's. Try `bsb -clean-world -make-world`.

Interesting question, I think in my above example it is intrinsically 'updating' the resource (i.e. saving to the path) but the update is not reflected in the type. The `'b`...

Exactly. Sure, I'll take a crack at it!

I have to admit, I don't quite understand why we need a mutex to protect the update of a purely functional immutable value like say a `Map.S.t` or an `int`....

Sure. Let's say you have a complex data `type cache = string Map.Make(String).t` (for the sake of argument). So wouldn't you use `cache ref Mutex.t` to synchronize it safely across...

Wouldn't this be a duplication of mutability if we are already dealing with a mutable data structure e.g. let's say now `type cache = (string, string) Hashtbl.t`. Then should we...

I feel like I should point out here that the point of the stale bot is not to care about whether or not something is fixed, but to make a...

@Risto-Stevcev if you are planning to use `instanceof`, note that it's tricky because different windows have different prototype chains and `instanceof` doesn't work across windows. This will need to be...

@rickyvetter thanks for the review! To your question about how to integrate with Docusaurus sites, that may be a bit tricky. I'm not an expert on Docusaurus but when I...