<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>TheUnical Technologies Blog &#187; Web 2.0</title>
	<atom:link href="http://blog.theunical.com/category/creative-website-design/web-2-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.theunical.com</link>
	<description>TheUnical Technologies Official Blog</description>
	<lastBuildDate>Fri, 30 Jul 2010 03:56:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Latest Trends in Website Optimizations for Web2.0</title>
		<link>http://blog.theunical.com/browsers/latest-trends-in-website-optimizations-for-web2-0/</link>
		<comments>http://blog.theunical.com/browsers/latest-trends-in-website-optimizations-for-web2-0/#comments</comments>
		<pubDate>Sun, 16 May 2010 11:33:59 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Creative Website Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web 3.0]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[Website Optimization]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/?p=306379</guid>
		<description><![CDATA[Trends are changing with the change in latest technologies and web2.0 standards.


Compress Graphics of site using PNG and not GIF for Transparent
For Transparent we can use PNG formats and for NON Transparent we can use JPG formats
PNGs were designed to be a superior replacement for the Graphic Interchange Format (GIF). GIFs are limited to 256 [...]]]></description>
			<content:encoded><![CDATA[<p>Trends are changing with the change in latest technologies and web2.0 standards.</p>
<h3><span id="a000333more"><span id="more"></p>
<p></span></span></h3>
<h2>Compress Graphics of site using PNG and not GIF for Transparent</h2>
<p><span id="a000333more"><span id="more">For Transparent we can use PNG formats and for NON Transparent we can use JPG formats</span></span></p>
<p>PNGs were designed to be a superior replacement for the Graphic Interchange Format (GIF). GIFs are limited to 256 colors  (8-bit color palette), one level of transparency, and the Lempel-Ziv-Welch (LZW) compression algorithm that was patented  by UNISYS. In most cases, PNG files from the same source images are smaller than corresponding GIFs.  PNGs use the &#8220;deflate&#8221; compression algorithm, which is 10 to 30% more efficient than  LZW compression.</p>
<p>By design PNGs have some advantages over GIF images. PNGs offer more choices in color depths than GIFs,  including 8-bit (256 colors), 24-bit (8 bits per channel), and 48-bit (16 bits per channel) truecolor  allowing for greater color precision and smoother transitions. When you add an alpha channel, PNGs allow  for up to 64 bits per channel. PNGs can have index color transparency (one color) or alpha transparency  (multiple levels) useful for smooth shadow transitions over other images. In summary, the advantages of PNGs  over GIFs are:</p>
<ul>
<li>Alpha channels (multilevel transparency)</li>
<li>Variable bit depths</li>
<li>Cross-platform gamma and color correction</li>
<li>Two-dimensional interlacing</li>
<li>More efficient lossless compression (LZ77 vs. LZ78+)</li>
</ul>
<h2><strong>Using image sprites</strong></h2>
<p>If you use a lot of background images in CSS, it’s a good practice to put all the images you need in one big canvas. You can then set background-position in CSS to get the image you want from the big image. The advantage here is that instead of having to make numerous HTTP requests on a page, the browser only needs to make one request for the big image and thus speeding up load time. Some people usually create a sprite for images of the same purpose, for example, a sprite for navigation images, a sprite for logo images, a sprite for footer images, etc, but there is no reason why you can’t create combine all images, be it navigation, icons or footer, in one single sprite.</p>
<p>Learn here <a href="http://www.w3schools.com/css/css_image_sprites.asp">how to create image sprite</a></p>
<h2>Minify and Pack Your JS and CSS files</h2>
<p>Instead of Using Multiple JS and CSS files while loading a website, use only one file of JS and one file for CSS, they are many tools that are available to achieve this.</p>
<p>Here is one of such tool</p>
<p><a href="http://code.google.com/p/minify/">http://code.google.com/p/minify/</a></p>
<p>You can use this <a href="http://jscompress.com/">online tool</a> to compress your Javascript files using the above algorithms.</p>
<h2>Caching Files on Server</h2>
<p>Here is a simple caching method you can use with .htaccess file. It simply sets the expiry header and cache control for browsers so the browser keeps certain components in its cache and retrieve them from the cache rather than making a new HTTP request every time.</p>
<pre>#604800  = 1 week in seconds
&lt;FilesMatch "\.(gif|jpg|jpeg|png)$"&gt;
Header set Cache-Control "max-age=604800"
&lt;/FilesMatch&gt;

#86400 = 1 day in seconds
&lt;FilesMatch "\.(js|css)$"&gt;
Header set Cache-Control "max-age=86400"
&lt;/FilesMatch&gt;</pre>
<h2>Multiple Domains</h2>
<p>If your are targeting a high volume side, Then its always time for you to have a separate sub domain for all Images ,JS, CSS.</p>
<p>This will help you to load all the files at parallel</p>
<p>for example.</p>
<p>If your domain name is domain.com</p>
<p>then always use js.domain.com for all your javascript files</p>
<p>img.domain.com for all your images</p>
<p>css.domain.com for all your Style sheet files.</p>
<h2><strong> Benchmark and Test</strong></h2>
<p>Always benchmark, test and optimise more whenever possible.   I use <a href="http://getfirebug.com/">Firebug Network Monitoring Tool</a> and <a href="http://developer.yahoo.com/yslow/">YSlow</a> for this purpose.</p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=306379&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/browsers/latest-trends-in-website-optimizations-for-web2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fitness and Web 2.0: The Collection « ScienceRoll</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/fitness-and-web-2-0-the-collection-%c2%ab-scienceroll/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/fitness-and-web-2-0-the-collection-%c2%ab-scienceroll/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:42 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/fitness-and-web-2-0-the-collection-%c2%ab-scienceroll/</guid>
		<description><![CDATA[WolframAlpha Search. You can find hundreds of examples on Fitness and Web 2.0. We also help you follow the best fitness blogs, journals, news sites and Twitter users on PeRSSonalized Fitness: &#8230;

ScienceRoll &#8211; http://scienceroll.com/
]]></description>
			<content:encoded><![CDATA[<p>WolframAlpha Search. You can find hundreds of examples on Fitness and <b>Web 2.0</b>. We also help you follow the best fitness blogs, journals, news sites and Twitter users on PeRSSonalized Fitness: <b>&#8230;</b></p>
<p><a href="http://scienceroll.com/" title="http://scienceroll.com/"><br />
ScienceRoll &#8211; http://scienceroll.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303805&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/fitness-and-web-2-0-the-collection-%c2%ab-scienceroll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starmind Amancio Bouza to win UBS Web 2.0 competition « Starmind</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/starmind-amancio-bouza-to-win-ubs-web-2-0-competition-%c2%ab-starmind/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/starmind-amancio-bouza-to-win-ubs-web-2-0-competition-%c2%ab-starmind/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:42 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/starmind-amancio-bouza-to-win-ubs-web-2-0-competition-%c2%ab-starmind/</guid>
		<description><![CDATA[Amancio Bouza, UBS Web 2.0 winner, holding the Starmind Golden BrainAmancio Bouza, UBS Zurich, January 20, 2010. In December 2010 Starmind participated in a national contest aiming at finding novel Web 2.0 approaches to boost &#8230;

Starmind &#8211; http://blog.starmind.com/
]]></description>
			<content:encoded><![CDATA[<p>Amancio Bouza, UBS <b>Web 2.0</b> winner, holding the Starmind Golden BrainAmancio Bouza, UBS Zurich, January 20, 2010. In December 2010 Starmind participated in a national contest aiming at finding novel <b>Web 2.0</b> approaches to boost <b>&#8230;</b></p>
<p><a href="http://blog.starmind.com/" title="http://blog.starmind.com/"><br />
Starmind &#8211; http://blog.starmind.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303808&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/starmind-amancio-bouza-to-win-ubs-web-2-0-competition-%c2%ab-starmind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wisconsin » Classroom 2.0….Opportunities Galore</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/wisconsin-%c2%bb-classroom-2-0%e2%80%a6-opportunities-galore/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/wisconsin-%c2%bb-classroom-2-0%e2%80%a6-opportunities-galore/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:42 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/wisconsin-%c2%bb-classroom-2-0%e2%80%a6-opportunities-galore/</guid>
		<description><![CDATA[“Welcome to Classroom20.com, the social network for those interested in Web 2.0 and Social Media in education. We encourage you to sign up to participate in the great discussions here, to receive event notifications, and to find and &#8230;

Wisconsin &#8211; http://blog.discoveryeducation.com/wisconsin/
]]></description>
			<content:encoded><![CDATA[<p>“Welcome to Classroom20.com, the social network for those interested in <b>Web 2.0</b> and Social Media in education. We encourage you to sign up to participate in the great discussions here, to receive event notifications, and to find and <b>&#8230;</b></p>
<p><a href="http://blog.discoveryeducation.com/wisconsin/" title="http://blog.discoveryeducation.com/wisconsin/"><br />
Wisconsin &#8211; http://blog.discoveryeducation.com/wisconsin/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303812&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/wisconsin-%c2%bb-classroom-2-0%e2%80%a6-opportunities-galore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Next Gen Enterprise: Enterprise headlines and summaries, 2010-01-29</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/next-gen-enterprise-enterprise-headlines-and-summaries-2010-01-29/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/next-gen-enterprise-enterprise-headlines-and-summaries-2010-01-29/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:42 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/next-gen-enterprise-enterprise-headlines-and-summaries-2010-01-29/</guid>
		<description><![CDATA[This site is about the intersection of Web 2.0 technology and SAP. This blog is the personal blog of Timo Elliott and only contains my personal views, thoughts and opinions. It is not endorsed by SAP nor does it constitute any official &#8230;

Next Gen Enterprise &#8211; http://dbmoore.blogspot.com/
]]></description>
			<content:encoded><![CDATA[<p>This site is about the intersection of <b>Web 2.0</b> technology and SAP. This blog is the personal blog of Timo Elliott and only contains my personal views, thoughts and opinions. It is not endorsed by SAP nor does it constitute any official <b>&#8230;</b></p>
<p><a href="http://dbmoore.blogspot.com/" title="http://dbmoore.blogspot.com/"><br />
Next Gen Enterprise &#8211; http://dbmoore.blogspot.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303816&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/next-gen-enterprise-enterprise-headlines-and-summaries-2010-01-29/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Digital Music » DIY Community: Your Web-Connected Musical &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/create-digital-music-%c2%bb-diy-community-your-web-connected-musical/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/create-digital-music-%c2%bb-diy-community-your-web-connected-musical/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:42 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/create-digital-music-%c2%bb-diy-community-your-web-connected-musical/</guid>
		<description><![CDATA[What have you got, Web 2.0… 3.0… whatever we&#39;re on now, that I can actually use. I want some of the deliciousness of the future, now.” “Oh, and another thing – can I patch this Android phone of mine in absurd ways?” Wish granted. &#8230;

Create Digital Music &#8211; http://createdigitalmusic.com/
]]></description>
			<content:encoded><![CDATA[<p>What have you got, <b>Web 2.0</b>… 3.0… whatever we&#39;re on now, that I can actually use. I want some of the deliciousness of the future, now.” “Oh, and another thing – can I patch this Android phone of mine in absurd ways?” Wish granted. <b>&#8230;</b></p>
<p><a href="http://createdigitalmusic.com/" title="http://createdigitalmusic.com/"><br />
Create Digital Music &#8211; http://createdigitalmusic.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303821&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/create-digital-music-%c2%bb-diy-community-your-web-connected-musical/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 for Artists: 1 Twitter</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/web-2-0-for-artists-1-twitter/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/web-2-0-for-artists-1-twitter/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:42 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/web-2-0-for-artists-1-twitter/</guid>
		<description><![CDATA[Media folk, Galleries, Museums find them via the Twitter search. Start with maybe 50 &#8211; 100 people to follow. Over a short time many of these will follow you &#8230;

See all stories on this topic
]]></description>
			<content:encoded><![CDATA[<p>Media folk, Galleries, Museums find them via the Twitter search. Start with maybe 50 &#8211; 100 people to follow. Over a short time many of these will follow you <b>&#8230;</b><br />
<a href="http://news.google.com/news/story?ncl=http://www.globalpost.com/webblog/russia-and-its-neighbors/web-20-artists-1-twitter&amp;hl=en"><br />
See all stories on this topic</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303829&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/web-2-0-for-artists-1-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reviews of Noob Search &#124; Listio</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/reviews-of-noob-search-listio/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/reviews-of-noob-search-listio/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:41 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/reviews-of-noob-search-listio/</guid>
		<description><![CDATA[Noob Search is a new search engine is designed to search for information on the World Wide Web. When a user enters a query into this search engine, the engine examines its index and provides a listing of best-matching web pages according to
its criteria, usually with a short summary containing the d&#8230; &#8230; Home · [...]]]></description>
			<content:encoded><![CDATA[<p>Noob Search is a new search engine is designed to search for information on the World Wide <b>Web</b>. When a user enters a query into this search engine, the engine examines its index and provides a listing of best-matching <b>web</b> pages according to<br />
its criteria, usually with a short summary containing the d&#8230; <b>&#8230;</b> Home · About · Feedback · advertise · submit · Browse <b>Web 2.0</b> Apps · New <b>Web 2.0</b> Apps · Read <b>Web 2.0</b> Reviews. Logo for Noob Search <b>&#8230;</b></p>
<p><a href="http://www.listio.com/web20/" title="http://www.listio.com/web20/"><br />
Listio Web 2.0 Directory &#8211; Recently&#8230; &#8211; http://www.listio.com/web20/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303778&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/reviews-of-noob-search-listio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Senior Web Designer at Forum One Communications ~ Authentic Jobs</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/senior-web-designer-at-forum-one-communications-authentic-jobs/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/senior-web-designer-at-forum-one-communications-authentic-jobs/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:41 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/senior-web-designer-at-forum-one-communications-authentic-jobs/</guid>
		<description><![CDATA[BA / BFA in Fine Arts, Graphic Design, Web Design; Portfolio site that clearly demonstrates your abilities; Deep expertise in HTML/CSS, DHTML, XML, DOM, AJAX, and Web 2.0 technologies; 5+ years professional web design experience &#8230;

AuthenticJobs.com Job Listings&#8230; &#8211; http://www.authenticjobs.com/
]]></description>
			<content:encoded><![CDATA[<p>BA / BFA in Fine Arts, Graphic Design, <b>Web</b> Design; Portfolio site that clearly demonstrates your abilities; Deep expertise in HTML/CSS, DHTML, XML, DOM, AJAX, and <b>Web 2.0</b> technologies; 5+ years professional <b>web</b> design experience <b>&#8230;</b></p>
<p><a href="http://www.authenticjobs.com/" title="http://www.authenticjobs.com/"><br />
AuthenticJobs.com Job Listings&#8230; &#8211; http://www.authenticjobs.com/</a></p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303781&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/senior-web-designer-at-forum-one-communications-authentic-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11 Common Web Design Mistakes (Blunders) &#124; Web 2.0</title>
		<link>http://blog.theunical.com/creative-website-design/web-2-0/11-common-web-design-mistakes-blunders-web-2-0/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-2-0/11-common-web-design-mistakes-blunders-web-2-0/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:41 +0000</pubDate>
		<dc:creator>Steven Robert</dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-2-0/11-common-web-design-mistakes-blunders-web-2-0/</guid>
		<description><![CDATA[By: Brujo Owoh There are tons of website on the Internet, and hundreds or probably thousands are created by day. Here&#39;s a very interesting thing to ponder .
]]></description>
			<content:encoded><![CDATA[<p>By: Brujo Owoh There are tons of website on the Internet, and hundreds or probably thousands are created by day. Here&#39;s a very interesting thing to ponder .</p>
<img src="http://blog.theunical.com/?ak_action=api_record_view&id=303789&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-2-0/11-common-web-design-mistakes-blunders-web-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
