Colonization: A brief glimpse of the game class

public Game(List<IPlayer> players, IGameConfiguration configuration, IWorld world)         {             this.Players = players;             this.GameConfiguration = configuration;             this.World = world;         }         public DateTime StartDate { get; private set; ...

Colonization in the Making… just for fun

 public class SchnappColModule : NinjectModule     {         public override void Load()         {             this.Bind<IUnit>().To<Unit>();             this.Bind<IUnitGenerator>().To<UnitGeneratorDemo>();             this.Bind<IGame>().To<Game>();             this.Bind<IGameConfiguration>().To<GameConfiguration>();             ...

UX Design in Scrum Teams

Nice but rather short article about the design process during an agile development project. http://brendanmarsh.com/scrum/how-do-ux-work-in-scrum-teams/

Neue Möglichkeiten mit Visual Studio 2012 Update 2

Die wichtigsten neuen Funktionen in diesem Update sind1: Erweiterte Qualitätssicherung: Erstellen Sie Testfälle über das Webportal und wenden Sie Testfälle über die Cloud mithilfe der Testfallverwaltung im Web auf Ihren Code an. Flexible Planung: Verbesserungen an Work Item‘s und Kanban Board mit der Option für weitere Personalisierung, damit diese ganz genau auf Ihr Team abgestimmt werden können. ...

WinRT: Transport Security with Basic Authentication

Wieder mal viel gelernt: http://msdn.microsoft.com/en-us/library/ms733775.aspx Nur schade, dass für eine Windows 8 Store App ein valides Zertifikat vorausgesetzt wird:http://social.msdn.microsoft.com/Forums/en-US/winappswithhtml5/thread/b6887fa1-1b29-4747-a0f3-573e77cd10ea/ Um dies zu umgehen, kann der Klassiker eingesetzt werden: Fiddler! Allerdings benötigt dieser ein Add-On, damit der Traffic der in einem eigenen Prozess laufenden Windows 8 Store Apps, auch mitgelesen werden kann. http://blogs.msdn.com/b/fiddler/archive/2011/12/10/fiddler-windows-8-apps-enable-loopback-network-isolation-exemption.aspx

How to support in-app purchases (Windows)

Windows Store in App Purchases / C# http://msdn.microsoft.com/en-us/library/windows/apps/hh694067.aspx

BackgroundWorker in Windows RT

As you might have already noticed, the BackGroundWorker class is missing in Windows RT / app development. The BackgroundWorker was actually just a wrapper for the following class:System.Threading.ThreadPool. So the fun begins again with Threading. The ThreadPool for Win RT is well documented in the Windows Store Apps Development Center:http://msdn.microsoft.com/en-us/library/windows/apps/windows.system.threading.threadpool.aspx For those, who like to ...

SharePoint 2013 Zertifizierungen: Eine Übersicht

Für IT-Pros ist der Microsoft Zertifizierungspfad bereits vorgegeben. Leider sind aktuell noch keine Zertifizierungsmöglichkeiten für SharePoint 2013 Entwickler bekannt. Höchstwahrscheinlich wird dabei aber folgende Prüfung im Spiel sein:Programming HTML5 with JavaScript and CSS3 (70-480) Weiterführende Infos zu diesem Thema:http://www.microsoft.com/learning/en/us/sharepoint-certification.aspx http://jussionsharepoint.com/index.php/2012/09/14/the-definitive-guide-to-sharepoint-2013-certifications/ http://thesharepointproject.com/2012/10/22/sharepoint-2013-certification-track/

Windows 8 Development : Portable Class Libraries

Very nice article on how to handle FileSystem access in a portable library for Windows 8 app. http://blogs.msdn.com/b/dsplaisted/archive/2012/08/27/how-to-make-portable-class-libraries-work-for-you.aspx

Create your first Windows Store app using C#…

… since we’re for sure not going to use Visual Basic…. Easy to understand step by step guide to build a Windows 8 app. The guide contains the following parts: Part 1: Create a „Hello, world“ app Part 2: Manage app lifecycle and state Part 3: Navigation, layout, and views Part 4: File access and ...

.NET Profiler: New Tool available

NP .NET Profiler Tool is designed to assist in troubleshooting issues such as slow performance, memory related issues, and first chance exceptions in .NET applications.It can troubleshoot following types of .NET applications: ASP.NET Web Applications .NET Windows Applications (WCF, WPF and WF ) .NET Console Applications .NET Window Services .NET COM+ Components Azure Service Just ...

Visual Studio 2012 – Klein aber Fein – Add Reference Dialog

Jeder .NET Entwickler kennt ihn, den Add Reference Dialog im Microsoft Visual Studio 2010 welcher Out-of-the-Box von Microsoft ausgeliefert wurde. Nahezu unbrauchbar, Suchmöglichkeiten gleich null und lange Wartezeiten, bis alle vorhandenen Referenzmöglichkeiten aufgelistet wurden. Kurzum, das Hinzufügen von Referenzen war alles andere als einfach und effizient. Selbst wenn der Dialog mit dem mittlerweile etablierten NuGet ...

It’s all coffee…

Ein sehr interessanter Blogeintrag bezüglich Windows 8 / WinRT und Silverlight / XAML Besonders das Fazit gefällt und verführt zum schmunzeln, weshalb ich es hier gerne nochmals wiedergebe: That path takes us to a place called WinRT, rather than a place called Silverlight. But considering everything that is changing for the good, the number of ...

Visual Studio 2010 vs. Visual Studio 11

Untenstehend ein durchaus interessanter Artikel, welcher auf visueller Ebene die neuen Features von Visual Studio 11 vorstellt und der Version 2010 gegenüberstellt. http://www.troyhunt.com/2012/04/10-illustrated-examples-of-visual.html

Getting Started with ASP.NET 4.5

Sehr interessanter Artikel über die Webentwicklung mit Visual Studio 11 Express Beta und ASP.NET 4.5. http://www.asp.net/web-forms/tutorials/aspnet-45/getting-started-with-aspnet-45-web-forms/introduction-and-overview