Mark Paluch
Mark Paluch
lettuce has a built-in auto-reconnect mechanism. Is this working for you?
Hi @flozano take a look at https://github.com/mp911de/lettuce#streaming-api. I've added an example for a Streaming API. Let me know what you think.
Hi @wg, I was looking for a good redis client. Since yours was the best option among the others I added my missing features at https://github.com/mp911de/lettuce (Connection Pooling, a working...
Spotify exposes the URL via AppleScript so it's possible to obtain it and add it to the mix. However, I'd argue to add the URL only as additional variable and...
Seems this is related to the in-Java execution using the `ScriptEngine`. Should be fixed with #5 allowing users to choose the preferred AppleScript execution method.
This can be only an optional feature. If the track is available within the playlist, it should not be a big deal. Streaming tracks (e. g. you're streaming from a...
Thanks for raising this issue. Not entirely sure we're talking about the same here. Entities (business objects) like [`Item`](https://github.com/mp911de/CleanArchitecture/blob/master/application-model/src/main/java/biz/paluch/clean/architecture/applicationmodel/Item.java) are decoupled from JPA entities (such as [`ItemEntity`](https://github.com/mp911de/CleanArchitecture/blob/master/external/jpa-repository/src/main/java/biz/paluch/clean/architecture/external/jpa/entity/ItemEntity.java)). There's a similarity...
In general, there a few terms to describe the same thing and overlapping terms. Talking about an entity without further context lets one think about JPA entities. Entities within the...
> `applicationmodel` -> `entity` Makes sense. > `entity` -> `jpaentity`` Moving all classes and interfaces to their parent package (`.jpa`) might be even the better way to go.
> regular java users do not feel I think this is the underlying assumption in the whole discussion. Regular translates to imperative programming. > If the method looks like an...