<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>"How about a little TICkle to your business" - Thats what we call Technology, Imagination &amp; Creativity</title>
	
	<link>http://tic.webwingz.com</link>
	<description>feel + sense + stratergize</description>
	<lastBuildDate>Thu, 20 May 2010 06:51:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/webwingz" /><feedburner:info uri="webwingz" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><itunes:author>Webwingz</itunes:author><itunes:explicit>no</itunes:explicit><itunes:subtitle>feel + sense + stratergize</itunes:subtitle><item>
		<title>Upcoming techniques in web development quick notes for web developers</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/VsZc2eFJd60/</link>
		<comments>http://tic.webwingz.com/index.php/2010/05/upcoming-techniques-in-web-development-quick-notes-for-web-developers/#comments</comments>
		<pubDate>Thu, 20 May 2010 06:50:40 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Web Technologies]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=68</guid>
		<description><![CDATA[As well said “Necessity is mother of invention” and so is the emerging needs are demanding new [...]]]></description>
			<content:encoded><![CDATA[<p>As well said “Necessity is mother of invention” and so is the emerging needs are demanding new techniques in web development.New online product ideas,concepts and user experience are demanding more comprehensive techniques.Here are the list of few techniques that every web developer should know and this is surely gonna be the future of web development industry</p>
<h2>Html 5</h2>
<p>As we know HTML (HyperText Markup Language) the mark up language for developing websites has been now revisied to be the core.</p>
<p>HTML5 aims to reduce the needs of RIA technologies ( Rich Internet Applications ), Applications like Adobe Flash, Silverlight, Java and few more.</p>
<p>HTML5 also incorporates <em>Web Forms 2.0</em>, another <a title="WHATWG" href="http://en.wikipedia.org/wiki/WHATWG">WHATWG</a> specification. HTML5 also introduces a new way of presenting multimedia with such tags as (<code>&lt;audio&gt;</code>) and (<code>&lt;video&gt;</code>) as a beginning to standardize the mark up of such content. Although these are new and very useful tags, their use in browsing technologies is still minimal.</p>
<h2>HTML5 for offline Application</h2>
<p>Web developers ca easily use HTML 5 for developing offline application using a SQL database API and an offline application caching API for storing data locally (by using a client-side SQL database) that enables user to access application even in absence of internet connection. This technique use a <strong>.manifest</strong> file and JavaScript to get an update of the cached files when is not available a connection to the server. You can enable offline application caching by using the manifest attribute on the html tag:</p>
<blockquote><p>&lt;!DOCTYPE HTML&gt;</p>
<p>&lt;html manifest=&#8221;cache-manifest&#8221;&gt;</p>
<p>You have to create a <strong>.manifest</strong> file that specifies which files are to be cached offline. Here is a typical structure of a manifest file:</p>
<p>CACHE MANIFEST</p>
<p>index.html</p>
<p>about.html</p>
<p>style.css</p>
<p>logo.png</p>
<p>&#8230;</p>
<p>NETWORK:</p>
<p>server.cgi</p></blockquote>
<p>According to the W3C Working Group Note about <a href="http://www.w3.org/TR/offline-webapps">Offline Web Applications</a> topic, server.cgi should never be cached in order to continuously get updates from the server.Apple Developer Connection provides a full detailed, step-by-step guide to help you learning how to buit modern offline web applications. You can <a href="http://developer.apple.com/safari/library/documentation/iPhone/Conceptual/SafariJSDatabaseGuide/OfflineApplicationCache/OfflineApplicationCache.html#//apple_ref/doc/uid/TP40007256-CH7-SW1">read the full guide here.</a></p>
<p><strong>HTML 5 for editing the content within a HTML element</strong></p>
<p>The attribute contentditable in html5 enable developer to edit the content within the HTML  element with the <code><strong>contenteditable</strong></code> state set to “true”. Rich text editors can be easily created in using this attribute and you do not need to use any other third party resources like Ckeditor, TinyMCE , WYMeditor, jQRTE, Nice Edit. And good news is that IE, Firefox, Safari, Chrome web browsers are compatiable to this attribute. That means one can use it and don’t need to worry about browsers.</p>
<p><strong>Method to use HTML5 Contentidable attribute</strong><strong> </strong></p>
<blockquote><p>&lt;div contenteditable=&#8221;true&#8221;&gt;&#8230;&lt;/div&gt;</p>
<p>You can use <strong>document.execCommand</strong> to add some basic features to your custom editor simply adding this code in the <strong>head</strong> tag of your webpage:</p>
<p>&lt;script&gt;</p>
<p>function formatText(cmd){</p>
<p>document.execCommand(cmd, null, null);</p>
<p>}</p>
<p>&lt;/script&gt;</p></blockquote>
<h2><strong>FLIR<strong>: </strong>Facelift Image Replacement for fonts on web</strong></h2>
<p>FLIR is the an image replacement script that generates image of the text on the page in different font and the generated the image get inserted into web page through javascript  and which is visible on all latest IE, Firefox, Safari, Chrome web browsers .</p>
<p>Any element with text can be replaced: from headers (&lt;h1&gt;, &lt;h2&gt;, etc.) to &lt;span&gt; elements and everything in between!</p>
<p><a href="http://facelift.mawhorter.net/quick-start/">Check out the tutorial to use FLIR</a></p>
<h2>Oauth  - way to publish and interact with protected data.</h2>
<p>Outh allows the developer to help the User to grant access to your private resources on one site (which is called the Service Provider), to another site (called Consumer, not to be confused with you, the User). While OpenID is all about using a single identity to sign into many sites, OAuth is about giving access to your stuff without sharing your identity at all (or its secret parts).</p>
<p>Want to implement OAuth protocol on your application also take a look at the following links:</p>
<p><a href="http://code.google.com/apis/accounts/docs/OAuth.html">Implement OAuth for Google</a><br />
<a href="http://apiwiki.twitter.com/OAuth-FAQ">Implement OAuth for Twitter</a><br />
<a href="http://developer.yahoo.com/oauth/">Implement OAuth for Yahoo</a></p>
<h2>oEmbed</h2>
<p>Have you seen that when you insert a link of video or image from the well known sites like Youtube, Vimeo, flickr or any other site on your facebook status it converts the link into a movie or image and gets it embedded in your message.</p>
<p>Here is the Example:</p>
<p><a href="http://tic.webwingz.com/wp-content/uploads/2010/05/oembed-example.png"><img class="size-full wp-image-69 alignleft" src="http://tic.webwingz.com/wp-content/uploads/2010/05/oembed-example.png" alt="" width="538" height="254" /></a></p>
<p>This technique of allowing an embedded representation of a URL on third party sites is Oembed Api.</p>
<blockquote><p>First of all you have to download the <a href="http://code.google.com/p/jquery-oembed/">jQuery oEmbed</a> Plugin.Then you have to include on the <code>&lt;head&gt;</code> tag of the page a link to <strong>jQuery</strong> and <strong>jQuery.oEmbed</strong>:</p>
<pre><code>&lt;script src="jquery.min.js"&gt;&lt;/script&gt;</code></pre>
<pre><code>&lt;script src="jquery.oembed.js"&gt;&lt;/script&gt;</code></pre>
<p>In your HTML page, you have to add an <code>&lt;input&gt;</code> field and a <code>&lt;div&gt;</code> layer (into which your links will be embedded):</p>
<pre><code>&lt;input/&gt;</code></pre>
<pre><code>&lt;div&gt;&lt;/div&gt;</code></pre>
<p>Now add this simple JavaScript function immediately after the <code>&lt;body&gt;</code> tag:<br />
<span style="font-family: monospace;line-height: 18px;font-size: 12px">&lt;script&gt;</span></p>
<pre><code>  $(document).ready(function() {</code></pre>
<pre><code>    $("#olink").blur(function (){</code></pre>
<pre><code>      olink = $("#olink").val();</code></pre>
<pre><code>      $("#oembed").oembed(olink);</code></pre>
<pre><code>    })  </code></pre>
<pre><code>  });</code></pre>
<pre><code>&lt;/script&gt;</code></pre>
</blockquote>
<p>In this tutorial I used the <code>blur()</code> event but you can customize the code as you prefer (for example when an user submits the form).<a href="http://woorkup.com/2009/12/29/learning-oembed-convert-links-into-embedded-content/">Read Article</a> by Antonio Lupetti on Learning oEmbed: Convert Links Into Embedded Content</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/VsZc2eFJd60" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2010/05/upcoming-techniques-in-web-development-quick-notes-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2010/05/upcoming-techniques-in-web-development-quick-notes-for-web-developers/</feedburner:origLink></item>
		<item>
		<title>Suspense about BharatEstates.com to be revealed soon!</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/21VrNMO3wvM/</link>
		<comments>http://tic.webwingz.com/index.php/2009/11/suspense-about-bharatestates-com-to-be-revealed-soon/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 07:54:31 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[BharatEstates]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=57</guid>
		<description><![CDATA[
Suspense about BharatEstates.com to be revealed soon! As we move closer to the public launch of the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">
<p style="text-align: left">Suspense about BharatEstates.com to be revealed soon! As we move closer to the public launch of the new product site BharatEstates.com, we’ll be publishing updates on our development. First on the agenda: telling you about the all-new BharatEstates we’re building — soon to be released to current users and new Beta testers. Drop in your &#8220;Name&#8221; and &#8220;Email id&#8221; and get updates, about release dates and more about BharatEstates.</p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/21VrNMO3wvM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/11/suspense-about-bharatestates-com-to-be-revealed-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/11/suspense-about-bharatestates-com-to-be-revealed-soon/</feedburner:origLink></item>
		<item>
		<title>Avoid Choice Paralysis for your users</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/KELvZYD3jNI/</link>
		<comments>http://tic.webwingz.com/index.php/2009/11/avoid-choice-paralysis-for-your-users/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 07:35:16 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[Choice Paralysis]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=46</guid>
		<description><![CDATA[
Individual from marketing field must be very well versed to the concept of  &#8220;Choice Paralysis&#8221;
What is Choice [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-54" src="http://tic.webwingz.com/wp-content/uploads/2009/11/ChoiceParalysis_diagram.jpg" alt="ChoiceParalysis_diagram" width="450" height="593" /></p>
<p>Individual from marketing field must be very well versed to the concept of  <strong><em>&#8220;Choice Paralysis&#8221;</em></strong></p>
<p><strong><em>What is Choice Paralysis?</em></strong><br />
The phase of Choice paralysis takes place when the user is given too many options to look and choose. Having choice is good option, but when your customers are presented with too many options, they may be confused about taking right decision.</p>
<p><strong><em>What is solution to state of  &#8221;Choice Paralysis&#8221;?</em></strong><br />
Get things more simple to know and make less clutter of choices from the plate of user, guide the user by telling the benefits of making right choice. Use visuals to highlight the most popular product and steer potential customers towards it. If the product is not right for them, they’ll pick another, but if they’re confused, a “default” choice helps prevent choice paralysis</p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/KELvZYD3jNI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/11/avoid-choice-paralysis-for-your-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/11/avoid-choice-paralysis-for-your-users/</feedburner:origLink></item>
		<item>
		<title>Eyes wide open for Bharat Estates!</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/5RtnETDMCUQ/</link>
		<comments>http://tic.webwingz.com/index.php/2009/08/eyes-wide-open-for-bharat-estates/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 03:20:40 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[BharatEstates]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=36</guid>
		<description><![CDATA[I have been talking to sooo many people about bharat estates and everyone is just as excited [...]]]></description>
			<content:encoded><![CDATA[<p>I have been talking to sooo many people about bharat estates and everyone is just as excited as I am&#8230; <img src='http://tic.webwingz.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . Bharat estates will actually be the number one real estate portal with properties more than 5 lac posted by direct owners.. no agents allowed.. yes thats rite! Direct buyers meet direct sellers.. And where Builders will be treated with all due respect and will have an exclusive corner to showcase their projects! Project ratings, property reviews, pricing, documentation, Allied services&#8230; its all there on bharatestates.com.</p>
<p>Prototype will soon be ready and will be posted on bharatestates.com and i cant wait to show it to my investors.. If you are interested to invest in the portal please <a href="mailto:sagar@webwingz.com">email me</a> and i will guide you to become a part of &#8220;soon to be&#8221; the biggest real estate brand.</p>
<p>bharatestates.com: real properties, real buyers</p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/5RtnETDMCUQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/08/eyes-wide-open-for-bharat-estates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/08/eyes-wide-open-for-bharat-estates/</feedburner:origLink></item>
		<item>
		<title>Is my Online Advertising Effective ?</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/1qx5wCr4qW4/</link>
		<comments>http://tic.webwingz.com/index.php/2009/08/is-my-online-advertising-effective/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 03:03:59 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Web Strategy]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=34</guid>
		<description><![CDATA[As a business concern, have you spent sleepless nights wondering how well are your Internet advertising campaigns [...]]]></description>
			<content:encoded><![CDATA[<p>As a business concern, have you spent sleepless nights wondering how well are your Internet advertising campaigns are performing ? Not uncommon, we say… In the past, many sites did not offer suitable methods of tracking clicks, views, and conversions leaving you in dark on the effectiveness of your campaigns.<br />
The good news is, this is changing.. Most of the sites these days have employed tracking programs which offer you the ability to view how many impressions your ad has received, as well as how many clicks your ad has earned. </p>
<p>A few handy tips on this would be…<br />
The legitimacy of the conversion ratio reports you get from your advertising company can be checked through a simple tracking method. By using redirects or a link program, you can assign specific links to the different sites where your ads are appearing and each time a customer clicks on your ad, you will be able to see the info in your Web site’s log files or through reports generated by a link program.</p>
<p>Asking your customers how they found your website can be a low-tech option to track effectiveness, by placing a simple referral box in your site’s shopping cart before customers finish placing their order.</p>
<p>The referral box can be pretty helpful if you have to find out which sites are providing you with the best impression to click ratio or the best click to buy ratio as well.</p>
<p>If the ratio of impressions to clicks is low, it’s a clear indication that your ad is not able to connect to your target audience. Time to redesign your campaigns !</p>
<p>Always test waters by starting small in the beginning.. This way, you will have feelers about your new campaign’s effectiveness even before its launched.</p>
<p>Tracking which of your ads convert browsers to buyers will tell you which approaches work best. This way, you can fine tune your advertising spend on the campaign through tested data .</p>
<p>Advertising on the major search engines gives you access to relatively sophisticated tracking systems. Something as simple as a tracking code on the URL submitted to each unique campaign can provide gross level information by looking at your the traffic data in your ISP log files.</p>
<p>For more sophisticated solutions, you might want to try traffic monitoring (aka &#8220;Web analytics&#8221;) tools like <a href="http://www.clicktracks.com">Clicktracks</a> or <a href="http://www.onestat.com">OneStat</a>. Tools like this will give you more data than you will initially know what to with; however, as your business grows, so will your need for information.</p>
<p>A successful online advertising campaign will come with pro activeness of the advertiser and his grip on the facts and figures. Have them correct and you will be able to exploit your advertising budgets to the fullest and get the best out of it. Good Luck !</p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/1qx5wCr4qW4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/08/is-my-online-advertising-effective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/08/is-my-online-advertising-effective/</feedburner:origLink></item>
		<item>
		<title>Pipingo on go</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/p5rTrEHcxDg/</link>
		<comments>http://tic.webwingz.com/index.php/2009/08/pipingo-on-go/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 07:24:14 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Web Strategy]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=31</guid>
		<description><![CDATA[
Pipingo.com is one of our favorite projects,
Congrats to everyone who made pipingo come alive on the web.
Know [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-30 alignnone" src="http://tic.webwingz.com/wp-content/uploads/2009/08/pipingo-300x227.jpg" alt="pipingo" width="300" height="227" /></p>
<p>Pipingo.com is one of our favorite projects,</p>
<p>Congrats to everyone who made pipingo come alive on the web.</p>
<p><a href="http://www.pipingo.com/" target="_blank">Know more about pipingo.com</a></p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/p5rTrEHcxDg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/08/pipingo-on-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/08/pipingo-on-go/</feedburner:origLink></item>
		<item>
		<title>GraphJam – Sooo Funny</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/V_CKBHnQ93A/</link>
		<comments>http://tic.webwingz.com/index.php/2009/08/graphjam-sooo-funny/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 09:38:23 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Creatives on Internet]]></category>
		<category><![CDATA[funny charts]]></category>
		<category><![CDATA[funny graphs]]></category>
		<category><![CDATA[funny pie diagrams]]></category>
		<category><![CDATA[graphjam]]></category>
		<category><![CDATA[lol graphs]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=24</guid>
		<description><![CDATA[Man People are Sooo creative.. i am soon going to start doing this once I retire!!

see more [...]]]></description>
			<content:encoded><![CDATA[<p>Man People are Sooo creative.. i am soon going to start doing this once I retire!!</p>
<p><a href="http://graphjam.com/2009/08/07/song-chart-memes-husband-hearing/"><img class="mine_4825082" title="song-chart-memes-husband-hearing" src="http://graphjam.wordpress.com/files/2009/07/song-chart-memes-husband-hearing.jpg" alt="song chart memes" width="480" /></a><br />
see more <a href="http://graphjam.com">Funny Graphs</a></p>
<p><a href="http://graphjam.com/2009/08/07/song-chart-memes-quite-church/"><img class="mine_4780184" title="song-chart-memes-quite-church" src="http://graphjam.wordpress.com/files/2009/07/song-chart-memes-quite-church.jpg" alt="song chart memes" width="480" /></a><br />
see more <a href="http://graphjam.com">Funny Graphs</a></p>
<p><a href="http://graphjam.com/2009/08/08/song-chart-memes-attacked-shark/"><img class="mine_4881950" title="song-chart-memes-attacked-shark" src="http://graphjam.wordpress.com/files/2009/08/song-chart-memes-attacked-shark.jpg" alt="song chart memes" width="480"/></a><br />
see more <a href="http://graphjam.com">Funny Graphs</a></p>
<p><a href="http://graphjam.com/2009/08/10/song-chart-memes-world-dachshund/"><img class="mine_4878578" title="song-chart-memes-world-dachshund" src="http://graphjam.wordpress.com/files/2009/08/song-chart-memes-world-dachshund.jpg" alt="song chart memes" width="480" /></a><br />
see more <a href="http://graphjam.com">Funny Graphs</a></p>
<p><a href="http://icanhascheezburger.com/2009/08/11/funny-pictures-home-security-2/"><img class="mine_4308977" title="funny-pictures-lion-secures-your-home" src="http://icanhascheezburger.wordpress.com/files/2009/06/funny-pictures-lion-secures-your-home.jpg" alt="funny pictures of cats with captions" width="480" /></a><br />see more <a href="http://icanhascheezburger.com">Lolcats and funny pictures</a></p>
<p><a href="http://icanhascheezburger.com/2009/08/11/funny-pictures-i-got-here-2/"><img class="mine_4302998" title="funny-pictures-cat-denies-ripping-toilet-paper" src="http://icanhascheezburger.wordpress.com/files/2009/06/funny-pictures-cat-denies-ripping-toilet-paper.jpg" alt="funny pictures of cats with captions" width="480"/></a><br />see more <a href="http://icanhascheezburger.com">Lolcats and funny pictures</a></p>
<p><a href="http://icanhascheezburger.com/2009/08/12/funny-pictures-see-what-u-did/"><img class="mine_4323831" title="funny-pictures-cat-has-glasses" src="http://icanhascheezburger.wordpress.com/files/2009/06/funny-pictures-cat-has-glasses.jpg" alt="funny pictures of cats with captions" width="480" /></a><br />see more <a href="http://icanhascheezburger.com">Lolcats and funny pictures</a></p>
<p><a href="http://icanhascheezburger.com/2009/08/12/funny-pictures-he-likes-really/"><img class="mine_4858143" title="funny-pictures-cat-gives-hug" src="http://icanhascheezburger.wordpress.com/files/2009/08/funny-pictures-cat-gives-hug.jpg" alt="funny pictures of cats with captions" width="480" /></a><br />see more <a href="http://icanhascheezburger.com">Lolcats and funny pictures</a></p>
<p><a href="http://icanhascheezburger.com/2009/08/12/funny-pictures-look-i-iz-naked/"><img class="mine_4862919" title="funny-pictures-your-cat-is-naked" src="http://icanhascheezburger.wordpress.com/files/2009/08/funny-pictures-your-cat-is-naked.jpg" alt="funny pictures of cats with captions" width="480"/></a><br />see more <a href="http://icanhascheezburger.com">Lolcats and funny pictures</a></p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/V_CKBHnQ93A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/08/graphjam-sooo-funny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/08/graphjam-sooo-funny/</feedburner:origLink></item>
		<item>
		<title>Online T-Shirt Stores, catching up!</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/N2KOd1jlzYs/</link>
		<comments>http://tic.webwingz.com/index.php/2009/08/online-t-shirt-stores-catching-up/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 13:44:02 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[customized tshirt portal]]></category>
		<category><![CDATA[t shirt]]></category>
		<category><![CDATA[tshirt]]></category>
		<category><![CDATA[tshirt store]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=21</guid>
		<description><![CDATA[
As a part of our market research activities, we were evaluating the customized t shirt market scenario [...]]]></description>
			<content:encoded><![CDATA[<div class="post">
<p>As a part of our market research activities, we were evaluating the customized t shirt market scenario in India.  Online t-shirt selling websites are a huge successful in the US and lot of these models are being adopted for the Indian market as well.</p>
<p>There are two prominent business models that have been successfully implemented in the US.</p>
<ul>
<li><strong>The Custom made t-shirts</strong><em>(Customized by user)</em> Eg : <a onclick="javascript:pageTracker._trackPageview('/outbound/article/zazzle.com');" href="http://zazzle.com/" target="_blank">Zazzle</a>, <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.cafepress.com');" href="http://www.cafepress.com/" target="_blank">cafepress</a> (They sell other merchandise as well : mugs, stickers, caps etc)</li>
<li><strong>Community based T-shirt company</strong> <em>(Winners of a design competition)</em> Eg : <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.threadless.com');" href="http://www.threadless.com/" target="_blank">Threadless</a></li>
</ul>
<p>Both these models are replicated in the Indian market.</p>
<p><a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.myntra.com');" href="http://www.myntra.com/" target="_blank">Myntra</a>, <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pringoo.com');" href="http://www.pringoo.com/" target="_blank">Pringoo </a>are at the top of the league now.They have a model similar to <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.zazzle.com');" href="http://www.zazzle.com/" target="_blank">Zazzle</a></p>
<p><a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.inkfruit.com');" href="http://www.inkfruit.com/" target="_blank">Inkfruit </a>has a different business model more on the lines of <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.threadless.com');" href="http://www.threadless.com/?=">threadless</a>.</p>
<p>When we are talking about a emerging market like India where the size of the market is huge and adaptability of a new product is slow, we realized a few important aspects which have to be done right to be successful in this business. we spoke to some sample set of users and we asked them what would influence their decision to buy t-shirts online and this is what we found out in the order of priority.</p>
<p>1. Brand suggested by peers<br />
2. Visual appeal of the site<br />
3. Customer experience on the site<br />
4. Availability of designs<br />
5. Selection of T-shirt types<br />
6. Customer service<br />
7. Name of the web site<br />
8. Search engine ranking<br />
9. Price</p>
<p>One might be surprised to see price at the bottom of the list, but if we consider the fact that we are still in the  nascent stages of this market, price after all is not a major competitive advantage.</p>
<p>Many new businesses are emerging in this field and these aspects have to carefully addressed by them to make an impact on the market.</p></div>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/N2KOd1jlzYs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/08/online-t-shirt-stores-catching-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/08/online-t-shirt-stores-catching-up/</feedburner:origLink></item>
		<item>
		<title>Web Strategy? Whats that.</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/dDD4c2hzvJw/</link>
		<comments>http://tic.webwingz.com/index.php/2009/08/web-strategy-whats-that/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 13:11:02 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[web consultancy]]></category>
		<category><![CDATA[web strategy]]></category>
		<category><![CDATA[website architecture]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/index.php/2009/08/web-strategy-whats-that/</guid>
		<description><![CDATA[Definition: Web strategy is translation of the organizations objectives into a web implementable set of activities.
For a [...]]]></description>
			<content:encoded><![CDATA[<p>Definition: Web strategy is translation of the organizations objectives into a web implementable set of activities.</p>
<p>For a business/product to be successful online it has to successfully talk to all the aspects of the web ecosystem. It has to answer ‘who’, ‘what’,&#8217;when ’s ‘ of the market. The business has to align itself to a set of guiding principles that would make it successful online. These web guiding principles will describe how the business will use the web effectively to establish conversations with the target customers.They are not a set of rules which can be applied to any business domain,but is a framework which will align the organizations objectives with the web principles.</p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/dDD4c2hzvJw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/08/web-strategy-whats-that/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/08/web-strategy-whats-that/</feedburner:origLink></item>
		<item>
		<title>Singapore web design and web development services</title>
		<link>http://feedproxy.google.com/~r/webwingz/~3/ntXM0pvAa4k/</link>
		<comments>http://tic.webwingz.com/index.php/2009/05/singapore-web-design-and-web-development-services/#comments</comments>
		<pubDate>Thu, 21 May 2009 06:03:08 +0000</pubDate>
		<dc:creator>Webwingz</dc:creator>
				<category><![CDATA[Web Strategy]]></category>

		<guid isPermaLink="false">http://tic.webwingz.com/?p=18</guid>
		<description><![CDATA[Webwingz Softwares have recently initiated their business relations in Singapore providing top level web design and web [...]]]></description>
			<content:encoded><![CDATA[<p>Webwingz Softwares have recently initiated their business relations in Singapore providing top level web design and web development services for Singapore Customers, at extremely reasonable rates. Sagar Kogekar (founder of Webwingz) said &#8220;Singapore is the hub of International Communications and Digital Media. There is a heavy demand for web applications, web development and design services to which quality suppliers are very few.&#8221; Webwingz has also been focusing on investors from Singapore who are interested in setting up their development centers in India. Webwingz also helps build a team of quality professionals offering a wide array of IT services including web development, website designing, SEO services, google optimization, internet marketing, 2D and 3D animations and more&#8230; Not only this Webwingz has also started DPO (design process Outsourcing) which means they create bulk flash or gif attractive banners for advertising and marketing purpose. This is typically required for Magazine websites and portals. Webwingz has a team of 8 highly qualified designers for this task and they have come up with the best creative banners which are irresistible to click.</p>
<p>Moreover Webwingz expert services include, portals development in singapore, web applications in singapore, singapore payment gateway integrations, advertising for singapore market, flash intro development, flash banner development, real estate portal development in singapore, flash presentations, brochures and print media in singapore and many more&#8230;</p>
<p>Why Singapore? Because Singapore has a lot of potential corporates and individuals who are still pondering to get the right web designing and web development solutions from the right vendor within the right budget. A website which looks not only professional but also gives a medium to exhale potential businesses. It is essential in a good website to be crystal clear on content, navigation, easy point of purchase and uncomplicated structure. Webwingz takes care of exactly that. Before start of any website development or design Webwingz has a list of questions for the client to make the task simple. Instead of going to and fro to the client for requirement Webwingz believes to deliver the perfect web solution without troubling the client too much. Singapore has a lot of potential web design and web development market still waiting to get explored and Webwingz has taken an active part in doing so.</p>
<p>From Webwingz Softwares Pvt. Ltd. &#8211; Combining Technology Imagination and Creativity</p>
<img src="http://feeds.feedburner.com/~r/webwingz/~4/ntXM0pvAa4k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tic.webwingz.com/index.php/2009/05/singapore-web-design-and-web-development-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tic.webwingz.com/index.php/2009/05/singapore-web-design-and-web-development-services/</feedburner:origLink></item>
	<media:credit role="author">Webwingz</media:credit><media:rating>nonadult</media:rating></channel>
</rss>
