Add,Remove Links in Top Suitebar (SkyDrive,Sites,NewsFeed) in SharePoint 2013

Great explanation of how to change the Top Suitebar in SharePoint 2013: http://www.learningsharepoint.com/2013/02/10/addremove-links-in-top-suitebar-skydrivesitesnewsfeed-in-sharepoint-2013/

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