Marcus Hellberg

Results 39 comments of Marcus Hellberg

It may have worked accidentally. But somehow it did in a video I did https://www.youtube.com/watch?v=qpWrIn5xuAE

Seems like it might be the same as https://github.com/vaadin/flow/issues/19280

If we split up the deployment, could we deploy the endpoints as serverless functions, similar to what Vercel does with Next.js? Would there be any benefits to that?

Besides just cost alone, we should also consider organizational fit. If a company has set up its deployments in a way that they deploy frontends and backends separately, they may...

Fair point. The intent of the project was to show how the different libraries compare, so I haven't focused too much on making it easy to change models, so like...

I would like to be able to import two files: Lumo itself and the utility classes. In some cases, I want to use Tailwind instead of our utility classes, so...

I also ran into this. Here's the model I was using: ```java public class Customer { @NotBlank(message = "Name is mandatory") private String name; @NotBlank(message = "Email is mandatory") @Email...

Hey! Good question. This project initially grew out of a demo I wrote during a live-coding session, which meant I wanted to keep things simple instead of feature complete. There...

I have verified that running the jar built with `mvn package -Pproduction` runs on my computer. Please check that you're using the same version of Java on your CLI and...