-
Tackling duplicate content with ASP.NET MVC
TLDR; I have researched the duplicate content issue and created a NuGet package that has some flexibility and could solve the problem in a much more elegant way than most other solutions. Link to Github: https://github.com/dipunm/SEO.DuplicateContent …
-
My take on the Fixture Object pattern by Mark Seemann
A fair while back, whilst discussing and experimenting with unit testing, I had read about this particular pattern. The Fixture Object pattern allows you to delegate complex
arrange
logic within your tests in order to improve readability and maintainability of your code. …