<?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>Web Tutorials, Resources, Web Trends, Code Snippets, Php scripts, Opensource, Ecommerce, Cms, Html, Xhtml scripts, Themes, Templates, Css, Psd tuts, Photoshop,tuts,web,website,tutorial,web tutorial</title>
	<atom:link href="http://www.freshtuts.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freshtuts.net</link>
	<description>Web design resources snippets of codes like php css html xml xhtml and tutorials on howto design sites and freebies of icons templates psd files psd templates themes</description>
	<lastBuildDate>Wed, 10 Mar 2010 14:29:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>For radio station DJ&#8217;s or Shows</title>
		<link>http://www.freshtuts.net/for-radio-station-djs-or-shows/</link>
		<comments>http://www.freshtuts.net/for-radio-station-djs-or-shows/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:18:11 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Php Scripts]]></category>
		<category><![CDATA[dj]]></category>
		<category><![CDATA[on air]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[show]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4604</guid>
		<description><![CDATA[
The following script will allow radio station&#8217;s website to display ...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4605" src="http://www.freshtuts.net/wp-content/uploads/2010/03/OnAir.jpg" alt="OnAir" width="400" height="300" /></p>
<p>The following script will allow radio station&#8217;s website to display the show or dj&#8217;s that is currently on air.<br />
To use this code make sure your page has .php extention not .html</p>
<p><strong>Paste the code in the region you would like to display the ON AIR dj or the show.</strong></p>
<pre class="brush: php">&lt;?php
$h = date(&#039;G&#039;); //set variable $h to the hour of the day
$d = date(&#039;w&#039;); //set variable $d to the day of the week.
$year = date(&#039;Y&#039;); //set variable $year to the current year
//G is the date key for hours in 24 format (not 12), with no leading 0s, like 02.
// Adjust 2 hour offset for MST below.
$h = $h-2;

// MONDAY SCHEDULE
if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// TUESDAY SCHEDULE
if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 17) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 17 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 20) $img = &#039;img/hosts/westmar.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 20) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// WEDNESDAY SCHEDULE
if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// THURSDAY SCHEDULE
if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// FRIDAY SCHEDULE
if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 10) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 10 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/patm.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/edp.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 18) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 18 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 20) $img = &#039;img/hosts/jeremyb.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 20 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 22) $img = &#039;img/hosts/exfyl.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 22) $img = &#039;img/hosts/stickyb.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/stickyb.jpg&#039;;

// SATURDAY SCHEDULE
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/techtronic.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 5) $img = &#039;img/hosts/pmw.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 5 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/geoffh.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 9) $img = &#039;img/hosts/tomf.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 9 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 10) $img = &#039;img/hosts/jimmyj.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 10 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 11) $img = &#039;img/hosts/jasonr.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 11 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/hollyk.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/tomt.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 14) $img = &#039;img/hosts/seanf.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 14 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/nutmeg.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 17) $img = &#039;img/hosts/aaron_jenny.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 17 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/rayg_adrians.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 22) $img = &#039;img/hosts/mattb.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 22) $img = &#039;img/hosts/hairballj.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/hairballj.jpg&#039;;

// SATURDAY SCHEDULE
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 2) $img = &#039;img/hosts/darrelm.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 2 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/techtronic.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 5) $img = &#039;img/hosts/bigjon.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 5 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 6) $img = &#039;img/hosts/joebear.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 6 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/russh.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 9) $img = &#039;img/hosts/ronk.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 9 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 10) $img = &#039;img/hosts/rockpoint.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 10 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 11) $img = &#039;img/hosts/churchatqc.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 11 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/desertcf.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 16) $img = &#039;img/hosts/kristenm.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 16 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 17) $img = &#039;img/hosts/cdogg.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 17 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 18) $img = &#039;img/hosts/snarf_daff.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 18 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/sonicsociety.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 21) $img = &#039;img/hosts/jscott.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 21) $img = &#039;img/hosts/ghostlytalk.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/ghostlytalk.jpg&#039;;
?&gt;</pre>
<div style='display:none' id="post-refEl-4604"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/for-radio-station-djs-or-shows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get Free Content &amp; Media Hosting</title>
		<link>http://www.freshtuts.net/how-to-get-free-media-hosting/</link>
		<comments>http://www.freshtuts.net/how-to-get-free-media-hosting/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:23:21 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4407</guid>
		<description><![CDATA[Let&#8217;s say you’ve created a video or image you want ...]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you’ve created a video or image you want to share, but you don’t  want it saved to your computer. You want to save it in a safe place where you  can access it at any time. You want some storage options, and the ability to  share it in multiple file formats… or keep it private. You want its original  integrity to stay intact. And you want complete control.</p>
<p>You’re picky… but you have a right to be. Good thing <a href="http://screencast.com">Screencast.com</a> was designed for content creators like you. At <a href="http://screencast.com">Screencast.com</a>,  you’ll get all of the above and more—plus it’s free.</p>
<p><strong>What is Screencast.com?</strong></p>
<p><a href="http://screencast.com">Screencast.com</a> is a free web service from <a href="http://www.techsmith.com">TechSmith</a> Co. that lets you upload, manage and share your content without changing a  thing. From high-quality videos, to presentations, documents and  images—Screencast.com gives your content the perfect home.</p>
<p><img class="alignnone size-full wp-image-7335" src="http://www.freshtuts.net/wp-content/uploads/2010/03/817709543dntpage.gif.gif" alt="screencastfrontpage" width="500" height="405" /></p>
<p><strong>How does it work?</strong></p>
<p><strong>Step 1: Upload files </strong></p>
<p>Logging into <a href="http://www.techsmith.com/screencast.asp">Screencast.com</a> automatically takes you to the Library where you can upload your content. You  can use <em>any</em> content creation tool to upload your videos and images to  Screencast.com. But when you use <a href="http://www.techsmith.com">TechSmith</a> software—like a video recorded and edited with <a href="http://www.techsmith.com/camtasia.asp">Camtasia  Studio</a>, or a quickly marked up image and video with <a href="http://jingproject.com">Jing</a>—you  can directly upload to Screencast.com from within the application.</p>
<p><img class="alignnone size-full wp-image-7332" src="http://www.freshtuts.net/wp-content/uploads/2010/03/b14689b895eshare.gif.gif" alt="uploadstoreshare" width="500" height="146" /></p>
<p>- <strong>Keep the original quality. </strong>What you upload is exactly what your  viewers see. Content hosted on Screencast.com isn’t compressed or re-encoded  into a “one-size-fits-all” format.</p>
<p>- <strong>Control the rights to your own content. </strong>Anything you upload to  Screencast.com still belongs to you. So feel free to delete files you’ve  uploaded and make room for something new.</p>
<p><strong>Step 2: Store and protect</strong></p>
<p>Create a folder in <a href="http://www.techsmith.com/screencast.asp">Screencast.com</a> and save the videos and images you want to keep in one place. Simply store your  content… or turn it into a portal for viewers to access.</p>
<p><img class="alignnone size-full wp-image-7333" src="http://www.freshtuts.net/wp-content/uploads/2010/03/d480a1e2abcurity.gif.gif" alt="contentsecurity" width="500" height="102" /></p>
<p>- <strong>Decide who views your content. </strong>Make a folder public and visible to  everyone. Hide it so only you can see it. Password protect it. Or make it so  only authorized viewers can access your content.</p>
<p>- <strong>Access the stats on your content. </strong>At a glance, you can see how many  times a specific file has been viewed and how much bandwidth each file is using.</p>
<p><strong>Step 3: Share in multiple formats</strong></p>
<p>Uploading is only part of it. Share your stuff outside of Screencast.com  easily with a URL or send a link directly to your viewers. <a href="http://www.techsmith.com/screencast.asp">Screencast.com</a> even gives you HTML embed code so you can post images and videos on your own  website or blog.</p>
<p><img class="alignnone size-full wp-image-7334" src="http://www.freshtuts.net/wp-content/uploads/2010/03/41b325987bormats.gif.gif" alt="multipleformats" width="500" height="161" /></p>
<p>- <strong>Share in high-quality. </strong>With options like Flash, WMV, QuickTime and  others, Screencast.com is sure to give you the highest quality playback  available.</p>
<p>- <strong>Share conveniently. </strong>Provide your audience with anything from a link  to your content, to a MediaRoll widget, or to an RSS feed that they can  subscribe to.</p>
<p><strong>How do you get started?</strong></p>
<p>Start off with a free <a href="https://www.screencast.com/signup.aspx">Screencast.com</a> account to instantly begin storing and sharing your content. With the free  version, you’ll get 2GB of storage space and 2GB of monthly bandwidth at no  cost. Or sign up for the Pro version of <a href="https://www.screencast.com/signup.aspx">Screencast.com</a> and get extra storage, bandwidth and customization options. With the Pro  version, you’ll get 25GB of storage space and 200GB of monthly bandwidth for  just $9.95 a month.</p>
<p>Whatever you do, your content will never be changed at Screencast.com. What  you upload is exactly what you’ll see. So when you’re ready to share that video  or image, or just save it for later, give <a href="http://screencast.com">Screencast.com</a> a try. You’ll get your content, your way—every time.</p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/arK3pmirqbQ" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/817709543dntpage.gif.gif" alt="" /></p>
<p>Link:<br />
<a title="How to Get Free Content and Media Hosting at Screencast.com" href="http://feedproxy.google.com/~r/SmashingApps/~3/arK3pmirqbQ/how-to-get-free-content-and-media-hosting-at-screencast-com.html" target="_blank">How to Get Free Content and Media Hosting at Screencast.com</a></p>
<div style='display:none' id="post-refEl-4407"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/how-to-get-free-media-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DotNetNuke Makes It Easier For You</title>
		<link>http://www.freshtuts.net/dotnetnuke-makes-it-easier-for-you/</link>
		<comments>http://www.freshtuts.net/dotnetnuke-makes-it-easier-for-you/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:14:51 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[dot]]></category>
		<category><![CDATA[dotnetnuke]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[nuke]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[web applications]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4418</guid>
		<description><![CDATA[DotNetNuke Community Edition is a leading free open-source content management ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dotnetnuke.com" target="_blank">DotNetNuke</a> Community Edition is a leading free open-source content management system for ASP.NET websites.  With DotNetNuke, you can quickly and effectively deploy dynamic web applications with almost no technical knowledge, however if you are an ASP.NET developer, you can customize it in the way you want to fulfill your specific needs.  Whether you need to deploy a simple website or a feature-rich dynamic application, DotNetNuke cater your needs in the way you want.</p>
<p>Unlike legacy web applications, you don’t need services of a web developer in order to make changes in your content and locations of different modules.  You can easily achieve this task on-the-fly by logging into the administration control panel.</p>
<p><a href="http://www.dotnetnuke.com" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f1b5cd7134dnn1.jpg.jpg" alt="" /></a></p>
<p>Since DotNetNuke is open-source, you can enhance and extend the functionality of it if you are familiar with ASP.NET programming.  In addition to the existing modules in DotNetNuke, you can develop custom modules over it or use from a number of pre-developed modules by different third party vendors to extend the functionality as per your business needs.</p>
<p><a href="http://www.dotnetnuke.com" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/56ed7cc501dnn2.jpg.jpg" alt="" /></a></p>
<p>DotNetNuke is the world’s most widely adopted framework for building web applications on Microsoft Windows platform. DotNetNuke powers over 500,000 portals, web applications and public web sites. It has a large open-source community to support the development of the system.  Furthermore, you can find number of help and support resources and books that help you find solutions to your problems while you work.</p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/d9mtPZ-fMG0" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f1b5cd7134dnn1.jpg.jpg" alt="" /></p>
<p>Visit link:<br />
<a title="DotNetNuke Makes It Easier For You To Build Feature-Rich, Interactive Web Sites And Applications" href="http://feedproxy.google.com/~r/SmashingApps/~3/d9mtPZ-fMG0/dotnetnuke-makes-it-easier-for-you-to-build-feature-rich-interactive-web-sites-and-applications.html" target="_blank">DotNetNuke Makes It Easier For You To Build Feature-Rich, Interactive Web Sites And Applications</a></p>
<div style='display:none' id="post-refEl-4418"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/dotnetnuke-makes-it-easier-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Tools Bloggers Should Know About</title>
		<link>http://www.freshtuts.net/5-websites-tools-bloggers-should-know-about/</link>
		<comments>http://www.freshtuts.net/5-websites-tools-bloggers-should-know-about/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:05:58 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[web applications]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4414</guid>
		<description><![CDATA[While the job is interesting and one gets to discover ...]]></description>
			<content:encoded><![CDATA[<p>While the job is interesting and one gets to discover the latest about the Internet, blogging is no easy task. “Time is money” could not be any truer for bloggers; impossible deadlines put us under harsh time constraints. Due to this constraint, bloggers are always actively on the lookout for the next great tool that can help us cut back on the time it takes to write our articles/reviews.</p>
<p>Bloggers who run their own website, on the other hand, are not under any critical deadlines – their worries are of a different nature. Taking constant care of their website and monitoring it is an absolute must for them; if a site owner’s website unexpectedly goes down, his/her income will be negatively affected.</p>
<p>Therefore one way or the other, all bloggers have problems whether they are self-employed, freelancing, or fulltime employed. They need all the help they can get.</p>
<p>Today we present to our fellow bloggers five tools available on the internet which will help them in one way or the other. We hope you all find the following tools as helpful as we did.</p>
<p>You are welcome to share if you know more useful tools which our readers/viewers may like. <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>Do you want to be the first one to know the latest happenings</span></a> at SmashingApps.com just <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>subscribe to our rss feed</span></a> and <a href="http://twitter.com/smashingapps" target="_blank">you can follow us on twitter</a> and <strong><a href="http://www.facebook.com/smashingapps" target="_blank">do not forget to become our fan on facebook</a></strong> as well.</p>
<p>1. <strong><a href="http://domain-suggestions.domaintools.com/" target="_blank">DomainTools</a></strong></p>
<p><strong><img class="size-full wp-image-7341 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/f467daeaeantools.jpg.jpg" alt="Domaintools" width="527" height="287" /></strong></p>
<p>For somebody who plans to start out his/her own website, the first most important step is to come up with a great name. Once the great name has been thought of, one needs to check its availability. DomainTools is a free website that does both things. Firstly it can suggest various names to a user by taking as input a keyword. Secondly it shows us which domain extensions (COM, NET, etc.) is the site name available. If a user wishes, he/she can buy and register the domain name right from the site. In this way, DomainTools eventually saves us a lot of time in the process of naming our website.</p>
<p>2. <strong><a href="http://whoisapp.codeplex.com/" target="_blank">WhoisLookup/WhoisApplication</a></strong></p>
<p><img class="size-full wp-image-7342 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/beaae14124whois.png.png" alt="whois" width="498" height="272" /></p>
<p>WhoisLookup is a freeware application less than 100KB in size. The EXE file is downloaded and can be run without any installation. In the program we can enter the URL of a site and get its Whois information which shows us the site’s various attributes such as its registrar’s information, the location of the site, and the details of its administrator. Whois specifics can help out a great deal when trying to determine which website to blog about. To some extent, it can also show us whether or not the site’s claimed location matches its actual location; this helps us judge the trueness of the website’s credentials.</p>
<p>3.<strong><a href="http://sourceforge.net/projects/dnspchecker/" target="_blank"> dnspchecker</a></strong></p>
<p><strong><img class="size-full wp-image-7343 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/89b7a85568hecker.png.png" alt="dnschecker" width="482" height="398" /></strong></p>
<p>This nifty little freeware is about 3MB to download and is helpful in determining the status of a website. It is compatible with Linux and Windows operating systems. After we enter a URL into the program, it uses ping command to see if the DNS is live. In other words you can see if a site is up or not. A successful message is show each time the site if up; if the site is down or a valid response could not be received then it automatically checks the site every 60 seconds. This way we do not have to recheck the status of the site each minute (because it is automatically being done for us). To have it not interfere with our work, the program can be minimized to the System Tray and gives an alert when DNS is propagated.</p>
<p>4. <strong><a href="http://www.observu.com/" target="_blank">Observu</a></strong></p>
<p><strong><img class="size-full wp-image-7344 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/cbfdd5a9b2obs.png.png" alt="obs" width="543" height="279" /></strong></p>
<p>dnschecker can only help you if you have it installed on your system. If you are using a computer on which you do not have the privilege to install new programs and you would like to check the status of your websites, the only way that comes to mind is by actually visiting the website in your internet browser. If the number of websites is more than one then the process could be considerably time consuming. Observu is a free website that lets us register for a free account and enter an unlimited number of websites to be automatically monitored. If any one of them goes down, we are immediately emailed of its negative status. There is no limit to the number of sites we want monitored. Observu can be helpful not only for site owners but also for bloggers who have reviewed a website and want to stay informed of its status. For instance John, a blogger, blogs about www.XYZABC123.com and he is emailed of its negative status the next month; upon receiving the notification, John can updates his previous review and add a note saying that the site is currently experiencing problems and is down. Such responsibility can go a long way and earn loyal readers.</p>
<p>5. <strong><a href="http://www.blogdesk.org/en/index.htm" target="_blank">BlogDesk</a></strong></p>
<p><strong><img class="size-full wp-image-7345 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/bacb584408ogdesk.png.png" alt="blogdesk" width="525" height="384" /></strong></p>
<p>Wordpress is a blogging platform used by many bloggers. Other widely used platforms are MovableType, Drupal, Serendipity and ExpressionEngine. To blog in these platforms, we open up our internet browser window, log into our blogging Dashboard and get started. With the latest platforms we can save our work as we go along but having the data secure on our hard drive is something that most bloggers find comfortable. Also while typing on these platforms, one has to go through special means while inserting hyperlinks and pictures. BlogDesk is a 4MB freeware program that eliminates all the problems associated with typing our blogs on these platforms. It is a desktop application that enables us to type up our blog offline with ease. When we want to publish the article, we can simply blog from BlogDesk directly. The abovementioned blogging platforms are supported by the program. But before you go using it, make sure its option is enabled in the online settings of your blogging platform.</p>
<p>See original here:<br />
<a title="5 Websites &amp; Tools Bloggers Should Know About" href="http://feedproxy.google.com/~r/SmashingApps/~3/l-56da88-nA/5-websites-tools-bloggers-should-know-about.html" target="_blank">5 Websites &amp; Tools Bloggers Should Know About</a></p>
<div style='display:none' id="post-refEl-4414"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/5-websites-tools-bloggers-should-know-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High-Quality Free Social Media Icon Sets</title>
		<link>http://www.freshtuts.net/the-ultimate-fresh-collection-of-high-quality-free-social-media-icon-sets/</link>
		<comments>http://www.freshtuts.net/the-ultimate-fresh-collection-of-high-quality-free-social-media-icon-sets/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:23:57 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Best of the Web]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4472</guid>
		<description><![CDATA[A beautifully designed icon is the perfect way to represent ...]]></description>
			<content:encoded><![CDATA[<p>A beautifully designed icon is the perfect way to represent your product or service, and they always come in handy whether you want to place them on your blog or want to represent yourself in an outstanding manner. A comprehensively designed icon can provide your user with the memorable metaphors and illustrations, even sometimes users only remember the icon they saw on the website.</p>
<p>Here we have compiled a list of some outstanding and beautifully designed FREE and FRESH 50 Sets of Social Media Icons such as digg icons, stumbleupon icons, reddit icons, twitter, RSS feed icon, facebook icons and more, so that you can use them on your blog and website. You can also use them in corporate designs as well, Kindly feel free to share your comments with us.</p>
<p>You are welcome if you want to share more free social icon sets<span dir="ltr"> </span>that our readers/viewers may like. <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>Do you want to be the first one to know the latest happenings</span></a> at SmashingApps.com just <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>subscribe to our rss feed</span></a> and <a href="http://twitter.com/smashingapps" target="_blank">you can follow us on twitter</a> and <strong><a href="http://www.facebook.com/smashingapps" target="_blank">do not forget to become our fan on facebook</a></strong> as well. Click on the images to go from where the images has been taken.</p>
<p><strong><a href="http://rafiki270.deviantart.com/art/Hand-drawn-social-media-icons-153787919" target="_blank">Hand Drawn Social Media Icons</a></strong></p>
<p><a href="http://rafiki270.deviantart.com/art/Hand-drawn-social-media-icons-153787919" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/60caf62789ons_42.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://icondock.com/free/vector-social-media-icons" target="_blank">Vector Social Media Icons</a></strong></p>
<p>The icons are designed in 32px and 16px vector format. With the vector format, you can scale the icon to any size to fit with your design or use it in high quality print materials.</p>
<p><a href="http://icondock.com/free/vector-social-media-icons" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/b740d8faacons_53.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.pinkmoustache.net/new-free-social-icons-vector-set/" target="_blank">Social Icons Vector Set</a></strong></p>
<p>Here is a new free social icons vector set, which consists of 16 popular icons, available in both vector and PNG (64×64 pixels) format. Free for any use</p>
<p><a href="http://www.pinkmoustache.net/new-free-social-icons-vector-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/0358c5e9afons_16.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://sixrevisions.com/freebies/icons/free-and-exclusive-icons-brown-social-icon-pack/" target="_blank">Free and Exclusive Icons: Brown Social Icon Pack</a></strong></p>
<p>In the pack, you will find 12 glossy polished icons in different size variations: 32×32px, 64×64px and 128×128px for maximum flexibility. All files are .PNG format and are mainly brown-colored especially for all you brown fanatic bloggers that like to share posts over the social networks nowadays.</p>
<p><a href="http://sixrevisions.com/freebies/icons/free-and-exclusive-icons-brown-social-icon-pack/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/539fd3fec5ons_54.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.smashingshare.com/2010/02/25/free-social-network-icons-from-iconshock/" target="_blank">Free Social Network Icons from IconShock</a></strong></p>
<p>Included icons are for following services. Digg, StumbleUpon, Facebook, Twitter and Delicious.</p>
<p><a href="http://www.smashingshare.com/2010/02/25/free-social-network-icons-from-iconshock/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/cc4273fa6fons_55.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.hongkiat.com/blog/freebie-fluzzy-twitter-icon-set/" target="_blank">Fluzzy Twitter Icon Set </a></strong></p>
<p>Another high quality free Twitter icon set</p>
<p><a href="http://www.hongkiat.com/blog/freebie-fluzzy-twitter-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/e72e3c3fc7ons_44.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.cutelittlefactory.com/freebies/social-trucks-icons/" target="_blank">Social Trucks Icons</a></strong></p>
<p>There are 10 colorful, spacious and unstoppable social trucks at a whopping 512×512 px resolution for you</p>
<p><a href="http://www.cutelittlefactory.com/freebies/social-trucks-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/4c62d3af14ons_57.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank"></a></strong></p>
<p><strong><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank"> </a></strong></p>
<p><strong><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank">/&gt; inFocus Simple White Social Media Icons</a></strong></p>
<p><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/fbeed42129ons_58.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://speckyboy.com/2010/02/04/free-grass-textured-social-bookmarking-icon-set/" target="_blank">Free Grass Textured Social Bookmarking Icon Set</a></strong></p>
<p><a href="http://speckyboy.com/2010/02/04/free-grass-textured-social-bookmarking-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/8abb65f23dons_59.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://arbent.net/blog/circular-social-media-icons" target="_blank">Circular Social Media Icons Repack</a></strong></p>
<p><a href="http://arbent.net/blog/circular-social-media-icons" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/90b6362cb4ons_56.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.cutelittlefactory.com/freebies/social-trucks-icons/" target="_blank">Social Trucks Icons</a></strong></p>
<p>There are 10 colorful, spacious and unstoppable social trucks at a whopping 512×512 px resolution for you</p>
<p><a href="http://www.cutelittlefactory.com/freebies/social-trucks-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/4c62d3af14ons_57.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank"></a></strong></p>
<p><strong><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank"> </a></strong></p>
<p><strong><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank">/&gt; inFocus Simple White Social Media Icons</a></strong></p>
<p><a href="http://webtreats.mysitemyway.com/1540-infocus-simple-white-sidebar-social-media-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/fbeed42129ons_58.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.hongkiat.com/blog/social-network-icon-set/" target="_blank">Social Network Icon Set </a></strong></p>
<p>These Iconshock icon set comes in 6 different sizes: 12×12, 16×16, 24×24, 128×128, 256×256 and 512×512 covering social various social network logos like Blogger, Delicious, Facebook, Flickr, Linked-in, Reddit, RSS feed, Stumble Upon, Technorati and Twitter.</p>
<p><a href="http://www.hongkiat.com/blog/social-network-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/5ffe800aebons_43.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.cutelittlefactory.com/freebies/latte-art-social-icons/" target="_blank">Latte Art Social Icons</a></strong></p>
<p>Four social icons for Facebook, RSS, StumbleUpon and Twitter available as 128×128, 64×64 and 48×48 PNGs.</p>
<p><a href="http://www.cutelittlefactory.com/freebies/latte-art-social-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/7ab1944447ons_28.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.noupe.com/freebie/free-furry-cushions-social-icons-set.html" target="_blank">Free Furry Cushions Social Icons Set</a></strong></p>
<p><a href="http://www.noupe.com/freebie/free-furry-cushions-social-icons-set.html" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/b99dbdfc2aons_20.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://creativenerds.co.uk/freebies/a-free-sophisticated-premium-peel-over-icon-set/" target="_blank">A Free Sophisticated Premium Peel Over Icon Set</a></strong></p>
<p><a href="http://creativenerds.co.uk/freebies/a-free-sophisticated-premium-peel-over-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/12d969cdaeons_33.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtreatsetc.deviantart.com/art/Silver-Button-Social-Media-123487830" target="_blank">Silver Button Social Media</a></strong></p>
<p><a href="http://webtreatsetc.deviantart.com/art/Silver-Button-Social-Media-123487830" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/538c10a00dons_47.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtreats.mysitemyway.com/108-free-glossy-orange-orb-social-media-icons/" target="_blank">Glossy Orange Orb Soc. Media</a></strong></p>
<p><a href="http://webtreats.mysitemyway.com/108-free-glossy-orange-orb-social-media-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/a2bd72c991ons_48.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.noupe.com/freebie/new-free-social-media-icon-set-for-your-blog.html" target="_blank">New &amp; Free Social Media Icon Set For Your Blog</a></strong></p>
<p><a href="http://www.noupe.com/freebie/new-free-social-media-icon-set-for-your-blog.html" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/9a74249387ons_52.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://colaja.deviantart.com/art/Extreme-Grunge-Social-Icons-154202968" target="_blank">Extreme Grunge Social Icons</a></strong></p>
<p>This high quality, hand made, icon pack is full with 20 Extreme Grunge Social Media Garments. Each icon is in .png format with transparent backgrounds, sized at 256×256px. Icons are free for commercial and personal use.</p>
<p><a href="http://colaja.deviantart.com/art/Extreme-Grunge-Social-Icons-154202968" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/68258f9191ons_41.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://psd.tutsplus.com/freebies/icons/free-set-of-25-icons-from-turbomilk-courtesy-of-graphicriver/" target="_blank">Free Set of 25 Icons from TurboMilk</a></strong></p>
<p>This set of 25 web icons in 3 sizes was created by Eugene Artsebasov and the illustrious Turbomilk team!</p>
<p><a href="http://psd.tutsplus.com/freebies/icons/free-set-of-25-icons-from-turbomilk-courtesy-of-graphicriver/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/04ec44b594ons_24.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.cutelittlefactory.com/freebies/beer-cap-social-icons/" target="_blank">Beer Cap Social Icons</a></strong></p>
<p>Featuring the PNG goodness you’ve come to love in 3 sizes: small (48 px), pint (64 px) and pitcher (128px).</p>
<p><a href="http://www.cutelittlefactory.com/freebies/beer-cap-social-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/72c3de17b9ons_26.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://sixrevisions.com/freebies/icons/free-social-media-icons-old-bottle-crowns-icon-set/" target="_blank">Old Bottle Crowns Icon Set</a></strong></p>
<p>This set contains 20 200px x 200px PNG files that you can easily resize and edit for your website design.</p>
<p><a href="http://sixrevisions.com/freebies/icons/free-social-media-icons-old-bottle-crowns-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/199b22df54ons_29.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://vector.tutsplus.com/freebies/vectors/social-cubes-exclusive-vectortuts-pack/" target="_blank">Social Cubes – Exclusive Vectortuts+ Free Pack</a></strong></p>
<p>If you’re looking for high-quality social icons for your next web project, then check out these icons. This set of 18 high quality freebies is available to download today! Enjoy!</p>
<p><a href="http://vector.tutsplus.com/freebies/vectors/social-cubes-exclusive-vectortuts-pack/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/94fe4ef61aons_30.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.chris-wallace.com/2009/05/28/free-social-media-icons-socialize/" target="_blank">Free Social Media Icon Set: Chrome</a></strong></p>
<p>This set includes 19 social networks along with a standard RSS icon in PNG format.</p>
<p><a href="http://www.chris-wallace.com/2009/05/28/free-social-media-icons-socialize/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/d3f7792a59ons_39.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtreatsetc.deviantart.com/art/108-Glowing-Neon-Social-Media-125528014" target="_blank">108 Glowing Neon Social Media</a></strong></p>
<p>108 Glowing Neon Social Media Icons, 512px * 512px Free for personal and commercial use</p>
<p><a href="http://webtreatsetc.deviantart.com/art/108-Glowing-Neon-Social-Media-125528014" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/d667b3febcons_45.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.pinkmoustache.net/gummy-social-icon-set/" target="_blank">Gummy social icon set</a></strong></p>
<p>This icon set consists of 12 social icons, in PNG and EPS format as well.</p>
<p><a href="http://www.pinkmoustache.net/gummy-social-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/80a7ed88efons_18.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://sixrevisions.com/freebies/icons/free-set-of-social-media-icons-large-icons-social/" target="_blank">Free Set of Social Media Icons</a></strong></p>
<p>In this set, you will find 23 different icons that is perfect for content-centered websites such as blogs, news sites, etc. You will find PNG, ICO, and BMP file formats of various sizes (up to 512×512px) for ultimate flexibility and usability.</p>
<p><a href="http://sixrevisions.com/freebies/icons/free-set-of-social-media-icons-large-icons-social/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/027d85cfefons_22.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.cutelittlefactory.com/freebies/t-shirt-social-icons/" target="_blank">T-Shirt Social Icons</a></strong></p>
<p>Available in two durable materials, PNG and EPS, at the comfortable size of 128×128 pixels.</p>
<p><a href="http://www.cutelittlefactory.com/freebies/t-shirt-social-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/e69bd65e47ons_27.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.pinkmoustache.net/20-amazing-3d-social-icons/" target="_blank">Amazing 3D Social Icons</a></strong></p>
<p>A brand new set that consists of 20 3D icons in PNG format (64×64 &amp; 128×128pixels).</p>
<p><a href="http://www.pinkmoustache.net/20-amazing-3d-social-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f5e6c26395ons_17.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtoolkit4.me/2008/09/26/social-icons-made-of-wood/" target="_blank">Social Icons Made of Wood</a></strong></p>
<p>Here’s another social icon set from webtoolkit4.me. This time the theme is wood. The set consists of 11 icons in PNG format (64 x 64). It’s free for both personal and commercial projects.</p>
<p><a href="http://webtoolkit4.me/2008/09/26/social-icons-made-of-wood/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/fec5452766ons_19.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.pinkmoustache.net/new-free-social-icons-sticker-set/" target="_blank">New free social icons sticker set</a></strong></p>
<p><a href="http://www.pinkmoustache.net/new-free-social-icons-sticker-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/9852eee6e2ons_31.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://creativenerds.co.uk/freebies/tabbed-social-media-icon-set-50-icons/" target="_blank">Tabbed Social Media Icon Set</a></strong></p>
<p><a href="http://creativenerds.co.uk/freebies/tabbed-social-media-icon-set-50-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/1f6937e6d2ons_32.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://psd.tutsplus.com/freebies/icons/81-pixel-perfect-social-media-icons/" target="_blank">81 Pixel perfect Social Media Icons</a></strong></p>
<p><a href="http://psd.tutsplus.com/freebies/icons/81-pixel-perfect-social-media-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/903ea9c6d0ons_35.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://psd.tutsplus.com/freebies/icons/108-black-inlay-on-steel-social-media-icons/" target="_blank">108 Black Inlay on Steel Social Media Icons</a></strong></p>
<p><a href="http://psd.tutsplus.com/freebies/icons/108-black-inlay-on-steel-social-media-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/4287fc7d7bons_36.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.dren.it/nuovo-set-di-icone-sociali-a-forma-di-nuvola/" target="_blank">Nuovo set Social icons</a></strong></p>
<p><a href="http://www.dren.it/nuovo-set-di-icone-sociali-a-forma-di-nuvola/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f963a1fc3cons_38.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://umar123.deviantart.com/art/Social-and-Web-Icons-141511292" target="_blank">Social and Web Icons</a></strong></p>
<p><a href="http://umar123.deviantart.com/art/Social-and-Web-Icons-141511292" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/cca52e94c6ons_40.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtreatsetc.deviantart.com/art/Social-Media-Comment-Bubbles-124528112" target="_blank">Social Media Comment Bubbles</a></strong></p>
<p><a href="http://webtreatsetc.deviantart.com/art/Social-Media-Comment-Bubbles-124528112" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/808da2e997ons_46.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://tydlinka.deviantart.com/art/Extended-set-of-social-icons-121001355" target="_blank">Extended set of social icons</a></strong></p>
<p><a href="http://tydlinka.deviantart.com/art/Extended-set-of-social-icons-121001355" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/5bf2a82fb4ons_49.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://designwashere.com/location-free-social-media-icon-set/" target="_blank">Location: Free Social Media Icon Set</a></strong></p>
<p><a href="http://designwashere.com/location-free-social-media-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/36d1265f0bons_50.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://tydlinka.deviantart.com/art/Set-of-social-icons-no-2-110250447" target="_blank">Set of social icons no.2</a></strong></p>
<p><a href="http://tydlinka.deviantart.com/art/Set-of-social-icons-no-2-110250447" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/97a1f95a48ons_51.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=562" target="_blank">Icons Cloud</a></strong></p>
<p><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=562" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/fb9c34d1b8cons_1.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=331" target="_blank">Aquaticus Social Icons</a></strong></p>
<p><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=331" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/fa2fa46271cons_2.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=488" target="_blank">Social Media Mini Iconpack</a></strong></p>
<p><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=488" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/8f9ef633eecons_3.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=661" target="_blank">Social Network Icon Pack</a></strong></p>
<p><a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=661" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/cd257fef7bcons_4.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.productivedreams.com/page-peel-free-social-iconset/" target="_blank">Page Peel</a></strong></p>
<p><a href="http://www.productivedreams.com/page-peel-free-social-iconset/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/b5e547b5cdcons_5.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://twibies.com/social-bird-iconset/" target="_blank">Social Bird Iconset</a></strong></p>
<p><a href="http://twibies.com/social-bird-iconset/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/de9905e198cons_6.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" target="_blank">Twitter Bird Icon Set</a></strong></p>
<p><a href="http://www.productivedreams.com/free-twitter-bird-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/bdc3c632f7cons_7.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtoolkit4.me/2009/03/17/polaroid-icon-set/" target="_blank">Polaroid icon set</a></strong></p>
<p><a href="http://webtoolkit4.me/2009/03/17/polaroid-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/65ffd93450cons_9.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://webtoolkit4.me/2010/01/09/free-twitter-icon-set/" target="_blank">Twitter icon set</a></strong></p>
<p><a href="http://webtoolkit4.me/2010/01/09/free-twitter-icon-set/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/0f143b3e9bons_10.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.chidimar.com/wp-content/uploads/2009/02/cafe-icon-set.rar" target="_blank">Café Icon Set</a></strong></p>
<p><a href="http://www.chidimar.com/wp-content/uploads/2009/02/cafe-icon-set.rar" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/8c2c10fc17ons_13.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://wefunction.com/2009/05/free-social-icons-app-icons/" target="_blank">Free Social Media Icons</a></strong></p>
<p><a href="http://wefunction.com/2009/05/free-social-icons-app-icons/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/59c0a782c4ons_14.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://sixrevisions.com/freebies/free-set-of-social-media-icons-rivet-social/" target="_blank">Free Set of Social Media Icons – Rivet Social</a></strong></p>
<p><a href="http://sixrevisions.com/freebies/free-set-of-social-media-icons-rivet-social/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/3a7e0fe54cons_23.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><strong><a href="http://www.cypherbox.net/blog/free-social-media-icons-for-your-blog/" target="_blank">Folder Style</a></strong></p>
<p><a href="http://www.cypherbox.net/blog/free-social-media-icons-for-your-blog/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/fb4d0c936eons_25.jpg.jpg" border="0" alt="Social Media Icons" width="540" /></a></p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/I53-mCeRmE0" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/60caf62789ons_42.jpg.jpg" alt="" /></p>
<p>Read the original:<br />
<a title="The Ultimate (Fresh) Collection Of High-Quality Free Social Media Icon Sets" href="http://feedproxy.google.com/~r/SmashingApps/~3/I53-mCeRmE0/the-ultimate-fresh-collection-of-high-quality-free-social-media-icon-sets.html" target="_blank">The Ultimate (Fresh) Collection Of High-Quality Free Social Media Icon Sets</a></p>
<div style='display:none' id="post-refEl-4472"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/the-ultimate-fresh-collection-of-high-quality-free-social-media-icon-sets/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stunning Pieces Of Digital Arts &#8216;Wow&#8217;</title>
		<link>http://www.freshtuts.net/stunning-pieces-of-digital-arts/</link>
		<comments>http://www.freshtuts.net/stunning-pieces-of-digital-arts/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:17:50 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4488</guid>
		<description><![CDATA[This is a post in which we are listing down ...]]></description>
			<content:encoded><![CDATA[<p>This is a post in which we are listing down some Stunning Pieces Of Digital Art That Make You Say ‘Wow’. These are some of the beautiful digital artwork and illustration examples. These are the wonder creations of designers who use their creativity with a different angle and approach to get the result that makes a difference.</p>
<p>You are welcome to share if you want to share more Digital Art And Illustration <span dir="ltr">For Creative Inspiration </span>that our readers/viewers may like. <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>Do you want to be the first one to know the latest happenings</span></a> at SmashingApps.com just <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>subscribe to our rss feed</span></a> and <a href="http://twitter.com/smashingapps" target="_blank">you can follow us on twitter</a> and <strong><a href="http://www.facebook.com/smashingapps" target="_blank">do not forget to become our fan on facebook</a></strong> as well. Click on the images to go from where the images has been taken.</p>
<p><a href="http://freaky665.deviantart.com/art/Fire-Within-Me-155600530" target="_blank"><strong>Fire Within Me by =freaky665</strong></a></p>
<p><a href="http://freaky665.deviantart.com/art/Fire-Within-Me-155600530" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/02a61fbb4bhin-Me.jpg.jpg" border="0" alt="" width="540" height="726" /></a></p>
<p><a href="http://luches.deviantart.com/art/Shiba-s-Guidance-128439458" target="_blank"><strong>Shiba’s Guidance by =Luches</strong></a></p>
<p><a href="http://luches.deviantart.com/art/Shiba-s-Guidance-128439458" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/7a99da04b1idance.jpg.jpg" border="0" alt="" width="540" height="386" /></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/skullduggery/" target="_blank"><strong>Skullduggery by by Ng Fhze Yang</strong></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/skullduggery/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/db33adcd5buggery.jpg.jpg" border="0" alt="" width="540" height="540" /></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/colour/" target="_blank"><strong>Colour by Wangli</strong></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/colour/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/a5fafde5e6Colour.jpg.jpg" border="0" alt="" width="540" height="383" /></a></p>
<p><a href="http://shadow-light13.deviantart.com/art/Fire-flower-155713312" target="_blank"><strong>Fire flower.. by ~shadow-light13</strong></a></p>
<p><a href="http://shadow-light13.deviantart.com/art/Fire-flower-155713312"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/73a17d90d6flower.jpg.jpg" border="0" alt="" width="540" height="432" /></a></p>
<p><a href="http://tahra.deviantart.com/art/forest-153476100" target="_blank"><strong>Forest by ~tahra</strong></a></p>
<p><a href="http://tahra.deviantart.com/art/forest-153476100" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/82f2cb17e8forest.jpg.jpg" border="0" alt="" width="540" height="450" /></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/muacks/" target="_blank"><strong>Muacks by LicoMomo</strong></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/muacks/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/1a55640789Muacks.jpg.jpg" border="0" alt="" width="540" height="288" /></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/king-of-the-ash-world/"><strong>King of the Ash World by Diane Özdamar</strong></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/king-of-the-ash-world/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/2f87a07317World.jpg.jpg" border="0" alt="" width="540" height="767" /></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/the-monster-nian/" target="_blank"><strong>The Monster Nian by Jason Juan</strong></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/the-monster-nian/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/70c8b43be3r-Nian.jpg.jpg" border="0" alt="" width="540" height="334" /></a></p>
<p><a href="http://www.behance.net/Gallery/Digital/47169" target="_blank"><strong>Metamorphosis by Cristiano Siqueira</strong></a></p>
<p><a href="http://www.behance.net/Gallery/Digital/47169" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/2460ea6a83phosis.jpg.jpg" border="0" alt="" width="540" height="338" /></a></p>
<p><a href="http://rockfield.deviantart.com/art/Let-Me-Fly-To-Freedom-152957177"><strong>Let Me Fly To Freedom by *Rockfield</strong></a></p>
<p><a href="http://rockfield.deviantart.com/art/Let-Me-Fly-To-Freedom-152957177" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/8d146b1410reedom.jpg.jpg" border="0" alt="" width="540" height="675" /></a></p>
<p><a href="http://ouwenz.deviantart.com/art/Unique-98009298"><strong>Unique by ~ouwEnz</strong></a></p>
<p><a href="http://ouwenz.deviantart.com/art/Unique-98009298" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/1099005263Unique.jpg.jpg" border="0" alt="" width="540" height="405" /></a></p>
<p><a href="http://kaze-hime.deviantart.com/art/Jellyfish-March-155457942" target="_blank"><strong>Jellyfish March by =Kaze-Hime</strong></a></p>
<p><a href="http://kaze-hime.deviantart.com/art/Jellyfish-March-155457942" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/70b5d0535bMarch.jpg.jpg" border="0" alt="" width="540" height="324" /></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/cinabre/" target="_blank"><strong>Cinabre by Diane Özdamar</strong></a></p>
<p><a href="http://thedesigninspiration.com/illustrations/cinabre/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/db00522036inabre.jpg.jpg" border="0" alt="" width="540" height="1226" /></a></p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/KEMtfYlOx7Y" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/02a61fbb4bhin-Me.jpg.jpg" alt="" /></p>
<p>Originally posted here:<br />
<a title="Stunning Pieces Of Digital Art That Would Make You Say ‘Wow’" href="http://feedproxy.google.com/~r/SmashingApps/~3/KEMtfYlOx7Y/stunning-pieces-of-digital-art-that-would-make-you-say-wow.html" target="_blank">Stunning Pieces Of Digital Art That Would Make You Say ‘Wow’</a></p>
<div style='display:none' id="post-refEl-4488"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/stunning-pieces-of-digital-arts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Great Extensions for Google Chrome</title>
		<link>http://www.freshtuts.net/5-great-extensions-for-google-chrome/</link>
		<comments>http://www.freshtuts.net/5-great-extensions-for-google-chrome/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:09:25 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4495</guid>
		<description><![CDATA[ ]]></description>
			<content:encoded><![CDATA[<p>From opening a new tab to restoring or saving our session, we perform various tasks in our internet browsers. Sometimes these tasks are present in the browser in an already convenient enough manner to make life easier for the user. But at other times, in the form of extensions and add-ons, third-party developers make these browser tasks easier for us.</p>
<p>Since I use Chrome most of the time, I gathered 5 browser extensions which I think most Chrome users will appreciate. These extensions facilitate users in different ways, from saving our browsing sessions and managing our tabs to letting us choose hotkey shortcuts.</p>
<p>Give the list a thorough reading, try out any extension you are interested in, and let me know in the comments how they worked out for you. You are welcome to share if you know more useful google extension which our readers/viewers may like. <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>Do you want to be the first one to know the latest happenings</span></a> at SmashingApps.com just <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>subscribe to our rss feed</span></a> and <a href="http://twitter.com/smashingapps" target="_blank">you can follow us on twitter</a> and <strong><a href="http://www.facebook.com/smashingapps" target="_blank">do not forget to become our fan on facebook</a></strong> as well.</p>
<p><strong><a href="https://chrome.google.com/extensions/detail/amigcgbheognjmfkaieeeadojiibgbdp" target="_blank">Too Many Tabs</a></strong></p>
<p><strong><img class="size-full wp-image-7197 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/55eeca1d41nytabs.png.png" alt="Toomanytabs" width="448" height="320" /></strong></p>
<p>Chrome, like all other modern browsers, supports the usage of multiple browser tabs. While this feature is mostly convenient, it can cause problems if the number of our tabs gets larger. The usual problem faced is finding the right tab when we cannot even view the favicon of the webpage, much less read its title in the tab. Too Many Tabs lets places an icon in our address bar which we can click to view our tabs as cascaded thumbnails; this view makes finding the right tab easier. Custom color schemes and interface designs make Too Many Tabs a great extension to manage tabs in Chrome.</p>
<p><strong><a href="https://chrome.google.com/extensions/detail/hdokiejnpimakedhajhdlcegeplioahd" target="_blank">LastPass</a></strong></p>
<p><strong><img class="size-full wp-image-7198 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/007fb99744stpass.png.png" alt="lastpass" width="460" height="358" /></strong></p>
<p>LastPass is a free password manager and form filler which comes in the form of an extension not just for Chrome but also for Firefox, Internet Explorer and Safari (Mac). While the standalone extension works fine in other browsers, in Chrome we need to download LastPass’s complete windows installer (available here). This tiny extension lets us import and export passwords to and from numerous storage vendors. Supported vendors include RoboForm, 1Password, KeePass, Password Safe, MyPasswordSafe, Sxipper, TurboPasswords, Passpack, Firefox, and Internet Explorer’s built-in password managers.</p>
<p><strong><a href="https://chrome.google.com/extensions/detail/bbcnbpafconjjigibnhbfmmgdbbkcjfi" target="_blank">Session Manager</a></strong></p>
<p><strong><img class="size-full wp-image-7199 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/7ea479fddeanager.png.png" alt="SessionManager" width="500" height="313" /></strong></p>
<p>I personally found Session Manager to be more suited to my own needs. I often have a lot of tabs open when I get involved in a topic. I open up multiple web resources and references for that topic and end with a lot of simultaneously open tabs. Saving them all in the bookmarks will cause bookmark-clutter. Session Manager lets me conveniently save the entire session with a description to accompany it. I can save multiple sessions and restore them any time I want.</p>
<p><strong><a href="https://chrome.google.com/extensions/detail/nmidkjogcjnnlfimjcedenagjfacpobb" target="_blank">FreshStart</a></strong></p>
<p><strong><img class="size-full wp-image-7200 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/22a8ac8eb4hstart.png.png" alt="freshstart" width="446" height="464" /></strong></p>
<p>If you are looking for a session manager that will work across multiple computers, then FreshStart for Chrome is what will serve your needs best. With this extension, when we save our sessions, we can choose to exclude certain tabs. Our sessions are saved locally in the FreshStart bookmarks folder and synced to the cloud via Google Chrome’s bookmark sync feature. This way we can access our saved sessions on any computer which has Chrome with FreshStart installed.</p>
<p><strong><a href="https://chrome.google.com/extensions/detail/mgjjeipcdnnjhgodgjpfkffcejoljijf" target="_blank">Shortcut Manager</a></strong></p>
<p><strong><img class="size-full wp-image-7201 aligncenter" src="http://www.freshtuts.net/wp-content/uploads/2010/03/d39407d015ortcut.png.png" alt="shortcut" width="353" height="305" /></strong></p>
<p>Shortcut Manager will benefit anybody wanting to set custom hotkeys to various Chrome tasks. We can change the browser default shortcut keys, and assign any bookmarklets or JavaScript actions to our hotkeys. Apart from built-in Chrome actions and the JavaScript actions which can assign, we can also capture the screen and insert our signature on a page.</p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/0U11dHHe-mY" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/55eeca1d41nytabs.png.png" alt="" /></p>
<p>Read the original here:<br />
<a title="5 Great Extensions To Manage Various Tasks On Google Chrome" href="http://feedproxy.google.com/~r/SmashingApps/~3/0U11dHHe-mY/5-great-extensions-to-manage-various-tasks-on-google-chrome.html" target="_blank">5 Great Extensions To Manage Various Tasks On Google Chrome</a></p>
<div style='display:none' id="post-refEl-4495"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/5-great-extensions-for-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make a Killer Viral Photo Gallery</title>
		<link>http://www.freshtuts.net/how-to-make-a-killer-viral-photo-gallery/</link>
		<comments>http://www.freshtuts.net/how-to-make-a-killer-viral-photo-gallery/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 11:03:11 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4504</guid>
		<description><![CDATA[This post is by the online imagery experts at Shutterstock, ...]]></description>
			<content:encoded><![CDATA[<p><em>This post is by the online imagery experts at <a href="http://shutterstock.com/?sid=SMASH10" target="_blank">Shutterstock, a subscription stock photo agency.</a></em></p>
<p>You see photo galleries all over the web: The top 10 such-and-such photos, or 25 amazing this-or-that pictures. If you’re like us, you click on almost every one of them. Themed photo galleries on blogs work for a simple reason: Almost everyone appreciates great pictures and enjoys sharing them with friends. If you can dream up a good theme, write a good headline, and deliver a payoff of stunning visuals, you’ve got a viral hit on your hands.</p>
<p>The difficulty is getting the pictures legally and fairly. You could look for photos on Flickr or Google Images, but you face some time-consuming work: making sure you have permission to republish the pictures. Usually this means contacting every photographer or their agents individually. Some photographers will be delighted that you’re sharing their work, but others will be offended if you fail to give them a say in how the work is presented (or, of course, pay them for it). With rare exceptions (such as NASA images and very old photos), every photograph is copyrighted unless the rights holder says otherwise. You’ve probably read stories about web sites that have had to pull content offline after complaints or legal action from photographers. You don’t want to be in that position.</p>
<p>This tutorial will teach you how to use a stock image library to find images you can legally and safely use on a blog. Obviously, we’d love it if you get your images from Shutterstock (Spoiler alert: There’s a coupon at the end of the article) but we hope you find this information useful even if you don’t. This tutorial offers some basic guidelines for image searching and selection, and assumes you’re already familiar with the fundamentals of blogging and have access to Adobe Photoshop. Let’s get started on building a viral photo gallery for your blog.</p>
<p><strong>1. Come up with an idea and a title. </strong></p>
<p>Pictures of lightning? Underwater scenes? Ugly pets? Things with spots? Get creative, but keep in mind some ideas naturally lend themselves to great photographs. For this tutorial, we’re going to put together a gallery of pictures of impressive bridges. Your title should be short, catchy and as bold as possible without overpromising. Remember, this will be what people see in RSS feeds and social networking sites, so it should make it obvious that it’s a photo gallery. Audiences also respond well to titles that specify a number of images, so they know they’re not about to be overwhelmed with somebody’s collection of 1,000 vacation snapshots. For this exercise, let’s go with the title “Photo Gallery: The World’s 5 Most Beautiful Bridges.” (We might go with 10 or 20 pictures on a blog, but here we want to keep it short.)</p>
<p><strong>2. Visit a stock library and start searching. </strong></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/6bb63fee55stock1.png.png" alt="" /></p>
<p>When you first start to search, you might be overwhelmed with your choices. If you type “bridge” into Shutterstock, you’ll get more than 65,000 results, including both illustrations and images. You can refine your search by limiting it to just photos and sorting the results by the most popular images. As you get a feel for what kinds of images are in the library, you might want to add more keywords, like “river” or “night” or “suspension.” If you see a picture you really like, you can display images similar to it by clicking on the similar images icon that appears below each thumbnail (on Shutterstock, it looks like two overlapping squares). You can also click on a photographer’s name to display more images by the same photographer, since there’s a chance they might have other images that fit your theme.</p>
<p><strong>3. Build a lightbox and choose your favorite photos.</strong></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/6b1c86c466stock2.png.png" alt="" /></p>
<p>A lightbox is a folder you create on a stock site to keep track of images you might want to download. On Shutterstock, when you see an image you like, click on the icon that looks like a light bulb. Select “new lightbox” from the menu, give it a name, and start adding pictures to it. Go crazy – add everything you like.</p>
<p>Now, the editing process begins. Photo editing is a skill that improves with practice and some sort of an art background, but even if you’re new to it, you probably know more than you think. Do you see an image that makes you laugh, that reminds you of something you like, or that you would want to immediately share with a friend? Keep that one. Are there a couple of images that look really similar? Pick one and forget the rest. Edit tight. Don’t be afraid of passing up the wrong image, and go with your instincts. Remember, you want to give your visitors a surprise-and-delight moment, not bore them.</p>
<p><strong>4. Download and resize your images. </strong></p>
<p>OK, we’ve settled on the images we want. Now we visit each image page and download the size we need. This is a good time to check the usage terms for the site to make sure the usage we want is allowed. Shutterstock limits online usage to a maximum of 800 x 600 pixels. That restriction is in place to keep people from distributing print-quality images online, and it’s plenty big enough for most blogs. (This particular blog has a width of 540 pixels, so we’re in good shape.) For most of the images we’re about to download, the medium-size images will be the proper size, so we’ll download that size. (When in doubt, download a larger size than you need.)</p>
<p>Next, use Photoshop or another image editing program to make sure all your images are resized to the pixel width of your blog and saved as JPEG format.</p>
<p><strong>5. Order your photos, write captions, and place them in your blog. </strong></p>
<p>Like editing, sequencing is a skill that gets easier with practice. To start, you can’t go wrong if you arrange your photos in a way that tells a story, and write captions to match. Alternately, you can lead with your best photo, then alternate between traditional, conservative shots and unexpected, creative ones.  Your captions should be short but contain enough information to answer any obvious questions a visitor will have when looking at the photo. (Such as: What is this, and why is it so great?) You should also credit the photographer and the source of the image. It’s useful to include a link to the source of the image as well.</p>
<p>When you’re happy with your images and captions, enter them into your blogging program, publish, and start spreading the word.</p>
<p>To show you what we came up with following these steps, here’s our mini list of bridges.</p>
<p><strong>Photo Gallery: The World’s 5 Most Beautiful Bridges</strong></p>
<p><a href="http://www.shutterstock.com/pic-26601352/stock-photo-brooklyn-bridge-and-manhattan.html" target="_blank">© Ilja Mašík / Shutterstock</a></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/c2d615b19bstock3.jpg.jpg" alt="" /></p>
<p>The Brooklyn Bridge, New York, completed 1883.</p>
<p><a href="http://www.shutterstock.com/pic-32185006/stock-photo-millau-viaduct-aveyron-departement-france.html" target="_blank">© Richard Semik / Shutterstock</a></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/758d20d941stock4.jpg.jpg" alt="" /></p>
<p>Millau Viaduct, France, the tallest vehicular bridge in the world, completed 2004.</p>
<p><a href="http://www.shutterstock.com/pic-22336228/stock-photo-tower-bridge-and-girl-dolphin-statue-london.html" target="_blank">© David Peta/ Shutterstock</a></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f8d6fea910stock5.jpg.jpg" alt="" /></p>
<p>Tower Bridge, London, completed 1894.</p>
<p><a href="http://www.shutterstock.com/pic-35859223/stock-photo-beautiful-sunset-over-of-the-oldest-bridge-over-the-river-arno-in-florence-ponte-vecchio.html" target="_blank">© Filip Fuxa / Shutterstock</a></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/3c49e23a3dstock6.jpg.jpg" alt="" /></p>
<p>Ponte Vecchio, Florence, Italy, completed 1354.</p>
<p><a href="http://www.shutterstock.com/pic-39454747/stock-photo-it-is-beautiful-night-scenes-of-tsing-ma-bridge-in-hong-kong.html" target="_blank">© elwynn / Shutterstock</a></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/95fabdfaf4stock7.jpg.jpg" alt="" /></p>
<p>Tsing Ma Bridge, Hong Kong, completed 1997.</p>
<p>There are plenty of other beautiful bridges out there, but you get the idea.</p>
<p>We hope this leaves you feeling inspired to give stock photography a try as a source of content for your blog. Be picky, be creative, be funny, and above all give your audience something they’ll genuinely enjoy. If you want to try Shutterstock, they have monthly subscription packages that let you download up to 25 images a day, plus “On Demand” plans if you need just a few images. They invite you to save 10% with coupon code <strong>SMASH10*</strong>.</p>
<p>For more tips on how to use Shutterstock images, visit our blog: <a href="http://blog.shutterstock.com/" target="_blank">blog.shutterstock.com</a>.</p>
<p>*10% Discount on  Standard Licenses Only</p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/xtclQZ7wcWU" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/6bb63fee55stock1.png.png" alt="" /></p>
<p>Go here to read the rest:<br />
<a title="How to Make a Killer Viral Photo Gallery" href="http://feedproxy.google.com/~r/SmashingApps/~3/xtclQZ7wcWU/how-to-make-a-killer-viral-photo-gallery.html" target="_blank">How to Make a Killer Viral Photo Gallery</a></p>
<div style='display:none' id="post-refEl-4504"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/how-to-make-a-killer-viral-photo-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showcase Of Beautiful Floral Typography</title>
		<link>http://www.freshtuts.net/the-colorful-showcase-of-beautiful-floral-typography/</link>
		<comments>http://www.freshtuts.net/the-colorful-showcase-of-beautiful-floral-typography/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 10:54:13 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Best of the Web]]></category>
		<category><![CDATA[color schemes]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4550</guid>
		<description><![CDATA[Floral Typography is a form of art that coalesce typography, ...]]></description>
			<content:encoded><![CDATA[<p>Floral Typography is a form of art that coalesce typography, calligraphy, and lettering to create dynamic, flourishing designs. Since flowers are universal images that never go out-of-date, many designers opt to create floral typography for their designs. With floral typography, you can create appealing and noteworthy designs that capture the attention of your visitors. You can convey your message in very artistic way and with the floral ornament you can make your design inspiring, revitalizing and make it stand out of the world. So, here we have listed some really impressive Floral Typography to inspire those designers who are working on enhancing their creative skills.</p>
<p>You are welcome to share if you know more beautiful floral typography which our readers/viewers may like. <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>Do you want to be the first one to know the latest happenings</span></a> at SmashingApps.com just <a href="http://feeds.feedburner.com/SmashingApps" target="_blank"><span>subscribe to our rss feed</span></a> and <a href="http://twitter.com/smashingapps" target="_blank">you can follow us on twitter</a> and <strong><a href="http://www.facebook.com/smashingapps" target="_blank">do not forget to become our fan on facebook</a></strong> as well.</p>
<p><strong><a href="http://www.behance.net/Gallery/Plastic-Illusions/135588" target="_blank">Dont Panic</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Plastic-Illusions/135588" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/50269e2a26ypo_49.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://dronograph.deviantart.com/art/eco-environment-132077079" target="_blank">Eco-environment</a></strong></p>
<p><a href="http://dronograph.deviantart.com/art/eco-environment-132077079" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/9d728fca85ypo_88.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://dean-site.deviantart.com/art/Floral-Love-67010463" target="_blank">Floral Love</a></strong></p>
<p><a href="http://dean-site.deviantart.com/art/Floral-Love-67010463" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/8f268a5509ypo_24.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.flickr.com/photos/johnquinn/3380705598/" target="_blank">Gig Poster</a></strong></p>
<p><a href="http://www.flickr.com/photos/johnquinn/3380705598/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/2f8caf0614ypo_27.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Stay-Green_-Go-Red_-posterwallpaper/54199" target="_blank">STAY GREEN. GO RED.</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Stay-Green_-Go-Red_-posterwallpaper/54199" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/26eae1646eypo_86.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/complicated-love/173139" target="_blank">Love</a></strong></p>
<p><a href="http://www.behance.net/Gallery/complicated-love/173139" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/3bc00d0868typo_8.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Keep-Reno-Green/170025" target="_blank">Keep Reno Green</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Keep-Reno-Green/170025" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/73f1af589fypo_81.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/color--emotions/135604" target="_blank">Idea</a></strong></p>
<p><a href="http://www.behance.net/Gallery/color--emotions/135604" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/32947371c5ypo_18.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.graphic-exchange.com/exellence/siscott.htm" target="_blank">Summer Exhibition</a></strong></p>
<p><a href="http://www.graphic-exchange.com/exellence/siscott.htm" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/193897752fypo_23.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://redox3000.deviantart.com/art/designers-don-t-commit-crimes-63194530" target="_blank">Designers don’t commit crimes</a></strong></p>
<p><a href="http://redox3000.deviantart.com/art/designers-don-t-commit-crimes-63194530" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/5770466f0fypo_36.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Renault-Logan/50380" target="_blank">Logan</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Renault-Logan/50380" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/af5b5b9e63ypo_11.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://degodson.deviantart.com/art/i-Love-Art-119101046" target="_blank">I Love Art</a></strong></p>
<p><a href="http://degodson.deviantart.com/art/i-Love-Art-119101046" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/eff621523bypo_48.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Typography/83203" target="_blank">Hide and Seek</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Typography/83203" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/2bdcd84e64ypo_51.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/DiR/174882" target="_blank">Play</a></strong></p>
<p><a href="http://www.behance.net/Gallery/DiR/174882" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/5237a31092ypo_58.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Title/50935" target="_blank">Title</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Title/50935" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/b1cf68c1fbypo_60.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://lemondesign.deviantart.com/art/Typography-A-73901643" target="_blank">Typography-A</a></strong></p>
<p><a href="http://lemondesign.deviantart.com/art/Typography-A-73901643" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/7581795e39ypo_68.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Type-(update)/81540" target="_blank">Type</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Type-(update)/81540" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/e1a8c000b6ypo_69.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Blackout/169944" target="_blank">BlackOut</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Blackout/169944" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/a1ae3cc9e5typo_2.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/White_-word_/90168" target="_blank">White</a></strong></p>
<p><a href="http://www.behance.net/Gallery/White_-word_/90168" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/a9e945de64typo_5.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Beautiful-/206544" target="_blank">Beautiful</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Beautiful-/206544" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/d3292f40cetypo_4.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://lee25.deviantart.com/art/Ecosystem-BW-34475568" target="_blank">Ecosystem BW</a></strong></p>
<p><a href="http://lee25.deviantart.com/art/Ecosystem-BW-34475568" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/ff1ba5ad3dypo_25.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/spring/93058" target="_blank">Spring</a></strong></p>
<p><a href="http://www.behance.net/Gallery/spring/93058" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/d9607b6c49typo_6.jpg.jpg" border="0" alt="Flower Typography" width="454" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Deja-vu/135910" target="_blank">Deja VU</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Deja-vu/135910" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/e5702c49ddtypo_9.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/My-fake-cover-(logo)/91761" target="_blank">My Fake Cover</a></strong></p>
<p><a href="http://www.behance.net/Gallery/My-fake-cover-(logo)/91761" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/e1a8530d85ypo_14.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.flickr.com/photos/23381789@N07/2604065463/" target="_blank">Tipo 04</a></strong></p>
<p><a href="http://www.flickr.com/photos/23381789@N07/2604065463/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/5697914e22ypo_43.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://shinybinary.deviantart.com/art/Type-34079317" target="_blank">Type</a></strong></p>
<p><a href="http://shinybinary.deviantart.com/art/Type-34079317" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/01329a8d02ypo_84.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Magazine-Work/125104" target="_blank">The Mask of Sorrow</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Magazine-Work/125104" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/fcbaad0384ypo_19.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://smadani.com/ArcticPaper%20page.htm" target="_blank">A New Leaf</a></strong></p>
<p><a href="http://smadani.com/ArcticPaper%20page.htm" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/e198f1c0a0ypo_22.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/CRUDE/124022" target="_blank">Crude</a></strong></p>
<p><a href="http://www.behance.net/Gallery/CRUDE/124022" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/cda835b2daypo_28.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Nokia/84993" target="_blank">Nokia</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Nokia/84993" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/56b9692da1ypo_29.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://firetongue8.deviantart.com/art/Inspire-wallpaper-95176146" target="_blank">Inspire</a></strong></p>
<p><a href="http://firetongue8.deviantart.com/art/Inspire-wallpaper-95176146" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/2b8d379567ypo_32.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://lee25.deviantart.com/art/D-G-Vector-and-Drawing-41516669" target="_blank">D+G Vector and Drawing</a></strong></p>
<p><a href="http://lee25.deviantart.com/art/D-G-Vector-and-Drawing-41516669" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/d4e2c8ebf3ypo_33.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Illustrated-type/133204" target="_blank">Using mixed media</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Illustrated-type/133204" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/e397561185ypo_38.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.flickr.com/photos/34479279@N06/3415238702/" target="_blank">Flickr the world</a></strong></p>
<p><a href="http://www.flickr.com/photos/34479279@N06/3415238702/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/57fd460714ypo_40.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Word/107437" target="_blank">Word</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Word/107437" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f86be313f1ypo_46.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://lee25.deviantart.com/art/Funkrush-Final-35267348" target="_blank">Funkrush</a></strong></p>
<p><a href="http://lee25.deviantart.com/art/Funkrush-Final-35267348" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/dbb2358f7eypo_47.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Typography/83203" target="_blank">Hello</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Typography/83203" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/396ec62749ypo_52.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Trust_/53481" target="_blank">Trust</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Trust_/53481" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/6bffe7f479ypo_54.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/typography/173812" target="_blank">Island</a></strong></p>
<p><a href="http://www.behance.net/Gallery/typography/173812" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f73937bddfypo_61.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/got-milk-/84980" target="_blank">Got Milk</a></strong></p>
<p><a href="http://www.behance.net/Gallery/got-milk-/84980" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/c27cd70b3fypo_62.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/silk/93372" target="_blank">Silk</a></strong></p>
<p><a href="http://www.behance.net/Gallery/silk/93372" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/f7e711dae1ypo_64.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/key-(i-love-you)/184046" target="_blank">I love you</a></strong></p>
<p><a href="http://www.behance.net/Gallery/key-(i-love-you)/184046" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/3b20a54210ypo_65.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.behance.net/Gallery/Chanel-4--25th-Anniversary-Book/53853" target="_blank">Chanel 4 25th Anniversary Book</a></strong></p>
<p><a href="http://www.behance.net/Gallery/Chanel-4--25th-Anniversary-Book/53853" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/3954373dcbypo_67.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://www.flickr.com/photos/estheticcore/2926961500/" target="_blank">What we do in life, echoes in eternity</a></strong></p>
<p><a href="http://www.flickr.com/photos/estheticcore/2926961500/" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/c7cd326094ypo_85.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<p><strong><a href="http://dreaming-star.deviantart.com/art/Love-62739067" target="_blank">Love</a></strong></p>
<p><a href="http://dreaming-star.deviantart.com/art/Love-62739067" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/c1745ba59eypo_87.jpg.jpg" border="0" alt="Flower Typography" width="520" /></a></p>
<div><a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SmashingApps?i=cA9jvjamBC0:FAOdegSbOIM:V_sGLiPBpWU" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SmashingApps?i=cA9jvjamBC0:FAOdegSbOIM:gIN9vFwOqvQ" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SmashingApps?d=7Q72WNTAKBA" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/SmashingApps?i=cA9jvjamBC0:FAOdegSbOIM:F7zBnMyn0Lo" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/SmashingApps?d=dnMXMwOfBR0" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/SmashingApps?d=TzevzKxY174" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SmashingApps?d=yIl2AUoC8zA" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SmashingApps?d=qj6IDK7rITs" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/SmashingApps?i=cA9jvjamBC0:FAOdegSbOIM:KwTdNBX3Jqk" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SmashingApps?a=cA9jvjamBC0:FAOdegSbOIM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/SmashingApps?d=l6gmwiTKsz0" border="0" alt="" /></a></div>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/cA9jvjamBC0" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/50269e2a26ypo_49.jpg.jpg" alt="" /></p>
<p>Read more from the original source:<br />
<a title="The Colorful Showcase Of Beautiful Floral Typography" href="http://feedproxy.google.com/~r/SmashingApps/~3/cA9jvjamBC0/the-colorful-showcase-of-beautiful-floral-typography.html" target="_blank">The Colorful Showcase Of Beautiful Floral Typography</a></p>
<div style='display:none' id="post-refEl-4550"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/the-colorful-showcase-of-beautiful-floral-typography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need Interactive Charts. Try Highcharts</title>
		<link>http://www.freshtuts.net/need-interactive-charts-for-your-personal-website-try-highcharts/</link>
		<comments>http://www.freshtuts.net/need-interactive-charts-for-your-personal-website-try-highcharts/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 10:46:57 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Ajax Scripts]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[libraries]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4557</guid>
		<description><![CDATA[If you have a non-commercial website and you need to ...]]></description>
			<content:encoded><![CDATA[<p>If you have a non-commercial website and you need to add charting capabilities in your website, Highcharts may suit your needs.  Highcharts is a free charting control developed purely with Javascript so that you can show interactive charts on your website.  Since its purely developed with Javascript, you don’t need any special server side technologies like ASP.NET or PHP and no client-side plug-ins are required like Flash or Silverlight.</p>
<p>Highcharts is dynamic in nature.  With the support of jQuery and Ajax API, you can dynamically set axes and points of charts at runtime, hence making Highcharts an excellent choice for demonstrating real-time data like Stocks and Forex.</p>
<p><a href="http://www.highcharts.com" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/077b3b7651arts11.jpg.jpg" alt="" /></a></p>
<p>It works with all major web browsers including iPhone and supports a number of chart types, such as:</p>
<ul>
<li>Line</li>
<li>SplineArea</li>
<li>Areaspline</li>
<li>Column</li>
<li>Bar</li>
<li>Pie</li>
<li>Scatter</li>
</ul>
<p>Implementing Highcharts just require some basic understanding of Javascript and you don’t need to be an expert programmer having special programming skills in specific languages.  The syntax is very simple and the integration is almost seamless.</p>
<p><a href="http://www.highcharts.com" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/94b90ce1b1arts21.jpg.jpg" alt="" /></a></p>
<p>In addition to all this, Highcharts gives your website an enhanced user experience with interactive moving charts with cool designs and eye-catching colors.</p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/8SEecjFk36k" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/077b3b7651arts11.jpg.jpg" alt="" /></p>
<p>Link:<br />
<a title="Need Interactive Charts For Your Personal Website?  Try Highcharts" href="http://feedproxy.google.com/~r/SmashingApps/~3/8SEecjFk36k/need-interactive-charts-for-your-personal-website-try-highcharts.html" target="_blank">Need Interactive Charts For Your Personal Website?  Try Highcharts</a></p>
<div style='display:none' id="post-refEl-4557"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/need-interactive-charts-for-your-personal-website-try-highcharts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Embed Free Online Photo Editor</title>
		<link>http://www.freshtuts.net/now-embed-free-online-photo-editor-in-your-website-with-picmeleo/</link>
		<comments>http://www.freshtuts.net/now-embed-free-online-photo-editor-in-your-website-with-picmeleo/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 10:32:33 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4553</guid>
		<description><![CDATA[Picmeleo is a free online photo editor that any third-party ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.picmeleo.com/" target="_blank">Picmeleo</a> is a free online photo editor that any third-party developers can easily add Picmeleo to their web service and launch the light-weight yet powerful photo editor whenever their users need to to upload or to edit an image. By adding Picmeleo to your web service, you can now engage your users with even richer content. This is the smartest way to let your users upload and edit images for your service.</p>
<p>Unlike other photo editors, Picmeleo opens within your site and your users never leave your service.. Integration and ease of use. Everything about Picmeleo is designed for easy integration to your website. The lightweight editor does not clutter your service and you can also fully customize Picmeleo’s tool box.</p>
<p><strong>Open Editor</strong></p>
<p>The editor can be launched anywhere in your layout by calling the picmeleoApi.open method. Your open link could look like this:</p>
<pre><em><a href="javascript:picmeleoApi.open('')">Open Picmeleo editor</a></em></pre>
<p>Pass the url of the image if you want the editor to open with a default image. Omitting the url will open an empty editor</p>
<p><a href="http://www.picmeleo.com/" target="_blank"><img class="alignnone size-full wp-image-7177" title="Picmeleo" src="http://www.freshtuts.net/wp-content/uploads/2010/03/4f1f9b223bmeleo1.jpg.jpg" alt="Picmeleo" width="500" height="212" /></a></p>
<div><strong>Simple Integration</strong></div>
<p>Integrating Picmeleo to your website couldn’t be easier. Just copy a few lines of embed code and Picmeleo is working on your site!</p>
<p><strong>Custom Tools</strong><br />
Unlike other photo editors, you can customize the tools of Picmeleo any time you want in the online admin interface. Sometimes photo editors can be overwhelming. Picmeleo allows you to pick the tools your users really need. Choose from a growing list of tools including Crop, Scale, Rotate, Auto-fix, Filters and many more.<br />
<strong>Multilanguage Support</strong><br />
Picmeleo has built-in multilanguage support and you can easily set the language in the online admin interface. We are still working on different language options at the moment, stay tuned for more.</p>
<p><a href="http://www.picmeleo.com/example/" target="_blank"><img class="alignnone size-full wp-image-7181" title="Picmeleo-photo-editor" src="http://www.freshtuts.net/wp-content/uploads/2010/03/a34cedc798editor.jpg.jpg" alt="Picmeleo-photo-editor" width="500" height="281" /></a></p>
<p><strong>Picmeleo can be utilized in numerous places. Think of these examples:</strong></p>
<li>social network</li>
<p><em>let your users crop their profile images</em></p>
<li>eCommerce</li>
<p><em>let your users enhance their product images during upload</em></p>
<li>photo gallery</li>
<p><em>let your users easily edit your images online without leaving the site</em></p>
<p>The possibilities are endless…</p>
<p><img src="http://feeds.feedburner.com/~r/SmashingApps/~4/fcQmSH8u3f4" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/03/4f1f9b223bmeleo1.jpg.jpg" alt="" /></p>
<p>Read the rest here:<br />
<a title="Now Embed Free Online Photo Editor In Your Website With  Picmeleo" href="http://feedproxy.google.com/~r/SmashingApps/~3/fcQmSH8u3f4/picmeleoa-free-online-photo-editor-that-can-integrate-in-your-website.html" target="_blank">Now Embed Free Online Photo Editor In Your Website With  Picmeleo</a></p>
<div style='display:none' id="post-refEl-4553"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/now-embed-free-online-photo-editor-in-your-website-with-picmeleo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful Designs with Smoke Typography</title>
		<link>http://www.freshtuts.net/beautiful-designs-with-smoke-typography/</link>
		<comments>http://www.freshtuts.net/beautiful-designs-with-smoke-typography/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:13:00 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Brushes]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[resolution]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[smoke-type]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2602</guid>
		<description><![CDATA[There is something very beautiful and mysterious about smoke. Using ...]]></description>
			<content:encoded><![CDATA[<p>There is something very beautiful and mysterious about smoke. Using smoke in a design can produce some amazing visual effects, as you can see in this collection. In case you want to incorporate smoke effects in your own designs, we’ve also included some design resources in this article that you can check out.</p>
<h3>Smoke Typography Showcase</h3>
<h4><a href="http://hautalken.deviantart.com/art/Intuition-Smoke-138515872">Intuition Smoke</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/5aaf206994smoke.jpg.jpg" alt="Intuition Smoke" width="550" height="350" /><span>By <a href="http://hautalken.deviantart.com/">Hautalken</a></span></p>
<p><span> </span></p>
<h4><a href="http://www.flickr.com/photos/estheticcore/2932813983/">Dissolve</a></h4>
<p><a href="http://www.flickr.com/photos/estheticcore/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/425d316360iccore.jpg.jpg" alt="Dissolve" width="550" height="350" /></a><span>By <a title="Link to estheticcore's photostream" href="http://www.flickr.com/photos/estheticcore/">estheticcore</a></span></p>
<h4><a href="http://www.behance.net/Gallery/Smoke--Type/40834">Smoke+Type</a></h4>
<p><a href="http://www.behance.net/Gallery/Smoke--Type/40834"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/46b4ece5f8type01.jpg.jpg" alt="Smoke+Type" width="550" height="350" /></a><span>By <a href="http://www.behance.net/DanGordon">Daniel Gordon</a></span></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/9a803a4c18type02.jpg.jpg" alt="Smoke+Type" width="550" height="350" /><span>By <a href="http://www.behance.net/DanGordon">Daniel Gordon</a></span></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/0322c34813type03.jpg.jpg" alt="Smoke+Type" width="550" height="350" /><span>By <a href="http://www.behance.net/DanGordon">Daniel Gordon</a></span></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/a3ce567325type04.jpg.jpg" alt="Smoke+Type" width="550" height="350" /><span>By <a href="http://www.behance.net/DanGordon">Daniel Gordon</a></span></p>
<h4><a href="http://richworks.deviantart.com/art/Smoke-Typography-142573589">Smoke Typography</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/8119f0dcdehworks.jpg.jpg" alt="Smoke" width="550" height="350" /><span>By <a href="http://richworks.deviantart.com/">Richie Thimmaiah</a></span></p>
<h4><a href="http://www.behance.net/Gallery/Smoke/173748">Smoke</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/0059de02e7iero01.jpg.jpg" alt="Smoke" width="550" height="350" /><span>By <a href="http://www.behance.net/orpos">Giampiero Quaini</a></span></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/8d9e464715iero02.jpg.jpg" alt="Smoke" width="550" height="350" /><span>By <a href="http://www.behance.net/orpos">Giampiero Quaini</a></span></p>
<h4><a href="http://www.behance.net/Gallery/War/143389">War</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/6dbc09452bwar01.jpg.jpg" alt="War" width="550" height="350" /><span>By <a href="http://www.behance.net/marceloVaz">Marcelo Vaz</a></span></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/9ba4c958c4war02.jpg.jpg" alt="War" width="550" height="350" /><span>By <a href="http://www.behance.net/marceloVaz">Marcelo Vaz</a></span></p>
<h4><a href="http://www.behance.net/Gallery/Exhausted/296053">Exhausted</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/f685961b90austed.jpg.jpg" alt="Exhausted" width="550" height="350" /><span>By <a href="http://www.behance.net/migsterrr">Mignonne Meekels</a></span></p>
<h4><a href="http://www.behance.net/Gallery/Spark-Me/259109">Spark Me</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/3f4fe13f87ark_me.jpg.jpg" alt="Spark Me" width="550" height="350" /><span>By <a href="http://www.behance.net/CamHilsman">Cam Hilsman</a></span></p>
<h4><a href="http://www.behance.net/Gallery/Smoke/100063">Smoke</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/fa157002dcnymous.jpg.jpg" alt="Smoke" width="550" height="350" /><span>By <a href="http://www.behance.net/Anonymous">Rick Griemink</a></span></p>
<h4><a href="http://my-name-is-annie.deviantart.com/art/Smoke-Type-117555440">Smoke Type</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/0fd10c31c0e_type.jpg.jpg" alt="Smoke Type" width="550" height="350" /><span>By <a href="http://my-name-is-annie.deviantart.com/">my-name-is-annie</a></span></p>
<h4><a href="http://blue-jackal.deviantart.com/art/Smoke-Typo-114619395">Smoke Typo</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/0aeb13b814jackal.jpg.jpg" alt="Smoke Typo" width="550" height="350" /><span>By <a href="http://blue-jackal.deviantart.com/">Canis Azureus</a></span></p>
<h4><a href="http://matkraken.deviantart.com/art/smoke-this-90375845">smoke.this</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/8c2141bdffkethis.jpg.jpg" alt="smoke.this" width="550" height="350" /><span>By <a href="http://matkraken.deviantart.com/">Matias S. Gonzalez</a></span></p>
<h4><a href="http://rhodesan.deviantart.com/art/Smoke-143516689">Smoke.</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/43c285f4f9odesan.jpg.jpg" alt="Smoke." width="550" height="350" /><span>By <a href="http://rhodesan.deviantart.com/">Anne Rhodes</a></span></p>
<h4><a href="http://pattysmear.deviantart.com/art/Smoke-131558265">Smoke</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/f9f999c288ysmear.jpg.jpg" alt="Smoke" width="550" height="350" /><span>By <a href="http://pattysmear.deviantart.com/">pattysmear</a></span></p>
<h4><a href="http://www.behance.net/Gallery/Pelican-Typographic-Treatment/121086">Pelican – Typographic Treatment</a></h4>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/1512dcfceaatment.jpg.jpg" alt="Pelican - Typographic Treatment" width="550" height="350" /><span>By <a href="http://www.behance.net/benleewhite">Ben White</a></span></p>
<h3>Smoke Typography Brushes</h3>
<h4><a href="http://qbrushes.net/photoshop-abstract-brushes/21-smoke-brush-set/">Smoke Brush Set</a></h4>
<p><a href="http://qbrushes.net/photoshop-abstract-brushes/21-smoke-brush-set/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/eafda97b79steps.jpg.jpg" alt="Smoke Type in Photoshop in 10 Steps" width="550" height="259" /></a></p>
<h4><a title="Permanent Link to Stunning Smoke Effects: 42 High Resolution Photoshop Brushes" href="http://colorburned.com/2009/07/stunning-smoke-effects-42-stunning-high-resolution-photoshop-brushes.html">Stunning Smoke Effects: 42 High Resolution Photoshop Brushes</a></h4>
<p><a href="http://colorburned.com/2009/07/stunning-smoke-effects-42-stunning-high-resolution-photoshop-brushes.html"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/ccb424bb28smoke.jpg.jpg" alt="Stunning Smoke Effects: 42 High Resolution Photoshop Brushes" width="550" height="350" /></a></p>
<h4><a href="http://bunniesandsheep.deviantart.com/art/Smoke-Brushes-68799560">Smoke Brushes</a></h4>
<p><a href="http://bunniesandsheep.deviantart.com/art/Smoke-Brushes-68799560"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/39c56dbd76unnies.jpg.jpg" alt="Smoke Brushes" width="550" height="350" /></a></p>
<h3>Smoke Typography Tutorials</h3>
<h4><a href="http://abduzeedo.com/smoke-type-photoshop-10-steps">Smoke Type in Photoshop in 10 Steps</a></h4>
<p><a href="http://abduzeedo.com/smoke-type-photoshop-10-steps"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/570ba001b9sh_set.jpg.jpg" alt="Smoke Brush Set" width="550" height="350" /></a></p>
<h4><a href="http://psdfan.com/tutorials/text-effects/create-smokey-typography-in-12-steps/">Create Smokey Typography in 12 Steps</a></h4>
<p><a href="http://psdfan.com/tutorials/text-effects/create-smokey-typography-in-12-steps/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/ae7f8649d4steps.jpg.jpg" alt="Create Smokey Typography in 12 Steps" width="550" height="259" /></a></p>
<h4><a href="http://psdlearning.com/2009/05/create-smoke-text/">Create Smoke Text</a></h4>
<p><a href="http://psdlearning.com/2009/05/create-smoke-text/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/bb1221597ee_text.jpg.jpg" alt="Create Smoke Text" width="550" height="259" /></a></p>
<h3>Related Content</h3>
<ul>
<li><a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-inset-typography-in-photoshop/">How to Create Inset Typography in Photoshop</a></li>
<li><a href="http://sixrevisions.com/design-showcase-inspiration/beautiful-gradient-typography-in-web-design/">Beautiful Gradient Typography in Web Design</a></li>
<li><a href="http://sixrevisions.com/web_design/20-websites-with-beautiful-typography/">20 Websites with Beautiful Typography</a></li>
<li><em>Related categories</em>: <a href="http://sixrevisions.com/category/graphics-design/">Graphic Design</a> and <a href="http://sixrevisions.com/category/photoshop/">Photoshop</a></li>
</ul>
<h3>About the Author</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/643599880csmall.jpg.jpg" alt="" width="80" height="80" /><span><strong>Hakan Nural</strong> is a freelance graphic designer and blogger from Turkey in İstanbul. He runs a couple of resource sites for graphic designers called <strong><a href="http://www.vectorss.com/">Vectorss.com</a></strong> and <strong><a href="http://brushess.com/">Brushess.com</a></strong> which shares useful vector files and brushes. If you wish to keep up with Hakan, you can find him on Twitter: <strong>@<a href="http://twitter.com/vectorss">vectorss</a></strong>.</span></p>
<div><a href="http://feeds.feedburner.com/~ff/SixRevisions?a=WxU5jtDcXpk:ZC3BK4h1dKk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=WxU5jtDcXpk:ZC3BK4h1dKk:V_sGLiPBpWU" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=WxU5jtDcXpk:ZC3BK4h1dKk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=yIl2AUoC8zA" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=WxU5jtDcXpk:ZC3BK4h1dKk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=qj6IDK7rITs" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=WxU5jtDcXpk:ZC3BK4h1dKk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=WxU5jtDcXpk:ZC3BK4h1dKk:gIN9vFwOqvQ" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=WxU5jtDcXpk:ZC3BK4h1dKk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=7Q72WNTAKBA" border="0" alt="" /></a></div>
<p><img src="http://feeds.feedburner.com/~r/SixRevisions/~4/WxU5jtDcXpk" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/5aaf206994smoke.jpg.jpg" alt="" /></p>
<p>Excerpt from:<br />
<a title="Beautiful Designs with Smoke Typography" href="http://feedproxy.google.com/~r/SixRevisions/~3/WxU5jtDcXpk/" target="_blank">Beautiful Designs with Smoke Typography</a></p>
<div style='display:none' id="post-refEl-2602"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/beautiful-designs-with-smoke-typography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with most popular jQuery libraries</title>
		<link>http://www.freshtuts.net/getting-started-with-jquery/</link>
		<comments>http://www.freshtuts.net/getting-started-with-jquery/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:12:51 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2574</guid>
		<description><![CDATA[The web development scene is moving forward at a lightning-fast ...]]></description>
			<content:encoded><![CDATA[<p>The web development scene is moving forward at a lightning-fast  pace, and it’s imperative that developers continue to keep their  skills fresh. If you’ve been involved in front-end design or  development in any form over the past five years or so, then it’s very  likely that you’ve experimented at some point with one of the popular  JavaScript libraries, many of which have become quite prominent and are  now used on a number of large commercial websites.</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/40dda558aaimage.jpg.jpg" alt="Getting Started with jQuery" width="550" height="250" /></p>
<p><span> </span></p>
<p>In this article, I’ll be introducing and laying the groundwork for  advanced JavaScript development with one of the most popular JavaScript  libraries available: <a href="http://jquery.com">jQuery</a>.</p>
<p>Although there are many beginning tutorials online that can provide a  great starting point for jQuery development, in this article I’m hoping  to go beyond just quick-start syntax and instead provide a solid  overview of jQuery and discuss the benefits of using such a library. Of  course, much of this information–outside of the syntax and other  jQuery-specific details–will be applicable to any JavaScript library.</p>
<h3>Why a JavaScript library?</h3>
<p>To quote the official jQuery slogan: &#8220;Write less, do more.&#8221; The role  of a web developer is to create code that determines what will result  from a user’s interaction with a web page. Web developers should not  have to spend hours debugging browser quirks. Instead, they should be  free to deal solely with the actions and the results. This is where a JavaScript library comes into play.</p>
<h4>Overcoming browser differences</h4>
<p>Different browsers handle DOM manipulation, transparency effects,  and animation in different ways, requiring, in some cases, reams of  code just to create a simple effect. Using a JavaScript library allows  you to completely bypass all of those challenges, giving you access to  an API (Application Programming Interface) that deals directly with the  tasks you actually want to accomplish. All the challenges and issues  common to JavaScript are dealt with behind the scenes, allowing you  to integrate functionality without wondering whether or not it will  work in a particular browser.</p>
<h4>Unobtrusive JavaScript</h4>
<p>Another impelling reason to use a JavaScript library is that all  libraries allow you to include JavaScript in your pages unobtrusively,  thus keeping your <em>behavior</em> layer (the JavaScript) separate from the <em>content</em> and <em>presentation</em> layers (the XHTML and CSS).</p>
<h4>Accomplishing complex tasks with ease</h4>
<p>Finally, a very powerful feature of any JavaScript library is its  ability to manipulate any element or set of elements on a web page with  just one line of code. Take, for example, the following HTML:</p>
<pre>
<div class="container">
<ul class="list">
<li>Text Here</li>
<li>Text Here</li>
<li>Text Here</li>
<li>Text Here</li>
<li>Text Here</li>
</ul>
</div>
</pre>
<p>Let’s say you wanted to use JavaScript to change the background  color of the first list item element (<code> </code></p>
<li>) in the unordered list above.  Using pure JavaScript, your code would look something like this:
<pre>var myListCollection = document.getElementsByTagName("ul");
  for (var i = 0; i &lt; myListCollection.length; i++) {
    if (myListCollection[i].className === "list") {
      myListCollection[i].childNodes[0].style.backgroundColor = "blue";
    }
  }</pre>
<p>Using jQuery, you can accomplish the same thing with just one, easy-to-maintain line of code:</p>
<pre>$("ul.list li:first-child").css("background-color, "blue");</pre>
<h4>Further reading</h4>
<ul>
<li><a href="http://javascript.about.com/od/hintsandtips/a/liborself.htm">JavaScript Library or Code Yourself</a></li>
<li><a href="http://simonwillison.net/static/2008/xtech/">Unobtrusive JavaScript with jQuery – Presentation</a></li>
</ul>
<h3>Understand CSS concepts</h3>
<p>One area that is imperative to powerful jQuery development, is  strong knowledge of CSS. The reason for this is because jQuery often  utilizes CSS-based syntax to manipulate DOM elements. Here are some  concepts that you should be quite familiar with before diving into  extensive jQuery development:</p>
<ul>
<li>Type selectors</li>
<li>Class selectors</li>
<li>ID selectors</li>
<li>Descendant Selectors</li>
<li>Child Selectors</li>
<li>Attribute Selectors</li>
<li>CSS Specificity</li>
<li>The Cascade &amp; Inheritance</li>
</ul>
<p>Most of the above CSS concepts should already be very familiar to  any modern-day front-end developer, since any CSS layout would utilize  these. jQuery not only incorporates the basic selectors (type, class,  and ID), but it also uses descendant and child selectors, which aren’t  supported by all currently-used browsers. But with jQuery, due to its  built-in browser normalization, all selectors are supported equally.</p>
<p>Understanding that jQuery incorporates CSS syntax when accessing  elements will greatly enhance your ability to quickly and easily create  powerful JavaScript applications with jQuery.</p>
<ul>
<li><a href="http://www.w3.org/TR/CSS2/selector.html">CSS Selectors at W3.org</a></li>
<li><a href="http://www.smashingmagazine.com/2009/08/17/taming-advanced-css-selectors/">Taming Advanced CSS Selectors</a></li>
</ul>
<h3>Understand JavaScript concepts</h3>
<p>In order to make full use of jQuery, it is a good idea to learn  certain JavaScript concepts. Sure, you can do a ton of stuff in jQuery  without knowing much about some of the concepts listed below, but  you’ll have a bigger advantage in your jQuery development if you take  the time to understand a few fundamentals, including:</p>
<ul>
<li>Object creation</li>
<li>Properties of objects</li>
<li>Object literals</li>
<li>Functions as methods</li>
<li>Anonymous functions</li>
<li>Closures</li>
</ul>
<p>Again, it is not necessary to fully understand any of the above  concepts in order to start working with jQuery, but your abilities with  jQuery’s API will increase greatly if you understand one or more of the  above concepts.</p>
<ul>
<li><a href="http://www.devarticles.com/c/a/JavaScript/ObjectOriented-JavaScript-An-Introduction-to-Core-Concepts/">Object-Oriented JavaScript: An Introduction to Core Concepts</a></li>
<li><a href="http://www.webreference.com/programming/javascript/object-oriented_javascript/">Object-Oriented Javascript</a> at Webreference.com</li>
</ul>
<h3>The jQuery source code</h3>
<p>Before getting started with any jQuery development, you’ll first have to <a href="http://docs.jquery.com/Downloading_jQuery">download the latest version</a> of the jQuery library and include it in your pages:</p>
<pre><script src="js/jquery-1.3.2.min.js" type="text/javascript"><!--mce:0--></script></pre>
<p>The above line of HTML should appear before any actual jQuery code, otherwise you’ll get errors.</p>
<p>Alternatively, instead of hosting the source code yourself, you could link directly to the most recent version on the <a href="http://code.google.com/apis/ajaxlibs/documentation/index.html#jquery">Google Ajax Libraries API</a> which can save you some server resources. (read <a href="http://sixrevisions.com/web-applications/website-features-that-you-can-easily-offload/">more ways to offload website features</a>).</p>
<h3>jQuery syntax</h3>
<p>Now that you have an overview of the benefits of jQuery, along with  some understanding of concepts involved, let’s take a look at some  syntax to get us started with this powerful library.</p>
<h4>The jQuery wrapper</h4>
<p>The jQuery wrapper is the function that is at the core of all jQuery  commands. I used it earlier in one of the examples above. Here it is  again:</p>
<pre>$("li a");</pre>
<p>The <code>$</code> symbol is an alias for the jQuery function, so the above line of code could alternatively be written:</p>
<pre>jQuery("li a");</pre>
<p>But, for obvious reasons (e.g. to keep your code terse), you’ll rarely see that syntax.</p>
<p>The jQuery function shown in the above two examples  returns an object containing an array of the DOM elements specified  inside the parentheses (in this case, all anchor tags that are nested  inside of <code> </code></li>
<li> tags). Of course, in both examples  above, we haven’t specified an action; all we’re doing is returning  those DOM elements, which does nothing. In the next section, we’ll add  methods that will act on the group of elements we’re targeting.<br />
<h4>jQuery commands</h4>
<p>jQuery’s API includes easy access to effects and other actions via  built-in methods that would normally take dozens of lines of code to  accomplish in a cross-browser fashion with pure JavaScript. For  example, let’s add a &#8220;fade out&#8221; method to the code from the previous  examples:</p>
<pre>$("li a")<strong>.fadeOut()</strong>;</pre>
<p>The above line of code &#8220;fades out&#8221; all anchor tags on the page that are nested inside of <code> </code></li>
<li> tags. If we want to fade the anchors back in again, we just use the <code>fadeIn()</code> method:
<pre>$("li a")<strong>.fadeIn()</strong>;</pre>
<h4>Chaining commands</h4>
<p>jQuery also allows developers to chain commands, stringing one after  another. So, we could combine the previous two examples, as follows:</p>
<pre>$("li a").fadeOut().fadeIn();</pre>
<p>The above code will fade out all anchor tags nested within list  items, then immediately fade them back in. The number of chained items  is infinite (or within reasonably set limits), allowing for numerous  commands to work on the same group of elements, each happening in  succession.</p>
<p>That’s just a small sampling of what’s possible with jQuery, and how  easy it is to accomplish tasks that would normally take many lines of  code, and a lot of browser testing. Although you’ll still do browser  testing when running jQuery code, the results will virtually always be  the same: cross-browser, unobtrusive JavaScript that’s easy to write  and easy to maintain.</p>
<h4>Running code when the DOM is ready</h4>
<p>Earlier we touched on the concept of unobtrusive JavaScript, and how  jQuery is written to allow your scripts to remain separate from content  and presentation. So far, the code examples we’ve discussed would run  fine as long as they were included at the bottom of an HTML page. If,  on the other hand, they were included in the head of the document, they  would fail to work because, at that point, the document tree has not  yet rendered.</p>
<p>jQuery allows us to run our code only when the DOM is ready. This is done by means of the <code>$(document).ready</code> handler. The beauty of this handler is that it doesn’t make the code  wait until the entire page finishes loading, as would be the case with  a typical <code>window.onload</code> event. With the (document).ready  handler, your code will run as soon as the DOM tree is finished  rendering, before all images and other media have finished loading,  thus minimizing load time.</p>
<p>Let’s try running our previous code example when the DOM is ready:</p>
<pre>$(document).ready(function(){
  $("li a").fadeOut().fadeIn();
});</pre>
<p>The above code tells jQuery to run an anonymous function when the  document tree is done rendering. The anonymous function contains the  code we saw previously, which faded our anchors out, then immediately  faded them back in again. This code could be included in the  of the document, near the bottom of the page, or anywhere else, and it would run exactly the same way.</p>
<p>The &#8220;ready&#8221; event is just one of the many events available through jQuery’s API. Others include <code>click</code>, <code>dblclick</code>, <code>load</code>, <code>blur</code>, <code>keydown</code>, <code>submit</code>, and more.</p>
<h4>Further reading</h4>
<ul>
<li><a href="http://docs.jquery.com/Main_Page">jQuery Documentation</a></li>
<li><a href="http://docs.jquery.com/Events">Event-Related Functions in the jQuery API</a></li>
<li><a href="http://docs.jquery.com/Events/ready">The jQuery Ready Event</a></li>
</ul>
<h3>Conclusion</h3>
<p>jQuery is capable of so much more, and I’ve only just begun  demonstrating its power and simplicity. But I think this suffices to  provide a good overview, with some syntax basics, thus preparing  beginning jQuery developers for easy-to-write and practical JavaScript  code.</p>
<h3>Further reading</h3>
<ul>
<li><a href="http://docs.jquery.com/Tutorials">jQuery General Tutorials</a></li>
<li><a href="http://www.noupe.com/tutorial/51-best-of-jquery-tutorials-and-examples.html">51+ jQuery Tutorials</a></li>
<li><a href="http://webitect.net/coding/30-jquery-tutorials-for-complete-beginners/">30 jQuery Tutorials for Complete Beginners</a></li>
</ul>
<h3>Related Content</h3>
<ul>
<li><a href="http://sixrevisions.com/tutorials/javascript_tutorial/create-a-slick-and-accessible-slideshow-using-jquery/">Create a Slick and Accessible Slideshow Using jQuery</a></li>
<li><a href="http://sixrevisions.com/resources/14-jquery-plugins-for-working-with-images/">14 jQuery Plugins for Working with Images</a></li>
<li><a href="http://sixrevisions.com/javascript/40-exceptional-jquery-interface-techniques-and-tutorials/">40 Exceptional jQuery Interface Techniques and Tutorials</a></li>
<li><em>Related categories</em>: <a href="http://sixrevisions.com/category/javascript/">JavaScript</a> and Web <a href="http://sixrevisions.com/category/web-development/">Development</a></li>
</ul>
<h3>About the Author</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/5bbec270f6small.jpg.jpg" alt="" width="80" height="80" /><span><strong>Louis Lazaris</strong> is a writer and freelance web developer based in  Toronto, Canada. He has 9 years of experience in the web development  industry and posts <a href="http://www.impressivewebs.com/articles/">web design articles</a> and <a href="http://www.impressivewebs.com/tutorials/">tutorials</a> on his blog, <a href="http://www.impressivewebs.com">Impressive Webs</a>. Follow Louis on <a href="http://twitter.com/ImpressiveWebs">Twitter</a> or contact him through <a href="http://www.impressivewebs.com/contact/">this form</a>.</span></p>
<div><a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=gKcaKYvPWew:wj46Z0bw_qA:V_sGLiPBpWU" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=yIl2AUoC8zA" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=qj6IDK7rITs" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=gKcaKYvPWew:wj46Z0bw_qA:gIN9vFwOqvQ" border="0" alt="" /></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=gKcaKYvPWew:wj46Z0bw_qA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=7Q72WNTAKBA" border="0" alt="" /></a></div>
<p><img src="http://feeds.feedburner.com/~r/SixRevisions/~4/gKcaKYvPWew" alt="" width="1" height="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/40dda558aaimage.jpg.jpg" alt="" /></p>
<p>Read more here:<br />
<a title="Getting Started with jQuery" href="http://feedproxy.google.com/~r/SixRevisions/~3/gKcaKYvPWew/" target="_blank">Getting Started with jQuery</a></li>
<div style='display:none' id="post-refEl-2574"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/getting-started-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kentico CMS License &amp; 1-Year Maintenance</title>
		<link>http://www.freshtuts.net/giveaway-kentico-cms-license-1-year-maintenance/</link>
		<comments>http://www.freshtuts.net/giveaway-kentico-cms-license-1-year-maintenance/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:12:49 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Php Scripts]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Contests]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2571</guid>
		<description><![CDATA[ Today, we are announcing an awesome giveaway: a full license to Kentico CMS which includes one-year maintenance/support. Read on to see how...]]></description>
			<content:encoded><![CDATA[<p>
<p>Today, we are announcing an awesome giveaway: a <strong>full license</strong> to <a href="http://www.kentico.com/home.aspx">Kentico CMS</a> which includes one-year maintenance/support.  Read on to see how you can participate and get a chance to win this awesome prize <strong>valued at $1,999</strong>!</p>
<p><a href="http://sixrevisions.com/contests/giveaway-1-year-subscription-to-kentico-cms/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/383adaf274veaway.jpg.jpg" width="550" height="200" alt="Giveaway: 1-Year Subscription to Kentico CMS" /></a></p>
<p><span></span></p>
<h3>What is Kentico CMS?</h3>
<p><a href="http://www.kentico.com/home.aspx">Kentico CMS</a> is a web content management system (CMS) solution providing a complete set of  features for building websites, community sites, intranets and online stores on  the Microsoft ASP.NET platform. It&#8217;s currently used by more than 4,000 websites  in 83 countries.</p>
<p>Some of the notable companies that use Kentico CMS include  Microsoft, McDonald&#8217;s, Vodafone, O2, Brussels Airlines, Audi, Mazda, Subaru,  Samsung, Gibson, Bayer, ESPN, Guinness, DKNY and more (see more of their big  clients <a href="http://www.kentico.com/Showcase/Our_clients.aspx">here</a>).</p>
<p>Read more about features of Kentico CMS on their site&#8217;s <a href="http://www.kentico.com/free-cms-asp-net.aspx">Features page</a>.</p>
<h3>Try Kentico CMS</h3>
<p>If you want to evaluate Kentico CMS, they offer you several  options:</p>
<h4><a href="http://www.kentico.com/freecms.aspx">Download the  Free version</a> of Kentico CMS</h4>
<p>The free version of Kentico CMS is free to download, and you can use it for any purpose, including commercial purposes.</p>
<h4><a href="http://www.kentico.com/Download/Trial-Version.aspx">Download  of Trial version</a> of Kentico CMS</h4>
<p>The trial version is fully functional for 30 days and will help you evaluate the Kentico CMS features.</p>
<h4>Get a <a href="http://www.kentico.com/Demo/VirtualLab.aspx">Virtual  Lab</a> set-up for you</h4>
<p>This will let you evaluate Kentico CMS without having  to install anything (they&#8217;ll set it up for you on the Kentico CMS servers).</p>
<h3>How to participate in the Kentico CMS giveaway</h3>
<p>In order to qualify for a chance to win the 1-year subscription  to Kentico CMS, just leave a comment below that answers the following question:</p>
<blockquote><p>What&#8217;s a <strong>Kentico CMS feature</strong> that  interests you the most?</p>
</blockquote>
<p>You can see the feature list of Kentico CMS on their site:</p>
<ul>
<li><a href="http://www.kentico.com/free-cms-asp-net.aspx">www.kentico.com/free-cms-asp-net.aspx</a></li>
</ul>
<h3>Kentico CMS giveaway details</h3>
<p>This giveaway ends on <strong>Tuesday,  January 12, 2010</strong>. After that date, commenting on this post will be disabled  and you&#8217;ll no longer be able to participate.</p>
<p>When leaving your answer, make sure to leave a valid email  address because this is the only way we&#8217;ll be able to notify you if you&#8217;ve won.  The winner will be selected at random using the same method as previous Six  Revisions giveaways (you can see the MySQL random query method that we use in <a href="http://sixrevisions.com/contests/the-winners-of-the-10000-business-cards-giveaway/">this  giveaway</a>).</p>
<p>You should subscribe to the <a href="http://feeds2.feedburner.com/SixRevisions">Six Revisions RSS feed</a> so  that when the announcement post has been published, you&#8217;ll get instantly  notified.</p>
<h3>Related Content</h3>
<ul>
<li><a href="http://sixrevisions.com/web-development/how-to-evaluate-what-cms-to-use/">How  to Evaluate What CMS to Use</a></li>
<li><a href="http://sixrevisions.com/web-applications/10-promising-content-management-systems/">10  Promising Content Management Systems</a></li>
<li><a href="http://sixrevisions.com/web-development/10-ways-to-cut-down-web-development-time/">10  Ways to Cut Down Web Development Time</a></li>
<li><em>Related categories</em>: <a href="http://sixrevisions.com/category/web-development/">Web Development</a> and <a href="http://sixrevisions.com/category/wordpress/">WordPress</a></li>
</ul>
<h3>About the Author</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/6a3429dc3esmall.jpg.jpg" alt="" width="80" height="80" /><span><strong>Jacob Gube</strong> is the Founder and Chief Editor of <strong><a href="http://sixrevisions.com/">Six Revisions</a></strong>. He&#8217;s also a web developer/designer who specializes in front-end development (JavaScript, HTML, CSS) and PHP development. If you&#8217;d like to connect with him, head on over to the <a href="http://sixrevisions.com/contact/">contact page</a> and follow him on Twitter: <strong>@<a href="http://twitter.com/sixrevisions">sixrevisions</a></strong>.</span></p>
<div>
<a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=VjLKFUWOSKs:nLFd07n-ZaE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=VjLKFUWOSKs:nLFd07n-ZaE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=7Q72WNTAKBA" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/SixRevisions/~4/VjLKFUWOSKs" height="1" width="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/383adaf274veaway.jpg.jpg" /></p>
<p>Here is the original post:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/SixRevisions/~3/VjLKFUWOSKs/" title="Giveaway: Kentico CMS License &amp; 1-Year Maintenance">Giveaway: Kentico CMS License &amp; 1-Year Maintenance</a></p>
<div style='display:none' id="post-refEl-2571"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/giveaway-kentico-cms-license-1-year-maintenance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
