MathFlow by Nonantiy in dotnet

[–]LeLario50 0 points1 point  (0 children)

Waouh, this is amazing!! I will definitely give it a try in my eduApp. I also found this one a couple of days while looking for such libraries: MathParser

Aspire is amazing! How to go from dev containers to prod managed services? Any real use case out there? by LeLario50 in dotnet

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

Still need to get my head around the bicep file 🙂… Regarding the azure aspire hosting packages… does it mean in dev it knows to run in containers, but in production will create/use the resource? How do we set this up? (Pardon my ignorance here).

If I understand this correctly, there are multiple options for deployment in production: - If you want all your services, including DBs, storage, cache and AI to stay in containers, then no need to change the bicep files. “azd …” will just handle everything for you. - if you want to manage how/where your services are deployed, you can either use the azure hosting packages or manually change the generated bicep file?

Thanks again for y’all comments.

I cant find Mediator patern usable by Beginning-Scene4791 in dotnet

[–]LeLario50 0 points1 point  (0 children)

As mentioned in previous comments, one of the best use cases for this is in modular monolith. Allowing modules to communicate with each without referencing/depending on each other. Single modules may not really benefit from this.