<?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/"
	>

<channel>
	<title>DomainFunk.com &#187; Tutorials</title>
	<atom:link href="http://domainfunk.com/generalsections/all-about-web-tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://domainfunk.com</link>
	<description>A Magazine for webconnoissuers</description>
	<pubDate>Fri, 31 Jul 2009 08:31:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Parsing XML: XML to HTML using PHP!</title>
		<link>http://domainfunk.com/parsing-xml-xml-to-html-using-php</link>
		<comments>http://domainfunk.com/parsing-xml-xml-to-html-using-php#comments</comments>
		<pubDate>Fri, 31 Jul 2009 08:31:59 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[Scripting]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Parsing XML]]></category>

		<category><![CDATA[PHP XML Parser Simple]]></category>

		<category><![CDATA[XML to HTML]]></category>

		<category><![CDATA[XML to HTML file]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=299</guid>
		<description><![CDATA[  Lately I just finished scripting a nice little system that randomizes and publishes content based on an XML feed provided by partner content sponsor. While doing some research for this, I came to know I wasn&#8217;t the lone one who wanted to install such a system. The web app, for which I wrote [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/parsing-xml-xml-to-html-using-php&amp;t=Parsing+XML%3A+XML+to+HTML+using+PHP%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/parsing-xml-xml-to-html-using-php&amp;title=Parsing+XML%3A+XML+to+HTML+using+PHP%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Lately I just finished scripting a nice little system that randomizes and publishes content based on an XML feed provided by partner content sponsor. While doing some research for this, I came to know I wasn&#8217;t the lone one who wanted to install such a system. The web app, for which I wrote this system, runs a script every week creating new .html files from an XML content feed and keeps creating these plain .HTML files on the fly, in essence growing my content library every week <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope this comes in hand to you guys out there looking for this.</p>
<h1>The Simple Parser</h1>
<p>I needed a simple parser which would not need XSLT and the size of the parser would remain small. Since the parser would be placed as a cron job, I needed it to be simple and without the complexities of XSLT. So here is part of the code that made the parser worked.<br />
<code><br />
&lt;?php</code></p>
<p>$doc = new DOMDocument(); //We create a new DOM object.<br />
$doc-&gt;load(&#8217;samplefeed.xml&#8217;,LIBXML_DTDLOAD|LIBXML_DTDATTR); //load all elements of the XML feed. Using LIBXML_DTDLOAD we  load external subset and use LIBXML_DTDATTR to set the default DTD attributes, both are <a title="PHP Lib XML constants" href="http://www.w3schools.com/php/php_ref_libxml.asp" target="_blank">PHP Lib XML constants.</a><br />
$contentitems = $doc-&gt;getElementsByTagName( &#8220;books&#8221; ); // we are now fetching the elements, and with this statement fetching all elements enclosed within the &lt;books&gt; tags.</p>
<p>foreach($contentitems as $contentitem)<br />
{</p>
<p>$titles = $contentitem-&gt;getElementsByTagName( &#8220;title&#8221; );<br />
$title = $titles-&gt;item(0)-&gt;nodeValue; //we are not taking the values from each element nodes.</p>
<p>$authors = $metadata-&gt;getElementsByTagName( &#8220;byline&#8221; );<br />
$author = $authors-&gt;item(0)-&gt;nodeValue;</p>
<p>$ISBNS = $metadata-&gt;getElementsByTagName( &#8220;isbn&#8221; );<br />
$ISBN = $ISBNS-&gt;item(0)-&gt;nodeValue;</p>
<p>//below we are starting an HTML file and using a PHP variable to hold it.</p>
<p>$html = &#8216;&lt;html&gt;</p>
<p>&lt;!&#8211; html code can come in here &#8211;&gt;&#8217;;</p>
<p>/*main article starts here */</p>
<p>$html = $html.$title.&#8221;&lt;br/&gt;&#8221;;<br />
$html = $html.$author.&#8221;&lt;br/&gt;&#8221;;<br />
$html = $html.$ISBN.&#8221;&lt;br/&gt;&#8221;;</p>
<p>$html =&#8217;<br />
/*footer part of the html page */<br />
&lt;/html&gt;&#8217;;</p>
<p>$ourFileName = &#8220;feedarticles/&#8221;.trim($title).&#8221;.html&#8221;; //keeping the title the same as<br />
$ourFileName = str_ireplace(&#8221;?&#8221;,&#8221;",$ourFileName); //removing characters that get attached during char-set conversions or shall we say non-conversions.<br />
$ourFileName = str_ireplace(&#8221;_&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;:&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;;&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;&#8216;&#8221;,&#8221;",$ourFileName);</p>
<p>echo $ourFileName.&#8221; creating the file &#8220;; //Just echoing the statement while creating the file.<br />
$ourFileHandle = fopen($ourFileName, &#8216;w&#8217;) or die(&#8221;can&#8217;t open file&#8221;); //init the file handle<br />
fwrite($ourFileHandle, $html);//write the file.<br />
fclose($ourFileHandle);//close the file handle.</p>
<p>}</p>
<p>?&gt;</p>
<h1>The XML Page</h1>
<p>The below is the SampleFeed.xml file, with the fields that will be parsed.</p>
<p>&lt;NewDataSet _xmlns3a_xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221;&gt;</p>
<p>&lt;Books&gt;<br />
&lt;title&gt;Java Server Pages&lt;/title&gt;<br />
&lt;author&gt;SAMS&lt;/author&gt;<br />
&lt;ISBN&gt;1234&lt;/ISBN&gt;</p>
<p>&lt;title&gt;Logistics&lt;/title&gt;<br />
&lt;author&gt;Tata Mcgraw Hil&lt;/author&gt;<br />
&lt;ISBN&gt;5678&lt;/ISBN&gt;</p>
<p>&lt;/books&gt;<br />
&lt;/NewDataSet&gt;</p>
<h1>Note</h1>
<p>Albeit, there are better and newer ways of parsing XML using PHP, this was suitable for me, because its pretty simple code <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> and it works wonders!</p>
<h1>Resources</h1>
<p>Here are both files zipped up, make sure the permissions are setup right for directories that you want to user write these files into. Here is the entire <a title="Simple XML Parser " href="http://domainfunk.com/articlesuploads/SimpleXMLParse.zip" target="_blank">Simple XML Parser</a> zip, that creates .html files from XML feeds.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;bodytext=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;annotation=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;notes=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;t=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;t=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;submitHeadline=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;submitSummary=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;exttitle=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;h=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/parsing-xml-xml-to-html-using-php/feed</wfw:commentRss>
		</item>
		<item>
		<title>An Interview with, Twitters @DCTH&#8217;s founder, Chad Engle!</title>
		<link>http://domainfunk.com/an-interview-with-dcths-founder-chad-engle</link>
		<comments>http://domainfunk.com/an-interview-with-dcths-founder-chad-engle#comments</comments>
		<pubDate>Sun, 01 Mar 2009 08:37:48 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[Inspiration]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[chad engle]]></category>

		<category><![CDATA[DCTH]]></category>

		<category><![CDATA[inspirations]]></category>

		<category><![CDATA[interviews]]></category>

		<category><![CDATA[twitter community design]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=225</guid>
		<description><![CDATA[   This week, we bring to you an interview, with design community innovator, amazingly talented, young designer, -  Mr. Chad Engle, Co-founder of  @DCTH or also known as Design Community Twitter Hours. @DCTH, is completely community driven, first of its kind on twitter, a community for designers, by designers and from [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/an-interview-with-dcths-founder-chad-engle&amp;t=An+Interview+with%2C+Twitters+%40DCTH%27s+founder%2C+Chad+Engle%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/an-interview-with-dcths-founder-chad-engle&amp;title=An+Interview+with%2C+Twitters+%40DCTH%27s+founder%2C+Chad+Engle%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p> This week, we bring to you an interview, with design community innovator, amazingly talented, young designer, -  Mr. Chad Engle, Co-founder of  <a href="http://twitter.com/DCTH">@DCTH or also known as Design Community Twitter Hours</a>. <a href="http://twitter.com/DCTH">@DCTH</a>, is completely community driven, first of its kind on twitter, a community for designers, by designers and from designers! A great place to get your inspirations, doodles, and just mingle with a community of over a 1000 designers! </p>
<h1> Some of Chad&#8217;s designs</h1>
<p><a href="http://domainfunk.com/wp-content/uploads/2009/03/mainst.jpg" rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/mainst-300x166.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="300" height="166" class=" size-medium wp-image-241" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/cart.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/cart-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-240" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/marshall.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/marshall-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-246" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/progensis.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/progensis-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-247" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/sonus.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/sonus-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-248" /></a><br/><br/></p>
<h1>The Interview!</h1>
<p><img src="http://domainfunk.com/wp-content/uploads/2009/03/businesscard.jpg" alt="Chad Engle! - Design Community Innovator!" title="Chad Engle! " width="599" height="333" class="size-full wp-image-233" /><br/><br/><br />
Here is the interview, that was taken via email  and we are very thankful to Mr. Chad Engle, for sparing the time for us and this interview. We wish Chad, best of luck on all his aspirations and Thanks again! </p>
<h1 style="font-size:14pt"> A small bio about yourself?</h1>
<p>My name is Chad Engle I am a full-time Graphic Designer for Charles Ryan Associates in Charleston, WV. I am 22 years old and have been in the field for such a short time but I feel like I have grown as a designer/person more than I can put words to.  I have been trying to extend my network through online connections such as twitter, facebook and linked-in. I have learned that in this field that it is all about who you know and have connections to. You can connect with me more at <a href="http://twitter.com/chadengle">@chadengle</a></p>
<h1 style="font-size:14pt">1. Hi Chad, so tell us something about you and your experience as a designer/artist?</h1>
<p>I am a recent graduate from Marshall University and I have been in the full time world for about 6-7 months. I worked on several freelance projects while I was in college as well as having many different internships and work experiences along the way.</p>
<h1 style="font-size:14pt">2. From tweets, its pretty clear that you want a podium, a community of designers to get together and talk about design and share ideas and resources, sorry to be brute, but the question being, why? And what do you plan to instill with this and when will you call it a success?</h1>
<p>The why? I think that we as designers need feedback. We need places to bounce ideas of and learn from each other. It also pushes us as a community to challenge each other and move our designs into creative and innovative solutions. I think this has already been a huge success. When I started <a href="http://twitter.com/DCTH">DCTH (Design Community Twitter Hours)</a> I had no idea that I would even have 50 people interested. I have 1,000 followers that are on the twitter account for DCTH. I feel like the design community has grown more tight nit (those that have connected thus far) I think that this service will only continue to grow with time and will hopefully blossom into conferences and meetings.</p>
<h1 style="font-size:14pt">3. Tell us about your design inspirations?</h1>
<p>I think inspiration can be found in anything. I see architecture, photography, a coffee cup, anything that sparks that creative switch in your brain. I draw inspiration from all of my RSS feeds that I read and through my peers. There are many great designers that I draw inspiration from and even student work. Again, its what makes you “think” creatively. </p>
<h1 style="font-size:14pt">4. Any Specific tools that you use, that elevate your design process, help you get the picture from your head to your selected medium?</h1>
<p>I have recently been reading a book called “Beyond Disruption” Changing the Rules in the marketplace. It talks about defying convention through the design and marketing process. I think we as designers need to implement this idea.  This mindset helps me push past the first stereotypical designs. I also have a Macbook Pro and Adobe Creative suite that helps me implement my ideas to a digital medium. </p>
<h1 style="font-size:14pt">5. Any words on designers block? Or lack of inspiration? How does a designer like you cope in such circumstances?</h1>
<p>I think sometimes that you need to take a break to push through the block. I like to take a 15 minute break from technology when this happens. No iPhone, twitter, computer. Just me and maybe a cup of coffee. I feel when you take this “tech break” you can clear your head and then move forward with what you need to do. I also think that RSS feeds and surfing the internet help you get inspired again and continue to work.</p>
<h1 style="font-size:14pt">6. There are a lot of design communities online, any according to you is just specifically for designers, helping you acheive your ideas of single collective of designers?</h1>
<p>I think that any network is just as good as another. It just depends how much you put into connecting with others. If you do not have twitter I would suggest going and signing up for an account. There is a whole slew amazing people to draw inspiration from, pick there brains and just plain connect.</p>
<h1 style="font-size:14pt">7. According to you, what are the incentives a designers looks forward to, money not being one of these, when he or she finishes acheiving the design?</h1>
<p>Knowing that this piece of design communicates the best possible outcome. </p>
<h1 style="font-size:14pt">8. How do you start your design process for a client?</h1>
<p>The first thing I do is brainstorm. I try to rack the clients brain as much as possible to see where they want to go and make sure that we are on the same page before I even start with the design process. Communication is key when it comes to working with others. Do not be afraid to ask questions. </p>
<h1 style="font-size:14pt">9. How do you approach a client and what if you have to convince him or her to actually go with you on the design consultations, rather than their inputs?</h1>
<p>I think that you have to be able to communicate with your client that you are the person that knows about the design. My favorite saying is: “You don’t buy a guard dog and bark for it, let your designer do the barking.”</p>
<h1 style="font-size:14pt">10. According to you, what are the pre-requisites for some one who wants to become a designer?</h1>
<p>I feel very strongly about having higher education in the field. Ther are several talented self-taught designers but, I feel that with having higher education in the field you bring yourself to a higher awareness level which allows you to push your designs and your clients. </p>
<h1 style="font-size:14pt">11. Would you categorize, webdesign, logo design and the derivatives as the new age paintings with each designer being an artist?</h1>
<p>I had a real hang-up with this concept in college.</p>
<h1 style="font-size:14pt">12. According to you, who is the &#8216;Leonardo-da-vinci&#8217; of the webdesign arena?</h1>
<p>That’s hard to answer. I am not sure if anyone has really stepped forward at this point that could be compared to Da Vinci.</p>
<h1 style="font-size:14pt">13. Does it get hard to make a living as a designer? </h1>
<p>Not at all. It is just like anything else I just depends on how much work you put into it.</p>
<h1 style="font-size:14pt">14. Can web developer become a webdesigner?</h1>
<p>I think one could. It just depends on how much they want to become a designer and learn about it.</p>
<h1 style="font-size:14pt">15. Tell us something about DCTH.</h1>
<p>This whole idea spawned off a random conversation with a friend <a href="http://twitter.com/adellecharles">Adelle Charles</a> and <a href="http://twitter.com/imjustcreative">Graham Smith</a>. </p>
<h1 style="font-size:14pt">16. What made you start this community?</h1>
<p>I felt that there was a gap in this area in the design community and figured why not try to change it.</p>
<h1 style="font-size:14pt">17. What are your objectives, goal and mission with DCTH?</h1>
<p>To connect with as many designers as possible and bring information to those who ask for it.</p>
<h1 style="font-size:14pt">18. Why twitter.com for DCTH?</h1>
<p>It seems to be a great forum for connectivity.</p>
<h1 style="font-size:14pt">19. When will you call DCTH to be successful?</h1>
<p>It already has been successful and will become more and more successful.</p>
<h1 style="font-size:14pt">20. Any future ideas of innovation, for the design community?</h1>
<p>There are several but I am going to keep them secret to peak suspense! ?</p>
<h1 style="font-size:14pt">21. Any favorite websites where you derive or have derived design inspirations from?</h1>
<p>I think a very solid network to find really amazing designs is the Behance Network. (behance.net) I feel that the designers that have portfolios on there are very high quality work. They have a very minimal site design so the work really stands out. </p>
<h1 style="font-size:14pt">22. For a design community, what is right mixture required for it to become successful?</h1>
<p>I think the main indgredient for a community to become successful is involvment of the people. The strong community support that I have had from DCTH has been amazing. People have scheduled college classes around it, stayed up way late over seas to participate and just been amazing in getting more people involved. I am very humbled.</p>
<h1 style="font-size:14pt">23. What kind of marketing strategies you use to attract designers and creatives to your community?</h1>
<p>Personal connections. I have been following and trying to connect with as many designers as possible on @DCTH I think that people want to connect with others. It just depends if they will come out of there shell to connect with others. </p>
<h1 style="font-size:14pt">24. How do you mange your personal life, career and the community?</h1>
<p>I think they are one in the same. I am a designers regardless of what I am doing. It effects my decisions and how I carry myself. Just be yourself throughout everything you do and people will love you for it.</p>
<h1 style="font-size:14pt">25. What do you look for in a community like DCTH?</h1>
<p>Involvement. I would love to have a conference one day where designers meet, listen to speakers and mingle with each other. Telling design stories and sharing personal connections with each other.</p>
<h1 style="font-size:14pt">26. What would a newbie designer, on joining the community find as a resource or help on DCTH?</h1>
<p>I think people new and old will find things to help them. Even if it just connecting with other designers. In this industry if you do not keep up with the times you will be left behind, plain and simple.</p>
<h1 style="font-size:14pt">27. Any head way with the community innovating? And how can we help to get you there?</h1>
<p>Yes every week there is more headway. There is a site up that will soon be finished http://DCTH.info You can help my by telling one designer about DCTH. If everyone tells one designer about DCTH the community involvment will be amazing.</p>
<h1 style="font-size:14pt">28. Ever felt a design let you down? And, if yes how did you cope?</h1>
<p>Yes. Every designer has felt this before. You have to know when to let go of a design and know that you cannot always make each thing innovative. Just try to keep your style and make it the best it can. Don’t let it get you down.</p>
<h1 style="font-size:14pt">29. Any tips for newbies to market their talents?</h1>
<p>Network. I can’t even imagine what happened before the world of the internet or the world of twitter. I have connected with so many designers/creatives that I only would have dreamed of before this.</p>
<h1 style="font-size:14pt">30. Any comments, suggestions, anything you might want to add, that we might have forgotten?</h1>
<p>No. I think you pretty much put me on the hot seat for as much information that you could pick out of my brain! I need to go take a break now. Haha Thank you very much for the interview and I wish you the best of luck in your ventures.</p>
<h1>Are you a designer/creative? </h1>
<p><a href="http://twitter.com/DCTH">Get in touch with the DCTH community here. </a><br />
<a href="http://DCTH.info">Soon to come DCTH website.</a><br />
<a href="http://twitter.com/chadengle">Connect with Chad.</a><br />
<a href="http://twitter.com">Don&#8217;t have a twitter account?</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;bodytext=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;annotation=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;notes=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;t=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;t=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;submitHeadline=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;submitSummary=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;exttitle=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;h=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/an-interview-with-dcths-founder-chad-engle/feed</wfw:commentRss>
		</item>
		<item>
		<title>Photoshop: Day turns to night!</title>
		<link>http://domainfunk.com/photoshop-day-turns-to-night</link>
		<comments>http://domainfunk.com/photoshop-day-turns-to-night#comments</comments>
		<pubDate>Sun, 25 Jan 2009 08:07:38 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[photoshop tutorial]]></category>

		<category><![CDATA[photoshop video tutorial]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=197</guid>
		<description><![CDATA[  A quick photoshop video tutorial to convert day pictures/images into night pictures/images. Pretty Simple and straight forward. 



Enjoyed it? Share it!:


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/photoshop-day-turns-to-night&amp;t=Photoshop%3A+Day+turns+to+night%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/photoshop-day-turns-to-night&amp;title=Photoshop%3A+Day+turns+to+night%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>A quick photoshop video tutorial to convert day pictures/images into night pictures/images. Pretty Simple and straight forward. </p>

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="swfobj_0" width="630" height="800" align="left">
      <param name="movie" value="http://domainfunk.com/wp-content/uploads/2009/01/photodaytonight.swf" />
      <param name="align" value="left" />
      <param name="allowfullscreen" value="true" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="http://domainfunk.com/wp-content/uploads/2009/01/photodaytonight.swf" width="630" height="800" align="left" allowfullscreen="true">
      <!--<![endif]-->
        Photoshop Tutorial: Day to Night
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>


<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;bodytext=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;annotation=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;notes=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;t=Photoshop%3A%20Day%20turns%20to%20night%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Photoshop%3A%20Day%20turns%20to%20night%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;t=Photoshop%3A%20Day%20turns%20to%20night%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;submitHeadline=Photoshop%3A%20Day%20turns%20to%20night%21&amp;submitSummary=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;exttitle=Photoshop%3A%20Day%20turns%20to%20night%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;h=Photoshop%3A%20Day%20turns%20to%20night%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/photoshop-day-turns-to-night/feed</wfw:commentRss>
		</item>
		<item>
		<title>Photoshop – Tutorials : Adding effects to Text</title>
		<link>http://domainfunk.com/photoshop-tutorials-adding-effects-to-text</link>
		<comments>http://domainfunk.com/photoshop-tutorials-adding-effects-to-text#comments</comments>
		<pubDate>Fri, 12 Dec 2008 01:24:29 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Photoshop]]></category>

		<category><![CDATA[Photoshop tutorials]]></category>

		<category><![CDATA[Text effects Photoshop]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=141</guid>
		<description><![CDATA[  As a webmaster, its often that I use Adobe Photoshop and Adobe Illustrator for various web and design endeavors. From logo designs to website layouts. In this Video article we are going to see how to give effects to your text using Adobe Photoshop.
Note: The video tutorial is first such tutorial for the [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/photoshop-tutorials-adding-effects-to-text&amp;t=Photoshop+%E2%80%93+Tutorials+%3A+Adding+effects+to+Text+&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/photoshop-tutorials-adding-effects-to-text&amp;title=Photoshop+%E2%80%93+Tutorials+%3A+Adding+effects+to+Text+&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p><a href="http://domainfunk.com/photoshop-tutorials-adding-effects-to-text"><img src="http://domainfunk.com/wp-content/uploads/2008/12/photoshoptut.png" alt="" title="photoshoptut" width="200" height="200" class="alignleft size-full wp-image-151" /></a>As a webmaster, its often that I use Adobe Photoshop and Adobe Illustrator for various web and design endeavors. From logo designs to website layouts. In this Video article we are going to see how to give effects to your text using Adobe Photoshop.</p>
<p><strong>Note:</strong> The video tutorial is first such tutorial for the website and being so is still raw. Please excuse our experimentation with various video and screen capture tools. <br/><br/><br/><br/><br/></p>
<h1> Adding Effects to Text</h1>

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="swfobj_1" width="650" height="600" align="center">
      <param name="movie" value="http://domainfunk.com/wp-content/uploads/2008/12/pstexteffect1.swf" />
      <param name="align" value="center" />
      <param name="allowfullscreen" value="true" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="http://domainfunk.com/wp-content/uploads/2008/12/pstexteffect1.swf" width="650" height="600" align="center" allowfullscreen="true">
      <!--<![endif]-->
        <p>The Flash plugin is required to view this object.</p>
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>

<p>Do leave some feedback. Thanks again. </p>
<h1>Photoshop Fractal Brush Resource</h1>
<p>Free Fractal Photoshop Brushes@<br />
http://getbrushes.com/fractal-photoshop-brushes<br />
http://qbrushes.com/photoshop-swirls-brushes/photoshop-fractal-brush/<br />
http://free-brushes.com/2008/11/29/hi-res_fractal_brushes.html</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Enjoyed it? Share it!:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20&amp;bodytext=As%20a%20webmaster%2C%20its%20often%20that%20I%20use%20Adobe%20Photoshop%20and%20Adobe%20Illustrator%20for%20various%20web%20and%20design%20endeavors.%20From%20logo%20designs%20to%20website%20layouts.%20In%20this%20Video%20article%20we%20are%20going%20to%20see%20how%20to%20give%20effects%20to%20your%20text%20using%20Adobe%20Photoshop.%0D%0A" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20&amp;annotation=As%20a%20webmaster%2C%20its%20often%20that%20I%20use%20Adobe%20Photoshop%20and%20Adobe%20Illustrator%20for%20various%20web%20and%20design%20endeavors.%20From%20logo%20designs%20to%20website%20layouts.%20In%20this%20Video%20article%20we%20are%20going%20to%20see%20how%20to%20give%20effects%20to%20your%20text%20using%20Adobe%20Photoshop.%0D%0A" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20&amp;notes=As%20a%20webmaster%2C%20its%20often%20that%20I%20use%20Adobe%20Photoshop%20and%20Adobe%20Illustrator%20for%20various%20web%20and%20design%20endeavors.%20From%20logo%20designs%20to%20website%20layouts.%20In%20this%20Video%20article%20we%20are%20going%20to%20see%20how%20to%20give%20effects%20to%20your%20text%20using%20Adobe%20Photoshop.%0D%0A" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;t=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="mailto:?subject=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20&amp;body=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=As%20a%20webmaster%2C%20its%20often%20that%20I%20use%20Adobe%20Photoshop%20and%20Adobe%20Illustrator%20for%20various%20web%20and%20design%20endeavors.%20From%20logo%20designs%20to%20website%20layouts.%20In%20this%20Video%20article%20we%20are%20going%20to%20see%20how%20to%20give%20effects%20to%20your%20text%20using%20Adobe%20Photoshop.%0D%0A" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;t=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;submitHeadline=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20&amp;submitSummary=As%20a%20webmaster%2C%20its%20often%20that%20I%20use%20Adobe%20Photoshop%20and%20Adobe%20Illustrator%20for%20various%20web%20and%20design%20endeavors.%20From%20logo%20designs%20to%20website%20layouts.%20In%20this%20Video%20article%20we%20are%20going%20to%20see%20how%20to%20give%20effects%20to%20your%20text%20using%20Adobe%20Photoshop.%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;exttitle=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;h=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-tutorials-adding-effects-to-text&amp;title=Photoshop%20%E2%80%93%20Tutorials%20%3A%20Adding%20effects%20to%20Text%20" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/photoshop-tutorials-adding-effects-to-text/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
