peterdd

Results 15 comments of peterdd

vanilla js approach: ```js document.querySelectorAll('#types\\.comparisons td').forEach(function(el) { if (el.innerText == 'true') { el.style.backgroundColor = "#cfc"; } }); document.querySelectorAll('#types\\.comparisons td').forEach(function(el) { if (el.innerText == 'false') { el.style.backgroundColor = "#ccf"; } });...

![truefalsebg](https://user-images.githubusercontent.com/1839154/131998521-0cc1627c-9c7a-4818-bc34-5c5a25b666aa.png)

Maybe the current dot parsing using StreamTokenizer not sufficient. Maybe use dot parser of https://github.com/LearnLib/automatalib that replaced com.paypal.digraph https://github.com/LearnLib/automatalib/blob/develop/serialization/dot/src/main/javacc/DOT.jj https://github.com/LearnLib/automatalib/commit/230a58fb82983b1eb07271cac07b836adc5c6122

Ich get same error message when trying to build the current master branch with netbeans. There seems to be no net.java.dev:stax-utils:snapshot-20100402 Commenting out the dependency in the CoreLibraryWrapper/pom.xml then passes...

It worked on own laptop with direct maven repo connections and no .m2/settings.xml On company they use a mirror for maven-public configured in .m2/settings.xml I changed a line there from...