jQuery.favicon moved to GitHub
jQuery.favicon plugin was moved to GitHub repository https://github.com/viatsyshyn/jQuery.favicon.
Android Big Tic Tac Toe ported to Windows Phone 7
We are proudly announcing: we’ve started to provide Windows Phone 7. Our Android Big Tic Tac Toe was ported to Windows Phone 7 and soon be published on Microsoft Marketplace. See demo below.
CoverFlow – style control for blackberry
HelloWebApps CoverFlow is highly customizable CoverFlow-like component for Blackberry devices. It doesn’t require OpenGL capabilities for Blackberry device, so it works with Blackberry OS versions earlier, than 5.0. It has been tested to work properly on Blackberry OS 4.6.
This component released under open source MIT license, so everybody could use it for free and modify it for thier needs. Current status of the component is alpha-version (API could change in the future) and it is under active development now. This article demonstrates component’s main features. You can see sources of demo application that uses most of control’s features (CoverFlow-based ToDo manager).
Producing JSON from Entity Framework 4.0 generated classes
Currently our favorite web-development framework is ASP.NET MVC 2.0 and out favorite ORM technology is EntityFramework. ASP.NET MVC is first web-framework shipped by Microsoft where View and Controller is really separated, so we are taking all advantages from this. We are using Controller and depending on “call extension” (no extension, .xml, .json, .xlsx, .html) we are producing different output, for example:
/User/Details => produces render of whole page with masterpages, controls, etc
/User/Details.xml => responds with data returned by Controller and serialized to XML
/User/Details.json => responds with data returned by Controller and serialized to JSON
/User/Details.xlsx => responds with a generated Excel file with output of Cotroller
/User/Details.html => returns strict html to represent just data returned from Controller
This approach allows to use one Controller and produce different views. You can read about more about implementation of extension driven approach here => http://icanhascode.com/2009/05/simple-ror-respond_to-functionality-in-aspnet-mvc/
But we faced problems most users facing while using EntityFramework and who needs to return JSON response from objects generated by EntityFramework. Read more 


