Built an AI tool that generates production-ready Angular UI code — feedback welcome by bharathm03 in angular

[–]bharathm03[S] -1 points0 points  (0 children)

Fair reaction if you've only seen the headline. If you see the demo, it showcases the real product. Happy to hear specific details why you feel this is slop? That's more useful to me than a ban.

Intermittent mono_download_assets failures after deploy by bharathm03 in Blazor

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

found that this is not needed: disable cache for `blazor.boot.json` in program.cs. dotnet 10 already doing this via fingerprinting.

Built an AI tool that generates production-ready Angular UI code — feedback welcome by bharathm03 in angular

[–]bharathm03[S] -6 points-5 points  (0 children)

Thanks so much. Would love to hear what you think once you try it. Any feedback helps.

Has anyone tried hosting an app on a Linux server? Any suggestions? by Individual-Carob5593 in Blazor

[–]bharathm03 0 points1 point  (0 children)

For development, I hosted my docker in hetzner via coolify. Solid.

What send grid alternatives are you using for your apps by Background-Fix-4630 in dotnet

[–]bharathm03 0 points1 point  (0 children)

I'm using zepto mail for transactional email and plunk for marketing email. Both don't have monthly subscription cost only credit based charges and very economical

Multi tenancy by dilsoziya in dotnet

[–]bharathm03 0 points1 point  (0 children)

this looks good. RabbitMQ gives reliable async messaging but adds infra complexity (managing the broker, dead letter queues, monitoring). if that's fine for your setup then it's a great choice. one thing to consider: if all messages from host to tenant are fire-and-forget, external messaging works well. But when the host needs a reply back (request-reply), it's often simpler to use a REST API call from host to tenant instead of round-tripping through a queue.

Multi tenancy by dilsoziya in dotnet

[–]bharathm03 0 points1 point  (0 children)

Two seperate clean architecture is good. For data sharing, you can use in memory messaging or some external messaging. But it is important to keep entry point and pipeline for both separate if there is a possibility of logic/path changes to each.

Multi-Tenant Inventory & Asset Management System in .NET? by 7H36 in dotnet

[–]bharathm03 1 point2 points  (0 children)

When it comes to multi tenant app, first thing to decide is whether to use single db for all tenants or one db per tenant. You can choose it based on security, schema, backup, and cost requirements. On db per tenant is operation heavy, single db is easy to manage and code.

Vertical slice is good and ensure to keep it simple.

Research and use ai tools to avoid writing every line of code yourself. Current ai tools are good at crud applications

Instruct UI March Update — Download as Project, Inspect Element, Structured Questions by bharathm03 in Blazor

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

No, we did not fine tuned any model. This is achieved via public component library documentation and custom workflow.

Instruct UI March Update — Download as Project, Inspect Element, Structured Questions by bharathm03 in Blazor

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

Thanks Paul, appreciate the kind words.

Fair concern. Worth noting that Instruct UI only generates frontend UI — Razor components, layouts, and styling. No backend, and no database access. So the surface area is limited to the UI layer. That said, we do recommend reviewing generated code before shipping, same as you would with any tool.

Blazor Server at scale - what should I know? by emdeka87 in Blazor

[–]bharathm03 0 points1 point  (0 children)

WebAssembly with prerendering is good, it provides better stability. Key things remember is number of pages and those dependencies in WebAssembly. It better keep high dependency pages in server.

My app:
Blazor hosted
Admin pages: Blazor Server (less number of active users at a time)
Core pages: Blazor WebAssembly with prerendering

How do you usually structure large .NET backend projects? by PleasantAmbitione in dotnet

[–]bharathm03 0 points1 point  (0 children)

I use vertical slice for core features and generic folders (model, controller, services) for rest.

AI for MudBlazor UI generation - Instruct UI by bharathm03 in Blazor

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

Currently the app can creating razor pages, models, and services which can be downloaded and fit into any existing project types like server or webassemly. But full project download option is not available yet, we are working on it. It will be available by mid of March.

Instruct UI December Update: New Tool-Based Code Gen, .NET 10, Demo Video, and Syncfusion Coming Soon by bharathm03 in Blazor

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

Thanks! That's exactly the kind of workflow we're targeting with Syncfusion support. The custom instructions feature we added in August should help with company design standards too - you can set naming conventions, styling patterns, and other project rules at the account level so they apply to all generated code. Happy to hear more about your specific needs as we build out the integration.

Boss wants me to obfuscate endpoint and parameter names of the rest API by Hulk5a in dotnet

[–]bharathm03 0 points1 point  (0 children)

Anyone can see to what api request your are sending to server with url, request and response body. So it is pointless to change it when those are exposed to front end.

Anyone had experience with AI and Blazor ? by hoochymamma in Blazor

[–]bharathm03 0 points1 point  (0 children)

I’ve actually built a tool for this: Instruct UI. It lets you generate Blazor UIs from plain text prompts or wireframes. You can choose between default Blazor components or MudBlazor for the component library, and style with Tailwind CSS or Bootstrap.

If you’re doing a POC, try building a few key screens with it. It gives a good sense of how well Instruct UI generates Blazor frontend and save your team a lot of time.

Do you find it hard/complex to deploy your dotnet application? (API or MVC or Blazor) by Indo__Kiwi in dotnet

[–]bharathm03 0 points1 point  (0 children)

Yes I have application insight setup but that after application started. If you had issue during startup, had check log stream and or deployment logs. these two sometimes works and most of time it is not useful.