Project Nimbus: One Marina Boulevard Map Application

Project Nimbus is an effort to get more data sets online and accessible for innovators to build on. With the available data sets we have, the Project Nimbus team wanted to create an application which not only uses data just from one provider but mashing up different data sets together to make handy applications. We came out with this application to help you locate us better! Enter the location you are coming from and the application will route you straight to us showing you the traffic images along the route. What’s more? When you do visit us, it gives you an overview of the restaurants around Microsoft Innovative Centre Singapore to satisfy your hunger. How was the application implemented? 1. Get an application key – Email projectnimbus@live.com.sg to get your key. 2. Add in the AccountKey & UniqueUserID into the request header. ...

The Lazy Man's "PHP Hello Cloud"

Due to the popular demand on how to actually host a PHP application on Windows Azure, this post teaches you the easiest way to deploy your PHP applications on the Cloud with the least effort and there is no need to use Windows Azure. Resources Needed PHP Binaries for IIS (http://windows.php.net/) MySQL PHP Solution Accelerator (http://code.msdn.microsoft.com/winazuremysqlphp) VS2008 SP1/VS2010 Beta 2 w/ Windows Azure SDK Steps Install the MySQL PHP Solution Accelerator. Extract the PHP binaries for IIS to the “php” folder in the PhpMyAdminWebRole directory. E.g. “C:SamplesAzureMySQLPHP_x86PhpMyAdminWebRolephp” Create a new “Windows Azure Cloud Service” solution in Visual Studio. Add an existing project, “PhpMyAdminWebRole” (From the Solution Accelerator), to the solution you created. Right click on “Roles” and select “Add-> Web Role Project in solution” and select the project you added in your solution previously. Add a new text file in “PhpMyAdminWebRole” and name it “index.php”. The contents of the file is “ <?php echo ‘Hello Cloud’; ?> “ (Optional). Open Web.config and replace “ <add value=“Admin.aspx”/>” to “ <addvalue=“index.php”/> “ And you are all set! Hit F5 in your Visual Studio to see your work in action on the Development Fabric.