Sketch Themes for Prototypes
How to use the Sketchy Bootstrap theme to make web prototypes look unfinished, helping users understand they are viewing a draft product.
MANY articles on a wide array of topics. You’ll find a lot of my newer content is going to my YouTube channel first, but I do still blog occasionally.
How to use the Sketchy Bootstrap theme to make web prototypes look unfinished, helping users understand they are viewing a draft product.
This originally went out just to my Weekly Dev Tips mailing list, but I got a lot of positive comments and requests to share it, so I’m publishing it here. Sign up for Weekly Dev Tipsto get a new tip in your inbox …
Learn how to run integration tests with real databases in CI/CD pipelines using Docker, comparing options like InMemory databases and shared test databases.
If you're trying to run EF Core migrations and getting errors, this post has the most common fix - you need to install the CLI tools for Entity Framework Core.
You may find yourself in a position where you need to have two (or more) different implementations of the same interface within your ASP.NET Core application. This may be because your application is too big to allow you …
Technical Debt is a metaphor for shortcuts and hacks in software that make it more difficult to change and maintain than it could be with an optimal design. Many applications have accumulated a large amount of technical …
A frequent question I hear from clients is some variant of " Ok, Continuous Integration is great, but how do we get everybody on the team to pay attention to it?" This is obviously a bigger problem if the question is …
Git Graph does just what I want, which is to visualize commits to my git repository in a graph format that lets me easily see which commits and branches are where relative to one another.
There are several ways to measure test coverage in code, also known as code coverage. The two most common are line coverage and branch coverage. So, which one is more important? You might think line coverage is better, …