Nicholas Pilon

Results 12 comments of Nicholas Pilon

I'm not convinced that generating complicated xpath like this is actually a win. It definitely improves performance, but I can barely read it.

Perhaps starting with `'//button[normalize-space(text())="{value}"]'.format(value=value)` and then using `+= '|stuff'` to expand it? I think in this case I'd find that more readable than a generator expression and join.

See SHA: 42ebae34486eb04eb30494d41b9ecc2cfcaeb7a7 - I got fed up with not having JQuery Selectors available when writing tests using CSS selector steps, so I made a couple of utility functions to...

Yeah, my jQuery cleverness wasn't working with `file:///` URLs. Should be better now, though I think one of your tests might be failing?

I'd also be very interested in seeing this available in a mainline release.

I've got standard and MotionPlus WiiMotes. Is there some kind of standard script I should use for testing? Or just go through and log the various inputs and make sure...

> Hi @npilon > > are you able to use the new stream generator: https://docs.ray.io/en/latest/ray-core/ray-generator.html Streaming generators do not meet important parts of my use case: they do not have...

Per the recently released [Ray on AnyScale support lifecycle](https://docs.anyscale.com/1.0.0/reference/base-images/support-lifecycle/) announcement: > we are investing in making APIs more stable while investigating potential Long-Term Support (LTS) versions. This would seem to...

> Please review it, and try the branch out in practice in your projects! Oh I see, the root logger ignoring is very clever. I believe the change that necessitated...

I think that properly fixing this requires making some headway on the PEP 420 implicit namespace packages issue; I've started to make some headway on that here: https://github.com/npilon/buildout/tree/setuptools-70-prep But: -...