Buzludja
01 March 2012
Great photos by Timothy Allen of the Buzludja (Бузлуджа) monument in Bulgaria. One of many amazing abandoned buildings, right up there with the Ryugyong Hotel.
Thanks to Norah for the forward.
Yavor is a PM at Snowflake working on developer experience. Previously at Docker, Auth0, Hulu, and Microsoft Azure.
01 March 2012
Great photos by Timothy Allen of the Buzludja (Бузлуджа) monument in Bulgaria. One of many amazing abandoned buildings, right up there with the Ryugyong Hotel.
Thanks to Norah for the forward.
21 February 2012
17 February 2012
We just pushed out a small February update (0.5.3) to the Azure SDK for Node.js, containing the following fixes:
Here is a one-click install of the new bits.
Alongside this, we also released a refresh (0.5.2) of the npm package for Azure, adding support for accessing ServiceBus queues and topics, among other fixes. Read Glenn’s blog post for more details.
13 December 2011
Following up on the announcements and demos shown at today’s Learn Windows Azure event, I decided to put together a very quick demo that gets you going on Azure with a real app as fast as possible.
I decided to modify express’ blog sample to use Azure storage, and also pre-configured all the service/role settings that Azure needs so you can get going as fast as possible.
Here is the 5-minute recipe:
npm install
Get-AzurePublishSettings
Import-AzurePublishSettings mine.publishsettings
Publish-AzureService -Name uniqueServiceName
You’re all done!
Unfortunately things don’t always go according to plan, so in case you get an Internal Server Error or anything else goes wrong after you deploy to the cloud, use this simple trick to debug.
<iisnode loggingEnabled="true" />
Publish-AzureService
09 December 2011
We’re happy to announce the final release of WCF RIA Services V1 SP2:
In this release, we add the following new features:
Known issues include:
04 November 2011

Trying to clone a repo using the GitHub for Mac client at work today was failing due to our proxy server. All my repos would show up, but they would fail when cloning, and trying to synchronize wouldn’t work either. I know I am sitting behind a HTTP proxy at work, but I assumed the GitHub client would just inherit the proxy settings already defined in the OSX preferences. Apparently not… so I hunted around the app to try and find dedicated proxy settings. Again, no luck here, but after looking around forums I discovered you could use the command line to set the proxy:
git config --global http.proxy http://proxy:port
I restarted the GitHub client, and now it would happily clone and sync my repos.