David C. Norris

Results 16 comments of David C. Norris

I've just found that @dmurdoch's 4/29/2018 workaround did not work for a [package vignette](url https://cran.r-project.org/web/packages/DTAT/vignettes/Designing-33PC.html) that includes an htmlwidget injected via widgetframe::frameWidget(). When I build locally, the widget ends up...

This simple [workaround](https://github.com/petere/homebrew-postgresql/issues/41#issuecomment-442178698) by @jsgillen1 worked nicely, without need for `brew edit`.

In case additional examples are useful ... https://builder.r-hub.io/status/original/precautionary_0.2-2.tar.gz-45f46cdb9ab546d899c536ed1b3d16b7

I see `clpz_t/2` takes an `Expr` argument: ```prolog clpz_t(Expr, T) :- Expr # #B, zo_t(B, T). ``` I find I cannot use a regular predicate in this first position, as...

I saw something similar myself recently, the type of panic message upon `Ctrl-c`: ```prolog %@ ; thread 'main' panicked at src/machine/dispatch.rs:554:33: %@ index out of bounds: the len is 90682...

If you have Conklin & Rather's *Forth Programmer's Handbook* 3ed., §7.5 'Interactive Programming' is extremely interesting vis-à-vis your SLIME concept. (Ch. 7 is about Forth Cross compilers, where a microcontroller...

The conversion seems to work fine on Djot's [playground](https://djot.net/playground/?text=%25%25+erf%28%2BX%2C+-Erf%29%0A%25%0A%25+Erf+is+erf%28X%29+for+%24%60X+%5Cin+%5Cmathbb%7BR%7D%60%2C+where%0A%25%0A%25%0A%25+%24%24%60+%5Ctext%7Berf%7D%28x%29+%3D+%5Cfrac%7B2%7D%7B%5Cpi%7D+%5Cint_0%5Ex+e%5E%7B-t%5E2%7D+%5Cmathrm%7Bd%7D+t.+%60%0A%25%0A%25&sourcepos=false). Might there be an issue with Djot version supplied with `doclog`? --- Ah, or maybe you mean not yet implemented in...

I've tried to use `base_url/1`, but still end up with nav links to `file:///arithmetic.pl`, `file:///assoc.pl`, etc. Here is my `doclog.config.pl` file, e.g. ```prolog project_name("Scryer Prolog"). readme_file("INDEX.dj"). source_folder("/home/david/_build/doclog/scryer-prolog"). source_lib_folder("src/lib"). output_folder("/home/david/_build/doclog/test-output"). websource("https://github.com/mthom/scryer-prolog/tree/master/src/lib")....

Maybe these aspects of the problem are obvious already to you all, but in case it helps ... ```prolog % Repro for failing lambda expressions :- use_module(library(lists)). :- use_module(library(clpz)). :-...

My little laptop has 64GB ram, I think. I know I will soon want to refine the generation of test cases to something less profligate, and no doubt I will...