Nikita Karpukhin

Results 27 comments of Nikita Karpukhin

> Does making this change cause the LED and detection tone to not work? Making this change seems to have resolved the problem, but neither the LED or tone are...

I'd like to remind everyone that there are Buildroot pipelines that are dependant on libnfc/libfreefare, but due to Buildroot's nature it downloads the latest _release_. Thankfully, libnfc's 1.8.0 is in...

You can do either `textgen = textgenrnn(allow_growth=True)` (though it doesn't work with tensorflow 2) or ``` import tensorflow as tf physical_devices = tf.config.list_physical_devices('GPU') tf.config.experimental.set_memory_growth(physical_devices[0], enable=True) ```

> @graynk sounds like a good idea! However, doing it the usual way would mean upping the target for the project from 1.6 to 1.8, which I'm not sure is...

> ORMLite at the moment only has ` SqlType.DATE` which maps to `TIMESTAMP` (yeah, not the `DATE` SQL type), but really we should have ones that maps to `DATE` and...

> That works, but if you are using JDBC 4.2 the new, more direct API for it is `resultSet.getObject(columnIndex + 1, LocalDate.class)`. Okay, thanks for that. At first I made...

> I fear that there will be differences between implementations on this, some using timezone and some not, particularly without guidance of a standard in JDBC. Not sure I understand...

> This is important to note. If a database does not support `TIME WITH TIMEZONE`, perhaps we should be throwing an exception. Otherwise we'd just doing the same as `LocalTime`...

I would also like to understand the reasoning behind `parseDefaultString` methods in existing `DateType` and `TimeStampType`. Right now, the tests fail for me on latest H2 1.4.197 (but pass on...

I pushed base changes to my fork, but I haven't yet fixed issues described above, and haven't even begun adding support to java.sql conversions https://github.com/graynk/ormlite-core/tree/jsr310-persister-pr https://github.com/graynk/ormlite-jdbc/tree/jsr310-persister-pr