's Avatar

@pablusconi

26
Followers
184
Following
121
Posts
08.11.2024
Joined
Posts Following

Latest posts by @pablusconi

Been playing with Metro, great so far!

10.09.2025 02:46 👍 0 🔁 0 💬 0 📌 0

🤔 interesting 🧐

04.09.2025 22:03 👍 1 🔁 0 💬 0 📌 0

I am on the mobile side and for this past month I have seen a lot of openings. Many are asking for multiplatform stuff like RN, KMP and Flutter but pure native as well. It seems that is picking up after a long time being very slow

30.08.2025 22:50 👍 0 🔁 0 💬 0 📌 0

🙌🏻🙏🏻

30.08.2025 01:38 👍 0 🔁 0 💬 0 📌 0

😆👍🏻

28.08.2025 07:14 👍 0 🔁 0 💬 0 📌 0

👌🏻

26.08.2025 17:09 👍 1 🔁 0 💬 0 📌 0

Lmao 😂

22.08.2025 16:44 👍 2 🔁 0 💬 0 📌 0

👌💯

20.08.2025 21:42 👍 0 🔁 0 💬 0 📌 0

👍

20.08.2025 20:08 👍 0 🔁 0 💬 0 📌 0

I agree 💯, so in terms of time I would say pre-2017 and post-2017
The game changed 180 degrees.

20.08.2025 19:31 👍 0 🔁 0 💬 0 📌 0

You said migration of massive codebase. Sorry but this is the last thing I would use AI for. My life as a Soft Eng has circled around this subject and I tell, is really complex and you can mess up badly.

20.08.2025 17:20 👍 0 🔁 0 💬 1 📌 0

A sad reality no software company wants to face.

19.08.2025 05:27 👍 0 🔁 0 💬 0 📌 0

Sounds like a must to read

18.08.2025 23:30 👍 0 🔁 0 💬 1 📌 0

🔥

17.08.2025 02:03 👍 0 🔁 0 💬 0 📌 0

😅

13.08.2025 18:41 👍 0 🔁 0 💬 0 📌 0

They too expensive for the average consumer but as a product is great

31.07.2025 04:45 👍 1 🔁 0 💬 0 📌 0

Wise move

14.07.2025 13:11 👍 0 🔁 0 💬 0 📌 0

It seems like Flutter, Avalonia and RN are on "check mate".

25.06.2025 23:38 👍 0 🔁 0 💬 1 📌 0

😍

06.06.2025 16:54 👍 1 🔁 0 💬 0 📌 0

The official docs don't say much about nested or recursive modules.
Is it supported more than one level of project dependents.
P1 -> P2 -> P3, if P1 includes P2 and P2 includes P3. Will all be merged when I publish P1? It wasn't clear to me what happens in this scenario.

04.06.2025 08:18 👍 0 🔁 0 💬 0 📌 0

Nested NavDisplay please

04.06.2025 04:42 👍 0 🔁 0 💬 0 📌 0

🔥

04.06.2025 04:42 👍 0 🔁 0 💬 0 📌 0

Gotcha

03.06.2025 13:59 👍 0 🔁 0 💬 0 📌 0

Oh you mean announcement in the post, I thought it was release 1.0 date

03.06.2025 13:46 👍 0 🔁 0 💬 1 📌 0

So it is 2 years older than compose.

03.06.2025 13:00 👍 0 🔁 0 💬 1 📌 0

Not just mock it but unmock it. If you forget to unmock it could cause issues in the next test.
I believe even people from the JB team has mentioned object and companion objects were a mistake. They didn't want to do it but were forced to, basically for java compatibility and java influence.

02.06.2025 00:35 👍 0 🔁 0 💬 0 📌 0

Which is a good thing. However, when you use an actual Kotlin "object" is not remotely the same. An object is accessed directly with syntax MyObject.funcionX(), there is no injection here. So your class is strictly depending on the object function. And you can only mock it as I described previously.

02.06.2025 00:32 👍 0 🔁 0 💬 1 📌 0

Right but let's make a clarification. A Singleton in a DI framework isn't the same as a plain object singleton. There are implementation details that matter.
As you said in Spring, you "inject" the instance. The word singleton here means the scope of the instance but you are actually injecting it.

02.06.2025 00:27 👍 0 🔁 0 💬 1 📌 0

So code outside the class has to be aware of what is used inside the class.
Is the same problem of using singletons at the end of the day.
You can do a research on it. There is rich information about this subject.
Why singletons, objects , companion objects are bad for testing

31.05.2025 23:51 👍 0 🔁 0 💬 2 📌 0

First, it is hidden from outside the class. So is not evident you need to mock these 5 companion objects since they are not part of the class inputs.
So now in every test, you have to mock and unmock these 5 objects.

31.05.2025 23:50 👍 1 🔁 0 💬 1 📌 0