|
Subscribe for deep dives into .NET development, intelligent automation, and practical AI tips. Each edition delivers hands-on insights, industry news, and coding techniques to help developers and tech leaders stay ahead
Nick Proud Microsoft MVP, CTO @ nexbotix.ai and Author at dometrain.com September 27th, 2025 ✉️ ProudCloud Weekly #4 Is C# like python now? .NET brings a significant change to the way we can execute C# projects. With the new File-Based Apps feature, developers can now ditch the .csproj files if they wish, opting instead for running a single .cs file from the CLI. This change makes C# more lightweight and approachable, especially for quick prototypes, scripts, or learning scenarios. You no...
Nick Proud Microsoft MVP, CTO @ nexbotix.ai and Author at dometrain.com September 20th, 2025 ✉️ ProudCloud Weekly #3 Complacency is easy. With any language, it's easy to become set in your ways and to allow the pressure of shipping fast influence you into cutting corners. I know, because I've done it. In this issue I'm going to run through some common mistakes C# developers make all the time. If you aren't falling into any of these holes, congrats. This issue probably wasn't for you! But I do...
Nick Proud Microsoft MVP, CTO @ nexbotix.ai and Author at dometrain.com September 13th, 2025 ✉️ ProudCloud Weekly #2 Databases. We're updating them, inserting, deleting, querying and modifying them all the time. Queries stand out as one of the most common operations for developers building customer-facing apps, and for C# developers in particular, a significant portion of the community are abstracting the SQL layer away with Entity Framework. But just because we're using an abstraction like...