<?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 &#187; General</title>
	<atom:link href="http://www.72dpi.net.au/category/general/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>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>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>
		<item>
		<title>Create your own music Label</title>
		<link>http://www.72dpi.net.au/2007/05/create-your-own-music-label/</link>
		<comments>http://www.72dpi.net.au/2007/05/create-your-own-music-label/#comments</comments>
		<pubDate>Fri, 25 May 2007 12:17:05 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=16</guid>
		<description><![CDATA[Want to make your own funny mix tapes, record labels concert tickets or more?, why not visit Saysit.com, make a few funny images and send them to a friend.

Saysit.com is an &#8220;oldie&#8221; but a goodie site, worth adding to your favourites, and visiting when you get bored.

The site uses.php to create images on the fly. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/saysit.jpg" border="0" alt="Create your own crap!" hspace="0" vspace="0" width="200" height="133" align="right" />Want to make your own funny mix tapes, record labels concert tickets or more?, why not visit Saysit.com, make a few funny images and send them to a friend.</p>
<p><span id="more-16"></span></p>
<p>Saysit.com is an &#8220;oldie&#8221; but a goodie site, worth adding to your favourites, and visiting when you get bored.</p>
<p><img src="images/cassette.jpg" border="0" alt="Awesome sounds" hspace="0" vspace="0" width="400" height="270" /></p>
<p>The site uses.php to create images on the fly. Your choice of background, (the Music cassette tape is my favourite), and add your own text overtop. press &#8220;create&#8221; and whoila!, it&#8217;s made for you. Nothing brilliant, but worthy of a chuckle or two.</p>
<p>Visit <a href="http://www.says-it.com/" target="_blank">http://www.says-it.com/</a></p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/05/create-your-own-music-label/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Replacement for H1 headings</title>
		<link>http://www.72dpi.net.au/2007/05/image-replacement-for-h1-headings/</link>
		<comments>http://www.72dpi.net.au/2007/05/image-replacement-for-h1-headings/#comments</comments>
		<pubDate>Thu, 24 May 2007 12:13:58 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=12</guid>
		<description><![CDATA[Ok, so you&#8217;ve seen it all before, this tutorial is nothing new, but it does bring a new way of making your site look dynamic, whilst still being accessible.  
Whilst working on a recent job, I was stuck with the dilemma of needing header images to replace the &#60; h1&#62; tag, which were still [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/loading.gif" border="0" alt="A loading Image" hspace="0" vspace="0" width="200" height="133" align="right" />Ok, so you&#8217;ve seen it all before, this tutorial is nothing new, but it does bring a new way of making your site look dynamic, whilst still being accessible.  </p>
<p>Whilst working on a recent job, I was stuck with the dilemma of needing header images to replace the <strong>&lt; h1&gt;</strong> tag, which were still accessible. No probs i thought, there&#8217;s plenty of tutorials online. I came across the perfect solution to handle this, but i still had an inherent problem of my heading images taking a while to load.</p>
<p> This is a very neat solution, that overcomes this problem, very simply.<br />
  <span id="more-12"></span><br />
  The simple method for Image replacement for H1 tags, is by using CSS. For accessibility purposes, the css tag <strong>display:none;</strong> cannot be used, as screen-readers will ignore this altogether, therefore making the page harder to understand. </p>
<p>We can, however, push the text to the left of the page, using text-indent, like: <strong>text-indent:-9999px;</strong> </p>
<p>Let&#8217;s get straight to it.</p>
<p>  Ok, so, in your page, you have the following:</p>
<pre lang="php" xml:lang="php">

&lt;h1 class=&quot;about_us&quot;&gt;About Us &lt;/h1&gt;</pre>
<p>In our CSS we have:</p>
<pre lang="css" xml:lang="css">

.about_us {
    width:460px;
    height:250px;
    overflow:hidden;
    background:transparent url(../images/about_us.jpg) 0 0 no-repeat;
    text-indent:-9999px;
    margin-bottom:15px;
    }
</pre>
<p>This method, will replace the h1 heading, with our image (located in the images folder). We use the numbers <strong>0 0</strong> to position the image top &amp; left, and set it to <strong>no-repeat</strong> so we only see the image once.Our <strong>text-indent:-9999px</strong> will push our text way to the left out of visual site, and still allow the text to be read by screen-readers.Now,  if your image is big, this will take a few seconds to load (unless you use Javascript to pre-load), so we will wrap our H1 tag in a div, and apply some css, so, now our code looks like this: </p>
<pre lang="php" xml:lang="php">

&lt;div class=&quot;h1_bg&quot;&gt;&lt;h1 class=&quot;about_us&quot;&gt;About Us &lt;/h1&gt;&lt;/div&gt;</pre>
<p>and we add another class to our CSS:</p>
<pre lang="css" xml:lang="css">
.h1_bg {
    background: transparent url(../images/loading.gif) no-repeat 180px 100px;
    }
    </pre>
<p>Since I wanted the loading image to be set in the middle of my larger image, i set it&#8217;s position to <strong>180px 100px </strong>(left &amp; top)</p>
<p> Even if you use a CMS with dynamic headers as I have where some sections don&#8217;t have a background image for a heading, the loading image won&#8217;t show, as it is set to 100px from the top position.The look &amp; feel of using this site, makes it accessible &amp; look dynamic, and it&#8217;s so simple!</p>
<p> Want to get your own &quot;Ajax-Loading&quot; style animated gif?, why not make one at: <a href="http://www.ajaxload.info/" target="_blank">http://www.ajaxload.info/</a> Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/05/image-replacement-for-h1-headings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mighty Million Launches</title>
		<link>http://www.72dpi.net.au/2007/05/10/</link>
		<comments>http://www.72dpi.net.au/2007/05/10/#comments</comments>
		<pubDate>Sun, 20 May 2007 12:12:31 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=10</guid>
		<description><![CDATA[Are you a lover of the arts? Do you know a struggling artist, muso, writer or creative? Do you want to be part of an online revolution that can not only make a difference, but give you a chance to win a million dollars?
Mighty Million launches its brand new website, and is unlike anything out [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/images/news/mm_thumb.png" border="0" alt="Mighty Million" hspace="0" vspace="0" width="200" height="133" align="right" />Are you a lover of the <strong>arts</strong>? Do you know a struggling <strong>artist</strong>, <strong>muso</strong>, <strong>writer</strong> or <strong>creative</strong>? Do you want to be part of an online revolution that can not only make a difference, but give you a chance to win a <strong>million dollars?</strong></p>
<p>Mighty Million launches its brand new website, and is unlike anything out there. Unique in its conception, MM is opening the door for bigger and better things for  those involved.</p>
<p><span id="more-10"></span></p>
<p>Mighty Million (MM) is bringing together Artists, Musicians, Writers, Designers, Creatives and more. A social networking site, MM is the precursor to &#8220;Break Down The Door&#8221; and offers more than most.</p>
<p>There are no hidden agendas at MM, and everything is open to the public. The aim is to get one million paid members. The money gets invested into the DBTD development which offers everything for free. Each 1000th member of MM gets <strong>AU$1000</strong>, and after the millionth member, the competition opens for someone to win <strong>AU$1,000,000.00</strong>!</p>
<p>Members will get exposure, be able to sell their talents, as well as be part of an artistic revolution like nothing before. Made for the artists, by the artists.</p>
<p>Check out <a href="http://www.mightymillion.com" target="_blank">http://www.mightymillion.com</a> today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/05/10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Star Wars Turns 30!</title>
		<link>http://www.72dpi.net.au/2007/05/star-wars-turns-30/</link>
		<comments>http://www.72dpi.net.au/2007/05/star-wars-turns-30/#comments</comments>
		<pubDate>Sat, 05 May 2007 12:16:06 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://test.72dpi.net.au/?p=14</guid>
		<description><![CDATA[On this day in history, in a decade far far ago, the legend of Star Wars was bestowed upon the masses. On May 25th, 1977 the first screening of Star Wars was shown to 32 movie theatres across america.
From May 24 to May 28 2007, the world&#8217;s biggest Star Wars party, is going to be [...]]]></description>
			<content:encoded><![CDATA[<p><img src="images/starwars.jpg" border="0" alt="happy Birthday Star Wars" hspace="0" vspace="0" width="200" height="133" align="right" />On this day in history, in a decade far far ago, the legend of Star Wars was bestowed upon the masses. On May 25th, 1977 the first screening of Star Wars was shown to 32 movie theatres across america.</p>
<p>From May 24 to May 28 2007, the world&#8217;s biggest <em>Star Wars</em> party, is going to be held at the Los Angeles Convention Center. CELEBRATION IV is going to be huge, with guest appearances, stores, the &#8220;Stormtrooper Olympics&#8221; and more.</p>
<p>Check out <a href="http://www.starwars.com/celebration/" target="_blank">http://www.starwars.com/celebration/</a> for full details.</p>
<p>Happy Birthday Star Wars!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.72dpi.net.au/2007/05/star-wars-turns-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
