About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (203)
- Security (17)
- Test (32)
- Tooling (160)
- Uncategorized (160)
Category Archives: Tooling
Renew certificate 2020 edition
It’s that time of the year to renew my certificate. In my Renew certificate 2017 edition post I wrote about switching to another source, that now has reached the end of the 3 free certificates. Time to switch again 🙄 A … Continue reading
Restore IFTTT applets
Since november IFTTT limits free users to 3 custom applets. More info on ifttt.com https://help.ifttt.com/hc/en-us/articles/360055682873-What-happens-if-I-do-not-upgrade-to-IFTTT-Pro- Today I did a checkup on my applets and noticed that 3 very old applets were left. My most used applets are in the archive. … Continue reading
Bogus – testdata generator
Photo by Steve Harvey on Unsplash https://www.nuget.org/packages/bogus Creating testdata is not my favourite task. With bogus I can define the rules the data must adhere and generate as much data as I need. The rules are setup with fluent syntax … Continue reading
EF core: entity cannot be tracked
We use EF core to store a bulk of data with an auto-number primary key. The auto-number is an Identity column in Sql Server. When inserting a large amount of records with related children we encounter this error: System.InvalidOperationException entity … Continue reading
AutoMoqCore – auto mocking IoC
Photo by Phillip Glickman on Unsplash https://www.nuget.org/packages/AutoMoqCore/ Dependency Inversion is one of the SOLID principles. This can be applied to unittesting as well. With AutoMoqCore I can develop robust unittests that will always compile. Focus on the smallest possible code for your … Continue reading