📰 Dev.to · João Esperancinha
Articles from Dev.to · João Esperancinha · 14 articles · Updated every 3 hours · View all reads
All
⚡ AI Lessons (10945)
ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog

Dev.to · João Esperancinha
1y ago
Making reactive applications with a Kitten Care Example
Reactive programming is a very important art and a very interesting subject. It uses the Publish/Subscribe pattern or in other words the Observer pattern. With

Dev.to · João Esperancinha
1y ago
Redis Cache - A String story
Discussing why it is important to use the right String types when putting data in Redis

Dev.to · João Esperancinha
1y ago
Learning JWT security using KumuluzEE — The finances of a league of the environment
Ever wondered how to create a JWT token and what does that actually mean? How about using it in something relatively unknown? Let's see that with KumuluzEE!

Dev.to · João Esperancinha
1y ago
Kotlin Native and GraalVM - The Story So Far
Did you know that we can compile Java and Kotlin code, even Python to binary native code? We can skip JIT with it and improve start-up times. How can we do that

Dev.to · João Esperancinha
1y ago
From Paris to Berlin — Creating Circuit-Breakers in Kotlin
What are circuit-breakers? The stop a circuit when something wrong is happening right? But how can we control that?

Dev.to · João Esperancinha
1y ago
Comparing WebFlux and Spring MVC with JMeter and Kotlin
Can WebFlux be better than the tradition MVC? Why and why not? This is your test to clear that up!

Dev.to · João Esperancinha
1y ago
Reactive Programming applied to Legacy Services — A WebFlux example
1. Introduction The concept of reactive programming can be traced way back to the mid-60s....

Dev.to · João Esperancinha
1y ago
CQRS — Command Query Responsibility Segregation — A Java, Spring, SpringBoot, and Axon Example
Introduction The first time this term appeared in Software Engineering lexicons was all...

Dev.to · João Esperancinha
1y ago
Decoding Kotlin - Your guide to solving the mysterious in Kotlin
On the 24th of April 2024, I gave a presentation about Decoding Kotlin at the JetBrains Headquarters...

Dev.to · João Esperancinha
2y ago
They said to use the Default Dispatchers but I found out it was Unconfined
If I would have to point out one of the most confusing Dispatchers in the world of Kotlin coroutines,...

Dev.to · João Esperancinha
2y ago
What is the Purpose of the Main Dispatcher?
If you have this question, perhaps you are a long time server-side developer and are wondering what...

Dev.to · João Esperancinha
2y ago
When thinking about Java fields we use-site target in Kotlin
One of the greatest strong points of Kotlin can also be its weakness. When we talk about data classes...

Dev.to · João Esperancinha
2y ago
Why the Global Scope isn't advised to be used?
The GlobalScope is a kind of scope in the world of Kotlin coroutines that challenges a lot of...

Dev.to · João Esperancinha
2y ago
How does concurrency play a role in coroutines?
How do we examplify that coroutines use non-preemptive schedule, in other words, they use cooperative schedule and that they concurrently try to gain control of
DeepCamp AI