Ardalis is Steve Smith
Proven Expertise
Steve Smith has been recognized by Microsoft as a Most Valuable Professional (MVP) since 2002, and was a member of Microsoft’s Regional Director program for 10 years. He is also a founding member of the ASPInsiders, an external advisory group for the ASP.NET product team. As Microsoft launches their new version of ASP.NET, he has been contributing to the product and authoring many sections of the official documentation on GitHub.
How can I help you
I offer various different professional services that includes private training for corporate customers, accelerate your project with a bit of mentoring or even a home like inspection for your code and a software application.
Mentoring
You or your team can benefit from Steve’s experience with ASP.NET using SOLID development principles, proven design patterns, and Domain-Driven Design (DDD).
“Our team could spend many hours with other developers figuring out a problem or best practice, or we could set up a meeting with Steve.”
“[Steve] is able to quickly understand the problems we are trying to solve and then works with us to solve the problems.”
Online Training
Steve has published many courses on Pluralsight, covering topics from N-Tier architecture to Refactoring to Domain-Driven Design. You can also follow Steve on YouTube for more online video content. See what others say about Steve’s courses.
Assessments
Quickly learn where your application could be improved with an application assessment from Steve. An assessment will reveal “low hanging fruit” that will add the greatest value for the least effort, and can identify security and performance issues as well as maintainability anti-patterns and technical debt. Read more…
Workshops
Look for Steve’s workshops on software craftsmanship, ASP.NET 5, and Domain-Driven Design at an upcoming conference, or schedule one for your team. Contact Steve for more details.
Speaking Engagements
Steve is a regular speaker at tech conferences like Codemash, Stir Trek, DevIntersection, and more. You can find some of his past presentations on SlideShare and SpeakerDeck.
Watch Steve discuss Software Quality on Channel 9 with Seth Juarez:
Interviews and Podcasts
Listen to interviews with Steve Smith on various industry shows and podcasts.
Latest Articles
This is something I usually try to write in early January but here it is March already and I'm finally feeling up to it. It's been a rough winter and I've not been motivated to write or create much content, but I'm starting to come around. Getting this done will hopefully let me knock out a bunch of other things I have in the queue. So, without further preamble, let's take a look back at 2022. Oh…
Keep Reading →
It often happens when you're looking for a solution to a problem that you end up with a bunch of browser tabs open. Some were dead ends. Some added necessary clues along the way. All of them have some of the context of the thing you were trying to solve. That context took you time - hours, days even - to put together. And yes, there's a great sense of relief in finally being able to close those…
Keep Reading →
If you have your own web sites or apps that you maintain, it's helpful to know when they're not working. One tool I've been using for a long time is a site called Uptime Robot. Of course, with just a little bit of code you can easily write your own small application that can periodically check the status of one or more sites and alert you to a problem. The Problem I run a number of sites…
Keep Reading →
Although Visual Studio and the dotnet CLI both offer clean commands, neither one really cleans up bin and obj files generated by the build process, and often things are left behind that cause problems. Here's how to really remove all bin and obj folders recursively. Scenario You want to remove all bin and obj folders from your solution or git repo. Sometimes there are files in the bin and/or obj…
Keep Reading →
If you need to just create a new solution file with all projects in all subfolders in it, this should work for you. Scenario For whatever reason, you'd like to quickly create a Visual Studio solution file that includes all of the Visual Studio (dotnet) projects in any subfolder. In my case, sometimes I've needed to do this in order to easily be able to calculate code metrics on the total of a…
Keep Reading →
In November 2022, I started having problems logging into the Azure portal with my Microsoft Account that I've had for years, and which worked elsewhere. I managed to resolve the issue finally with the help of a Microsoft support ticket. Read on if you're having a similar problem. The Problem When logging into the Azure Portal (portal.azure.com), with my Microsoft Account (which is not a "Work or…
Keep Reading →
Redis is a popular open source cache server. When you have a web application that reaches the point of needing more than one front end server, or which has a database that's under too much load, introducing a Redis server between the application server and its database is a common approach. However, sometimes a single redis server is insufficient for the required load and performance requirements…
Keep Reading →
Spectre.Console is a dotnet library for making beautiful, more useful console applications. Here's a quick introduction to getting started with it. If you'd rather watch a video, I've recorded a quick video for NimblePros' YouTube channel: YouTube: Introducing Spectre.Console Getting Started The quickest way to get started with Spectre.Console is to add it to a new console application. You can…
Keep Reading →
If you have a linux VM you need to work on, the typical way to connect to it is with ssh. Here's how to get started. What is ssh The utility ssh is short for Secure Shell or Secure Socket Shell and is similar to the insecure terminal emulator telnet. You can use it to create a terminal session on a remote computer. If you're coming from a Windows background and are used to using remote desktop/RDP…
Keep Reading →
A popular extension and later core feature of VS Code, rainbow bracket colorization is now available as a free extension for Visual Studio called Rainbow Braces, by Mads Kristensen. It was just released in the last week and currently lists support only for Visual Studio 2022. Colorizing brackets makes it much easier to visually match opening and closing brackets (or braces or parentheses or curly…
Keep Reading →