Zoggy

Results 22 issues of Zoggy

Is there a reason for throwing away namespace prefixes ? https://github.com/aantron/lambda-soup/blob/master/src/soup.ml#L122-L124

Not everybody uses dune and/or merlin. Anzak should not complain about missing .merlin file if a corresponding `.cmt` file can be found in the same directory of a `.ml` file....

Hello, I'm currently implementing a SOLID server in OCaml (https://github.com/zoggy/ocaml-solid). From https://github.com/solid/solid-spec/blob/master/content-representation.md#metadata , I understand that a client can modify a metadata resource, which is fine. But how are permissions...

Hello, By now, variant constructors with no arguments, for example `Foo` in `type t = Foo` are encoded as ``List [`String "Foo"]`. Would it be possible to encoded these as...

enhancement

Do you plan to handle types generated with Map.Make, Set.Make and so on, for example using something like ``` ocaml module Key = struct type t = int let compare...

enhancement

Hello, I'd like to implement a HTTPS server with webid-based authentication, as described here: https://www.w3.org/2005/Incubator/webid/spec/tls/#the-webid-authentication-protocol In this protocol, when a request is received by the server for a protected resource,...

API
Feature

Hello, It would be great to have an example of a client (not a server) connecting to a server and authenticating with certificates. This is partly related to https://github.com/mirage/ocaml-cohttp/issues/471 ....

From the page http://opam.ocaml.org/, one can access this page listing package update in opam repo: http://opam.ocaml.org/packages/index-date.html . But none of these pages provide a RSS feed for this information. The...

When playing with `.cmt` files for a tool, missing `.cmt` files prevent some analysis. The following `.cmt` files are not installed by ctypes: ``` cstubs_analysis.cmt cstubs_c_language.cmt cstubs_emit_c.cmt cstubs_errors.cmt cstubs_generate_c.cmt cstubs_generate_ml.cmt...

I have to bind a printf-like function, i.e. a function taking a format string and a list of additional parameters depending on the format string. Is there a way to...

question