Monogame – Tutorials

Monogame - Tutorials
Monogame Tutorials Simple but nice explanation of the basic objects of Monogame: http://rbwhitaker.wikidot.com/monogame-getting-started-tutorials Tutorial Implementation with MonoGame: http://lightningdemo.codeplex.com/ With the according explanations: http://blogs.msdn.com/b/tarawalker/archive/2012/12/04/windows-8-game-development-using-c-xna-and-monogame-3-0-building-a-shooter-game-walkthrough-part-1-overview-installation-monogame-3-0-project-creation.aspx  

.NET Game Engines for 2D Games

While checking out the many available 2D Game Engines for creating the SchnappCol Colonization like game project, I found the following interesting engines upfront. Since I’m absolutely new to this topic, this was the first step in doing some research: XNA => http://msdn.microsoft.com/en-us/library/bb203894.aspx MonoGame  => http://www.monogame.net/ SLIM DX => http://slimdx.org/ SDL.NET => http://cs-sdl.sourceforge.net/ Torque 2D => http://www.garagegames.com/products/torque-2d   Example starting ...

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. ...

Windows Server 2012 at a glance : Part 1

Tumbling arround the net and trying to get an overview over Windows Server 2012, I decided to create a quick summary containing the top links and a short summary about Windows Server 2012. The ultimate goal (at least for myself) is mastering the MCP 70-410… Editions Windows Server 2012 comes in the following editions: Foundation ...

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

Cool Link

http://rules.ssw.com.au/SoftwareDevelopment/RulestobetterArchitectureandCodeReview/Pages/Default.aspx    

Query for SQL Server Stress Tests

Quick and dirty stress test … http://paulera.insomnia247.nl/component/k2/item/8-query-for-sql-server-stress-tests SQL Query Stress Tool:http://www.datamanipulation.net/SQLQueryStress/

Installing and Publishing a WordPress Blog with WebMatrix

http://www.microsoft.com/web/post/installing-and-publishing-a-wordpress-blog-with-webmatrix

Microsoft System Center … SCOM / SCCM / SCSM

 IT Service Management by Microsoft. Ein sehr guter Artikel dazu: http://www.windowspro.de/system-center/configuration-manager-operations-manager-service-manager-vmm-opalis-dpm-essentials

Microsoft SQL Server – Best Practices with SharePoint

max. degree of parallelism auf 1 setzenBei SQL Server Installation Latin1_General_CI_AS_KS_WS Collation verwendenContent-Datenbanken ‚manuell‘ per Transact-SQL-Script erstellenOptimales Dateilayout und weitere Einstellungen sicherstellen Datenbanken erst anschliessend mit einer Farm verbindenPro Prozessorkern eine Datenbankdatei (mdf, ndf) anlegen, maximal 8Transaktionslog benötigt immer nur 1 DateiBei Content Datenbanken mit hoher Leseaktivität (Publishing) Remote BLOB Storage einsetzen. Set Max. Degree ...

C# working with nulls / nullable types

Interesting post about the following operator:?? Existing but mostly overlooked… http://www.dotnetjalps.com/2013/01/Csharp-null-coalescing-operator.html?m=1

How to support in-app purchases (Windows)

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