David
David
## Background While [migrating Javalin to Jetty 11](https://github.com/javalin/javalin/commit/f7240c5a91a378bce8dc99a30b4ee57863e1e7da), we discovered that Micrometer doesn't support Jetty 11. We made a ticket with the Micrometer team: https://github.com/micrometer-metrics/micrometer/issues/3234, but adding support isn't straightforward....
Currently we run both sync and async stuff through the async pipeline. This makes Javalin a bit harder to debug for users (#1640). In the past, we've briefly discussed making...
This is a comment by @unoexperto from an issue (https://github.com/tipsy/javalin/issues/1445#issuecomment-1007619810) > @tipsy Sorry for asking here, David, but I didn't want to create another issue for a question. I'm using...
This is a more common convention, which is also used in your own examples: https://github.com/scribejava/scribejava/blob/master/scribejava-apis/src/test/java/com/github/scribejava/apis/examples/Google20Example.java#L27-L35
Most editors (and browsers) "italicize" the font if there's no italic version, does Lunacy not support this? I'm unable to do anything with CTRL+I, and I can't find a setting...
ruslan suggests to get all user commits from orgs via `listUserOrgs(user).forEach { org -> org.repos.forEach { repo -> repo.statictics } }` this will potentially result in thousands of requests, depending...
I know it's not good form to create thank-you issues, but the traffic here wasn't exactly overwhelming, so I thought it was okay. I just wanted you to know that...
This issue is for disussing both the short term (next release) and long term (2.x release with API changes) to the project.
Allows for writing attribute-names as lambda-params: ``` link().withAttrs(rel-> "stylesheet", href -> "/styles.css"); ``` ``` form().withAttrs(method -> "post", action -> "/form-path").with( input().withAttrs(name -> "email", type -> "email"), input().withAttrs(name -> "password", type...