Carsten Steckel

Results 15 comments of Carsten Steckel

Yes, the documentation is a good starting point. But **simple** examples for someone who just starts with NFC, ISO14443A, etc. (like me) You would not belief the big smile I...

@joehorsnell would it be clever to add full slicing support (as in python/ruby/...): .. --slice 15:22 # gives rows 15 to 22, if len>22 else len (...) .. --slice :-13...

I would greatly appreciate a solution for the issue. As with my current setup, I cannot use protege. see attache screenshot. The window header is the system font size. and...

I have followed the setup for docker on windows closely and ran into the same issue: ```whisk: ingress: type: NodePort apiHostName: localhost apiHostPort: 31001 useInternally: false nginx: httpsNodePort: 31001 #...

thanks Sladerix, I just wanted someone to fix the actual "setup for docker" instructions and not only for mac, but it confirms the issue on "docker for windows" also. so...

Hi Stefan (@sdirix), thanks for your reply. Like with every newly found open source project I had to figure out how the inner things work and everything is setup. I...

oh, and I have really aweful exceptipons when the parsed string has syntax issues. it is always stack exceptions and not the nice exception "hey at position 3 after the...

thanks igor! it seems i can also improve performance by rewriting a few rules. but memotization already improved significantly.

I rewrote the first few rules to be: ```python def disjunction(): return conjunction, ZeroOrMore( Kwd("OR"), conjunction ) def conjunction(): return inversion, ZeroOrMore( Kwd("AND"), inversion) def inversion(): return Optional(Kwd('NOT')), comparison def...