Matthieu Wipliez

Results 16 comments of Matthieu Wipliez

I've seen that there are several endpoints to get a particular build: lastBuild, lastStableBuild, lastSuccessfulBuild, lastFailedBuild, lastUnstableBuild, lastUnsuccessfulBuild, lastCompletedBuild. I think it could be interesting to add them all with...

I started looking into it, per https://github.com/mthom/scryer-prolog/issues/401#issuecomment-619933630 I downloaded the `thun.pl` from the description and indeed it does not work :smile: First problem: the file has a Byte Order Mark...

> Sort of, yes. According to the ISO standard, each char must be a "prolog_char", which is the union of the graphic, alphanumeric, solo, layout, and meta char classes. Therefore,...

> Does this mean a Prolog code can contain binary data in comment? What do you mean by "binary data"? UTF-8 specifies an encoding of characters where a character can...

PR on prolog_parser to handle any char in multiline comment, check invalid BOM, and skip valid UTF-8 BOM: https://github.com/mthom/prolog_parser/pull/5

After fixing the imports I had an issue `caught: error(syntax_error(incomplete_reduction),use_module/1:53)` which I tracked down, by commenting `% :- dynamic func/3.` and `% :- dynamic def/2.`, to come from line 564:...

I have started to port `thun.pl`, but it seems to me to be a bigger issue than initially expected. This requires good knowledge of Prolog, which I do not yet...

Progress! I've ended up printing `println!` statement in the source to see if my file was read or not :D It turned out that the file name needed to be...

> @matt2xu: Thank you a lot for working on this, it seems you are very close to being done! I don't think so :) Thank you both for your encouragements...

What is the problem of the current implementation using a TcpStream explicitly?