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)
Category Archives: Tooling
Kudu console for backup
We host our own nuget server in azurewebsites. To make backups of the packages we use Kudu console. Kudu is the engine behind git deployments in Azure Web Sites. It can also run outside of Azure. Read more info about … Continue reading
A first encounter with Chocolatey
Think of Chocolatey as a nuget repository with software to install on Windows. Or apt-get for Windows. I’ve tested it for Particular software. Installation This is simple, just past one line in a command box and wait for it to … Continue reading
Connect Virtual Machines in Windows Azure
Our project relies on MSDTC. To use this in Windows Azure the machines must be able to find each other. Here are the two solutions Microsoft offers. Move VM to virtual network In this post Karl writes how to move … Continue reading
Undo git reset –hard
To remove some unhappy commits I executed a git reset –hard. Unfortunately the hangover of missing some files was shortly after. I’ve read this post about undoing it. And it worked. This listed a lot of files and commits. I … Continue reading
Red-gate SQL Test
Writing unittests for sql objects was one of my blind spots. Red-gate has a tool called SQL Test that should fill in the gap. I have given it a try. SQL Test is a graphical user interface for tSQLt, a … Continue reading