Amazon AppStream 2.0

Have you ever had dream of using your desktop application from anywhere you want to, like running it from browser or from your proffered device? Well then your dream has already came true. Amazon AppStream 2.0 is a fully managed, secure application streaming service that allows you to stream desktop applications from AWS to any … Continue reading Amazon AppStream 2.0

New features in Amazon Quicksight

Amazon Quicksight now has some more cool features. Out of those, below are few features which I found very useful. 1) Export to CSV One of the most useful newly added feature is capability of exporting to CSV. This feature was requested by many people and finally Amazon Quicksight is equiped with export to CSV … Continue reading New features in Amazon Quicksight

Automatic Data refresh in Quicksight

In my last post I have covered insight of Amazon Quicksight. It is here. In this blog we will see one more powerful feature of Quicksight which is automatic data refresh of any of the data sets you have chosen on Quicksight. Let us have quick introduction of Quicksight: Amazon QuickSight is a fast business … Continue reading Automatic Data refresh in Quicksight

Insight of Amazon QuickSight

AWS has launched QuickSight in November 2016 and in very short period of time it became so popular. First of we will see what is QuickSight? Amazon QuickSight is a fast, cloud-powered business analytics service that makes it easy to build visualizations, perform ad-hoc analysis, and quickly get business insights from your data. Using our … Continue reading Insight of Amazon QuickSight

Text to speech utility

We all become lazy sometimes when we get long emails. But at the same time we had to listen to them as the mail contains important information. If I tell about myself, then I grasp fast if someone speaks to me instead of reading something which is very long. And after talking with different people … Continue reading Text to speech utility

MVC6 (.Net core) applications are self hosted : Optional IIS integration

All ASP.NET Core applications are self-hosted. Yes you read it right! So does it mean IIS is not required? Yes, I mean we can host MVC6 application even without IIS. Wow...but How? I assume you have already downloaded .Net core from here. Next step would be to create sample MVC6 project. For now you can … Continue reading MVC6 (.Net core) applications are self hosted : Optional IIS integration

WebListener : A Windows HTTP server for ASP.NET Core

Special thanks to Mr.Tom Dykstra from Microsoft for suggesting some points for this post. Web Listener is now available on Nuget. First of all, what is Web Listener? Web Listener is one of the servers of .Net core. ASP.NET Core is completely decoupled from the web server environment that hosts the application. ASP.NET Core supports … Continue reading WebListener : A Windows HTTP server for ASP.NET Core

JPEG decoder for .NET Core

Some of you might already know that there is "currently" not any built in default JPEG decoder class for .NET Core since System.Drawing (except for System.Drawing.Primitives) is currently not present as a Nuget package. So is there any way of DECODING JPEG pictures on .NET Core for some server side processing? Yes certainly there is! … Continue reading JPEG decoder for .NET Core

Dependency Injection in MVC 1.0(ASP.NET Core)

Please note that below post would be more clear for those who already know what Dependency injection is. As we all know that things has been little changed in .Net core and things has also been changed the way we suppose to register all of our services that we are going to use as DI. … Continue reading Dependency Injection in MVC 1.0(ASP.NET Core)

JSON with camel case in MVC

  Yes, the wait is over. I have heard it manytimes why MVC does not support Camel Case serialization. As workaround people used to use ServiceStack or Json.NET. But as per recent announcement, MVC 1.0.0 now serializes JSON with camel case names by default. How? Before it was something like below: public class Person { public int Id { … Continue reading JSON with camel case in MVC