Edgar Espina
Edgar Espina
Project is dead: https://github.com/mfornos/humanize
This is an open discussion of what we want for Jooby 3.x. For now we will start a discussion here and then cleanup ideas/features to a wiki page (or similar)....
I would like to know what companies and applications or who are using Jooby. Thanks all.
Today: - Pipeline.java checks for return types using reflection and automatically setup a specific handler for rxjava, reactive, etc. We want: - Remove reflection usage from core for reactive types...
So: @Nullable byte[] encode(@Nonnull Context ctx, @Nonnull Object value) throws Exception; Must be: @Nullable ByteBuffer encode(@Nonnull Context ctx, @Nonnull Object value) throws Exception; This give us opportunity to reuse a...
Today HTTP session supports basic types (primitives and String mainly). Next release will allow adding arbitrary object to in-memory session and/or encode them for persistent implementation (redis, database, etc...) ```java...
Rocker maven plugin doesn't work with m2e Eclipse plugin. Is there any workaround? Thanks.
Like Kotlin. Is there a guide to follow?
It will be awesome if we could do simple arithmetic expressions. A good example of this is a dynamic thread pool configuration based on the number of available processors: ```...