Doug Patti

Results 9 issues of Doug Patti

We normally indirectly gain access to the writer in two ways: one is through the `when_ready_to_write` callback, and the other through `transfer_to_writer` as an argument. Instead, just give the writer...

In #148 we made sure the close and flush the body so that the receiver wouldn't potentially be left waiting. This changes the order so that the error handler is...

This was integrated into stdlib in 4.03, which is the earliest version we support. Fixes #221.

Recently I updated my local copy of altr and picked up the new defaults for OCaml introduced in #18. I was previously defining my own OCaml settings, and I quickly...

Take this example: ``` js var identity = function(a){ return a; }; var template = "{{#one}}" + "Two: {{#i}}{{two}}{{/i}}" + "{{/one}}"; var context = { one: {}, two: 2, i:...

One extension that I am looking at working on is some sort of support for many-to-many relationships. Typically you would have a table that contains the primary keys of each...

This code: ```ocaml Jsonaf.of_string "[0, 1, 2}" ``` produces a result with error: `"json > ]: satisfy"`, which is cryptic. I would expect something more along the lines of `"expected...

This refactors some of `Validator` to fix an issue with validating a fragment of an extended schema against a json object. The problem is that while navigating through the schema,...

This might be a duplicate of #953, but I'm not sure if this is a different repro, so I thought to open a new issue. In this repro I install...

bug?