acdupont

Results 7 comments of acdupont

Nice, I didn't know about the `samples_per_pass` setting. I successfully rendered on the GPU with the following settings: 256x256 resolution 256 samples per pixel 16 samples_per_pass But this is low...

> The goal of the whitespace formatter is to remove superfluous whitespace Is it not arguable that there are reasons to consider indents on empty lines as non superfluous? If...

> This seems unfortunate: > > ``` > julia> ZonedDateTime(DateTime(2014,1,1), TimeZone("Europe/Warsaw")) > 2014-01-01T00:00:00+01:00 > > julia> ZonedDateTime("2014-01-01T00:00:00+01:00") > ERROR: ArgumentError: Unable to parse date time. Expected directive Delim(.) at char...

> It's definite possible to get it to parse the output. > > Unfortunately the output only shows the UTC offset for that specific timestamp which means that parsing it...

Also note that while this `2014-01-01T00:00:00+01:00` fails, this `2014-01-01T00:00:00.000+01:00` can be parsed (added .000 milliseconds).

`test/Project.toml` helps with startup time of the main project because test specific dependencies don't have to be in the main `Project.toml`. I hope that `test/Project.toml` is continued to be supported.

> @acdupont That's not the case. Test dependencies in `Project.toml` listed in the `[extras]` section do not get installed or precompiled during `Pkg.add` and obviously not loaded. What do you...