evbo

Results 191 comments of evbo

I think longer regexs are preferred, see similar issue here: https://github.com/maciejhirsz/logos/issues/255

@osa1 hmmm... I assumed longer `regex` matches took precedence over `Token`... I wonder as a worked around if (presuming spaces get `Skip`) this would work: ```rust #[regex("a+b")] APlusB, // make...

can anyone share how you currently use `tracing::error!` in an AWS lambda in order for it to log error messages correctly?

thanks, the built-in `invert_y` argument looks promising and it appears to only need a simple fix: line 316 - 317 of pytmx.py: ``` if self.invert_y: o.y -= tileset.tileheight ``` should...

Sorry, forgot to mention I am using the Python framework Kivy. It displays content assuming y=0 is at the bottom of the page (hence why I must change content at...

Sorry, I'm not too familiar with git hub but here is a working example with Kivy and Tiled tmx: ``` from kivy.uix.widget import Widget from kivy.properties import StringProperty from kivy.core.image...

Can this also support being bi-directional? Going from (bucket, key) uri?

Another big Scala3 feature yet to be supported: `Reader` and `Writer` Currently if you try to `Read` or `Write` using case classes, the macro will fail to capture the `js.Object`,...

ouch! Just hit a very hard to catch incompatibility with Scala3: the `children: ReactElement*` Prop does not correctly produce a `Seq[ReactElement]` if you pass a `Seq[ReactElement]` for that argument. What...

> Wondering what needs to be done to get this in I pretty much just threw the code over the wall, missing some unit testing opportunities, code cleanliness here and...