Posts

Showing posts from May, 2012

Free Website Templates

Hi Being a developers it was very tough for me to search for free website template. Luckily i got one link which really provide the free website templates online the website name is .. http://www.templatemo.com but only issue i found is this website do not have templates devided into categories. So, Lets say i need a website on account and finance but i need to look through all the websites in here.

Create professional looking website logo for free

Hi,  I am a developer an if somebody asks me to create a logo I will get confused as I don't know how to create it also, I don't have any friend who are designer. I just did some search on net and found out below site which allows us to create a professional looking website logo for free . http://www.logosnap.com/logo.php?action=create  

C# 5.0 Features : Async Programining

5 Ways of Doing Asyncronous programming. Async Vs Sync. Syncronous web request  makes threads waiting for the request to return.  This position aggrevates when the services are slow or services are timing out due to some problem in services. for example : lets say service is a waiter in a restaurent and request is client ordering for food then. incase of syncronous service the waiter will keep waiting while the client eats food and leave from there. Async Web request makes threads request for the service call and it gets relieved as soon as call is made to the service. so, that it can cater to other requests. And when the service returns the data a free thread will pick up the returned value and will return the result to the client origionally requested for it. for example : lets say service is a waiter in a restaurent and request is client ordering for food then. incase of asyncronous service the waiter will go to  client2  while the client1 eats food and will getba