Continuous integration using TFS on the Cloud (Stephen Ebichondo) - For many people continuous integration sound so complicated that they don't want to try it. Here is an excellent tutorial that will guides you through your first build.
ASP.NET Web API Queryable with OData (Channel 9) (Brady Gaster Cory Fowler) - Nice show with a lot of info on new oData coming soon. Also, the first On Location interview Scott Hunter; tease of some new functionalities to come in VS.
DefinitelyTyped TypeScript definitions now on NuGet (Jason Jarrett) - Typescript is really powerful and easy to use. And these days it’s even easier to use with all those new DefinitelyTyped package for NuGet.
Polymorphism: Part 1 (John Teague) - Great tutorial that explains an important concept in programmation.
Learning Center - Wow, I just discover this web site, and I thought to share it because it's an incredible source of information well-structured and clear.
jQuery Mobile 1.3.0 Released - New release of jQuery Mobile the library to use for a Responsive Web Design (RWD) or for a mobile first approach.
Integration
What’s new in BizTalk360 v6.0? (Saravana Kumar) - Biztalk360 is holding his promises by releasing a new version after 4-5 month. This post list what the changes.
What's New? - Another release of AWS services this week; this one is about CloudFormation: a tool to enhance automatic task on EC2 instance to reduce the downtime when those tasks are to be execute.
Programming
Why I Write Tests (Jason Whaley) - If you don't understand the benefice of working in TDD, or if you don't know what's the utility of those unit Tests, is post is for you.
Getting Busy at Script Junkie (Michael Desmond) - Quick review of what have been done since the site has been moved "under" MSDN.
Teach your kids to be fans (Scott Hanselman) - Good lesson. Today it's simple to send/ publish hard critics about anything... It is also that easy to congratulations... so do it.
A Helping Hand Through the Building An App Maze (Jonathan Rozenblit) - Learn more about this great opportunity for developpers to get help and finally start the new pet project there thinking about...
Service Bus Notification Hubs-Part 4 The Solution (Kent Weare) - Last post of a great series that conclude how you could enhances BizTalk BAM Alert with a toast notification using Azure service bus notification hubs. If you missed this series here the other posts:
Testing Browser Compatibility Made Easy (Jonathan Rozenblit) - Great post that introduces a nice wizard and some even nicer offer. Something definitely to try.
Turn Your Future into a Hobby (Jonathan Rozenblit) - Great post. Read it and jump on some ideas of yours... start coding!
A Helping Hand Through the Building An App Maze (Jonathan Rozenblit) - Learn more about this great opportunity for developers to get help and finally start the new pet project there thinking about...
Are you having fun? (futureperfectenglish.blogspot.ca) - Motivating post that gives some ideas to set motivated when learning a new language.
4 Ways to Train Your Brain for Positivity (Jessica Stillman) - Nice post that suggests simple exercises to improve our brain and gives more references for a dipper knowledge.
Windows Azure VM Development: Part 1 (Bryan Bolling) - Great post about how to get started working with VM in Azure. First post of a promising series.
YouTrack — Agile Issue & Project Tracker - Great tutorial that explains a steps from A to Z how install YouTrack in an Azure VM to enjoy Agile project tracking.
Announcing Amazon Elastic Transcoder - Amazon is replying to the Windows Azure Media Services that was releasing last week by announcing a service of the same kind.
Maarten Balliauw {blog} (Maarten Balliauw) - Get tutorial for continuous development. I'm looking forward to see more tools/framework from .Net that will be supported.
SQL Server Backup and Restore to Cloud Simplified (Craig Kitterman) - This post explain how to backup our on-premise database in Azure. This way you have easily a backup offsite. Even more, since this backup can be restore on premise or directly in the cloud!
(An updated version of this post is available in both English and français)
First of all, why would you want to copy Virtual Hard Drive (VHD) or a blob from a Windows Azure subscription to another? It could be for: doing backups, because your Windows Azure trial is ending, to get a copy of a client’s VM to investigate a problem. So, when one of my client asked me if it was possible to do it, my answer was: “Yes it is, using command line tools”. But since he was looking for a simple solution, I wrote him a little script that I will share here so everyone can enjoy it.
Get Started
To do the copy, you only need to do one PowerShell command. But, in order to execute this command, you need to have Windows Azure command-line tool already installed. At the end of this post, the script to install the Windows Azure command-line tool will be provided.
The command
Having installed the required tool, you can execute this one line of code from the Windows Azure command-line:
azure vm disk upload <source-path> <target-blob-url> <target-storage-account-key>
Get the source
In this command, you must replace <source-path> by the url of the VHD or blob that you want to copy from.
You can get this url through the Windows Azure Portal, using your account where you want to copy from.
On the left side of the screen click on the Storage icon.
Then click on the storage name.
From the top of the screen click on Containers
And when the container list appears click on the name of the container to get the details view.
Get the destination
Now that the "from" as been identified, we need to specify the “to”. We must replace the <target-blob-url> by the url of the Windows Azure Storage container in the destination Azure subscription. If the Blob container already exists, just connect to this account and follow the previous steps. Otherwise, you need to create a new one by using the “+” imbutton on the bottom left of the screen.
The easiest way is to set the container with a public access at the time of the transfer. You can set this option when creating or editing the container using the button at the bottom of the screen.
Then specify the access propriety to Public Container.
Get the key
Last part but not the less important we must specify the storage account key and replace the <target-storage-account-key> with it. You can find it by accessing the Manage Keys button from the dashboard of the Storage. You can use either the primary or the secondary access key.
Install the Windows Azure command-line tool
Here is a little script that you should put in a “.cmd” or “.bat” file. It will install the Windows Azure command-line tool with Node.js and Chocolatey. After running the script, a console window that looks like this should be open.
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('http://bit.ly/psChocInstall'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin
@powershell "cinst nodejs.install" && SET PATH=%PATH%;%ProgramFiles(x86)%\nodejs
@powershell -ExecutionPolicy unrestricted "npm install azure -g" && SET PATH=%PATH%;%USERPROFILE%\AppData\Roaming\npm\
@powershell azure
pause
The Missing Windows 8 Instructional Video (Scott Hanselman) - Finally! Someone did it. Great video that helps to get started with Windows 8. Bookmark, share and re-share.
WordPress Database Error on Azure (Schwammy) - Nice catch. These tips will save a lot of time to anyone having a Wordpress blog hosted on windows Azure.
Manage your subscriptions with the Windows Azure Tools for Visual Studio - This post explains the features of the new available tools Studio to manage our Azure. Since Vs is the principal tool for all the .Net developers and that this add-on is very powerful, I highly recommend to read this post.
8 Tips to Sell Windows Store App - Nice post that complete all those how-to build your app to the windows store. This one explains how to maximize your impact and get as many download as possible.
Backing Up WordPress? Don’t Make These 9 Mistakes - If you are a developer, you probably backup your machine and your code. That's good. Do you do the same for your blog? You should, here is how to do it the good way.
iPad, Surface, Ultrabook: Are we there yet? (Scott Hanselman) - The comparison we were all waiting for. A MUST READ post. I’m a little sad that no Android device has been included. I think the Asus transformer could be confederates. a bit sad that any Android device was included. I think the Asus Transformer could be ferly confederated.
Table Storage 2.0 (Tyler Doerksen) - Nice post that explains the new structure of the namespace in the library and gives some samples of code how to use it.
Azure Remote PowerShell (Dustin Metzgar) - This post explains how the author managed to get more information from an instance running in Azure. The code sample is also available.
Why All The Lambdas? - This post explains very clearly how the lambdas are so useful by using a well use sample of code in Asp. Net MVC @Html.TextBoxFor(Model.Rating).
JQUERY 1.9 BETA 1 RELEASED - Nice jQuery 1.9 is coming. Learn all about the new features ex: the multiple getter. Since big structural changes are maid in this version the jQuery team is providing migration tools. Learn where to find these and how-to uses them in this post.
Recreate a VM .. over and over again (Priyo Lahiri) - Nice script that is a time saver. I would have liked to have it one month ago when I was testing deployment... Let's keep it for the future.
Surface & iPad Collision Course - Nice post that compares what could be compared between an iPad and a Surface... Nothing unexpected put still something to read.
Backing Up WordPress? Don’t Make These 9 Mistakes - If you are a developer, you probably backup your machines and your code. That good. Do you do the same for your blog? You should, here is how-to do it the good way.
Windows Azure Service Bus: Messaging Patterns Using Sessions - Great article that explains how to build a messaging application with the Azure Service Bus using Topic. A great complement to the Servise Bus Lab in the Windows Azure Training Kit (WATK).
Updating my Windows Phone App to Windows Phone 8 (Scott Hanselman) - Nice tutorial that highlight some key features that need to be addressed in order to build a nice Windows Phone 8 applications.
ASP.NET and Web Tools 2012.2 (Release Candidate) (Scott Hanselman) - Learn more about the new release of web tools that the asp.net team move to open source. And if you ever want to know why they’re doing that, this is the post to read.
Miscellaneous
Big Data - Very interesting thoughts about what should be "smart application" today since the so much information is easily accessible thru Big Data.
Try Meditation to Strengthen Your Resilience - If the resilience is good for our code, it should be good for ourselves too!? Nice post that tip-off how to improve our resilience.
How to be a Consultant, Part 5: Verbal Communication Skills (David Pallmann) - Great add-on to the serie: How to be a Consultant. This post gives good tips to improve the communication skills. This is for everyone since nobody works alone in his basement without seeing someone once in a while.