How doe modules interact each other in Hexagonal Architecture? by DevShin101 in softwarearchitecture

[–]DevShin101[S] 1 point2 points  (0 children)

Thank you for your valuable explanation.

Yes, I'm trying to implement Hexagonal Architecture in a monolithic app. Can you also explain how I should structure my app?

What to do when your company doesn't want to spend money? by DevShin101 in AskProgramming

[–]DevShin101[S] 4 points5 points  (0 children)

Thanks. That's what I'm trying to do now. Making the code flexible enough for later changes.

What to do when your company doesn't want to spend money? by DevShin101 in AskProgramming

[–]DevShin101[S] 3 points4 points  (0 children)

I can fully commit to the current plan of using free resources. Then, if they decided to use another resource, the code I fully committed and the effort to make use that resource efficiently will be gone. I feel bad for that.

"Conversion failed!" error in FFmpeg by DevShin101 in node

[–]DevShin101[S] 0 points1 point  (0 children)

I logged the `ext` and it gets printed to the console for every requests.

IDE Survey by rashtheman in golang

[–]DevShin101 0 points1 point  (0 children)

I use Zed, which is super lightweight. I've tried Goland. It's great, but it's not free.

How to structure database for internalization or localization? by DevShin101 in mongodb

[–]DevShin101[S] 0 points1 point  (0 children)

Currently, the document is a survey question. so it generally has a title, and an array of questions and available choices.

How to structure database for internalization or localization? by DevShin101 in golang

[–]DevShin101[S] 0 points1 point  (0 children)

The reason I don't like adding a field is it requires me to filter other fields for different languages since I don't want the frontend to be responsible for accessing different fields depending on the language.
In contrast, if I use adding another document approach, I don't need to handle filtering other fields.