webstrand

Results 26 comments of webstrand

I've updated my local version of S.js, and due to changes in the library (I have no idea what `getCandidateNode` is doing), I've had to update my approach: ```ts S.await...

I ran into the same issue, as far as I can tell, the error message is erroneous. The actual exception is: ```txt Traceback (most recent call last): File "./fakexrandr-manage.py", line...

Got fakexrandr working by modifying line 53 to ```bash for directory in ("/usr/lib64/x86_64-linux-gnu/", "/usr/lib64", "/lib64/x86_64-linux-gnu/", "/lib64", "/usr/lib64/i386-linux-gnu/", "/lib64/i386-linux-gnu/", "/usr/lib64"): ``` The issue is, my distro (gentoo) keeps x86_64 libraries in...

His [scriptisto](https://github.com/igor-petruk/scriptisto/tree/v0.6.10) package exhibits this issue. I have replicated it with cargo-ebuild 0.3.1.

I guess I should've included the message I expected: assertion failed: FOO == 7 (0 == 7) The problem with reporting the expansion of FOO is that a macro's expansion...

I couldn't find any way to make `${ ... }` work, i.e. ```prolog natural(A,N) --> digit(D), ${A1 is A * 10 + D}, natural(A1,N). ``` I think it's excluded by...

I've removed `(*)/3`, I'm not sure there's a semantically equivalent DCG rule. Users would be better served to choose between `[]` and `...` depending on the situation, right? Should I...

I see that SWI's `meta_predicate` has `//` as a meta argument specifier. I'm not sure how to use it, though.

I may have misunderstood > use the nonterminal call//1 are you saying that some other DCG compiler may interpret `call` specially? In which case I should wrap the lambdas like...

> Please note that \ renames variables. So what is the purpose of it in this context? I need to get `Xs0` and `Xs` _somehow_ so that I can report...