<?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; Creative Website Design</title>
	<atom:link href="http://blog.theunical.com/category/creative-website-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.theunical.com</link>
	<description>TheUnical Technologies Official Blog</description>
	<lastBuildDate>Fri, 27 Jan 2012 05:48:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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 Wall</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 [...]]]></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>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/browsers/latest-trends-in-website-optimizations-for-web2-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails 3.0 Beta Released With New Features and Improved API &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/ruby-on-rails-3-0-beta-released-with-new-features-and-improved-api-10/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/ruby-on-rails-3-0-beta-released-with-new-features-and-improved-api-10/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:51 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/ruby-on-rails-3-0-beta-released-with-new-features-and-improved-api-10/</guid>
		<description><![CDATA[Ruby on Rails or the popularly called Rails released a 3.0 beta version. For those of you who do not know much about Rails, it is web development framework that. TechHail : Technology Blog &#8211; http://www.techhail.com/]]></description>
			<content:encoded><![CDATA[<p>Ruby on Rails or the popularly called Rails released a <b>3.0</b> beta version. For those of you who do not know much about Rails, it is <b>web</b> development framework that.</p>
<p><a href="http://www.techhail.com/" title="http://www.techhail.com/"><br />
TechHail : Technology Blog &#8211; http://www.techhail.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/ruby-on-rails-3-0-beta-released-with-new-features-and-improved-api-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Distro Linux: Gibraltar Firewall 3.0 &#8211; Free Download &#8211; Free &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/free-distro-linux-gibraltar-firewall-3-0-free-download-free/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/free-distro-linux-gibraltar-firewall-3-0-free-download-free/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:51 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/free-distro-linux-gibraltar-firewall-3-0-free-download-free/</guid>
		<description><![CDATA[Gibraltar Firewall 3.0 officially released. is disrtribusi made using Debian Lenny as the basic system. interesting capabilities of this distribution is a web interface can be split into two parts which make the frontend and backend &#8230; Free Distro Linux &#8211; http://freedistrolinux.blogspot.com/]]></description>
			<content:encoded><![CDATA[<p>Gibraltar Firewall <b>3.0</b> officially released. is disrtribusi made using Debian Lenny as the basic system. interesting capabilities of this distribution is a <b>web</b> interface can be split into two parts which make the frontend and backend <b>&#8230;</b></p>
<p><a href="http://freedistrolinux.blogspot.com/" title="http://freedistrolinux.blogspot.com/"><br />
Free Distro Linux &#8211; http://freedistrolinux.blogspot.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/free-distro-linux-gibraltar-firewall-3-0-free-download-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moonlight 3.0 preview offered for rich Internet apps &#124; Checking &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/moonlight-3-0-preview-offered-for-rich-internet-apps-checking-6/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/moonlight-3-0-preview-offered-for-rich-internet-apps-checking-6/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:51 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/moonlight-3-0-preview-offered-for-rich-internet-apps-checking-6/</guid>
		<description><![CDATA[Moonlight 3.0, which puts Microsoft&#39;s Silverlight rich Internet plug-in software on Linux and Unix platforms, is now being offered in an alpha release, according to Web pages from the Mono project, which has jurisdiction over Moonlight. &#8230; Checking Together &#8211; http://www.favsky.com/]]></description>
			<content:encoded><![CDATA[<p>Moonlight 3.0, which puts Microsoft&#39;s Silverlight rich Internet plug-in software on Linux and Unix platforms, is now being offered in an alpha release, according to <b>Web</b> pages from the Mono project, which has jurisdiction over Moonlight. <b>&#8230;</b></p>
<p><a href="http://www.favsky.com/" title="http://www.favsky.com/"><br />
Checking Together &#8211; http://www.favsky.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/moonlight-3-0-preview-offered-for-rich-internet-apps-checking-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlackBerry Internet Service 3.0 Details Leaked&#8230; Again &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/blackberry-internet-service-3-0-details-leaked-again/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/blackberry-internet-service-3-0-details-leaked-again/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:51 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/blackberry-internet-service-3-0-details-leaked-again/</guid>
		<description><![CDATA[Seems there is no shortage of BlackBerry Internet Service information these days. The BIS 3.0/3.1 documents contain a few long awaited changes. The folks over at BBLeaks were once again tipped off to more BIS 3.0 information. &#8230; Gmail is crap anyways I have tried it on iphone 3GS, Web, and computer its crap. and [...]]]></description>
			<content:encoded><![CDATA[<p>Seems there is no shortage of BlackBerry Internet Service information these days. The BIS <b>3.0</b>/3.1 documents contain a few long awaited changes. The folks over at BBLeaks were once again tipped off to more BIS <b>3.0</b> information. <b>&#8230;</b> Gmail is<br />
crap anyways I have tried it on iphone 3GS, <b>Web</b>, and computer its crap. and honestly BlackBerry has no need for it, I absolutely don&#39;t want it on my BlackBerry! Gmail is the best! By: Griffspen | Date: Sat, 02/06/2010 &#8211; 08:45 <b>&#8230;</b></p>
<p><a href="http://crackberry.com/taxonomy/term/7/0" title="http://crackberry.com/taxonomy/term/7/0"><br />
CrackBerry.com &#8211; News &amp; Rumors &#8211; http://crackberry.com/taxonomy/term/7/0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/blackberry-internet-service-3-0-details-leaked-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Professional C# 2005 with .NET 3.0 &#124; Wow! eBook &#8211; Great ebook &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/professional-c-2005-with-net-3-0-wow-ebook-great-ebook/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/professional-c-2005-with-net-3-0-wow-ebook-great-ebook/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:50 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/professional-c-2005-with-net-3-0-wow-ebook-great-ebook/</guid>
		<description><![CDATA[Product Description Providing you with the ultimate guide to the C# language, this book will help you quickly write your own programs while also getting you up. Wow! eBook &#8211; Great ebook, great site! &#8211; http://www.wowebook.com/]]></description>
			<content:encoded><![CDATA[<p>Product Description Providing you with the ultimate guide to the C# language, this book will help you quickly write your own programs while also getting you up.</p>
<p><a href="http://www.wowebook.com/" title="http://www.wowebook.com/"><br />
Wow! eBook &#8211; Great ebook, great site! &#8211; http://www.wowebook.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/professional-c-2005-with-net-3-0-wow-ebook-great-ebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jlGui &#8211; Java Music Player &#8211; WinAmp clone 3.0 &#8211; Free jlGui &#8211; Java &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/jlgui-java-music-player-winamp-clone-3-0-free-jlgui-java/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/jlgui-java-music-player-winamp-clone-3-0-free-jlgui-java/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:50 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/jlgui-java-music-player-winamp-clone-3-0-free-jlgui-java/</guid>
		<description><![CDATA[jlGui &#8211; Java Music Player &#8211; WinAmp clone 3.0, Downloads: 1, License: Freeware, By: jlGui, Size: 2.31 MB. jlGui is a music player for the Java platform, WinAmp skins 2.0 compliant. &#8230; jlGui is Java Web Start compliant so it could be deployed easily. JNLP launcher is customizable. This project is open source (LGPL). features: [...]]]></description>
			<content:encoded><![CDATA[<p>jlGui &#8211; Java Music Player &#8211; WinAmp clone <b>3.0</b>, Downloads: 1, License: Freeware, By: jlGui, Size: 2.31 MB. jlGui is a music player for the Java platform, WinAmp skins 2.0 compliant. <b>&#8230;</b> jlGui is Java <b>Web</b> Start compliant so it could be<br />
deployed easily. JNLP launcher is customizable. This project is open source (LGPL). features: # Spectrum/Time visual added. # FLAC audio format support added. # Monkey&#39;s Audio format support added. # Search in playlist feature added. <b>&#8230;</b></p>
<p><a href="http://www.downloadplex.com/" title="http://www.downloadplex.com/"><br />
Free Software Downloads, Over&#8230; &#8211; http://www.downloadplex.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/jlgui-java-music-player-winamp-clone-3-0-free-jlgui-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development News – 79th Edition « Web Development News « News &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/web-development-news-%e2%80%93-79th-edition-%c2%ab-web-development-news-%c2%ab-news/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/web-development-news-%e2%80%93-79th-edition-%c2%ab-web-development-news-%c2%ab-news/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:50 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/web-development-news-%e2%80%93-79th-edition-%c2%ab-web-development-news-%c2%ab-news/</guid>
		<description><![CDATA[Now the frequent question is how to set about obtaining a nice web design, nice web development and great SEO? **** Spring Web Recipes: A Problem-Solution Approach to Spring … Product DescriptionThe release of the Spring Framework 3.0 &#8230; Fast Cash Design . com &#8211; http://www.fastcashdesign.com/]]></description>
			<content:encoded><![CDATA[<p>Now the frequent question is how to set about obtaining a nice <b>web</b> design, nice <b>web</b> development and great SEO? **** Spring <b>Web</b> Recipes: A Problem-Solution Approach to Spring … Product DescriptionThe release of the Spring Framework <b>3.0</b> <b>&#8230;</b></p>
<p><a href="http://www.fastcashdesign.com/" title="http://www.fastcashdesign.com/"><br />
Fast Cash Design . com &#8211; http://www.fastcashdesign.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/web-development-news-%e2%80%93-79th-edition-%c2%ab-web-development-news-%c2%ab-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fraps 3.0.3 Build 10808 FULL &#8211; Your Rapidshare Downloads &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/fraps-3-0-3-build-10808-full-your-rapidshare-downloads/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/fraps-3-0-3-build-10808-full-your-rapidshare-downloads/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:50 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/fraps-3-0-3-build-10808-full-your-rapidshare-downloads/</guid>
		<description><![CDATA[The Web Spatter · Your Rapidshare Downloads Aggregator &#8230; Fraps 3.0.3 Build 10808 FULL. Fraps 3.0.3 Build 10808 FULL &#8230; http://hotfile.com/dl/27393455/38efc5e/Fraps.3.0.3.Build.10808.FULL.rar.html &#8230; The Web Spatter &#8211; http://www.webspatter.com/]]></description>
			<content:encoded><![CDATA[<p>The <b>Web</b> Spatter · Your Rapidshare Downloads Aggregator <b>&#8230;</b> Fraps <b>3.0</b>.3 Build 10808 FULL. Fraps <b>3.0</b>.3 Build 10808 FULL <b>&#8230;</b> http://hotfile.com/dl/27393455/38efc5e/Fraps.<b>3.0</b>.3.Build.10808.FULL.rar.html <b>&#8230;</b></p>
<p><a href="http://www.webspatter.com/" title="http://www.webspatter.com/"><br />
The Web Spatter &#8211; http://www.webspatter.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/fraps-3-0-3-build-10808-full-your-rapidshare-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Web Recipes: A Problem-Solution Approach to Spring &#8230;</title>
		<link>http://blog.theunical.com/creative-website-design/web-3-0/spring-web-recipes-a-problem-solution-approach-to-spring-5/</link>
		<comments>http://blog.theunical.com/creative-website-design/web-3-0/spring-web-recipes-a-problem-solution-approach-to-spring-5/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:13:49 +0000</pubDate>
		<dc:creator>Steven Wall</dc:creator>
				<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://blog.theunical.com/creative-website-design/web-3-0/spring-web-recipes-a-problem-solution-approach-to-spring-5/</guid>
		<description><![CDATA[Product DescriptionThe release of the Spring Framework 3.0 has added many improvements and new features. Spring Web Recipes focuses on the latest available web… Fast Cash Design . com &#8211; http://www.fastcashdesign.com/]]></description>
			<content:encoded><![CDATA[<p>Product DescriptionThe release of the Spring Framework <b>3.0</b> has added many improvements and new features. Spring <b>Web</b> Recipes focuses on the latest available <b>web</b>…</p>
<p><a href="http://www.fastcashdesign.com/" title="http://www.fastcashdesign.com/"><br />
Fast Cash Design . com &#8211; http://www.fastcashdesign.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theunical.com/creative-website-design/web-3-0/spring-web-recipes-a-problem-solution-approach-to-spring-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

