Anton Bachin

Results 662 comments of Anton Bachin

I think I can write a minimalistic example based on this.

Railway does seem to lack a free plan. The issue here is not money (Dream already pays much more to host dream.as). I don't think I can justify the time...

We'd probably wantt just the simplest "Hello, world!" type of example, like the [Heroku one](https://github.com/aantron/dream/blob/087b5ff1eac79f103fb4ab389bc769e983f81301/example/z-heroku/app.ml): ```ocaml let () = Dream.run ~interface:"0.0.0.0" ~port:80 @@ Dream.logger @@ Dream.router [ Dream.get "/" (fun...

Thank you! @paurkedal Would you be able to comment on this issue? Do we need to document this, or is there a way to address it technically?

@paurkedal I'd like to close this issue here in this repo, as it seems not to be caused by Dream, though it's good that it started here because Dream's users...

cc @toots, @anmonteiro, @mmottl about the linking options. Do you know what is causing this ordering issue on macOS?

I minimized this example (please do so! :)) to confirm that this is indeed an Lwt issue: ```ocaml type _ Effect.t += E : unit Effect.t let () = Effect.Deep.try_with...

For the optional argument in `val timestamp`, it may be clearer to separate this into a `timestamp` function and a `now` function, or or simply point users to where they...

Thanks! An HTTP date-time parser has to parse three formats (as also per the link you posted, thanks!). I looked through opam packages for existing such parsers and found [HTTP...