Euklios

Results 30 comments of Euklios

@jqno Sorry for the late reply. Didn't notice the notification. To be precise: It is more an issue with Hibernate in combination with JPA. Hibernate allows for multiply different DB...

The simplest approach at testing this problem dynamically would be something like this: ```java BookModel instance = new BookModel("isbn", "title"); class DynamicSubClass extends BookModel { private BookModel _delegate; public String...

Yes, the equals verifier behaves precisely as I'd expect it to; this is just intended as an extension. Regarding 1, there are multiple annotations to define lazy loading. Here are...

POC pushed [here](https://github.com/Euklios/Hibernate-Equals-Example) Notes: * Relevant part is in src/test/java * There are two models provided, one using getters and one using property access * I've added some comments explaining...

This is just a wrapper arround the FFmpeg executable. If the LAME library is supported the FFmpeg executable you referenced when calling `new FFmpeg()` (or the one from your path...

`echo $1` is just a "workaround" used in bash, which reads the exit code of the last process and prints it. When spawning processes in another language, you usually don't...

Added a builder to FFprobe. Additionally implemented `-show_packets` and `-show_frames`. There are some weird shenanigans if both `-show_packets` and `-show_frames` are set. Rather than producing two distinct lists, they merge...

@bramp: Either way is fine, but if you are fine with upgrading, I would create a pull request for a newer Java version. It shouldn't entail more than setting a...

That's more or less in line with what I expected. I can relate completely; there are other priorities in life, especially if you don't need the library yourself. But it's...