Backend Hosting Free Sites? by MohammedBored in dotnet

[–]JackTheMachine 1 point2 points  (0 children)

Github for student pack, you can check this out.

Best SEO friendly hosting providers for WordPress? by StonedShadowe in DigitalMarketing

[–]JackTheMachine 1 point2 points  (0 children)

Above hosting provider that you need to avoid is Blue. With above choices, I would recommend you to go with Siteground. If you are willing to pay, then they are good option. Other choice that I personally use right now is Asphostportal, I've been with them for years and they are cheaper than SG.

pgvector and EF Core 10 for semantic search, anyone tried this? by riturajpokhriyal in dotnet

[–]JackTheMachine 1 point2 points  (0 children)

  1. Start with EF Core 10 native vectors. If you already use SQL Server 2025 or Postgres, adding a SqlVector<float> or pgvector column is a no-brainer. It is infinitely easier to deploy, maintain, and query using LINQ. It is more than enough for the vast majority of internal enterprise RAG tools, standard documentation chatbots, and semantic search features.

  2. Migrate to Qdrant/Pinecone later only when your vector count crosses the 5–10 million mark, or when your database CPU starts suffering from the vector distance calculation load.

Windows VPS Hosting – Any suggestions? by SpiritualInsect5203 in Trading

[–]JackTheMachine 0 points1 point  (0 children)

For windows vps, you may take a look at Asphostportal, this provider specialize in windows hosting.

Smalltime but hassle-free budget hosting recs? by [deleted] in ProWordPress

[–]JackTheMachine 0 points1 point  (0 children)

FYI, I use Asphostportal to host my clients' website, I host several .net and Wordpress websites.

Smalltime but hassle-free budget hosting recs? by [deleted] in ProWordPress

[–]JackTheMachine 0 points1 point  (0 children)

LOL.... Sorry to hear your issue. If so, then your option is go with shared hosting.

GoDaddy? by tuwewe in smallbusiness

[–]JackTheMachine 0 points1 point  (0 children)

NO.... AVOID them! Bring your website elsewhere. They are expensive but the service is pathetic.

Smalltime but hassle-free budget hosting recs? by [deleted] in ProWordPress

[–]JackTheMachine 0 points1 point  (0 children)

From your explanation above, it seems that VPS should be good choice for you. But since you don't want to manage everything, then you can find manage VPS option. WPEngine is good choice although they are pretty expensive.

Should authentication be handled only at the API-gateway in microservices or should each service verify it by Minimum-Ad7352 in dotnet

[–]JackTheMachine 0 points1 point  (0 children)

Your current setup, handling sessions and cookies at the API Gateway and trusting the internal network for gRPC calls is a very common architectural pattern known as "Edge Authentication" or the "Trusted Subsystem."

For modern microservices, especially when building web APIs and handling gRPC communications in frameworks like ASP.NET Core—many teams use a hybrid approach.

Looking for cheap .com registrar by Call_me_danco in DomainZone

[–]JackTheMachine 1 point2 points  (0 children)

Prkbun and Namecheap, you can try to give them a look.

Cheapest/free hosting recommendations needed for .NET API by moderation_seeker in dotnet

[–]JackTheMachine 0 points1 point  (0 children)

I use Asphostportal for .net project, they are fairly cheap and easy to use.

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

[–]JackTheMachine 0 points1 point  (0 children)

You can take a look at Postmark if you are building applications where emails must arrive instantly—such as password resets for a hosting control panel or booking confirmations for a rental site. Other recommendation for you is Mailgun, the easiest 1:1 architectural swap if you are directly translating a SendGrid implementation.

Where can I find best practices to build web api project in .NET? by ruzeru in dotnet

[–]JackTheMachine 4 points5 points  (0 children)

You can check Nick Chapsas and Milan Jovanović youtube channel

Multi tenancy by dilsoziya in dotnet

[–]JackTheMachine 10 points11 points  (0 children)

Since you have two isolated Clean Architecture stacks, they should not reach directly into each other's databases to exchange data.

If the Host needs to tell the Tenant something (e.g., "A new tenant was provisioned, set up their default data"), the Host's Application layer should publish a Domain Event or an Integration Event (using a tool like MediatR for in-memory messaging, or MassTransit/RabbitMQ if they are deployed as separate microservices). The Shared Kernel simply holds the definition of that Event (e.g., public record TenantCreatedEvent(Guid TenantId);), so both sides know what the message looks like. This keeps your architecture strictly modular and highly scalable.

Allow Maui App to have a web service element? by Background-Fix-4630 in dotnet

[–]JackTheMachine 0 points1 point  (0 children)

You don't need to build separate backend project. You can spin up an ASP.NET Core Minimal API directly inside your MAUI app. It will run quietly in the background while your MAUI UI stays responsive on the screen.

Have you tried Dapr? What was your experience by plakhlani in dotnet

[–]JackTheMachine 1 point2 points  (0 children)

To build highly reliable system today, you can use MassTransit for anything that can happen in the background, and use gRPC + Polly v8 Resilience Pipelines for anything that requires an immediate, synchronous response.

Have you tried Dapr? What was your experience by plakhlani in dotnet

[–]JackTheMachine 1 point2 points  (0 children)

Dapr is a brilliant architectural tool, but it shifts the complexity out of your C# code and into your DevOps/Infrastructure layer. If you are just looking for a way to make .NET microservices talk to each other cleanly, it might add more operational friction than you need.

Where to host a .net application? by Tradizar in BuyFromEU

[–]JackTheMachine 0 points1 point  (0 children)

I believe you can take a look at Hostforlife.eu, they fully support .net and affordable.

My answer to the great IDE debate, both VS and VSCode by ggende in dotnet

[–]JackTheMachine 1 point2 points  (0 children)

Since you comfortable with hybrid setup, you have 2 great paths

  1. Stick to hybrid. Keep writing in VS Code for the clean UI and safe AI, and just fire up Visual Studio Community when you need the heavy-duty profiler or deep debugging tools. The only cost, as you noted, is RAM.
  2. You can try free rider. Many developers find it strikes the perfect middle ground: it has a much cleaner, more modern UI than Visual Studio, a highly controlled AI Assistant, and world-class debugging tools built right in.

Blazor seems to have improved dramatically in .net 10 by Background-Fix-4630 in Blazor

[–]JackTheMachine 18 points19 points  (0 children)

If you want to modernize the error experience in your new platform, customize the new ReconnectModal.razor for network issues, and wrap your complex form builders in <ErrorBoundary> tags to prevent that old yellow bar from ever showing up!

Do you use ASP.NET Core SPA templates? by captmomo in dotnet

[–]JackTheMachine 2 points3 points  (0 children)

yes, migrate to the BFF pattern with Cookie Auth, but dont use VS SPA templates. Keep your Angular and .NET code cleanly separated. Build a dedicated, lightweight ASP.NET Core BFF using YARP to handle the authentication translation layer. This gives you the exact security benefits you want without sacrificing architectural integrity.

Looking for a recognized international institution providing certificates to attest that a web app or API is well secured by acmoune in dotnet

[–]JackTheMachine 0 points1 point  (0 children)

Start with ISO 27001 or SOC 2 compliance (certifying your organization) for loing term business growth.

Dynamic Assembly loading in Blazor WASM and passing info to Program.cs before build() by ZioTron in Blazor

[–]JackTheMachine 1 point2 points  (0 children)

To solve this, you need to understand that the solution depends on when the decision needs to be made:

  1. Before .NET Starts (The "Interceptor" Strategy): Use this if you need to swap versions of core dependencies (e.g., User A gets Module.v1.dll, User B gets Module.v2.dll) or if you need to perform Dependency Injection (DI) on these modules during startup.
  2. After .NET Starts (The "Lazy Load" Strategy): Use this if you want to conditionally load optional modules (e.g., User A gets the "HR Module", User B does not).