<?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>Axertion.com</title>
	<atom:link href="http://www.axertion.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.axertion.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 18 Apr 2012 16:31:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to add a date/time input field to your Magento extension</title>
		<link>http://www.axertion.com/tutorials/2012/04/how-to-add-a-datetime-input-field-to-your-magento-extension/</link>
		<comments>http://www.axertion.com/tutorials/2012/04/how-to-add-a-datetime-input-field-to-your-magento-extension/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 16:25:33 +0000</pubDate>
		<dc:creator>Axertion</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.axertion.com/?p=462</guid>
		<description><![CDATA[In your extension&#8217;s Form.php: For Example: app/code/local/CompanyName/ModuleName/Block/Adminhtml/ModuleName/Edit/Tab/Form.php Add the following code: $dateFormatIso = Mage::app()-&#62;getLocale()-&#62;getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT); $fieldset-&#62;addField(&#039;start_date&#039;, &#039;date&#039;, array( &#160;&#160;&#039;name&#039;&#160;&#160; ...]]></description>
			<content:encoded><![CDATA[<p>In your extension&#8217;s Form.php:</p>
<p>For Example: <strong>app/code/local/CompanyName/ModuleName/Block/Adminhtml/ModuleName/Edit/Tab/Form.php</strong></p>
<p>Add the following code:</p>
<p><pre><pre>
$dateFormatIso = Mage::app()-&gt;getLocale()-&gt;getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
$fieldset-&gt;addField(&#039;start_date&#039;, &#039;date&#039;, array(
&nbsp;&nbsp;&#039;name&#039;&nbsp;&nbsp; =&gt; &#039;start_date&#039;,
&nbsp;&nbsp;&#039;label&#039;&nbsp;&nbsp;=&gt; Mage::helper(&#039;events&#039;)-&gt;__(&#039;Start Date&#039;),
&nbsp;&nbsp;&#039;title&#039;&nbsp;&nbsp;=&gt; Mage::helper(&#039;events&#039;)-&gt;__(&#039;Start Date&#039;),
&nbsp;&nbsp;&#039;image&#039;&nbsp;&nbsp;=&gt; $this-&gt;getSkinUrl(&#039;images/grid-cal.gif&#039;),
&nbsp;&nbsp;&#039;input_format&#039; =&gt; $dateFormatIso,
&nbsp;&nbsp;&#039;format&#039;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; $dateFormatIso,
&nbsp;&nbsp;&#039;time&#039; =&gt; true
));
</pre></pre></p>
<p>The key things to make it work are the &#8220;input_format&#8221;, &#8220;format&#8221;, and &#8220;time&#8221; parameters in the addField array.  Setting the &#8220;time&#8221; variable to &#8220;true&#8221; makes the time input fields appear in the date selector pop-up.<br />
<a href="http://www.axertion.com/wp-content/uploads/2012/04/magento_datetime-example.png"><img src="http://www.axertion.com/wp-content/uploads/2012/04/magento_datetime-example.png" alt="" title="magento_datetime-example" width="363" height="261" class="alignnone size-full wp-image-467" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.axertion.com/tutorials/2012/04/how-to-add-a-datetime-input-field-to-your-magento-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup local subdomains using Wampserver</title>
		<link>http://www.axertion.com/tutorials/2012/03/how-to-setup-local-subdomains-using-wampserver/</link>
		<comments>http://www.axertion.com/tutorials/2012/03/how-to-setup-local-subdomains-using-wampserver/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 03:28:25 +0000</pubDate>
		<dc:creator>Axertion</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.axertion.com/?p=370</guid>
		<description><![CDATA[Developing code locally on your computer has some major benefits over using a web server. For one, it's usually faster as you don't have to wait for your file changes to upload to the web.

Learn how to take advantage of Apache's VirtualHost module to create local subdomains for your development projects.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.axertion.com/wp-content/uploads/2012/03/local-subdomains-thumb.png" alt="" /></p>
<p>Developing code locally on your computer has some major benefits over using a web server. For one, it&#8217;s usually faster as you don&#8217;t have to wait for your file changes to upload to the web.</p>
<p>I&#8217;ll be using <a href="http://www.wampserver.com/en/" target="_blank">WampServer</a>, a program that lets you run a local web environment (Apache, PHP &amp; MySQL)</p>
<p>You&#8217;ll need to download &amp; install <a href="http://www.wampserver.com/en/"  target="_blank">WampServer</a> before continuing with this tutorial.</p>
<p><em>This tutorial assumes WAMP is installed under <strong>C:\wamp</strong>. You may change this path to reflect your own installation if it differs.</em></p>
<h2><strong>Step 1:</strong> Create the folder which will hold your subdomains</h2>
<p>For example. Create the following folder</p>
<p><strong>C:\wamp\www\subdomains</strong></p>
<p>Each folder contained within the <strong>subdomains</strong> folder will essentially become a subdomain. For example:</p>
<p><strong>example.localhost.com</strong> will point to <strong>C:\wamp\www\subdomains\example\</strong></p>
<h2><strong>Step 2:</strong> Configuring Apache VirtualHosts</h2>
<p><strong>1)</strong> Enable the <strong>alias_module </strong>and <strong>vhost_alias_module</strong> for apache.</p>
<p><img src="/wp-content/uploads/2012/03/wamp_subdomains_apache_activate-modules.jpg" alt="" /></p>
<p>Doing this will enable virtualhost aliasing in apache for your subdomains.</p>
<p><strong>2)</strong> Open <strong>C:\wamp\bin\apache\Apache2.2.21\conf\extra\httpd-vhosts.conf </strong></p>
<p><strong>3)</strong> In the <strong>httpd-vhosts.conf</strong> file, you’ll most likely see some example data.  Replace everything with the following:<br />
<pre><pre>
NameVirtualHost *:80

&lt;VirtualHost *:80&gt;
&nbsp;&nbsp;&nbsp;&nbsp;ServerName localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias www.localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot &quot;C:\wamp\www&quot;
&nbsp;&nbsp;&nbsp;&nbsp;ErrorLog &quot;logs\errors.log&quot;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;directory &quot;C:\wamp\www&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Options Indexes FollowSymLinks
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AllowOverride all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Order Deny,Allow
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Allow from all
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/directory&gt;
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
&nbsp;&nbsp;&nbsp;&nbsp;ServerName localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias *.localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;VirtualDocumentRoot C:\wamp\www\subdomains\%1
&nbsp;&nbsp;&nbsp;&nbsp;ErrorLog &quot;logs\errors.log&quot;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;directory &quot;C:\wamp\www\subdomains\%1&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Options Indexes FollowSymLinks
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AllowOverride all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Order Deny,Allow
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Allow from all
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/directory&gt;
&lt;/VirtualHost&gt;</pre></pre><br />
So what’s going on with the code above?</p>
<p>Each &lt;VirtualHost&gt; tag contains a host definition.   The asterisk in <code>&lt;VirualHost *80&gt;</code> tells apache that any IP address can be used to access this host definition.  If you wanted to restrict it to just your computer, you could do <code>&lt;VirtualHost 127.0.0.1:80&gt;</code></p>
<p><strong>ServerName</strong><br />
<code>ServerName localhost.com</code><br />
<small>The domain.  I use localhost.com. Just remember that whatever you choose to use will essential replace any real domains (EX: using google.com will not let you access the real google.com later)</small></p>
<p><strong>ServerAlias</strong><br />
<code>ServerAlias *.localhost.com</code><br />
<small>An alternate domain alias (usually www.localhost.com)</small></p>
<p><strong>DocumentRoot</strong><br />
<code>DocumentRoot &quot;C:\wamp\www&quot;</code><br />
<small>The absolute directory to your domain’s root (accessed by going to localhost.com)</small></p>
<p><strong>ErrorLog</strong> Path to your error log.  This is optional.<br />
<code>ErrorLog &quot;logs\errors.log&quot;</code></p>
<p><strong>VirtualDocumentRoot</strong><br />
<code>VirtualDocumentRoot C:\wamp\www\subdomains\%1</code><br />
<small>The absolute directory for your subdomain, with a wildcard to define the subdomain’s name.  I use a wildcard <strong>%1 </strong>to get the name of the subdomain. <strong>example.localhost.com</strong> will point to <strong>C:\wamp\www\subdomains\example</strong></small></p>
<p><strong>&lt;directory ________></strong><br />
<code>&lt;directory &quot;C:\wamp\www&quot;&gt;</code><br />
<code>&lt;directory &quot;C:\wamp\www\subdomains\%1&quot;&gt;</code><br />
<small>The directory permission definitions.  Defined twice for both localhost.com and it&#8217;s virtual subdomains.</small>  </p>
<p><strong>4)</strong> After making the changes to your <strong>httpd-vhosts.conf</strong> file, you <span style="text-decoration: underline;">must restart apache for the changes to take effect</span>. Just click the WAMPSERVER icon in your Notification Area and choose &#8220;Restart All Services&#8221;.</p>
<h2><strong>Step 3:</strong> Updating Windows Host File</h2>
<p>In order for you to access your localhost.com or example.localhost.com, you must first point these domains to your local IP address.  Windows unfortunately does not allow you to use a wildcard in the hosts file.  <strong>You will have to input each new subdomain into your hosts file for it to work in your browser.</strong></p>
<p><strong>1)</strong> Open <strong>C:\Windows\System32\drivers\etc\hosts</strong> using Notepad</p>
<p><strong>2)</strong> Add a the following line to the bottom of your hosts file.<br />
<pre>127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; example.localhost.com</pre><br />
<span style="text-decoration: underline;">You have to do this for each domain &#038; subdomain you wish to use.</span> For example:<br />
<pre><pre>
127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; localhost.com
127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; www.localhost.com
127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; example.localhost.com
127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; example2.localhost.com
127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mysubdomain.localhost.com</pre></pre></p>
<h2><strong>Test!</strong> Check if your subdomains work.</h2>
<p>Open your browser and go to your local subdomain: <strong>example.localhost.com</strong></p>
<p>Apache should now be serving files for that subdomain from <strong>C:\wamp\www\subdomains\example</strong></p>
<h2><strong>Additionally:</strong> Custom Domain Definitions</h2>
<p>If you ever wanted to create a custom domain definition that pointed to a folder outside of your &#8220;subdomains&#8221; folder, you can do that! Just open your <strong>httpd-vhosts.conf</strong> file (See step 2.2), and paste the following <span style="text-decoration: underline;">directly after</span> <code>NameVirtualHost *:80</code> and before <span style="text-decoration: underline;">the first instance of</span> <code>&lt;VirtualHost *:80&gt;</code>.</p>
<p>This custom definition MUST be <span style="text-decoration: underline;">before your wildcard VirtualHost definition</span> to work.<br />
<pre><pre>
&lt;VirtualHost *:80&gt;
&nbsp;&nbsp;&nbsp;&nbsp;ServerName mycustomlocaldomain.com
&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias www.mycustomlocaldomain.com
&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot &quot;C:\Documents\mycustomlocaldomain.com&quot;
&nbsp;&nbsp;&nbsp;&nbsp;ErrorLog &quot;logs\errors.log&quot;
&lt;/VirtualHost&gt;</pre></pre></p>
<p>And how the <strong>httpd-vhosts.conf</strong> should finally look with this custom definition:</p>
<p><pre><pre>
NameVirtualHost *:80

&lt;VirtualHost *:80&gt;
&nbsp;&nbsp;&nbsp;&nbsp;ServerName mycustomlocaldomain.com
&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias www.mycustomlocaldomain.com
&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot &quot;C:\Documents\mycustomlocaldomain.com&quot;
&nbsp;&nbsp;&nbsp;&nbsp;ErrorLog &quot;logs\errors.log&quot;
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
&nbsp;&nbsp;&nbsp;&nbsp;ServerName localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias www.localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot &quot;C:\wamp\www&quot;
&nbsp;&nbsp;&nbsp;&nbsp;ErrorLog &quot;logs\errors.log&quot;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;directory &quot;C:\wamp\www&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Options Indexes FollowSymLinks
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AllowOverride all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Order Deny,Allow
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Allow from all
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/directory&gt;
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
&nbsp;&nbsp;&nbsp;&nbsp;ServerName localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias *.localhost.com
&nbsp;&nbsp;&nbsp;&nbsp;VirtualDocumentRoot C:\wamp\www\subdomains\%1
&nbsp;&nbsp;&nbsp;&nbsp;ErrorLog &quot;logs\errors.log&quot;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;directory &quot;C:\wamp\www\subdomains\%1&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Options Indexes FollowSymLinks
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AllowOverride all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Order Deny,Allow
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from all
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Allow from all
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/directory&gt;
&lt;/VirtualHost&gt;</pre></pre></p>
<h3>Need Help?</h3>
<p>Apache configurations can be a tad confusing sometimes. If you get stuck, let me know in the comments below and I&#8217;ll do my best to assist you. Please let me know the steps you took so I can better determine the issue with your setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.axertion.com/tutorials/2012/03/how-to-setup-local-subdomains-using-wampserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ultimate Carbon Patterns Pack</title>
		<link>http://www.axertion.com/resources/2009/05/ultimate-carbon-patterns-pack/</link>
		<comments>http://www.axertion.com/resources/2009/05/ultimate-carbon-patterns-pack/#comments</comments>
		<pubDate>Sun, 24 May 2009 20:26:03 +0000</pubDate>
		<dc:creator>Axertion</dc:creator>
				<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.axertion.com/?p=255</guid>
		<description><![CDATA[I created a 16 set pattern pack for your everyday designs.   The pack is compatible with Adobe Photoshop.]]></description>
			<content:encoded><![CDATA[<p>I created a 16 set pattern pack for your everyday designs.   The pack is compatible with Adobe Photoshop.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="436" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="id=117029275&amp;width=1337" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://backend.deviantart.com/embed/view.swf" /><embed type="application/x-shockwave-flash" width="600" height="436" src="http://backend.deviantart.com/embed/view.swf" allowscriptaccess="always" flashvars="id=117029275&amp;width=1337"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.axertion.com/resources/2009/05/ultimate-carbon-patterns-pack/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>deviantART 3D Wallpaper Pack</title>
		<link>http://www.axertion.com/customization/2009/01/deviantart-3d-wallpaper-pack/</link>
		<comments>http://www.axertion.com/customization/2009/01/deviantart-3d-wallpaper-pack/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 21:30:17 +0000</pubDate>
		<dc:creator>Axertion</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.axertion.com/?p=72</guid>
		<description><![CDATA[I&#8217;ve made a wallpaper package for all of you deviantART fans.  I have included 10 colors, 2 style ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made a wallpaper package for all of you deviantART fans.  I have included 10 colors, 2 style variations and variety of resolutions.  <span id="more-72"></span></p>
<p><a href="http://www.axertion.com/wp-content/uploads/2009/01/presentation.jpg"><img class="alignnone size-full wp-image-73" title="deviantART 3D Wallpaper Pack" src="http://www.axertion.com/wp-content/uploads/2009/01/presentation.jpg" alt="deviantART 3D Wallpaper Pack" width="512" height="431" /></a></p>
<p><!--more--></p>
<p>For your convenience, I have made a package for each resolution.  Please select the desired resolution below:</p>
<p><a class="downloadlink" href="http://www.axertion.com/downloads/deviantART+3D+Wallpaper+Pack+-+1024+by+768" title="Version1.0 downloaded 840 times" >deviantART 3D Wallpaper Pack - 1024 by 768 (840)</a><br />
<a class="downloadlink" href="http://www.axertion.com/downloads/deviantART+3D+Wallpaper+Pack+-+1280+by+1024" title="Version1.0 downloaded 685 times" >deviantART 3D Wallpaper Pack - 1280 by 1024 (685)</a><br />
<a class="downloadlink" href="http://www.axertion.com/downloads/deviantART+3D+Wallpaper+Pack+-+1440+by+900" title="Version1.0 downloaded 566 times" >deviantART 3D Wallpaper Pack - 1440 by 900 (566)</a><br />
<a class="downloadlink" href="http://www.axertion.com/downloads/deviantART+3D+Wallpaper+Pack+-+1920+by+1200" title="Version1.0 downloaded 544 times" >deviantART 3D Wallpaper Pack - 1920 by 1200 (544)</a><br />
<a class="downloadlink" href="http://www.axertion.com/downloads/deviantART+3D+Wallpaper+Pack+-+2560+by+1600" title="Version1.0 downloaded 634 times" >deviantART 3D Wallpaper Pack - 2560 by 1600 (634)</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.axertion.com/customization/2009/01/deviantart-3d-wallpaper-pack/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Metal Mesh Patterns &#8211; Pack 1</title>
		<link>http://www.axertion.com/resources/2009/01/metal-mesh-patterns-pack-1/</link>
		<comments>http://www.axertion.com/resources/2009/01/metal-mesh-patterns-pack-1/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 23:41:43 +0000</pubDate>
		<dc:creator>Axertion</dc:creator>
				<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.axertion.com/?p=65</guid>
		<description><![CDATA[I&#8217;ve created a patterns package for Photoshop which includes 13 various patterns that can be used for any ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a patterns package for Photoshop which includes 13 various patterns that can be used for any type of interface design.</p>
<p class="center"><object width="600" height="436" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="id=107942844&amp;width=1337" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://backend.deviantart.com/embed/view.swf" /><param name="allowscriptaccess" value="always" /><embed width="600" height="436" type="application/x-shockwave-flash" src="http://backend.deviantart.com/embed/view.swf" flashvars="id=107942844&amp;width=1337" allowScriptAccess="always" allowscriptaccess="always" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.axertion.com/resources/2009/01/metal-mesh-patterns-pack-1/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>3D Encide Logo Tutorial (PSD Included!)</title>
		<link>http://www.axertion.com/tutorials/2008/12/3d-encide-logo-tutorial/</link>
		<comments>http://www.axertion.com/tutorials/2008/12/3d-encide-logo-tutorial/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 17:29:20 +0000</pubDate>
		<dc:creator>Axertion</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.axertion.com/?p=44</guid>
		<description><![CDATA[A full length video of a 3D logo being created in Photoshop. There is no sound or voice ...]]></description>
			<content:encoded><![CDATA[<p>A full length video of a 3D logo being created in Photoshop. There is no sound or voice instruction, but the entire video is directed with captions below. Enjoy <img src='http://www.axertion.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<iframe src="http://player.vimeo.com/video/1505845?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="600" height="401"></iframe></p>
<a href="http://www.axertion.com/downloads/3D+Encide+Logo+%28.PSD%29" class="button small orange">3D Encide Logo (.PSD)</a>
]]></content:encoded>
			<wfw:commentRss>http://www.axertion.com/tutorials/2008/12/3d-encide-logo-tutorial/feed/</wfw:commentRss>
		<slash:comments>143</slash:comments>
		</item>
	</channel>
</rss>

