miércoles, 7 de septiembre de 2011

C# DreamInCode API - NuGet Package Released

Hey there. Today I took a gander at my DreamInCode library I released for .NET and decided to merge it over to Github.

https://github.com/sergiotapia/DreamInCode.Net

The source code is very easy to follow and hopefully I managed to clean out a lot of the cruft and over engineering I managed to cram in the previous version.

This time it's simple, clean and barebones.

C# DreamInCode API - NuGet Package Released

Hey there. Today I took a gander at my DreamInCode library I released for .NET and decided to merge it over to Github.

https://github.com/sergiotapia/DreamInCode.Net

The source code is very easy to follow and hopefully I managed to clean out a lot of the cruft and over engineering I managed to cram in the previous version.

This time it's simple, clean and barebones.

viernes, 2 de septiembre de 2011

SignalR doesn't work in IE - Internet Explorer.

Typical.

Internet Explorer just keeps biting us web developers in the ass and we have no choice but to find work arounds.

After toying around with SignalR on my MVC3 application, I tested things out in IE 8. Surprise surpise. It didn't work.

When you run your application in Internet Explorer you'll see this dreaded icon on the bottom left.



SignalR doesn't work in IE - Internet Explorer.

Typical.

Internet Explorer just keeps biting us web developers in the ass and we have no choice but to find work arounds.

After toying around with SignalR on my MVC3 application, I tested things out in IE 8. Surprise surpise. It didn't work.

When you run your application in Internet Explorer you'll see this dreaded icon on the bottom left.



jueves, 1 de septiembre de 2011

SignalR with MVC3 | Chat App - Build asynchronous real-time persistant connection websites.

This post is based on Scott Hanselman's SignalR post - but tweaked for MVC3. Source.



This is getting my vote for Tool of The Year™ 2011.

As it's description states in their GitHub page:

Async signaling library for ASP.NET to help build real-time, multi-user interactive web applications.


In a nutshell SignalR lets you communicate with clients on your website in real time. Imagine Comet implementation without all the fuss. Dead easy to setup, dead easy to work with, fast as holy hell. Yes - I'm excited.

I'm going to show you how to build a small chat application using SignalR in an MVC3 application.

SignalR with MVC3 | Chat App - Build asynchronous real-time persistant connection websites.

This post is based on Scott Hanselman's SignalR post - but tweaked for MVC3. Source.



This is getting my vote for Tool of The Year™ 2011.

As it's description states in their GitHub page:

Async signaling library for ASP.NET to help build real-time, multi-user interactive web applications.


In a nutshell SignalR lets you communicate with clients on your website in real time. Imagine Comet implementation without all the fuss. Dead easy to setup, dead easy to work with, fast as holy hell. Yes - I'm excited.

I'm going to show you how to build a small chat application using SignalR in an MVC3 application.