<?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>72dpi.net.au</title>
	<atom:link href="http://www.72dpi.net.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.72dpi.net.au</link>
	<description>Web Development and Design</description>
	<lastBuildDate>Fri, 19 Mar 2010 02:06:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Disable Mootools Javascript from Joomla 1.5 frontend</title>
		<link>http://www.72dpi.net.au/2009/06/disable-mootools-javascript-from-joomla-frontend/</link>
		<comments>http://www.72dpi.net.au/2009/06/disable-mootools-javascript-from-joomla-frontend/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 04:37:33 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.72dpi.net.au/?p=125</guid>
		<description><![CDATA[Whilst I have nothing against the MooTools javascript library for websites (it&#8217;s an awesome resource), I have built a lot of Joomla 1.0.x sites using the Jquery Javascript library. Now, this can cause a few conflicts, and it seems that with the introduction of Joomla 1.5.x, you&#8217;re pretty much forced into using it. or so [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-126" title="joomla-no-mootools" src="http://www.72dpi.net.au/wp-content/uploads/2009/06/joomla-no-mootools.jpg" alt="joomla-no-mootools" width="200" height="133" />Whilst I have nothing against the MooTools javascript library for websites (it&#8217;s an awesome resource), I have built a lot of Joomla 1.0.x sites using the Jquery Javascript library. Now, this can cause a few conflicts, and it seems that with the introduction of Joomla 1.5.x, you&#8217;re pretty much forced into using it. or so I thought&#8230;.</p>
<p><span id="more-125"></span>A quick <a href="http://www.google.com.au/search?q=joomla+1.5+disable+mootools+caption+javascripts+&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a">google search</a> on the subject revealed some nice ways to disable it from the frontend of your website (not appropriate for the backend, as it uses the MT library extensively.</p>
<p>I am by far no Javascript or php guru, but can get done what I need. Anyhow, the nicest bit of code i found to do the job was:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$user</span> <span style="color: #339933;">=&amp;</span>amp<span style="color: #339933;">;</span> JFactory<span style="color: #339933;">::</span><span style="color: #004000;">getUser</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$user</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>get<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'guest'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span> <span style="color: #339933;">||</span> <span style="color: #000088;">$user</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>get<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'usertype'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'Registered'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$headerstuff</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>getHeadData<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'scripts'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>setHeadData<span style="color: #009900;">&#40;</span><span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Perfect, just add it to your template >  index.php file, right above:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">  &lt;jdoc:include type=&quot;head&quot; /&gt;</pre></td></tr></table></div>

<p>I wanted to take it a step further (since I am building a few templates), and make it easy for anyone to change. Since Joomla 1.5 has a parameters file (which stores settings selected from templateDetails.xml), I simply added my on/off select button to the .xml file, defined the parameters in my template index file, and it works.</p>
<p>This is the code, and steps to make this happen.</p>
<p>In your Joomla 1.5 template folder:<br />
templates > your_template_folder</p>
<p>open up: templateDetails.xml and add the following:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;param</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;@spacer&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;spacer&quot;</span> <span style="color: #000066;">default</span>=<span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #000066;">label</span>=<span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #000066;">description</span>=<span style="color: #ff0000;">&quot;&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>	
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;param</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;Use_Mootools&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">default</span>=<span style="color: #ff0000;">&quot;1&quot;</span> <span style="color: #000066;">label</span>=<span style="color: #ff0000;">&quot;Disable Mootools Javascript library frontend?&quot;</span> <span style="color: #000066;">description</span>=<span style="color: #ff0000;">&quot;Do you want to Disable the MooTools javscript library frontend?&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>			
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;option</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>No<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>			
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;option</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;1&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Yes<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>		
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/param<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>The Parameters are usually at the end of the .xml file. You can declare many tyopes of parameters this way (as long as you also declare them in the index.php heade). If your .xml file doesn&#8217;t have any parameters yet, simply add the code between:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;params<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
add it here
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/params<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Now open up your templates index.php file. in between the < head > &#8230; < /head > area, AFTER:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">defined</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'_JEXEC'</span> <span style="color: #009900;">&#41;</span> or <span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Restricted access'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>we need to declare our new parameter, so add the following:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* Definition whether to enable or disable Mootools and captions.js files
This parameter should be turned off if you don't use any modules or Core Joomla compoinents that require it */</span>
<span style="color: #000088;">$Use_Mootools</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">params</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Use_Mootools&quot;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>?<span style="color: #0000ff;">&quot;yes&quot;</span><span style="color: #339933;">:</span><span style="color: #0000ff;">&quot;no&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// yes | no</span></pre></td></tr></table></div>

<p>Now that we have declared our variable, we need to envoke the code (or not).<br />
So, add the following code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$Use_Mootools</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;yes&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  	<span style="color: #000088;">$user</span> <span style="color: #339933;">=&amp;</span> JFactory<span style="color: #339933;">::</span><span style="color: #004000;">getUser</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'guest'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span> <span style="color: #339933;">||</span> <span style="color: #000088;">$user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'usertype'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'Registered'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$headerstuff</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getHeadData</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'scripts'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setHeadData</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
 	<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>right before:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>jdoc<span style="color: #339933;">:</span><span style="color: #b1b100;">include</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;head&quot;</span> <span style="color: #339933;">/&gt;</span></pre></td></tr></table></div>

<p>Now, Open up your admin, edit the template, on the right you&#8217;ve got the parameters, select no/yes, and test. hopefully it all went smoothly!</p>
<h2>Edit:</h2>
<p>There is plugin available, that will do just this for you, in case you don&#8217;t want to edit your templates. :<br />
<a href="http://extensions.joomla.org/extensions/core-enhancements/scripts/8403/details">http://extensions.joomla.org/extensions/core-enhancements/scripts/8403/details</a> , my code gives template developers the opportunity to turn it off&#8230;</p>
<p>As pointed out by 2estrellas, this code may strip all code. I stumbled across a great blog over at<br />
<a href="http://www.blog.highub.com/cms/joomla-cms/remove-mootools-from-joomla-header/">highub</a>, so def check it out, but try changing:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$Use_Mootools</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;yes&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  	<span style="color: #000088;">$user</span> <span style="color: #339933;">=&amp;</span> JFactory<span style="color: #339933;">::</span><span style="color: #004000;">getUser</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'guest'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span> <span style="color: #339933;">||</span> <span style="color: #000088;">$user</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'usertype'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'Registered'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$headerstuff</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getHeadData</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'scripts'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setHeadData</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
 	<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>to</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$Use_Mootools</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;yes&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$headerstuff</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getHeadData</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">reset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'scripts'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$moo</span> <span style="color: #339933;">=</span> <span style="color: #990000;">key</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'scripts'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'scripts'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$moo</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setHeadData</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$headerstuff</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 	<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2009/06/disable-mootools-javascript-from-joomla-frontend/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Apple iPhone development links</title>
		<link>http://www.72dpi.net.au/2009/05/apple-iphone-development-links/</link>
		<comments>http://www.72dpi.net.au/2009/05/apple-iphone-development-links/#comments</comments>
		<pubDate>Tue, 05 May 2009 05:13:01 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.72dpi.net.au/?p=119</guid>
		<description><![CDATA[Iphone application and development tutorials, lists and links. This represents an invaluable list if you are interested in developing for the apple platform.
To become an Apple iPhone Developer, you&#8217;ll firstly need to sign up as a developer, download the SDK (3.0 SDK beta available), then, if you want to test it on your own mobile [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-118" title="iphone programming applications" src="http://www.72dpi.net.au/wp-content/uploads/2009/05/iphone-applications.jpg" alt="iphone programming applications" width="200" height="133" />Iphone application and development tutorials, lists and links. This represents an invaluable list if you are interested in developing for the apple platform.</p>
<p>To become an Apple iPhone Developer, you&#8217;ll firstly need to <a href="http://developer.apple.com/iphone/">sign up as a developer</a>, download the SDK (<a href="http://developer.apple.com/iPhone/program/sdk.html">3.0 SDK beta available</a>), then, if you want to test it on your own mobile (and not just the emulator), pay the <a title="Join up as an Apple Iphone Developer" href="http://developer.apple.com/iPhone/program/">developer subscription fee</a> which allows you to test, and sell your product.</p>
<p>Once you&#8217;ve joined, you&#8217;ll have access to tutorials, sample code and more.</p>
<p><span id="more-119"></span></p>
<p><strong>Courses</strong></p>
<p>iPhone development courses on offer</p>
<ol>
<li><strong><a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php">iPhone Application Programming</a></strong>: Learn about programming for the iPhone from Stanford on iTunes. [Stanford]</li>
<li><strong><a href="http://courses.csail.mit.edu/iphonedev/">Introduction to iPhone Application Development</a></strong>: Use this course’s posted slides to get a crash course in iPhone application development. [MIT]</li>
</ol>
<p><strong>Blogs/Favourites</strong></p>
<p>Great iPhone blogs to follow</p>
<ol>
<li><strong><a href="http://icodeblog.com/">iCodeBlog</a></strong>: iPhone Programming tutorials [iCodeBlog]</li>
<li><strong><a href="http://www.iphonedevcentral.org/">iPhone Development Central</a></strong>: Blogs, Forum and Tutorials [IDC]</li>
<li><a href="http://iphonedevelopment.blogspot.com/"><strong>iPhone Development.blogspot</strong></a>: iPhone tutes and news, from programmer and author Jeff Lamarche</li>
</ol>
<p><strong>Apple Resources</strong></p>
<p>Apple iPhone development documents.</p>
<ol>
<li><strong><a href="http://developer.apple.com/iPhone/library/referencelibrary/GettingStarted/GS_iPhoneGeneral/index.html">Getting Started with iPhone</a></strong>: Here you’ll find a general introduction to iPhone development. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/OOP_ObjC/Articles/ooOOP.html#//apple_ref/doc/uid/TP40005149-CH8-SW1">Object-Oriented Programming with Objective-C</a></strong>: This document offers an excellent guide for object oriented programming. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/codinghowtos/NetworkingAndInternet/index.html">Networking &amp; Internet Coding How-Tos</a></strong>: In this resource, you will find lots of great advice for networking and Internet development on the iPhone. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/referencelibrary/GettingStarted/GS_AudioVideo_iPhone/index.html">Getting Started with Audio &amp; Video</a></strong>: Use this document to get started with audio and video features in iPhone applications. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhone101/Articles/chapter_1_section_1.html">Your First iPhone Application</a></strong>: This introductory tutorial offers a step by step description of getting started with an iPhone application. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/referencelibrary/GettingStarted/GS_Performance_iPhone/index.html">Getting Started with Performance</a></strong>: This guide offers an introduction to improving the performance on iPhone apps. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/index.html">iPhone Application Programming Guide</a></strong>: Get an introduction to the iPhone OS and development process. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Miscellaneous/Conceptual/iPhoneOSTechOverview/index.html">iPhone OS Technology Overview</a></strong>: Learn about the iPhone OS and its technologies from this guide. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/referencelibrary/GettingStarted/GS_DataManagement_iPhone/index.html">Getting Started with Data Management</a></strong>: Here you’ll find a reference that will help you with data management. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Security/Conceptual/Security_Overview/index.html">Security Overview</a></strong>: Get an understanding of the security concepts on the iPhone from this resource. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Performance/Conceptual/PerformanceOverview/index.html">Performance Overview</a></strong>: Get a look at the factors that determine performance through this guide. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Cocoa/Conceptual/LoadingResources/index.html">Resource Programming Guide</a></strong>: Check out this resource to learn how to work with nib and bundle resources.</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/referencelibrary/GettingStarted/GS_UserExperience_iPhone/index.html">Getting Started with User Experience</a></strong>: This document offers an introduction to constructing iPhone application user interfaces. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/MobileHIG/Introduction/Introduction.html">iPhone Human Interface Guidelines</a></strong>: Follow these guidelines to make sure your iPhone app has a good human interface. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html">iPhone Development Guide</a></strong>: Use this development guide to get an introduction to creating web apps on the iPhone. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Cocoa/Conceptual/DataFormatting/index.html">Data Formatting Programming Guide for Cocoa</a></strong>: This guide will teach you how to use Cocoa formatters for data. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/referencelibrary/GettingStarted/GS_Tools_iPhone/index.html">Getting Started with Tools</a></strong>: You will find a guided introduction to the Xcode toolset from this document. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/codinghowtos/DataManagement/index.html">Data Management Coding How-tos</a></strong>: Get answers to common data management coding questions. [Apple]</li>
<li><strong><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjCTutorial/01Introduction/chapter_1_section_1.html#//apple_ref/doc/uid/TP40000863-CH13-DontLinkElementID_3">Introduction to Cocoa Application Tutorial</a></strong>: You’ll need at least a base level understanding of Cocoa for iPhone development, which you can check out in this tutorial. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Cocoa/Conceptual/CoreAnimation_guide/index.html">Core Animation Programming Guide</a></strong>: Follow this guide to get the main components and services of Core Animation. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Cocoa/Conceptual/CodingGuidelines/index.html">Coding Guidelines for Cocoa</a></strong>: In this guide, you’ll learn about naming guidelines for the Cocoa API as well as design advice. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/referencelibrary/GettingStarted/GS_Graphics_iPhone/index.html">Getting Started with Graphics and Animation</a></strong>: Follow this guide for an introduction to 2D and 3D graphics and animation. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iphone/gettingstarted/docs/objectivecprimer.action">Learning Objective-C: A Primer</a></strong>: Check out this document once you’ve worked through object oriented programming and Cocoa. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/documentation/Cocoa/Conceptual/CocoaFundamentals/index.html">Cocoa Fundamentals Guide</a></strong>: You’ll learn about the basic concepts, terminology, and more in Cocoa from this guide. [Apple]</li>
<li><strong><a href="http://developer.apple.com/iPhone/library/codinghowtos/GraphicsAndAnimation/index.html">Graphics and Animation Coding How-Tos</a></strong>: In this resource, you’ll find lots of great tips and advice for graphics and animation on the iPhone. [Apple]</li>
</ol>
<p><strong>3d / OpenGL / Augmented reality</strong></p>
<p>Take the first step to iPhone application development with these tutorials</p>
<ol>
<li><a href="http://www.morethantechnical.com/2009/07/01/augmented-reality-on-the-iphone-using-nyartoolkit-w-code/"><strong>Augmented reality on the iPhone using NyARToolkit:</strong></a>  Augmented reality tutorial  [Roy @ Morethantechnical.com]</li>
<li><a href="http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html"><strong>OpenGL ES from the Ground Up:</strong></a> OpenGL From the Ground Up series of tutorials  [Jeff LaMarche @ iphonedevelopment.blogspot.com]</li>
</ol>
<p><strong>Getting Started</strong></p>
<p>Take the first step to iPhone application development with these tutorials</p>
<ol>
<li><strong><a href="http://www.daleisphere.com/iphone-app-development-where-to-start/">iPhone App Development-Where to Start</a></strong>: This tutorial will teach you how to get started in iPhone app development. [The Daleisphere]</li>
<li><strong><a href="http://furbo.org/2009/02/19/bootstrap/">Bootstrap</a></strong>: Learn a few pointers for iPhone development from this resource. [furbo]</li>
<li><strong><a href="http://nettuts.com/misc/learn-how-to-develop-for-the-iphone/">Learn How to Develop for the iPhone</a></strong>: This tutorial will show you how to build an alternate page and style sheet for the iPhone. [NETTUTS]</li>
<li><strong><a href="http://weblog.openlaszlo.org/archives/2007/09/iphone-application-development-step-by-step/">iPhone Application Development, Step By Step</a></strong>: In this tutorial, you will find a step by step guide to creating a simple iPhone game. [Open Laszlo]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2008/07/first-iphone-application.html">First iPhone Application</a></strong>: Get a brief introduction to creating your first iPhone application. [iPhone SDK Articles]</li>
<li><strong><a href="http://lucasnewman.com/phonedev.pdf">iPhone Dev</a></strong>: Check out this PDF to get a tutorial for iPhone development. [Lucas Newman]</li>
<li><strong><a href="http://how-to-iphone-application/">iPhone App Development for Web Hackers</a></strong>: Use this tutorial to learn about geo-location features and beginner development tips. [How to Iphone Application]</li>
<li><strong><a href="http://www.webmonkey.com/blog/How_to_Write_an_iPhone_App">How to Write an iPhone App</a></strong>: This tutorial gives you a basic look at what it takes to write an iPhone application. [Webmonkey]</li>
<li><strong><a href="http://dominiek.com/articles/2008/7/19/iphone-app-development-for-web-hackers">iPhone App Development for Web Hackers</a></strong>: In this article, you’ll learn about web hacking development for the iPhone. [Dominiek]</li>
<li><strong><a href="http://pragprog.com/screencasts/v-bdiphone/writing-your-first-iphone-application">Writing Your First iPhone Application</a></strong>: Bill Dudney will walk you through all of the tools and pieces of knowledge you’ll need to write your first iPhone application. [The Pragmatic Bookshelf]</li>
<li><strong><a href="http://www.cimgf.com/2008/10/01/cocoa-touch-tutorial-iphone-application-example/">Cocoa Touch Tutorial: iPhone Application Example</a></strong>: This tutorial will show you how to make a very basic Cocoa Touch application with Interface Builder. [Cocoa Is My Girlfriend]</li>
<li><strong><a href="http://bakery.cakephp.org/articles/view/building-an-iphone-app-in-a-day">Building an iPhone app in a day</a></strong>: Check out this tutorial to see how you can build a useful app quickly. [The Bakery]</li>
<li><strong><a href="http://apcmag.com/seven_things_all_iphone_apps_need.htm">Seven Things All iPhone Apps Need</a></strong>: Check out this list to see what’s essential when creating an iPhone app. [APCmag]</li>
<li><strong><a href="http://alistapart.com/articles/putyourcontentinmypocket">Put Your Content in My Pocket</a></strong>: Learn how to use the iPhone web browser to your advantage from this article. [A List Apart]</li>
<li><strong><a href="http://www.roseindia.net/ittraining/iPhone-Development-Training.shtml">iPhone Training Course</a></strong>: Become a master at writing iPhone applications through this course. [Rose India]</li>
<li><strong><a href="http://furbo.org/2008/02/11/so-youre-going-to-write-an-iphone-app/">So you’re going to write an iPhone app…</a></strong>: Learn about code reuse, memory, and more from this tutorial. [furbo]</li>
<li><strong><a href="http://net.tutsplus.com/tutorials/tools-and-tips/learn-how-to-develop-for-the-iphone/">Learn How to Develop for the iPhone</a></strong>: Check out this tutorial to see how to build an alternative page and style sheet for the iPhone. [Net Tuts]</li>
<li><strong><a href="http://dotnetslackers.com/articles/aspnet/DevelopingForTheiPhone.aspx">Developing for the iPhone</a></strong>: This resource will show you how to develop ASP.NET applications for the iPhone. [Dot Net Slackers]</li>
<li><strong><a href="http://blogs.zdnet.com/Burnette/?p=681">Getting Started with iPhone Development</a></strong>: Ed Burnette offers a basic introduction to iPhone development. [ZDnet]</li>
</ol>
<p><strong>Tools</strong></p>
<p>Information on development tools for iPhone application development</p>
<ol>
<li><strong><a href="http://net.tutsplus.com/tutorials/php/make-an-iphone-app-using-the-envato-api/">Make an iPhone App Using the Envato API</a></strong>: Make your own iPhone app with the Envato API with the help of this tutorial. [Net Tuts]</li>
<li><strong><a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-iphoneruby1/index.html">Developing iPhone Applications using Ruby on Rails and Eclipse</a></strong>: Learn how to detect mobile Safari from a Ruby on Rails application through this tutorial. [IBM]</li>
<li><strong><a href="http://www.mobileorchard.com/14-essential-xcode-tips-tricks-and-resources-for-iphone-devs/">14 Essential Xcode Tips, Tricks and Resources for iPhone Devs</a></strong>: Learn how to make sense of xcode with this helpful resource. [Mobile Orchard]</li>
<li><strong><a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-iphone/">Develop iPhone Web Applications with Eclipse</a></strong>: This tutorial will help you learn how to create iPhone applications with Aptana’s iPhone development plug-in. [IMB]</li>
<li><strong><a href="http://www.mobileorchard.com/build-an-iphone-webapp-in-minutes-with-ruby-sinatra-and-iui/">Build an iPhone Webapp in Minutes with Ruby, Sinatra, and iUI</a></strong>: You can learn how to quickly put together an iPhone app with these tools. [Mobile Orchard]</li>
<li><strong><a href="http://www.ibm.com/developerworks/xml/library/x-iphonexmlphp/">iPhone Development with PHP and XML</a></strong>: In this tutorial, you’ll get a look at developing custom applications for the iPhone. [IBM]</li>
<li><a href="http://phonegap.com/"><strong>PhoneGap open source Iphone app development framework</strong></a> If you’re a web developer who wants to build mobile applications in HTML and JavaScript while still taking advantage of the core features in the iPhone, Android and Blackberry SDKs, PhoneGap is for you. [Phone Gap]</li>
</ol>
<p><strong>Guidelines and Details</strong></p>
<p>Important information and guidelines for iPhone application development.</p>
<ol>
<li><strong><a href="http://www.mobileorchard.com/avoiding-iphone-app-rejection-from-apple/">Avoiding iPhone App Rejection from Apple</a></strong>: This tutorial holds the secrets to making sure your iPhone app makes the cut. [Mobile Orchard]</li>
<li><strong><a href="http://www.cimgf.com/2008/11/13/landscape-tab-bar-application-for-the-iphone/">Landscape Tab Bar Application for the iPhone</a></strong>: Follow this tutorial to learn about making the tab bar application support landscape orientation. [Cocoa Is My Girlfriend]</li>
<li><strong><a href="http://icodeblog.com/2009/02/20/iphone-programming-tutorial-using-openurl-to-send-email-from-your-app/">iPhone Programming Tutorial-Using openURL to Send Email from Your App</a></strong>: This tutorial explains how you can send email through applications, and even pre-fill fields. [iCode]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2008/09/multi-touch-tutorial.html">Multi Touch Tutorial</a></strong>: This tutorial will show you how you can respond to a tap event. [iPhone SDK Articles]</li>
<li><strong><a href="http://theappleblog.com/2009/04/15/iphone-dev-sessions-create-a-navigation-based-application/">Create a Navigation-Based Application</a></strong>: This tutorial will teach you how to create and run a navigation-based application from XCode.</li>
<li><strong><a href="http://dotnetslackers.com/articles/aspnet/AdvancediPhoneDevelopment.aspx">Advanced iPhone Development</a></strong>: Go beyond the basics with this iPhone development tutorial. [Dot Net Slackers]</li>
<li><strong><a href="http://howtomakeiphoneapps.com/2009/03/heres-a-quick-way-to-deal-with-dates-in-objective-c/">Here’s a Quick Way to Deal with Dates in Objective C</a></strong>: Get information on dealing with date fetching through this tutorial. [Howtomakeiphoneapps]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2008/09/navigation-controller-uitoolbar.html">Navigation Controller + UIToolbar</a></strong>: Through this tutorial, you can learn how to add a UIToolbar to an app. [iPhone SDK Articles]</li>
<li><strong><a href="http://www.markj.net/iphone-asynchronous-table-image/">iPhone Asynchonous Table Image</a></strong>: Follow this thorough article to learn about loading multiple images in your iPhone app in an asynchonous manner. [Markj]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2008/11/localizing-iphone-apps.html">Localizing iPhone Apps-Internationalization</a></strong>: You can use resource files to display text in a user’s language-learn how in this tutorial. [iPhone SDK Articles]</li>
<li><strong><a href="http://www.mobileorchard.com/tutorial-json-over-http-on-the-iphone/">Tutorial: JSON Over HTTP on the iPhone</a></strong>: With this tutorial, you’ll get a step by step how-to for JSON web services through an iPhone app. [Mobile Orchard]</li>
<li><strong><a href="http://craiggiles.wordpress.com/2009/01/14/parsing-xml-on-the-iphone/">Parsing xml on the iPhone</a></strong>: This tutorial will show you how to parse XML using the iPhone SDK. [Craig Giles]</li>
<li><strong><a href="http://dblog.com.au/iphone-development-tutorials/iphone-sdk-tutorial-reading-data-from-a-sqlite-database/">Reading data from a SQLite Database</a></strong>: Here you’ll find a quick tutorial for reading data from a SQLite database. [dBlog]</li>
<li><strong><a href="http://theappleblog.com/2009/04/08/iphone-dev-sessions-how-to-make-an-orientation-aware-clock/">How to Make an Orientation-Aware Clock</a></strong>: Through this tutorial, you’ll learn about building a simple, orientation-aware clock. [The Apple Blog]</li>
<li><strong><a href="http://www.mobileorchard.com/find-iphone-memory-leaks-a-leaks-tool-tutorial/">Finding iPhone Memory Leaks</a></strong>: Carefully find iPhone memory leaks by using this tutorial. [Mobile Orchard]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2008/11/localizing-iphone-apps-part-1.html">Localizing iPhone Apps</a></strong>: MAke sure that your iPhone app is properly formatted according to a user’s native country or region with the help of this tutorial. [iPhone SDK Articles]</li>
<li><strong><a href="http://www.gehacktes.net/2009/03/iphone-programming-part-6-multiple-sounds-with-openal/">OpenAL Audio Programming on iPhone</a></strong>: Here you’ll get code snippets, learning, and more. [Gehaktes]</li>
<li><strong><a href="http://www.mobileorchard.com/iphone-memory-management/">9 iPhone Memory Management Links and Resources</a></strong>: Here you’ll find a variety of iPhone memory management resources that can help you get things under control. [Mobile Orchard]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2008/11/parsing-xml-files.html">Parsing XML Files</a></strong>: Get an understanding of how you can parse XML files with this tutorial. [iPhone SDK Articles]</li>
</ol>
<p><strong>User Interface</strong></p>
<p>Learn about user interface and interaction for iPhone Application development.</p>
<ol>
<li><strong><a href="http://www.iphonesdkarticles.com/2009/03/uitableview-drill-down-table-view.html">UITableView-Drill down table view tutorial</a></strong>: Check out this tutorial to learn how to make a drill down table view. [iPhone SDK Articles]</li>
<li><strong><a href="http://icodeblog.com/2008/12/19/iphone-coding-learning-about-uiwebviews-by-creating-a-web-browser/">iPhone Coding-Learning About UIWebViews by Creating a Web Browser</a></strong>: In this tutorial, you’ll learn about UIWebViews through the creation of a browser. [iCode]</li>
<li><strong><a href="http://blogs.njit.edu/cs485-iphone/2009/03/24/guest-lecture-by-david-choi/">Design Patterns on the iPhone</a></strong>: Check out David Choi’s guest lecture on user interface design for the iPhone. [New Jersey Institute of Technology]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2009/02/uitableview-adding-subviews-to-cells.html">UITableView-Adding subviews to a cell’s content view</a></strong>: This tutorial will show you how to customize the UITableViewCell. [iPhone SDK Articles]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2009/03/drill-down-table-view-with-detail-view.html">Drill down table view with a detail view</a></strong>: Learn how to load a different detail view on the UITabBarController. [iPhone SDK Articles]</li>
<li><strong><a href="http://arstechnica.com/apple/guides/2009/02/iphone-development-accessing-uicolor-components.ars">Extending the iPhone’s SDK’s UIColor Class</a></strong>: Learn how to extend the iPhone SDK UIColor class, and get code samples from this article. [Ars Technica]</li>
<li><strong><a href="http://www.iphonesdkarticles.com/2009/01/uitableview-indexed-table-view.html">UITableView</a></strong>: Learn how to make a simple index for the table view with this tutorial. [iPhone SDK Articles]</li>
</ol>
<p><strong>Step by Step Application Tutorials</strong></p>
<p>Check out these tutorials where you’ll build a specific app, and learn more about iPhone development along the way.</p>
<ol>
<li><strong><a href="http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/">Build a Simple RSS Reader for the iPhone</a></strong>: Get walked through the creation of an RSS reader for a simple feed on the iPhone. [The Apple Blog]</li>
<li><strong><a href="http://craiggiles.wordpress.com/2009/01/30/iphone-gaming-framework-stage-1-tutorial/">iPhone Gaming Framework</a></strong>: This article offers a look at writing code for iPhone game developers. [Craig Giles]</li>
<li><strong><a href="http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/">Build a Simple RSS Reader for the iPhone</a></strong>: Follow this tutorial, and you’ll learn about building a simple iPhone RSS reader.</li>
<li><strong><a href="http://icodeblog.com/2009/01/15/iphone-game-programming-tutorial-part-1/">iPhone Game Programming Tutorial</a></strong>: This multipart tutorial offers a way to learn OpenGL and Quartz for iPhone development. [iCode]</li>
<li><strong><a href="http://dblog.com.au/iphone-development/iphone-sdk-tutorial-build-your-very-own-web-browser/">Build your very own Web browser!</a></strong>: Follow this tutorial to learn about the process of building your own iPhone web browser. [dBlog]</li>
<li><strong><a href="http://weblog.openlaszlo.org/archives/2007/09/iphone-application-development-step-by-step/">iPhone application development, step by step</a></strong>: Find out how to build the iPhone application NEWSMATCH using OpenLaszlo. [OpenLaszlo]</li>
<li><strong><a href="http://dblog.com.au/general/iphone-sdk-tutorial-building-an-advanced-rss-reader-using-touchxml-part-1/">Building an Advanced RSS Reader using TouchXML</a></strong>: Get step by step information for creating an advanced iPhone RSS reader from this tutorial. [DBlog]</li>
<li><strong><a href="http://dblog.com.au/general/iphone-sdk-tutorial-building-an-advanced-rss-reader-using-touchxml-part-1/">iPhone SDK Tutorial: Building an Advanced RSS Reader Using TouchXML</a></strong>: This tutorial will help you learn more about iPhone development by building an advanced RSS reader with TouchXML. [dBlog]</li>
</ol>
<p><strong>Videos</strong></p>
<p>Videologs on iPhone application development.</p>
<ol>
<li><strong><a href="http://www.iphonedevcentral.org/tutorials.php?page=ViewTutorial&amp;id=16&amp;uid=85906760">Basic iPhone Programming</a></strong>: Check out this video to get started with iPhone programming. [iPhone Dev Central]</li>
<li><strong><a href="http://www.youtube.com/watch?v=hoA1MBRJ_BA">First Step Towards the App Store</a></strong>: Work towards getting your app in the app store with the help of this tutorial. [You Tube]</li>
<li>Hello World: This tutorial will help you learn the basics of iPhone programming. [iPhone Dev Central]</li>
<li><strong><a href="http://www.youtube.com/watch?v=e0zi5pQgpaY">UITableView iPhone Programming Tutorial</a></strong>: Watch this video to learn how to populate a UITableView. [YouTube]</li>
<li><strong><a href="http://www.youtube.com/watch?v=Tz9mzB2fWhs">iPhone App Tutorial 1</a></strong>: Check out this video to quickly learn about Interface Builder. [YouTube]</li>
<li><strong><a href="http://www.iphonedevcentral.org/tutorials.php?page=ViewTutorial&amp;id=19&amp;uid=3928739">iPhone IB-Your First App</a></strong>: Watch this tutorial to learn how to use the Interface Builder. [iPhone Dev Central]</li>
<li><strong><a href="http://www.youtube.com/watch?v=EoVl6sFgXIQ">Understanding Source Code</a></strong>: Learn how to get started with development on the iPhone through this video tutorial. [YouTube]</li>
<li><strong><a href="http://www.youtube.com/watch?v=R_6a90NW3i4&amp;feature=related">How to Make an iPhone App</a></strong>: Create an iPhone app using Jiggy and this tutorial. [YouTube]</li>
<li><strong><a href="http://www.youtube.com/watch?v=zGbC6T5Ero0">iPhone Development with Dashcode</a></strong>: Find out how to develop iPhone applications with Dashcode through this tutorial. [YouTube]</li>
</ol>
<p><strong>Development Resources</strong></p>
<p>Resources for beginner iPhone application developers.</p>
<ol>
<li><strong><a href="http://my.safaribooksonline.com/9780596518554">iPhone Open Application Development</a></strong>: This book will teach you how to create software for the iPhone environment. [Safari Books Online]</li>
<li><strong><a href="http://www.teehanlax.com/blog/?p=447">iPhone GUI PSD File</a></strong>: Use this set to get a comprehensive, editable library of iPhone UI assets. [Teehanlax]</li>
<li><a href="http://petemarshall.wordpress.com/2008/02/15/iphone-photoshop-template/"><strong>iPhone photoshop template</strong></a> useful photoshop template for GUI designers [Pete Marshall]</li>
<li><strong><a href="http://www.mobileorchard.com/31-iphone-applications-with-source-code/">31 iPhone Applications with Source Code</a></strong>: Teach yourself how to create iPhone apps by taking a look at the code in these. [Mobile Orchard]</li>
<li><strong><a href="http://www.marketcircle.com/iphoney/">iPhoney</a></strong>: Using iPhoney, you’ll be able to see how your creation will look on the iPhone. [Market Circle]</li>
<li><strong><a href="http://speckyboy.com/2008/07/18/35-free-icon-sets-for-your-iphone-pimp-it-up/">35 Free iPhone Icon Sets</a></strong>: Check out this resource to find a great variety of iPhone icons.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2009/05/apple-iphone-development-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2009 Semi-Permanent Canadian Club Open Brief</title>
		<link>http://www.72dpi.net.au/2009/02/2009-semi-permanent-canadian-club-open-brief/</link>
		<comments>http://www.72dpi.net.au/2009/02/2009-semi-permanent-canadian-club-open-brief/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 03:06:41 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.72dpi.net.au/?p=103</guid>
		<description><![CDATA[Canadian Club in conjunction with Semi-Permanent is inviting up-and-coming designers to invent – and reinvent – clever promotional items. The sort of stuff you get given in the pub for free or things you can win in a competition. Check out the Gallery for a general idea of what we are looking for.
The competition is [...]]]></description>
			<content:encoded><![CDATA[<p><img title="canadian-club1" src="http://www.72dpi.net.au/wp-content/uploads/2009/02/canadian-club1.jpg" alt="canadian-club1" width="200" height="133" align="right"  />Canadian Club in conjunction with Semi-Permanent is inviting up-and-coming designers to invent – and reinvent – clever promotional items. The sort of stuff you get given in the pub for free or things you can win in a competition. Check out the Gallery for a general idea of what we are looking for.</p>
<p>The competition is simple and without hidden agenda. Instead of asking a great big promotional agency to come up with ideas, we are challenging new designers to let their imaginations run wild. The Open Brief is about designers receiving credit for items that will be taken to the production level.</p>
<p><span id="more-103"></span></p>
<p>There is $AUD 10,000 in prize money up for grabs. 5 winning entries will be chosen at $AUD 2,000 prize money awarded to each for their designs.</p>
<p>Check out <a href="http://semipermanent.com/cc-index.html">http://semipermanent.com/cc-index.html</a> for full details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2009/02/2009-semi-permanent-canadian-club-open-brief/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.htaccess tricks</title>
		<link>http://www.72dpi.net.au/2009/01/htaccess-tricks/</link>
		<comments>http://www.72dpi.net.au/2009/01/htaccess-tricks/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 04:11:50 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.72dpi.net.au/?p=52</guid>
		<description><![CDATA[Tips and tricks for using a .htaccess file on a Unix or Linux server running  Apache.
What is the .htaccess file? 

  It&#8217;s a  text file which normally resides in your main site directory  and/or in any subdirectory of your main directory. There can be just one, there  can be a [...]]]></description>
			<content:encoded><![CDATA[<p>Tips and tricks for using a .htaccess file on a Unix or Linux server running  Apache.</p>
<h4><strong>What is the .htaccess file?</strong> </h4>
<p>
  It&#8217;s a  text file which normally resides in your main site directory  and/or in any subdirectory of your main directory. There can be just one, there  can be a separate one in each directory or you may find or create one just in a  specific directory.</p>
<p>  Any commands in a .htaccess file will affect both  the directory it is in and any subdirectories of that directory. Thus if you  have just one, in your main directory, it will affect your whole site. If you  place one in a subdirectory it will affect all the contents of that directory.<br />
  <span id="more-52"></span>
</p>
<p>In your root directory, simply add a file called: <strong>.htaccess</strong></p>
<p>To prevent people viewing your .htaccess, add the following:</p>
<pre lang="php" xml:lang="php">
< Files .htaccess>
order allow,deny
deny from all
< /Files>
</pre>
<p><strong>Page Redirects</strong></p>
<p>When changing servers, moving content, or altering directory structures, to prvent 404 error pages, we can implement a 301 redirect, which will direct all incoming requests to their new <strong>permanant</strong> location:</p>
<pre lang="php" xml:lang="php">
Redirect 301 /oldpage.html http://www.yourwebsite.com/newpage.html
</pre>
<p>Want to redirect your entire website?, not a problem:</p>
<pre lang="php" xml:lang="php">
Redirect 301 / http://www.your-new-website.com/
</pre>
<h4><strong>Prevent Directory browsing</strong></h4>
<p>Iif you don&#8217;t have an &quot;index.htm&quot; file in your directories, many servers will show nthe entire content of the folder when a user browses to it. rather than have to create an index file for each folder, simply add the following directive:</p>
<pre lang="php" xml:lang="php">
IndexIgnore *
</pre>
<p>You may want the directory to list, but hide certain file types, if so, use this:</p>
<pre lang="php" xml:lang="php">
IndexIgnore *.zip *.jpg
</pre>
<p>On the other hand, you might already have directory listings hidden, so, to over-ride this and show, use:</p>
<pre lang="php" xml:lang="php">
Options +Indexes
</pre>
<h4><strong>Prevent image hotlinking</strong></h4>
<p>When people &quot;hotlink&quot; to your images, this means they are linking directly to them within their websites (we are lucky Flickr don&#8217;t use this directive!). To disallow hotlinking, and server them up another image, simply use:</p>
<pre lang="php" xml:lang="php">
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]
RewriteRule \.(gif|jpg)$ http://www.yourdomain.com/imagetheif.gif [R,L]
</pre>
<p>Just change &quot;yourdomain&quot; to your domain name, and modify the path/name of the image to replace it. (perhaps an angry image of Mr T?)</p>
<h4><strong>Change Directory listing</strong></h4>
<p>Many websites ahev a splash page, or you may want to define the order ijn which a visiter will see your default pages. This is often quite good if you want to show a static page first. Simply add: (change to what you like)</p>
<pre lang="php" xml:lang="php">
DirectoryIndex index.html index.php
</pre>
<h4><strong>MIME Types</strong></h4>
<p>MIME types are languages that your server understands. Most servers are setup to be able tio understand flash, mp3&#8217;s etc etc, if not, you can add like the following:</p>
<pre lang="php" xml:lang="php">
AddType application/x-shockwave-flash swf
</pre>
<p>View the entire list of MIME types at <a href="http://www.webmaster-toolkit.com/mime-types.shtml" target="_blank">Webmaster-toolkit</a>.</p>
<h4><strong>Error handling</strong></h4>
<p>Proper error handling is good for usability purposes, and helps your website maintain a professional feel. Some of the most common errors that occur are:</p>
<p>400 Bad request &#8211; Normally a malformed URL request or improper usage of a script.<br />
401 Authorization Required &#8211; A result of attempted access to a Restricted Area without the proper credentials<br />
403 Forbidden &#8211; When a user tries to access a file which has incorrect permissions<br />
404 Not Found &#8211; A result of a file/image being moved, or normally a result of renaming an item<br />
500 Internal Server &#8211; The server pooped itself</p>
<p>To avoid issues, and let the user know what the problem is, you can add the following directives to your .htaccess file. Note that we place these in a folder called errors, both this, and the name of the files can be changed, but I prefer to do it this way to keep it clean and easy to use. One other important thing I like to do is add this folder to the disallowed list in my robots.txt file in the root directory.</p>
<pre lang="php" xml:lang="php">
ErrorDocument 400 /errors/400.html
ErrorDocument 401 /errors/401.html
ErrorDocument 403 /errors/402.html
ErrorDocument 404 /errors/404.html
ErrorDocument 500 /errors/500.html
</pre>
<h4><strong>Block Users</strong></h4>
<p>Sick of pests, or want to deny certain ip&#8217;s from your website? you can deny these people by adding the following (just change the i.p. addresses to the ones you want:</p>
<pre lang="php" xml:lang="php">
order allow,deny
deny from 123.4.5.6
deny from 007.0.1.2
allow from all
</pre>
<h4><strong>Block Referring websites</strong></h4>
<p>Many sites may &quot;hotlink&quot; to your content or information, including showing your pages in inframes on theoir website. To overcome this, we can use similar to the following:</p>
<pre lang="php" xml:lang="php">
RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} websitetoblock\.com [NC,OR]
RewriteCond %{HTTP_REFERER} secondwebsitetoblock\.com
RewriteRule .* - [F]
</pre>
<p>[NC] Denotes it is case insensitive. If you get a 500 error after using this code, simply remove the <strong>#</strong> in front of <strong>Options +FollowSymlinks</strong></p>
<h4><strong>Block Bots</strong></h4>
<p>There are MANY bad bots roaming the internet, many will scrape data, mine email addresses and more. To block these main ones, and send them to a 403 forbidden, add this:</p>
<pre lang="php" xml:lang="php">
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bot\ mailto:craftbot@yahoo.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^ChinaClaw [OR]
RewriteCond %{HTTP_USER_AGENT} ^Custo [OR]
RewriteCond %{HTTP_USER_AGENT} ^DISCo [OR]
RewriteCond %{HTTP_USER_AGENT} ^Download\ Demon [OR]
RewriteCond %{HTTP_USER_AGENT} ^eCatch [OR]
RewriteCond %{HTTP_USER_AGENT} ^EirGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^Express\ WebPictures [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^EyeNetIE [OR]
RewriteCond %{HTTP_USER_AGENT} ^FlashGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetRight [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetWeb! [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go!Zilla [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go-Ahead-Got-It [OR]
RewriteCond %{HTTP_USER_AGENT} ^GrabNet [OR]
RewriteCond %{HTTP_USER_AGENT} ^Grafula [OR]
RewriteCond %{HTTP_USER_AGENT} ^HMView [OR]
RewriteCond %{HTTP_USER_AGENT} HTTrack [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Stripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} Indy\ Library [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^InterGET [OR]
RewriteCond %{HTTP_USER_AGENT} ^Internet\ Ninja [OR]
RewriteCond %{HTTP_USER_AGENT} ^JetCar [OR]
RewriteCond %{HTTP_USER_AGENT} ^JOC\ Web\ Spider [OR]
RewriteCond %{HTTP_USER_AGENT} ^larbin [OR]
RewriteCond %{HTTP_USER_AGENT} ^LeechFTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mass\ Downloader [OR]
RewriteCond %{HTTP_USER_AGENT} ^MIDown\ tool [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mister\ PiX [OR]
RewriteCond %{HTTP_USER_AGENT} ^Navroad [OR]
RewriteCond %{HTTP_USER_AGENT} ^NearSite [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetAnts [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Net\ Vampire [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Octopus [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Explorer [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Navigator [OR]
RewriteCond %{HTTP_USER_AGENT} ^PageGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^Papa\ Foto [OR]
RewriteCond %{HTTP_USER_AGENT} ^pavuk [OR]
RewriteCond %{HTTP_USER_AGENT} ^pcBrowser [OR]
RewriteCond %{HTTP_USER_AGENT} ^RealDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^ReGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^SiteSnagger [OR]
RewriteCond %{HTTP_USER_AGENT} ^SmartDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperBot [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperHTTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Surfbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^tAkeOut [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport\ Pro [OR]
RewriteCond %{HTTP_USER_AGENT} ^VoidEYE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Image\ Collector [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebAuto [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebCopier [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebFetch [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebGo\ IS [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebLeacher [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebReaper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebSauger [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ eXtractor [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ Quester [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebWhacker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^Widow [OR]
RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus
RewriteRule ^.* - [F,L]
</pre>
<h4><strong>File Permissions</strong></h4>
<p>Finally, don&#8217;t forget to set the file permissions of your .htaccess file to 644</p>
<h4><strong>Conclusion</strong></h4>
<p>well, this isn&#8217;t the be all and end-all of .htaccess information, but hopefully, it&#8217;s a good start and will help you on your way!</p>
<p></body></p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2009/01/htaccess-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Subdreamer Hello Wordpress</title>
		<link>http://www.72dpi.net.au/2008/12/goodbye-subdreamer-hello-wordpress/</link>
		<comments>http://www.72dpi.net.au/2008/12/goodbye-subdreamer-hello-wordpress/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 12:35:40 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=30</guid>
		<description><![CDATA[Well, i don&#8217;t publish to this site any more, but i do use it for reference to the skins and applications I have made over the year for Joomla and Subdreamer. I figured since I use wordpress a lot more it was time for a change&#8230;. Well, it&#8217;s as good as a holiday&#8230; =)
]]></description>
			<content:encoded><![CDATA[<p>Well, i don&#8217;t publish to this site any more, but i do use it for reference to the skins and applications I have made over the year for Joomla and Subdreamer. I figured since I use wordpress a lot more it was time for a change&#8230;. Well, it&#8217;s as good as a holiday&#8230; =)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2008/12/goodbye-subdreamer-hello-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Archetoy &#8211; for lovers of urban vinyl</title>
		<link>http://www.72dpi.net.au/2008/03/archetoy-for-lovers-of-urban-vinyl/</link>
		<comments>http://www.72dpi.net.au/2008/03/archetoy-for-lovers-of-urban-vinyl/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 12:32:10 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=28</guid>
		<description><![CDATA[Archetoy has finally launched. A social networking / Online retail website which caters for lovers of urban art and Vinyl, it offers users more than your average website.
The aim of Archetoy is to promote artists and global exhibitions through publishing and community chat. Though in it&#8217;s infancy, Archetoy hopes to fill the void where many [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/news-archetoy.jpg" border="0" alt="Archetoy" width="200" height="133" align="right" />Archetoy has finally launched. A social networking / Online retail website which caters for lovers of urban art and Vinyl, it offers users more than your average website.</p>
<p>The aim of Archetoy is to promote artists and global exhibitions through publishing and community chat. Though in it&#8217;s infancy, Archetoy hopes to fill the void where many others fail.</p>
<p><a href="http://www.archetoy.com">Visit Archetoy today!</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2008/03/archetoy-for-lovers-of-urban-vinyl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Got Milk? &#8211; Get The Glass!</title>
		<link>http://www.72dpi.net.au/2007/08/got-milk-get-the-glass/</link>
		<comments>http://www.72dpi.net.au/2007/08/got-milk-get-the-glass/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 12:30:21 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=26</guid>
		<description><![CDATA[Get The Glass is an online interactive campaign brought to you by The California Milk Processor Board, and is based on their &#34;Got Milk&#34; theme, introduced by the board in 1993 to increase milk sales and awareness in California.
What is It?
Get the glass is an amazing interactive online 3d flash game which is both fun [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/news/gettheglass.jpg" border="0" alt="get The Glass" width="200" height="133" align="right" />Get The Glass is an online interactive campaign brought to you by The California Milk Processor Board, and is based on their &quot;Got Milk&quot; theme, introduced by the board in 1993 to increase milk sales and awareness in California.</p>
<h4>What is It?</h4>
<p><strong>Get the glass</strong> is an amazing interactive online 3d flash game which is both fun and informative, which sets tasks for you to complete, as you wind your way towards the goal.</p>
<p><span id="more-26"></span></p>
<h4>The Brains behind The Concept</h4>
<p>San Francisco-based <a href="http://www.goodbysilverstein.com" target="_blank">Goodby, Silverstein &#038; Partners</a> developed the campaign, whilst uber talented Swedish company <a href="http://www.northkingdom.com" target="_blank">North Kingdom</a> created the online game.</p>
<h4>About The Game</h4>
<p>Walter and Lynn Adachi live on an island with their daughter Melissa and son Tad. Walter’s body is wasting away for lack of calcium. Lynn is suffering (and the rest of the family) from the side effects of PMS. Melissa’s hair and nails are a mess and Tad’s teeth are decaying.</p>
<p align="center"><img src="http://www.72dpi.net.au/images/news/get-the-glass-game.jpg" alt="get The Glass Game " border="0" height="350" width="450"></p>
<h4>The Objective</h4>
<p>Your objective is to navigate the Adachi family in their plumbing service truck towards Fort Fridge where the glass of milk is kept, all the while being chased by a security vehicle. Throw the dice and fortune or misfortune awaits you as you move forward on this interactive boardgame. If you get caught up by the security, you&#8217;ll get chucked in Milkatraz, where you can Take your chance at escaping by spinning the wheel of fortune, email a friend to bail you out, or server your time, and lose a life.</p>
<p align="center"><img src="http://www.72dpi.net.au/images/news/milkatraz.jpg" alt="Milkatraz" border="0" height="350" width="450"></p>
<div class="roughbluebox">
<div>
<div>
<div>
<h2 class="roughbluebox"><img src="images/icons/traffic-cone_24.png" height="24" width="24" alt="Alert" /> Check It Out!</h2>
<div class="roughbluebox_content">
<p>This game really is like no other, and is a brilliant campaign to raise awareness for milk. Check out <a href="http://www.gettheglass.com" target="_blank">Get The Glass</a> today!</p>
</div>
</div>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/08/got-milk-get-the-glass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Codes</title>
		<link>http://www.72dpi.net.au/2007/08/html-codes/</link>
		<comments>http://www.72dpi.net.au/2007/08/html-codes/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 12:28:27 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[cheat sheets]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=24</guid>
		<description><![CDATA[This is a helpful list of html codes, Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, ISO 8859-1 Latin alphabet No. 1
Browser support: All browsers




Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, ISO 8859-1 Latin alphabet No. 1
Browser support: All browsers






ASCII
&#160;
HTML
HTML
&#160;


Dec
Hex
Symbol
Number
Name
Description







32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

20
21
22
23
24
25
26
27
28
29
2A
2B
2C
2D
2E
2F

&#32;
&#33;
&#34;
&#35;
&#36;
&#37;
&#38;
&#39;
&#40;
&#41;
&#42;
&#43;
&#44;
&#45;
&#46;
&#47;

&#38;#32;
&#38;#33;
&#38;#34;
&#38;#35;
&#38;#36;
&#38;#37;
&#38;#38;
&#38;#39;
&#38;#40;
&#38;#41;
&#38;#42;
&#38;#43;
&#38;#44;
&#38;#45;
&#38;#46;
&#38;#47;

&#38;quot;
&#38;amp;


space
exclamation point
double quotes
number sign
dollar sign
percent sign
ampersand
single quote
opening parenthesis
closing parenthesis
asterisk
plus sign
comma
minus sign [...]]]></description>
			<content:encoded><![CDATA[<p>This is a helpful list of html codes, Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, ISO 8859-1 Latin alphabet No. 1</p>
<p><strong>Browser support:</strong> All browsers</p>
<p><span id="more-24"></span></p>
<table align="center" cellspacing="0" cellpadding="2" style="border:1px solid #eaeaea; color:#000;background-color:#fff;">
<tr>
<td>
<div class="hd4">Standard ASCII set, HTML Entity names, ISO 10646, ISO 8879, ISO 8859-1 Latin alphabet No. 1<br />
Browser support: All browsers</div>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
32<br />
33<br />
34<br />
35<br />
36<br />
37<br />
38<br />
39<br />
40<br />
41<br />
42<br />
43<br />
44<br />
45<br />
46<br />
47</td>
<td align="center">
20<br />
21<br />
22<br />
23<br />
24<br />
25<br />
26<br />
27<br />
28<br />
29<br />
2A<br />
2B<br />
2C<br />
2D<br />
2E<br />
2F</td>
<td align="center">
&#32;<br />
&#33;<br />
&quot;<br />
&#35;<br />
&#36;<br />
&#37;<br />
&amp;<br />
&#39;<br />
&#40;<br />
&#41;<br />
&#42;<br />
&#43;<br />
&#44;<br />
&#45;<br />
&#46;<br />
&#47;</td>
<td align="left">
&amp;#32;<br />
&amp;#33;<br />
&amp;#34;<br />
&amp;#35;<br />
&amp;#36;<br />
&amp;#37;<br />
&amp;#38;<br />
&amp;#39;<br />
&amp;#40;<br />
&amp;#41;<br />
&amp;#42;<br />
&amp;#43;<br />
&amp;#44;<br />
&amp;#45;<br />
&amp;#46;<br />
&amp;#47;</td>
<td align="left">
<p>&amp;quot;</p>
<p>&amp;amp;</p>
</td>
<td align="left">
space<br />
exclamation point<br />
double quotes<br />
number sign<br />
dollar sign<br />
percent sign<br />
ampersand<br />
single quote<br />
opening parenthesis<br />
closing parenthesis<br />
asterisk<br />
plus sign<br />
comma<br />
minus sign &#8211; hyphen<br />
period<br />
slash</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
48<br />
49<br />
50<br />
51<br />
52<br />
53<br />
54<br />
55<br />
56<br />
57<br />
58<br />
59<br />
60<br />
61<br />
62<br />
63</td>
<td align="center">
30<br />
31<br />
32<br />
33<br />
34<br />
35<br />
36<br />
37<br />
38<br />
39<br />
3A<br />
3B<br />
3C<br />
3D<br />
3E<br />
3F</td>
<td align="center">
&#48;<br />
&#49;<br />
&#50;<br />
&#51;<br />
&#52;<br />
&#53;<br />
&#54;<br />
&#55;<br />
&#56;<br />
&#57;<br />
&#58;<br />
&#59;<br />
&lt;<br />
&#61;<br />
&gt;<br />
&#63;</td>
<td align="left">
&amp;#48;<br />
&amp;#49;<br />
&amp;#50;<br />
&amp;#51;<br />
&amp;#52;<br />
&amp;#53;<br />
&amp;#54;<br />
&amp;#55;<br />
&amp;#56;<br />
&amp;#57;<br />
&amp;#58;<br />
&amp;#59;<br />
&amp;#60;<br />
&amp;#61;<br />
&amp;#62;<br />
&amp;#63;</td>
<td align="left">
<p>&amp;lt;</p>
<p>&amp;gt;</p>
</td>
<td align="left">
zero<br />
one<br />
two<br />
three<br />
four<br />
five<br />
six<br />
seven<br />
eight<br />
nine<br />
colon<br />
semicolon<br />
less than sign<br />
equal sign<br />
greater than sign<br />
question mark</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
64<br />
65<br />
66<br />
67<br />
68<br />
69<br />
70<br />
71<br />
72<br />
73<br />
74<br />
75<br />
76<br />
77<br />
78<br />
79</td>
<td align="center">
40<br />
41<br />
42<br />
43<br />
44<br />
45<br />
46<br />
47<br />
48<br />
49<br />
4A<br />
4B<br />
4C<br />
4D<br />
4E<br />
4F</td>
<td align="center">
&#64;<br />
&#65;<br />
&#66;<br />
&#67;<br />
&#68;<br />
&#69;<br />
&#70;<br />
&#71;<br />
&#72;<br />
&#73;<br />
&#74;<br />
&#75;<br />
&#76;<br />
&#77;<br />
&#78;<br />
&#79;</td>
<td align="left">
&amp;#64;<br />
&amp;#65;<br />
&amp;#66;<br />
&amp;#67;<br />
&amp;#68;<br />
&amp;#69;<br />
&amp;#70;<br />
&amp;#71;<br />
&amp;#72;<br />
&amp;#73;<br />
&amp;#74;<br />
&amp;#75;<br />
&amp;#76;<br />
&amp;#77;<br />
&amp;#78;<br />
&amp;#79;</td>
<td align="left">
</td>
<td align="left">
at symbol</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
80<br />
81<br />
82<br />
83<br />
84<br />
85<br />
86<br />
87<br />
88<br />
89<br />
90<br />
91<br />
92<br />
93<br />
94<br />
95</td>
<td align="center">
50<br />
51<br />
52<br />
53<br />
54<br />
55<br />
56<br />
57<br />
58<br />
59<br />
5A<br />
5B<br />
5C<br />
5D<br />
5E<br />
5F</td>
<td align="center">
&#80;<br />
&#81;<br />
&#82;<br />
&#83;<br />
&#84;<br />
&#85;<br />
&#86;<br />
&#87;<br />
&#88;<br />
&#89;<br />
&#90;<br />
&#91;<br />
&#92;<br />
&#93;<br />
&#94;<br />
&#95;</td>
<td align="left">
&amp;#80;<br />
&amp;#81;<br />
&amp;#82;<br />
&amp;#83;<br />
&amp;#84;<br />
&amp;#85;<br />
&amp;#86;<br />
&amp;#87;<br />
&amp;#88;<br />
&amp;#89;<br />
&amp;#90;<br />
&amp;#91;<br />
&amp;#92;<br />
&amp;#93;<br />
&amp;#94;<br />
&amp;#95;</td>
<td align="left">
</td>
<td align="left">
<p>
opening bracket<br />
backslash<br />
closing bracket<br />
caret &#8211; circumflex<br />
underscore</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
96<br />
97<br />
98<br />
99<br />
100<br />
101<br />
102<br />
103<br />
104<br />
105<br />
106<br />
107<br />
108<br />
109<br />
110<br />
111</td>
<td align="center">
60<br />
61<br />
62<br />
63<br />
64<br />
65<br />
66<br />
67<br />
68<br />
69<br />
6A<br />
6B<br />
6C<br />
6D<br />
6E<br />
6F</td>
<td align="center">
&#96;<br />
&#97;<br />
&#98;<br />
&#99;<br />
&#100;<br />
&#101;<br />
&#102;<br />
&#103;<br />
&#104;<br />
&#105;<br />
&#106;<br />
&#107;<br />
&#108;<br />
&#109;<br />
&#110;<br />
&#111;</td>
<td align="left">
&amp;#96;<br />
&amp;#97;<br />
&amp;#98;<br />
&amp;#99;<br />
&amp;#100;<br />
&amp;#101;<br />
&amp;#102;<br />
&amp;#103;<br />
&amp;#104;<br />
&amp;#105;<br />
&amp;#106;<br />
&amp;#107;<br />
&amp;#108;<br />
&amp;#109;<br />
&amp;#110;<br />
&amp;#111;</td>
<td align="left">
</td>
<td align="left">
grave accent</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
112<br />
113<br />
114<br />
115<br />
116<br />
117<br />
118<br />
119<br />
120<br />
121<br />
122<br />
123<br />
124<br />
125<br />
126<br />
127</td>
<td align="center">
70<br />
71<br />
72<br />
73<br />
74<br />
75<br />
76<br />
77<br />
78<br />
79<br />
7A<br />
7B<br />
7C<br />
7D<br />
7E<br />
7F</td>
<td align="center">
&#112;<br />
&#113;<br />
&#114;<br />
&#115;<br />
&#116;<br />
&#117;<br />
&#118;<br />
&#119;<br />
&#120;<br />
&#121;<br />
&#122;<br />
&#123;<br />
&#124;<br />
&#125;<br />
&#126;</p>
</td>
<td align="left">
&amp;#112;<br />
&amp;#113;<br />
&amp;#114;<br />
&amp;#115;<br />
&amp;#116;<br />
&amp;#117;<br />
&amp;#118;<br />
&amp;#119;<br />
&amp;#120;<br />
&amp;#121;<br />
&amp;#122;<br />
&amp;#123;<br />
&amp;#124;<br />
&amp;#125;<br />
&amp;#126;</p>
</td>
<td align="left">
</td>
<td align="left">
<p>
opening brace<br />
vertical bar<br />
closing brace<br />
equivalency sign &#8211; tilde<br />
(not defined in HTML 4 standard)</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
128<br />
129<br />
130<br />
131<br />
132<br />
133<br />
134<br />
135<br />
136<br />
137<br />
138<br />
139<br />
140<br />
141<br />
142<br />
143</td>
<td align="center">
80<br />
81<br />
82<br />
83<br />
84<br />
85<br />
86<br />
87<br />
88<br />
89<br />
8A<br />
8B<br />
8C<br />
8D<br />
8E<br />
8F</td>
<td align="center">
</td>
<td align="left">
</td>
<td align="left">
</td>
<td align="left">
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
144<br />
145<br />
146<br />
147<br />
148<br />
149<br />
150<br />
151<br />
152<br />
153<br />
154<br />
155<br />
156<br />
157<br />
158<br />
159</td>
<td align="center">
90<br />
91<br />
92<br />
93<br />
94<br />
95<br />
96<br />
97<br />
98<br />
99<br />
9A<br />
9B<br />
9C<br />
9D<br />
9E<br />
9F</td>
<td align="center">
</td>
<td align="left">
</td>
<td align="left">
</td>
<td align="left">
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)<br />
(not defined in HTML 4 standard)</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
160<br />
161<br />
162<br />
163<br />
164<br />
165<br />
166<br />
167<br />
168<br />
169<br />
170<br />
171<br />
172<br />
173<br />
174<br />
175</td>
<td align="center">
A0<br />
A1<br />
A2<br />
A3<br />
A4<br />
A5<br />
A6<br />
A7<br />
A8<br />
A9<br />
AA<br />
AB<br />
AC<br />
AD<br />
AE<br />
AF</td>
<td align="center">
&#160;<br />
&#161;<br />
&#162;<br />
&#163;<br />
&#164;<br />
&#165;<br />
&#166;<br />
&#167;<br />
&#168;<br />
&#169;<br />
&#170;<br />
&#171;<br />
&#172;<br />
&#173;<br />
&#174;<br />
&#175;</td>
<td align="left">
&amp;#160;<br />
&amp;#161;<br />
&amp;#162;<br />
&amp;#163;<br />
&amp;#164;<br />
&amp;#165;<br />
&amp;#166;<br />
&amp;#167;<br />
&amp;#168;<br />
&amp;#169;<br />
&amp;#170;<br />
&amp;#171;<br />
&amp;#172;<br />
&amp;#173;<br />
&amp;#174;<br />
&amp;#175;</td>
<td align="left">
&amp;nbsp;<br />
&amp;iexcl;<br />
&amp;cent;<br />
&amp;pound;<br />
&amp;curren;<br />
&amp;yen;<br />
&amp;brvbar;<br />
&amp;sect;<br />
&amp;uml;<br />
&amp;copy;<br />
&amp;ordf;<br />
&amp;laquo;<br />
&amp;not;<br />
&amp;shy;<br />
&amp;reg;<br />
&amp;macr;</td>
<td align="left">
non-breaking space<br />
inverted exclamation mark<br />
cent sign<br />
pound sign<br />
currency sign<br />
yen sign<br />
broken vertical bar<br />
section sign<br />
spacing diaeresis &#8211; umlaut<br />
copyright sign<br />
feminine ordinal indicator<br />
left double angle quotes<br />
not sign<br />
soft hyphen<br />
registered trade mark sign<br />
spacing macron &#8211; overline</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
176<br />
177<br />
178<br />
179<br />
180<br />
181<br />
182<br />
183<br />
184<br />
185<br />
186<br />
187<br />
188<br />
189<br />
190<br />
191</td>
<td align="center">
B0<br />
B1<br />
B2<br />
B3<br />
B4<br />
B5<br />
B6<br />
B7<br />
B8<br />
B9<br />
BA<br />
BB<br />
BC<br />
BD<br />
BE<br />
BF</td>
<td align="center">
&#176;<br />
&#177;<br />
&#178;<br />
&#179;<br />
&#180;<br />
&#181;<br />
&#182;<br />
&#183;<br />
&#184;<br />
&#185;<br />
&#186;<br />
&#187;<br />
&#188;<br />
&#189;<br />
&#190;<br />
&#191;</td>
<td align="left">
&amp;#176;<br />
&amp;#177;<br />
&amp;#178;<br />
&amp;#179;<br />
&amp;#180;<br />
&amp;#181;<br />
&amp;#182;<br />
&amp;#183;<br />
&amp;#184;<br />
&amp;#185;<br />
&amp;#186;<br />
&amp;#187;<br />
&amp;#188;<br />
&amp;#189;<br />
&amp;#190;<br />
&amp;#191;</td>
<td align="left">
&amp;deg;<br />
&amp;plusmn;<br />
&amp;sup2;<br />
&amp;sup3;<br />
&amp;acute;<br />
&amp;micro;<br />
&amp;para;<br />
&amp;middot;<br />
&amp;cedil;<br />
&amp;sup1;<br />
&amp;ordm;<br />
&amp;raquo;<br />
&amp;frac14;<br />
&amp;frac12;<br />
&amp;frac34;<br />
&amp;iquest;</td>
<td align="left">
degree sign<br />
plus-or-minus sign<br />
superscript two &#8211; squared<br />
superscript three &#8211; cubed<br />
acute accent &#8211; spacing acute<br />
micro sign<br />
pilcrow sign &#8211; paragraph sign<br />
middle dot &#8211; Georgian comma<br />
spacing cedilla<br />
superscript one<br />
masculine ordinal indicator<br />
right double angle quotes<br />
fraction one quarter<br />
fraction one half<br />
fraction three quarters<br />
inverted question mark</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
192<br />
193<br />
194<br />
195<br />
196<br />
197<br />
198<br />
199<br />
200<br />
201<br />
202<br />
203<br />
204<br />
205<br />
206<br />
207</td>
<td align="center">
C0<br />
C1<br />
C2<br />
C3<br />
C4<br />
C5<br />
C6<br />
C7<br />
C8<br />
C9<br />
CA<br />
CB<br />
CC<br />
CD<br />
CE<br />
CF</td>
<td align="center">
&#192;<br />
&#193;<br />
&#194;<br />
&#195;<br />
&#196;<br />
&#197;<br />
&#198;<br />
&#199;<br />
&#200;<br />
&#201;<br />
&#202;<br />
&#203;<br />
&#204;<br />
&#205;<br />
&#206;<br />
&#207;</td>
<td align="left">
&amp;#192;<br />
&amp;#193;<br />
&amp;#194;<br />
&amp;#195;<br />
&amp;#196;<br />
&amp;#197;<br />
&amp;#198;<br />
&amp;#199;<br />
&amp;#200;<br />
&amp;#201;<br />
&amp;#202;<br />
&amp;#203;<br />
&amp;#204;<br />
&amp;#205;<br />
&amp;#206;<br />
&amp;#207;</td>
<td align="left">
&amp;Agrave;<br />
&amp;Aacute;<br />
&amp;Acirc;<br />
&amp;Atilde;<br />
&amp;Auml;<br />
&amp;Aring;<br />
&amp;AElig;<br />
&amp;Ccedil;<br />
&amp;Egrave;<br />
&amp;Eacute;<br />
&amp;Ecirc;<br />
&amp;Euml;<br />
&amp;Igrave;<br />
&amp;Iacute;<br />
&amp;Icirc;<br />
&amp;Iuml;</td>
<td align="left">
latin capital letter A with grave<br />
latin capital letter A with acute<br />
latin capital letter A with circumflex<br />
latin capital letter A with tilde<br />
latin capital letter A with diaeresis<br />
latin capital letter A with ring above<br />
latin capital letter AE<br />
latin capital letter C with cedilla<br />
latin capital letter E with grave<br />
latin capital letter E with acute<br />
latin capital letter E with circumflex<br />
latin capital letter E with diaeresis<br />
latin capital letter I with grave<br />
latin capital letter I with acute<br />
latin capital letter I with circumflex<br />
latin capital letter I with diaeresis</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
208<br />
209<br />
210<br />
211<br />
212<br />
213<br />
214<br />
215<br />
216<br />
217<br />
218<br />
219<br />
220<br />
221<br />
222<br />
223</td>
<td align="center">
D0<br />
D1<br />
D2<br />
D3<br />
D4<br />
D5<br />
D6<br />
D7<br />
D8<br />
D9<br />
DA<br />
DB<br />
DC<br />
DD<br />
DE<br />
DF</td>
<td align="center">
&#208;<br />
&#209;<br />
&#210;<br />
&#211;<br />
&#212;<br />
&#213;<br />
&#214;<br />
&#215;<br />
&#216;<br />
&#217;<br />
&#218;<br />
&#219;<br />
&#220;<br />
&#221;<br />
&#222;<br />
&#223;</td>
<td align="left">
&amp;#208;<br />
&amp;#209;<br />
&amp;#210;<br />
&amp;#211;<br />
&amp;#212;<br />
&amp;#213;<br />
&amp;#214;<br />
&amp;#215;<br />
&amp;#216;<br />
&amp;#217;<br />
&amp;#218;<br />
&amp;#219;<br />
&amp;#220;<br />
&amp;#221;<br />
&amp;#222;<br />
&amp;#223;</td>
<td align="left">
&amp;ETH;<br />
&amp;Ntilde;<br />
&amp;Ograve;<br />
&amp;Oacute;<br />
&amp;Ocirc;<br />
&amp;Otilde;<br />
&amp;Ouml;<br />
&amp;times;<br />
&amp;Oslash;<br />
&amp;Ugrave;<br />
&amp;Uacute;<br />
&amp;Ucirc;<br />
&amp;Uuml;<br />
&amp;Yacute;<br />
&amp;THORN;<br />
&amp;szlig;</td>
<td align="left">
latin capital letter ETH<br />
latin capital letter N with tilde<br />
latin capital letter O with grave<br />
latin capital letter O with acute<br />
latin capital letter O with circumflex<br />
latin capital letter O with tilde<br />
latin capital letter O with diaeresis<br />
multiplication sign<br />
latin capital letter O with slash<br />
latin capital letter U with grave<br />
latin capital letter U with acute<br />
latin capital letter U with circumflex<br />
latin capital letter U with diaeresis<br />
latin capital letter Y with acute<br />
latin capital letter THORN<br />
latin small letter sharp s &#8211; ess-zed</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
224<br />
225<br />
226<br />
227<br />
228<br />
229<br />
230<br />
231<br />
232<br />
233<br />
234<br />
235<br />
236<br />
237<br />
238<br />
239</td>
<td align="center">
E0<br />
E1<br />
E2<br />
E3<br />
E4<br />
E5<br />
E6<br />
E7<br />
E8<br />
E9<br />
EA<br />
EB<br />
EC<br />
ED<br />
EE<br />
EF</td>
<td align="center">
&#224;<br />
&#225;<br />
&#226;<br />
&#227;<br />
&#228;<br />
&#229;<br />
&#230;<br />
&#231;<br />
&#232;<br />
&#233;<br />
&#234;<br />
&#235;<br />
&#236;<br />
&#237;<br />
&#238;<br />
&#239;</td>
<td align="left">
&amp;#224;<br />
&amp;#225;<br />
&amp;#226;<br />
&amp;#227;<br />
&amp;#228;<br />
&amp;#229;<br />
&amp;#230;<br />
&amp;#231;<br />
&amp;#232;<br />
&amp;#233;<br />
&amp;#234;<br />
&amp;#235;<br />
&amp;#236;<br />
&amp;#237;<br />
&amp;#238;<br />
&amp;#239;</td>
<td align="left">
&amp;agrave;<br />
&amp;aacute;<br />
&amp;acirc;<br />
&amp;atilde;<br />
&amp;auml;<br />
&amp;aring;<br />
&amp;aelig;<br />
&amp;ccedil;<br />
&amp;egrave;<br />
&amp;eacute;<br />
&amp;ecirc;<br />
&amp;euml;<br />
&amp;igrave;<br />
&amp;iacute;<br />
&amp;icirc;<br />
&amp;iuml;</td>
<td align="left">
latin small letter a with grave<br />
latin small letter a with acute<br />
latin small letter a with circumflex<br />
latin small letter a with tilde<br />
latin small letter a with diaeresis<br />
latin small letter a with ring above<br />
latin small letter ae<br />
latin small letter c with cedilla<br />
latin small letter e with grave<br />
latin small letter e with acute<br />
latin small letter e with circumflex<br />
latin small letter e with diaeresis<br />
latin small letter i with grave<br />
latin small letter i with acute<br />
latin small letter i with circumflex<br />
latin small letter i with diaeresis</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td colspan="2" align="center"><b>ASCII</b></td>
<td>&nbsp;</td>
<td align="left"><b>HTML</b></td>
<td align="left"><b>HTML</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td width="50" align="center"><b>Dec</b></td>
<td width="50" align="center"><b>Hex</b></td>
<td width="95" align="center"><b>Symbol</b></td>
<td width="90" align="left"><b>Number</b></td>
<td width="95" align="left"><b>Name</b></td>
<td width="320" align="left"><b>Description</b></td>
</tr>
<tr>
<td colspan="6">
<hr /></td>
</tr>
<tr>
<td align="center">
240<br />
241<br />
242<br />
243<br />
244<br />
245<br />
246<br />
247<br />
248<br />
249<br />
250<br />
251<br />
252<br />
253<br />
254<br />
255</td>
<td align="center">
F0<br />
F1<br />
F2<br />
F3<br />
F4<br />
F5<br />
F6<br />
F7<br />
F8<br />
F9<br />
FA<br />
FB<br />
FC<br />
FD<br />
FE<br />
FF</td>
<td align="center">
&#240;<br />
&#241;<br />
&#242;<br />
&#243;<br />
&#244;<br />
&#245;<br />
&#246;<br />
&#247;<br />
&#248;<br />
&#249;<br />
&#250;<br />
&#251;<br />
&#252;<br />
&#253;<br />
&#254;<br />
&#255;</td>
<td align="left">
&amp;#240;<br />
&amp;#241;<br />
&amp;#242;<br />
&amp;#243;<br />
&amp;#244;<br />
&amp;#245;<br />
&amp;#246;<br />
&amp;#247;<br />
&amp;#248;<br />
&amp;#249;<br />
&amp;#250;<br />
&amp;#251;<br />
&amp;#252;<br />
&amp;#253;<br />
&amp;#254;<br />
&amp;#255;</td>
<td align="left">
&amp;eth;<br />
&amp;ntilde;<br />
&amp;ograve;<br />
&amp;oacute;<br />
&amp;ocirc;<br />
&amp;otilde;<br />
&amp;ouml;<br />
&amp;divide;<br />
&amp;oslash;<br />
&amp;ugrave;<br />
&amp;uacute;<br />
&amp;ucirc;<br />
&amp;uuml;<br />
&amp;yacute;<br />
&amp;thorn;<br />
&amp;yuml;</td>
<td align="left">
latin small letter eth<br />
latin small letter n with tilde<br />
latin small letter o with grave<br />
latin small letter o with acute<br />
latin small letter o with circumflex<br />
latin small letter o with tilde<br />
latin small letter o with diaeresis<br />
division sign<br />
latin small letter o with slash<br />
latin small letter u with grave<br />
latin small letter u with acute<br />
latin small letter u with circumflex<br />
latin small letter u with diaeresis<br />
latin small letter y with acute<br />
latin small letter thorn<br />
latin small letter y with diaeresis</td>
</tr>
</table>
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/08/html-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Free Subdreamer Template</title>
		<link>http://www.72dpi.net.au/2007/08/a-new-free-subdreamer-template/</link>
		<comments>http://www.72dpi.net.au/2007/08/a-new-free-subdreamer-template/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 12:23:55 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Subdreamer]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=22</guid>
		<description><![CDATA[I decided (after subtle nudging from TullyMan) to pull my finger out and release a new skin for the Subdreamer Content Management System. The skin you see here makes the use of many new features.
Features

Skin uses MooTools as an effects base
Fantastic new SEO menu (thanks to XhUnTeR for this!)
Mootools effect on the drop down menu
MooTools [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/news/showpics.jpg" border="0" alt="A New Look" width="200" height="133" align="right" />I decided (after subtle nudging from TullyMan) to pull my finger out and release a new skin for the <strong>Subdreamer Content Management System</strong>. The skin you see here makes the use of many new features.<span id="more-22"></span></p>
<h4>Features</h4>
<ul class="tick">
<li>Skin uses <a href="http://mootools.net/" target="_blank">MooTools</a> as an effects base</li>
<li>Fantastic new SEO menu (thanks to XhUnTeR for this!)</li>
<li>Mootools effect on the drop down menu</li>
<li>MooTools ToolTips</li>
<li>Skin switcher, choice of 4 colors (Again, thanks to X!)</li>
<li>Font-Sizer/Switcher</li>
<li>Semantic output for modules</li>
<li>Div &amp; CSS based</li>
<li>Forum integration</li>
</ul>
<p>Plus loads more&#8230;</p>
<p><!---more--></p>
<h4>What else can i do?</h4>
<p><!-- Start Grunge Box --></p>
<div class="roughbluebox">
<div>
<div>
<div>
<h2 class="roughbluebox">Grunge Boxes!</h2>
<div class="roughbluebox_content"><!-- Content here --> </p>
<p>You can add grunge boxes into your content. By adding a few div&#8217;s and assigning a class, you can add content simply * easily. Currently I have only included blue boxes, so feel free to create your own.</p>
<p>It&#8217;s a good place to start to make things &#8220;stand out&#8221; a little better.</p>
<p>Use like:<br />
<strong></strong></p>
<p><strong>&lt; div class=&#8221;roughbluebox&#8221;&gt;<br />
&lt; div&gt;<br />
&lt; div&gt;<br />
&lt; div&gt;<br />
&lt; h2 class=&#8221;roughbluebox&#8221;&gt;heading goes here!&lt; / h2&gt;<br />
&lt; div class=&#8221;roughbluebox_content&#8221;&gt;<br />
<!-- Content here --><br />
&lt; p&gt;Content goes here!&lt; /p&gt;<br />
<!-- End Content --><br />
&lt; / div&gt;<br />
&lt; / div&gt;<br />
&lt; / div&gt;<br />
&lt; / div&gt;<br />
&lt; / div&gt;<br />
</strong></p>
<p><!-- End Content --></div>
</div>
</div>
</div>
</div>
<p><!-- End grunge Box --></p>
<h4>Cpanel</h4>
<p>I have added a &#8220;CPanel&#8221; for you to add goodies to. This uses MooTools for the action, and degrades gracefully if JS is turned off. I recommend only adding extras in this box, not things like user Logins etc&#8230;</p>
<h4>Tool Tips</h4>
<p>If you want to add a Tool Tip to an item, such as an image or a link, you can do so by adding a <strong>class</strong> and a <strong>title</strong> within the code.<br />
ie: &lt; img src=&#8221;blah.gif&#8221; alt=&#8221;blah&#8221; title=&#8221;Tip Title :: Hello!&#8221; class=&#8221;Tips2&#8243; width=&#8221;10&#8243; height=&#8221;10&#8243; /&gt;<br />
More examples:</p>
<ul class="arrow">
<li><a class="Tips1" title="Instant :: I appear Instantly!" href="#">Tips1</a> == Appears instantly</li>
<li><a class="Tips2" title="Fade :: I Fade In &amp; Out!" href="#">Tips2</a> == Fades in &amp; Out</li>
<li><a class="Tips3" title="Fixed :: I am Fixed!" href="#">Tips3</a> == Fixed Position</li>
<li><a class="Tips4" title="Custom :: I am a Custom box!" href="#">Tips4</a> == Custom Box (design your own Via CSS)</li>
</ul>
<ul class="linkout">
<li><a class="Tips2" title="Awesome! :: ooooh, thanks MooTools!" href="http://demos.mootools.net/Tips" target="_blank">Want to know more? see the MooTools Demo!</a></li>
</ul>
<p>The beauty is, the styles are controlled by CSS.</p>
<h4>Classes for color</h4>
<p>two important additions are:<br />
<span class="alert">Alert (red text)</span> &#8211; Use like: class=&#8221;alert&#8221;<br />
<span class="confirm">Confirm (green text)</span> &#8211; Use like: class=&#8221;confirm&#8221;<br />
Again, this is for visual appeal &amp; recognition.</p>
<h4>Heading Classes</h4>
<p>I have added styles for headings, to helps split up content.</p>
<h1>H1 tag</h1>
<h2>H2 tag</h2>
<h3>H3 tag</h3>
<h4>H4 tag</h4>
<h5>H5 tag</h5>
<h4>Unordered Lists</h4>
<p>Want more control over the style of your unordered lists? yeah, mee too, so I have added a few classes to make your life better.</p>
<ul class="arrow">
<li>This is an unordered lists using arrows</li>
<li>Use like: &lt; ul class=&#8221;arrow&#8221;&gt;</li>
</ul>
<ul class="dot">
<li>This is an unordered lists using dots</li>
<li>Use like: &lt; ul class=&#8221;dot&#8221;&gt;</li>
</ul>
<ul class="tick">
<li>This is an unordered lists using ticks</li>
<li>Use like: &lt; ul class=&#8221;tick&#8221;&gt;</li>
</ul>
<ul class="acrobat">
<li>This is an unordered lists using the acrobat icon</li>
<li>Use like: &lt; ul class=&#8221;acrobat&#8221;&gt;</li>
</ul>
<ul class="acrobatout">
<li>This is an unordered lists using the external acrobat icon</li>
<li>Use like: &lt; ul class=&#8221;acrobatout&#8221;&gt;</li>
</ul>
<ul class="anchor">
<li>This is an unordered lists using the &#8220;jump to anchor&#8221; icon</li>
<li>Use like: &lt; ul class=&#8221;anchor&#8221;&gt;</li>
</ul>
<ul class="linkout">
<li>This is an unordered lists using the &#8220;linkout&#8221; icon</li>
<li>Use like: &lt; ul class=&#8221;linkout&#8221;&gt;</li>
</ul>
<h4>Classes for links</h4>
<p>To give you more control over looks, and help with visual design, I have adedd several classes that allow you to design the overall look &amp; feel of links. These include links:<br />
<a class="linkout" href="#">Linkout</a> &#8211; use: class=&#8221;linkout&#8221;<br />
<a class="anchor" href="#">Anchor</a> &#8211; use: class=&#8221;anchor&#8221;<br />
<a class="acrobatout" href="#">Acrobatout out</a> &#8211; use: class=&#8221;acrobatout&#8221;<br />
<a class="acrobat" href="#">Acrobat</a> &#8211; use: class=&#8221;acrobat&#8221;</p>
<h4>Dividing content</h4>
<p>Want to break up your content, rather than just use a &#8220;hr&#8221; (horizontal rule)then use: &lt; div class=&#8221;hdot&#8221;&gt; <!-- div--></p>
<p>The class <strong>hdot</strong> will add a 1 px hight dotted line across the page.</p>
<h4>Where to from here?</h4>
<p>Get creative, add extras, you can add so much to this skin it&#8217;s not funny. Since it has MooTools as a base, you can extend features, add image slides &amp; more. Visit <a class="linkout" href="http://mootools.net/" target="_blank">MooTools</a> for more tricks.</p>
<p>Consider this a <em>work</em> in progress, it will be released on Subdreamer.org hopefully this saturday. All feedback is welcome (I expect to get a million bug reports.</p>
<p>Any questions, just ask!</p>
<h4 class="alert"><img src="images/icons/traffic-cone_24.png" alt="Alert" width="24" height="24" /> Important Information!</h4>
<p class="alert"><strong> *Note:</strong> if you use &#8220;<strong>Div&#8217;s</strong>&#8221; in your content, or any plugins do, any extra closing divs/bad markup will break the layout, so be sure your content &amp; plugins are well coded!</p>
<h4>Download</h4>
<p>This skin is available at <a href="http://www.subdreamer.org">Subdreamer.org</a> (*requires membership), and is only for the <strong>Subdreamer CMS</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/08/a-new-free-subdreamer-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Death Metal/Pop &amp; Childrens Video Mashup</title>
		<link>http://www.72dpi.net.au/2007/07/death-metalpop-childrens-video-mashup/</link>
		<comments>http://www.72dpi.net.au/2007/07/death-metalpop-childrens-video-mashup/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 12:21:06 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=20</guid>
		<description><![CDATA[There is something to be said about mixing Death Metal music with pop and childrens&#8217; videos.
Youtube has brought forth a lot of wannabe &#8220;jack-asses&#8221;, but is also a great playground for people with way too much time on their hands.

Here&#8217;s a couple of my all-time favorites.
Britney Spears Death metal
http://www.youtube.com/watch?v=nypusXmF5BI
Cookie Monster &#8211; TNT ACDC &#8211; Death [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/death_cookie.jpg" border="0" alt="Cookie Monster" width="200" height="133" align="right" />There is something to be said about mixing Death Metal music with pop and childrens&#8217; videos.</p>
<p>Youtube has brought forth a lot of wannabe &#8220;jack-asses&#8221;, but is also a great playground for people with way too much time on their hands.</p>
<p><span id="more-20"></span></p>
<p>Here&#8217;s a couple of my all-time favorites.</p>
<h3>Britney Spears Death metal</h3>
<p><a href="http://www.youtube.com/watch?v=nypusXmF5BI">http://www.youtube.com/watch?v=nypusXmF5BI</a></p>
<h3>Cookie Monster &#8211; TNT ACDC &#8211; Death Metal version</h3>
<p><a href="http://www.youtube.com/watch?v=tPvxQ5cSeZQ">http://www.youtube.com/watch?v=tPvxQ5cSeZQ</a></p>
<h3>Cannibal Corpse Lounge Music</h3>
<p><a href="http://www.youtube.com/watch?v=fc-V3NYckOI">http://www.youtube.com/watch?v=fc-V3NYckOI</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/07/death-metalpop-childrens-video-mashup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
