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: Development
Deploy to Azure button
The Deploy to Azure button takes the sting out of deployment. Just click the button and the wizard will guide you through the process. How to set this up? I’ve got my ASPNET MVC4 project in github. Every builds local. … Continue reading
Notebook FanControl custom use
A user called Grantig on computerbase.de created the tool Notebook FanControl. It is written in C# and uses WCF for communication with a backend service. Using JustDecompile and the information from the config I managed to build my own front-end. … Continue reading
Add tracelistener with powershell
In our deployment script we automate the installation and configuration of our product. For Development and Test environment we want to log everything to a file. The powershell script below takes care of adding TextWriterTraceListener to the trace listeners. The … Continue reading
Xamarin iOS development
I’m creating an app for personal use. Here’s what I’ve learned so far. Installation of the SDK and Xamarin is easy. Just download and install. I’ve chosen the starter (free) plan. To run the app without an Apple iOS Developer … Continue reading
Call WCF on NetTcpBinding from anonymous website
Our project uses WCF services hosted on multiple machines. The binding used can be chosen from predefined options. One of the options is NetTcpBinding. A website hosted in IIS with anonymous authentication is used to consume the WCF service. When … Continue reading