Author Archives: erictummers

Unknown's avatar

About erictummers

Working in a DevOps team is the best thing that happened to me. I like challenges and sharing the solutions with others. On my blog I’ll mostly post about my work, but expect an occasional home project, productivity tip and tooling review.

Shrink MS Word document

A docx document of Microsoft Word is actual a zip archive. You can open it and see why some documents are so large yet contain only a few pages. First drill into the folders to find the file that is … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Powershell pipe to copy files that match a xpath query

I’m a powershell newb. There I said it. Now let me learn. Here’s what I created after some google searches. Go through all files in a directory Filter on xml files I think this can be added to the Get-ChildItem … Continue reading

Posted in Tooling | Tagged , | Leave a comment

Week 26 roundup

Last week recap and links: Travel by drone, think google streetview with drones Octopus deploy has a library you can download step templates from an use in your deployments How to scale Azure Websites globally with Traffic Manager, Scott shows … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Solve concurrency database issues in nServicebus

When we configure nServicebus to run with multiple thread (MaximumConcurrencyLevel) sometimes duplicate records are inserted. This happens when the endpoint has been down for maintenance and the queue has filled up with messages. Repro This is not ideal, but can … Continue reading

Posted in Development | Tagged , , , , , , | Leave a comment

MSBuild OutDir per project in solution

We use a dedicated project file for building our solution/projects. The automated build sometimes complains about failing unit tests due to incompatible assembly versions. By building every project to their own OutDir we solved the issue. MSBuild tasks Install the … Continue reading

Posted in Tooling | Tagged , | Leave a comment