iPad User agent string
Here it is: Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10 You can test how you page looks like in Apple...
View ArticleODATA WCF Data Services Friendly URLS using Routing
When you creating your first OData WCF Data service common tasks is to give a friendly URL instead of using filename.svc as entry point.You can archive it with URL routing feature in ASP.NET MVC.Just...
View ArticleDeploying MVC dependencies to Azure
If you creating web application to be deployed to Windows Azure, you probably noticed that deployment and azure instance initialization may take a while. Any missing reference or break will cause you...
View ArticleStorageClient.StorageClientException: The specified blob already exists
Got interesting exception today while trying to upload multiple file blobs to Azure container. private void UploadFileToBlob(string url, Asset asset,string filepath,string filename) { var container =...
View ArticleImproving performance for Windows Azure tables
Original article NET and ADO.NET Data Service Performance Tips for Windows Azure Tables. Summary: Default .NET HTTP connections is set to 2 Config file: <system.net>...
View ArticleLINQ Contains operation is not supported by Azure Table API
Unfortunately Azure API not supporting Contains LINQ expressions . Contains Syntax: LINQ public static Product[] GetProducts(Guid[] prodIDs) { return (from p in GetProducts() where...
View ArticleReseting local Windows Azure storage
I run few days into a problem when I was not able to delete local development storage tables using Windows Azure API and system was throwing me exceptions. The reason of these exceptions I guess was...
View ArticleIOC- MEF,UNITY reading of a day
Couple of good readings regarding MEF usage. MEF introduction article – http://www.informit.com/articles/article.aspx?p=1635818 http://brendanforster.com/mef-import-vs-importingconstructor – article...
View ArticleA potentially dangerous Request.Path value was detected from the client
I have a Odata service implementation and started getting errors where one of parameters in query has ‘:’. Solution: <system.web> <httpRuntime requestValidationMode="2.0"...
View ArticleWindows Azure Media Services – Job Progress in Portal
With latest update of Windows Azure Management Portal you are able to track progress or a Windows Azure Media Services Job submitted through portal. Try it now. There are few filtering options...
View ArticleIntegrate Azure Media Services OWIN MVC based app with Azure Active Directory
Updated on 04/22/2015: Code samples mentioned here has been moved to official Azure Media Services sample github repo. Usage of graph API JWT token has been changed to display group membership only....
View ArticleAzure Media Services 3.2.0.0 and JWT related changes in Azure AD integration...
In last post i showed how you can integrate Azure Media Services Key Delivery service functionality with JWT token obtained from Azure Active Directory.Sample code mentioned in article located in...
View ArticleUsing Json Web Keys from OpenID Connect discovery spec to work with JWT token...
In my recent blogs post “Integrate Azure Media Services OWIN MVC based app with Azure Active Directory …” I described how you can utilize JWT token issued by Azure Active directory and provide group...
View ArticleWhen you overgrow your RaspberryPi sd card - How to clone SD card and re-size...
After Raspberry PI arrived and you spent few weeks experimenting you start realizing that you run out of space in your sd card. Especially it is true when you use some sd card which was laying around...
View ArticleStreaming live video from Rasspberry pi to Azure Media Services
Few weeks ago I bought raspberry PI 2 Model B to my elder kid to encourage him to program something and start hacking. And as it often happens I also started to explore new toy and its capabilities....
View ArticleRunning azure cli on Raspberry Pi using docker containers
Few days ago i was playing with my Pi 2 and wanted to execute Azure CLI 2.0 commands to deploy some containers to Azure Container Registry. I knew i probably had to compile cli source code to target...
View ArticleGitHub Pages - run Jekyll using Docker container and deploy it using Azure...
Recently i migrate my blog to github pages which using Jekyll engine under a hood to convert markdown files to html and generate static site. After 12 years of hosting blog, i found that i don’t really...
View ArticleStreamlining Your Coding Experience with VSCode.dev
What you gonna do when you don’t have access to your computer but want to change couple lines of code in github repository using familiar vscode experience. I found that browser based vscode.dev...
View ArticleHosting and deploying a static website to Azure. Using azure storage account...
Before going into details of how to configure static web site in azure let’s list why static web sites might be an option for your project. Benefits and Key Scenarios of Using Static Websites:...
View ArticleGitHub Pages - test from long years of blogging pause
Welcome back from years of blog silence. Test post to see if Jekyll engine is still running. Let’s see if it can genereate test post from github.
View Article