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
Mobile building blocks
By using partial classes I can create libraries for every mobile platform that share a common interface. The component- / classdiagram below is a concept of this principle. The light yellow blocks are generic code and the purple blocks are … Continue reading
Posted in Development
Tagged building block, classdiagram, componentdiagram, cross platform, csharp, ios, mobile development, partial method, unittest
Leave a comment
Remote debugger setup
Setting up the remote debugger from Windows 8 (Visual Studio) to Windows XP SP3 (Program) was a fight, but I won. Read my steps below. Program machine ~ virtualxp Add a user for remote debugging that will be available on … Continue reading
Posted in Development
Tagged Attach to Process, Firewall, PDB, Remote debugger, Security Policy, Visual Studio 2010, windows 8
2 Comments
switch code snippet power
Today I discovered the code snippet with the best timesaving ever: switch. You can use it from the snippet menu (CTRL + K, X) or you can simply type switch and use code completion (CTRL + SPACE and TAB) Then … Continue reading
Posted in Development
Tagged case, case statement, code completion, code snippet, enum, placeholder, switch, Visual Studio 2010
Leave a comment