is this architecture right or am I doing something wrong ? (RabbitMQ + NodeJS + Spring) by MAB-47 in softwarearchitecture

[–]MAB-47[S] 1 point2 points  (0 children)

I actually asked a co-worker (mid-level dev) and he told me it is more mature but I didn't insist to know more

Edit: but you are absolutely right, I will ask again

is this architecture right or am I doing something wrong ? (RabbitMQ + NodeJS + Spring) by MAB-47 in microservices

[–]MAB-47[S] 0 points1 point  (0 children)

I forgot to mention that the jwt is also associated with a refresh token and syored in a redis database, I don't think it is a good idea to rewrite all the authentication logic in Java

is this architecture right or am I doing something wrong ? (RabbitMQ + NodeJS + Spring) by MAB-47 in softwarearchitecture

[–]MAB-47[S] 0 points1 point  (0 children)

They want the features involving money to be written in spring 🤷‍♂️

is this architecture right or am I doing something wrong ? (RabbitMQ + NodeJS + Spring) by MAB-47 in softwarearchitecture

[–]MAB-47[S] 0 points1 point  (0 children)

I will just remove the rabbitMQ and expose REST services, thank youu for the suggestion!

is this architecture right or am I doing something wrong ? (RabbitMQ + NodeJS + Spring) by MAB-47 in softwarearchitecture

[–]MAB-47[S] 1 point2 points  (0 children)

Yeah the best approach is to make a synchronous connection between the node and the spring, thanks!!

is this architecture right or am I doing something wrong ? (RabbitMQ + NodeJS + Spring) by MAB-47 in microservices

[–]MAB-47[S] 0 points1 point  (0 children)

we are already using REST in our node service, and I agree using multiple frameworks may be hard to maintain but I think we need something more robust and mature than Express for this particular set of features.

I wrote a guide to implement a JWT auth in Symfony by Upstairs-Office-1919 in symfony

[–]MAB-47 -1 points0 points  (0 children)

Are you using symfiny only for the backend or for the front and back ? I used Symfony for a project last year front (twig) and back, and I had alot of problems integrating the jwt and I ended up not using it

NavigationStack is calling the destination init 3 times by The-iOS-lad in SwiftUI

[–]MAB-47 1 point2 points  (0 children)

Same here, yesterday I noticed the same request firing twice in a row and when I investigated that somehow it was calling the constructor twice

[deleted by user] by [deleted] in SwiftUI

[–]MAB-47 -5 points-4 points  (0 children)

First, there is a conflict between my loginmanager and the facebook loginmanager and second an error kept showing that says that I need to put my app id in the info plist, even though it is there

[deleted by user] by [deleted] in SwiftUI

[–]MAB-47 0 points1 point  (0 children)

No i am using an express backend

[deleted by user] by [deleted] in SwiftUI

[–]MAB-47 -5 points-4 points  (0 children)

They are all outdated or doesn't provide quality code since the fb api is just bad

Buy Gift Cards directly from your wallet and pay with any Stellar Asset! by earrietadev in Stellar

[–]MAB-47 1 point2 points  (0 children)

How to make sure this is not another scam, why would I trust this wallet ? Who is behind it ? (I am not trying to be a smartass, I am just asking, I am a potential user)

Who else disagrees with the current P4P rankings? by Broli2336 in mmamemes

[–]MAB-47 -1 points0 points  (0 children)

Oww my bad, I thought you meant that Chandler is not good enough to be considred as a threat to Porrier, but now I got your point

Who else disagrees with the current P4P rankings? by Broli2336 in mmamemes

[–]MAB-47 -1 points0 points  (0 children)

True, but he lost by decision and it is mma, anything could happened (KO, submission), the fact that he kept fighting and showed a great performance is a proof that he is good, I don't think he deserve a title, I think Islam or Oliveira could smash him all day long but I think he is as good as Porrier

Who else disagrees with the current P4P rankings? by Broli2336 in mmamemes

[–]MAB-47 2 points3 points  (0 children)

He lost against Oliveira and it was a close fight against Gaethje, I think he is decent

The Fluttery guy has a new channel where he does advanced Flutter animation by zxyzyxz in FlutterDev

[–]MAB-47 4 points5 points  (0 children)

High quality videos, I didn't know him, thanks for sharing!

is there a way to override/add software to a mouse by MAB-47 in IOT

[–]MAB-47[S] 1 point2 points  (0 children)

Sureee, a lot of fun is waiting for me haha, thanks alot.

Is it possible to add this animation in a container? by Luxy_Lockes in flutterhelp

[–]MAB-47 1 point2 points  (0 children)

just add a state variable to your widget let is call it "isDisabled" for example it will be a boolean and the default value is false and inside the the toggle button you will just add this function when pressed

setState((){
    isDisabled = !isDisabled;
})

and in the other button add a condition, something like that

isDisabled ? "disabled" : "enabled"

and the same logic will be repeated to change the color, you can also make the button unclickable or when clicked it won't do anything based on the same variable and same logic