Start simple. Ship fast. Get feedback.
Then evolve.
This repo shows how:
github.com/evolutionary...
Simple scales. Complexity fails.
Start simple. Ship fast. Get feedback.
Then evolve.
This repo shows how:
github.com/evolutionary...
Simple scales. Complexity fails.
Want to avoid painful bugs, security holes, and spaghetti code?
Here are 10 silent killers I see over and over - even in "enterprise" apps:
#dotnet
Want to avoid painful bugs, security holes, and spaghetti code?
Here are 10 silent killers I see over and over - even in "enterprise" apps:
#dotnet
But they add pain early on:
– Debugging hell
– Infra overhead
– CI/CD complexity
Most apps don't need that upfront.
Start with (modular) monolith:
Clean boundaries, fast loops, easier debugging.
It's a launchpad. Not legacy.
#dotnet
But they add pain early on:
– Debugging hell
– Infra overhead
– CI/CD complexity
Most apps don't need that upfront.
Start with (modular) monolith:
Clean boundaries, fast loops, easier debugging.
It's a launchpad. Not legacy.
#dotnet
But it makes debugging 10x easier.
Instead of {Namespace.ObjectName}, you can show:
Order ORD-2025-001: Alice Smith - 249.99
The trick?
Add [DebuggerDisplay] to your class.
Next time you're confused in the watch window, remember: it can be readable.
#dotnet
But it makes debugging 10x easier.
Instead of {Namespace.ObjectName}, you can show:
Order ORD-2025-001: Alice Smith - 249.99
The trick?
Add [DebuggerDisplay] to your class.
Next time you're confused in the watch window, remember: it can be readable.
#dotnet
Know these 3 cloud types:
☁ IAAS – You manage apps & data; the provider handles hardware & networking.
☁ PAAS – The provider manages infra & OS; you focus on code.
☁ SAAS – Fully built apps; least flexible but easiest to use.
#dotnet
Know these 3 cloud types:
☁ IAAS – You manage apps & data; the provider handles hardware & networking.
☁ PAAS – The provider manages infra & OS; you focus on code.
☁ SAAS – Fully built apps; least flexible but easiest to use.
#dotnet
(that I recently discovered)
Create multiple classes at once in Visual Studio 2022.
How to do it?
In the "Add New Item" window, type multiple class names separated by a comma.
P.S. See the below video of this in action.
#dotnet
(that I recently discovered)
Create multiple classes at once in Visual Studio 2022.
How to do it?
In the "Add New Item" window, type multiple class names separated by a comma.
P.S. See the below video of this in action.
#dotnet
You don't need more complexity.
You need more simplicity.
If you want to learn how to evolve .NET projects, here's a useful GitHub repository:
https://buff.ly/3CzSE2u
Start simple.
Evolve as needed.
#dotnet
You don't need more complexity.
You need more simplicity.
If you want to learn how to evolve .NET projects, here's a useful GitHub repository:
https://buff.ly/3CzSE2u
Start simple.
Evolve as needed.
#dotnet
Do this:
1. Create a new class.
2. The properties on the class are the same as method parameters.
3. Replace the parameters with the new class.
4. Update the method calls.
This will quickly improve the maintainability of your code.
Do this:
1. Create a new class.
2. The properties on the class are the same as method parameters.
3. Replace the parameters with the new class.
4. Update the method calls.
This will quickly improve the maintainability of your code.