Thomas ten Cate

Results 43 issues of Thomas ten Cate

# Bug Report ## Problem ### What is expected to happen? If we don't specify `"storePassword"` or `"password"` in `build.json`, then `cordova build android --release` will prompt for the password....

bug

- [x] I agree to follow the project's [code of conduct](https://github.com/georust/gdal/blob/master/CODE_OF_CONDUCT.md). - [x] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users. ---

This looks dodgy: https://github.com/georust/gdal/blob/0747fa6d05f993a878e792ba98770027fb99cf1d/gdal-sys/build.rs#L131-L136 I suppose the panic text should say windows-msvc instead of windows-gnu, but for all I know it might be the other way around, which would mean...

Previously discussed on #250. The question was how extensible it should be, which I've briefly looked into. 1. It looks like the last addition happened [six years ago](https://github.com/OSGeo/gdal/blame/efee158e3eb4676f8d0cc09c12514d13b967dd87/gdal/ogr/ogr_core.h#L345-L445) so it's...

It wraps `OGR_L_SpatialRef`, whose [documentation](https://gdal.org/doxygen/classOGRLayer.html#a75c06b4993f8eb76b569f37365cd19ab) says: > **Returns** > spatial reference, or NULL if there isn't one. So NULL is not indicative of an error here. (Note that layers without...

Using avro-rs 0.11.0 because 0.12.0 [won't compile for me](https://github.com/flavray/avro-rs/issues/166). ``` use avro_rs::{Schema, Writer}; use serde::Serialize; #[derive(Serialize)] struct Foo { date: Option, } fn main() { let schema = Schema::parse_str( r#"{...

Related to #231, but I think it's complementary. Right now, the generated [`Unit` trait](https://docs.rs/uom/0.33.0/uom/si/trait.Unit.html) makes it difficult to write methods that work generically over different types of `Unit`s. For example:...

The [dimensioned](https://docs.rs/dimensioned/latest/dimensioned/index.html) crate allows us to multiply raw float values with a unit to produce a quantity: ``` let length: Meter = 3.0 * M; ``` In uom, this would...

``` switch 1 {} * switch 2 {} ^ Unexpected '*' (line 1, position 13) ``` It works when I parenthesize the first expression: ``` (switch 1 {}) * switch...

enhancement

From https://dev.socrata.com/docs/datatypes/checkbox.html: ![2022-10-13T14:35:09_541x117](https://user-images.githubusercontent.com/90930/195597457-26c49610-35f3-4195-9738-24768baf0728.png) I don't think this needs further explanation :)