Esteban Herrera

Results 36 comments of Esteban Herrera

Hi @messaoudmoha, I can't help you much because I don't know about graph databases. Well, I read a little bit on its website and I see that is like a...

Yes, it could work 👍 Unfortunately, I don't have a way to test it right now. My Mac broke last year and I have moved on to other things since...

Hi. I'm not sure what you mean, [this part of the code](https://github.com/eh3rrera/minitwit/blob/master/src/main/java/com/minitwit/config/WebConfig.java#L241) checks that case: ```java User existingUser = service.getUserbyUsername(user.getUsername()); if(existingUser == null) { service.registerUser(user); res.redirect("/login?r=1"); halt(); } else {...

Right, it's not likely, but it can happen. Assuming the application is using a single database (or a cluster that can be seen as a single database), the easiest way...

In order to help you I will need a lot more detail...

Hi Lurii, Thank you for your kind words. For me, something like this: ```java if ( ib.b(0) ) ``` It's just a method call. You use a lambda in an...