James Every

Results 16 comments of James Every

Also - the gratipay link needs updating/removing - see [their blog](https://gratipay.news/vive-la-liberapay-14057a25eacb)

That validate function is not compatible with other validators - it gives differing results from libxml2 and xerces for example. I can also make it go into infinite loop with...

I have it - I am passing the POST request into a function, but returning a hard-coded string ```elixir defp handle_body(conn, body) do case parse(body) do {:ok, tree} -> Conn.assign(conn,...

@tmbb thanks! I will fix this

@yukster are you running PROD in a container? I have seen the same behaviour in a Java app where it generated identical sequence of values due to the container not...

I am willing to look at this, would be useful in removing the override needed in #1023 ?

@jfcalvo I have run many hours of soak tests on Ubuntu server, creating hundreds of thousands of temporary files and directories, and all the tmp files were deleted without a...

I have tested this with `triq` 1.2.0 and 1.3.0 and now it seems to work. The original: ```elixir property :stj_such_that_constraints do for_all {s, t, j} in such_that({s_, t_, j_} in...

Testing from `iex -S mix`: ```elixir import :triq_dom :triq_dom.suchthat([{int(), int(), int()}], fn [{a,b,c}] -> (a < b) and (b < c) end) |> sample [ [{6, 10, 12}], [{0, 3,...

You can use the `bind` function to modify generated values: ```elixir defmodule NotInTest do use ExUnit.Case use ExCheck def gen_x_yys do [:triq_dom.int(), list(:triq_dom.int())] |> bind(fn [x, ys] -> {x, Enum.filter(ys,...