About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (175)
- Uncategorized (169)
Author Archives: erictummers
Week roundup
Last week recap and links: Connected cows? How Machine Learning and Azure are helping dairy farms. Running ASP.NET 5 applications in Linux Containers with Docker My interest for Docker was triggered by our runtime on Mono. This would be perfect … Continue reading
Posted in Uncategorized
Tagged azure, Docker, Event Hubs, Linux, Machine Learning, mono, roundup
Leave a comment
Call custom .NET code from powershell
Consider the following code in HelloWorld.API.dll. Make the API available with the Add-Type cmdlet. This makes all the types in a .NET assembly available in the current session. Now the static method can be called by using the :: (two … Continue reading
Backup Synology NAS to Azure Storage
The latest software update of Synology added the option to backup to Azure Storage. Here is my experience of setting it up, the first backup and the costs. Setup I created a storage account and enabled minimal logging of the … Continue reading
Week roundup
Last week recap and links: Architecture blueprints MSDN videos about the Microsoft Cloud Three Ways To Test Around Entity Framework that uses InMemoryDbSet, Moq and RimDev.Automation.Sql Getting started with Azure Search on Azure Friday Image courtesy of kanate / FreeDigitalPhotos.net … Continue reading
Posted in Uncategorized
Tagged azure, azure search, Entity Framework, roundup, unittest
Leave a comment
Reduce wait time with tasks
In our project we group multiple machines and request information from each one. Sometimes this takes very long. All machines are contacted in sequence. When one machine is offline the request will timeout in 10 seconds (default WCF behavior) This … Continue reading