My Recent Weblogs
-
Circuit Breaker for Windows Azure
No application is in island. Every application needs to interact with other applications located in remote, or consumes data stored in remote. Your application should be cautious and handle instability situations while interacting with these remote endpoints. Various practices and patterns are available for implementing a stable system. Michael T.…
-
Developer Review – Machine Learning, Drew & John, O’Reilly
Introduction It is very interesting to read a hard core computing book from authors those are not in the computing industry. Their area of studies really make them as right choice for writing this book. Drew Conway studies international relations, conflicts and terrorism using tools of mathematics, statistics and computer science.…
-
Azure Storage Services Asynchronously in Java
When performing I/O bound operation, the program should use asynchronous approach. This is particularly important when you access the Azure storage services. As of now, Azure managed libraries for .NET and Java do not support asynchronous APIs. Instead, by using underlying run time’s asynchronous programming approaches along with Azure storage…
My Code Project Articles
-
Partial View Auto Refresh in ASP.NET MVC3
Partial View Auto Refresh in ASP.NET MVC3
-
Collection Binding in ASP.NET MVC3 with AJAX
Collection Binding in ASP.NET MVC3 with AJAX
-
Azure Table Storage, Domain Persistence and Concerns
This post is about the anti-corruption layer between domain objects and data persistence in the Azure world.