Alex Morega

Results 62 comments of Alex Morega

@BenAkko Looks like I've missed a line. The example `Dockerfile` configures the official nodesource package repositories: https://github.com/timonweb/django-tailwind/blob/37b81f631edddac04844413bb5635a1c73e5af30/example/Dockerfile#L7-L8 Then it installs the `nodejs` package from the nodesource repo, which comes with...

pytest-django depends on Django `3.2.14` or newer: https://github.com/timonweb/django-tailwind/blob/37b81f631edddac04844413bb5635a1c73e5af30/pyproject.toml#L29 If you had an older version of Django 3.2, then Pip would have to upgrade it, and probably just pick the most...

> Does this basically mean that Tailwind is parsing the template before it's been rendered, as it ends up seeing the template variable syntax, ie `{{product.color}}` and ignores it since...

> I see no object while the tests are running, so it seems to me like transactions aren't be committed, but I can't figure out how to change that. That's...

Hi all, I'd like to contribute code to PyWPS. I confirm that my contributions to PyWPS will be compatible with the PyWPS license guidelines at the time of contribution. Alex...

Fixed with https://github.com/neovide/winit/pull/8 and https://github.com/neovide/neovide/commit/b674fc4e9b97b657e5ab425d890675a36af7ae8b; thanks @MultisampledNight! I've built Neovide from the latest `main` and it works like a charm.

To me, `impl FromX for Y` means "parse X and give me Y", and `impl ToX for Y` means "serialize Y as X", so `FromWkt` and `ToWkt` make sense.

> in Rust you cannot implement traits on a struct outside the crate it is defined You can also implement them in the crate where the _trait_ is defined. So...

I've started to prototype the conversion in `rust-gdal`: - [converting Rust struct to GDAL](https://github.com/georust/rust-gdal/blob/master/src/vector/geometry.rs#L90-L101) using a `ToGdal` trait - [converting back to native](https://github.com/georust/rust-gdal/blob/master/src/vector/geometry.rs#L70-L79) - a method on the GDAL geometry;...

Yup, I think we can use `to_wkt` and `to_geo`, it makes sense.