danelowe
danelowe
I ended up making a script to sort out the submodule init. If I get bored in the weekend, I might learn how to create a full composer plugin. ```...
Hmmm. I wish I did have an unreasonable amount of time available to work on it. I was hoping it would be a matter of wiring up the right parts...
This is very helpful information thanks. In my case, I don't feel I need 100% reactive, but being able to parallelize IO can be extremely powerful in an eCommerce domain...
Thanks. The IDs in the example are due to using hibernate search for indexing. The parallel queries would be e.g retrieving the category tree in one query, product data in...
If I change `compileOnly 'org.mapstruct:mapstruct-processor:1.4.0.Beta3'` to `annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.Beta3'`, it works as expected. Unfortunately, Kapt seems to break Quarkus CDI entirely, and I'm intending to annotate Kotlin classes.
I'm able to set the max header size with the below (Quarkus/Kotlin). `maxInboundMetadataSize` roughly controls max header size. ```kotlin /* * Micrometer customisation * Look at [io.quarkus.micrometer.runtime.MicrometerRecorder], where beanManager is...
I was uncomfortable with starting a Vue 3 project until I knew this could be done, so I quickly knocked up something to work with Vue 3 https://gist.github.com/danelowe/82d870674bac81a9aaa37eb29caaa42c It seems...
@maoberlehner Is it possible to see the proof of concept, or anywhere to look to see what can be done with hydration in Vue 3?