<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
	<channel>
<title>baredog rss feed</title><link>http://www.baredog.com/index.php</link><description>baredog news&#x21;</description><dc:language>en</dc:language><dc:creator>info@baredog.com</dc:creator><dc:rights>Copyright 2008 baredog.com</dc:rights><dc:date>2008-04-16T23:02:54+12:00</dc:date><admin:generatorAgent rdf:resource="http://www.realmacsoftware.com/" />
<admin:errorReportsTo rdf:resource="mailto:info@baredog.com" /><sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
<lastBuildDate>Wed, 16 Apr 2008 23:20:28 +1200</lastBuildDate><item><title>addon examples</title><dc:creator>info@baredog.com</dc:creator><category>addon</category><dc:date>2008-04-16T23:02:54+12:00</dc:date><link>http://www.baredog.com/baredog.content/weblog_files/d56783631e6e90e85678c9085d5cc050-6.php#unique-entry-id-6</link><guid isPermaLink="true">http://www.baredog.com/baredog.content/weblog_files/d56783631e6e90e85678c9085d5cc050-6.php#unique-entry-id-6</guid><content:encoded><![CDATA[We have added a new addon example site, to show you how our addon's 'may' look within your solution.  The design + colouring is all controlled through CSS, which means we can format the look for your brand / company<br /><br /><a href="http://www.baredog.com/examples/" rel="external" title="baredog addon examples">check it out here<br /><br /></a><a href="http://www.baredog.com/examples/" rel="external" title="baredog addon examples"><img class="imageStyle" alt="example" src="http://www.baredog.com/baredog.content/weblog_files/page9_blog_entry6_1.jpg" width="480" height="199"/></a><br />]]></content:encoded></item><item><title>new look site</title><dc:creator>info@baredog.com</dc:creator><category>bardog</category><dc:date>2008-04-16T22:46:09+12:00</dc:date><link>http://www.baredog.com/baredog.content/weblog_files/b68e39322b8cdbdc72ed7a3e6e642b46-5.php#unique-entry-id-5</link><guid isPermaLink="true">http://www.baredog.com/baredog.content/weblog_files/b68e39322b8cdbdc72ed7a3e6e642b46-5.php#unique-entry-id-5</guid><content:encoded><![CDATA[We have just launch our new look site.  It is now more "google" friendly to enhance our search rankings and thus more traffic being directed to our site.  Including well formed CSS, HTML, an auto generated sitemap etc., this is a great example of what we can offer you.  <br /><br />What you see here or within our addon example site is available to you!]]></content:encoded></item><item><title>mailer addon update</title><dc:creator>info@baredog.com</dc:creator><category>addon</category><dc:date>2008-04-03T22:05:31+13:00</dc:date><link>http://www.baredog.com/baredog.content/weblog_files/bf6eff9a22b84bb3eff9041889778885-4.php#unique-entry-id-4</link><guid isPermaLink="true">http://www.baredog.com/baredog.content/weblog_files/bf6eff9a22b84bb3eff9041889778885-4.php#unique-entry-id-4</guid><content:encoded><![CDATA[<div class="image-left"><img class="imageStyle" alt="mailer" src="http://www.baredog.com/baredog.content/weblog_files/page9_blog_entry4_1.jpg" width="80" height="60"/></div>When we host your site, a cron job (geek talk for a scheduled task) can be set up to auto send emails in batches.  This allows the mailer list to be scalable for both small customer lists and large lists to handle 1 email to over 1000's]]></content:encoded></item><item><title>using php to generate transparent thumbnails</title><dc:creator>info@baredog.com</dc:creator><category>code example</category><dc:date>2008-03-25T11:08:27+13:00</dc:date><link>http://www.baredog.com/baredog.content/weblog_files/05f2f1bb5edb53a3f624ed7a550a9931-3.php#unique-entry-id-3</link><guid isPermaLink="true">http://www.baredog.com/baredog.content/weblog_files/05f2f1bb5edb53a3f624ed7a550a9931-3.php#unique-entry-id-3</guid><content:encoded><![CDATA[I can't take any credit for writing the code below and can't remember where I got it from, but I think it is worth sharing as I know how painful it was trying to generate thumbnails with a 'decent' transparent background.  <br /><br />This works and has only been tested with *.PNG files only.  The important bit is to use the <strong>imagecreatetruecolortransparent()</strong> function detailed below, instead of php's standard <strong>imagecreatetruecolor()</strong>.  The new function does a similar thing, but also creates a new image with an <em>actual</em> transparent background and not a specific colour (normally black and then try to filter that colour out)... <br /><br />Just try it, it works great... <br /><br />$w = 50; //width<br />$h = 50; //height<br />$srcFile = ""; //selected file<br /><br />$dest = imagecreatetruecolortransparent($w, $h);<br />$src = imagecreatefrompng($srcFile);<br /><br />imagecopyresampled($dest, $src, 0, 0, 0, 0, $w, $h, $size[0], $size[1]);<br /><br />return $dest;<br /><br />function imagecreatetruecolortransparent($x, $y) <br />{ <br />   $i = imagecreatetruecolor($x, $y); <br />	$b = imagecreatefromstring(base64_decode(blankpng())); <br />	imagealphablending($i, false); <br />	imagesavealpha($i, true); <br />	imagecopyresized($i, $b ,0 ,0 ,0 ,0 ,$x, $y, imagesx($b), imagesy($b)); <br />	return $i; <br />} <br /><br />function blankpng() <br />{ <br />	$c = "iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAAC";<br />	$c .= "M/rhtAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29m"; <br />	$c .= "dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAA";<br />	$c .= "DqSURBVHjaYvz//z/DYAYAAcTEMMgBQAANegcCBNCg"; <br />	$c .= "dyBAAA16BwIE0KB3IEAADXoHAgTQoHcgQAANegcCB";<br />	$c .= "NCgdyBAAA16BwIE0KB3IEAADXoHAgTQoHcgQAAN"; <br />	$c .= "egcCBNCgdyBAAA16BwIE0KB3IEAADXoHAgTQoHcgQ";<br />	$c .= "AANegcCBNCgdyBAAA16BwIE0KB3IEAADXoHAgTQ"; <br />	$c .= "oHcgQAANegcCBNCgdyBAAA16BwIE0KB3IEAADXoHAg";<br />	$c .= "TQoHcgQAANegcCBNCgdyBAAA16BwIE0KB3IEAA"; <br />	$c .= "DXoHAgTQoHcgQAANegcCBNCgdyBAgAEAMpcDTTQWJ";<br />	$c .= "VEAAAAASUVORK5CYII="; <br />	return $c; <br />} ]]></content:encoded></item><item><title>album addon</title><dc:creator>info@baredog.com</dc:creator><category>addon</category><dc:date>2008-03-17T00:08:19+13:00</dc:date><link>http://www.baredog.com/baredog.content/weblog_files/ab956af310bd5f69f35328bc67bb50ad-2.php#unique-entry-id-2</link><guid isPermaLink="true">http://www.baredog.com/baredog.content/weblog_files/ab956af310bd5f69f35328bc67bb50ad-2.php#unique-entry-id-2</guid><content:encoded><![CDATA[<div class="image-left"><img class="imageStyle" alt="album" src="http://www.baredog.com/baredog.content/weblog_files/page9_blog_entry2_1.jpg" width="80" height="60"/></div>We have now enhanced the album caching so you don't have to keep requesting flickr for the photos every time you want to view another album.  Now each album will load faster when 'reopening' it or opening albums with photos opened previously   ]]></content:encoded></item><item><title>new addons</title><dc:creator>info@baredog.com</dc:creator><category>addon</category><dc:date>2008-03-12T20:29:50+13:00</dc:date><link>http://www.baredog.com/baredog.content/weblog_files/7bc8e51d21df0d2120ca09b9bb71d8ba-1.php#unique-entry-id-1</link><guid isPermaLink="true">http://www.baredog.com/baredog.content/weblog_files/7bc8e51d21df0d2120ca09b9bb71d8ba-1.php#unique-entry-id-1</guid><content:encoded><![CDATA[go check out the new addon that can be added to your site.. <div class="image-right"><img class="imageStyle" alt="admin" src="http://www.baredog.com/baredog.content/weblog_files/page9_blog_entry1_1.jpg" width="80" height="60"/></div><br /> - admin addon<br /> - album addon<br /> - event addon<br /> - mailer addo<br /> - shop addon<br /> - snippet addon<br /><br />They are all still work in progress so any thoughts and comments are much appreciated..  flick us an email at <a href="mailto:info@baredog.com" rel="self" title="email us">info@baredog.com</a><br /><br />cheers]]></content:encoded></item></channel>
</rss>