<?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>RayRay Is Forever &#187; Gallery Features</title>
	<atom:link href="http://blog.rayrayisforever.com/category/gallery-features/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.rayrayisforever.com</link>
	<description>Boyfriends Are Temporary!</description>
	<lastBuildDate>Mon, 17 May 2010 19:21:05 +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>Cooliris Embed Wall using the Hardcoredreamer Gallery feeds</title>
		<link>http://blog.rayrayisforever.com/2009/03/testing-cooliris-embed-wall</link>
		<comments>http://blog.rayrayisforever.com/2009/03/testing-cooliris-embed-wall#comments</comments>
		<pubDate>Sun, 29 Mar 2009 07:46:26 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=167</guid>
		<description><![CDATA[Check out below to see the Cooliris Embed Wall work with the gallery!


]]></description>
			<content:encoded><![CDATA[<p>Check out below to see the Cooliris Embed Wall work with the gallery!<br />
<span id="more-167"></span><br />
<object width="760" height="450" data="http://apps.cooliris.com/embed/cooliris.swf" type="application/x-shockwave-flash"><param name="flashvars" value="feed=http://www.hardcoredreamer.com/feeds/kandieland3.xml" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2009/03/testing-cooliris-embed-wall/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Lighttpd to serve Gallery 2 static content with redirect rules</title>
		<link>http://blog.rayrayisforever.com/2009/03/using-lighttpd-to-serve-gallery-2-static-content-with-redirect-rules</link>
		<comments>http://blog.rayrayisforever.com/2009/03/using-lighttpd-to-serve-gallery-2-static-content-with-redirect-rules#comments</comments>
		<pubDate>Wed, 04 Mar 2009 03:48:17 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Webserver]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=117</guid>
		<description><![CDATA[I&#8217;ve been testing this out and wanted to share it. It provided with a noticeable increase in certain items loading in specific ways that always bothered me.

This use rewrite rules in the .htaccess file in the folder where your gallery main.php resides.
This does not use mod_proxy on purpose because setting up mod_proxy securely is more [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been testing this out and wanted to share it. It provided with a noticeable increase in certain items loading in specific ways that always bothered me.</p>
<ol>
<li>This use rewrite rules in the .htaccess file in the folder where your gallery main.php resides.</li>
<li>This does not use mod_proxy on purpose because setting up mod_proxy securely is more work than it is worth for this method.</li>
<li>This requires a second HTTP server, which can be on your own server or elsewhere. I chose <noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://www.lighttpd.net"   target="_blank">Lighttpd</a></noindex> because of its reputation and because I already had it running on my server. It is truly light and can serve an incredible amount of requests with low CPU or RAM usage. I mean LOW. I could describe how to set it up if anybody wants, but its incredibly easy.</li>
<li> This could conceivably be expanded to include more files, if you want. I&#8217;m sure the rewrite rules could be improved. I&#8217;m not a master at them like the G2 team.</li>
<li> This is great if you have a second hard drive on your server for the increased I/O capabilities.</li>
</ol>
<p>That said, you can have Lighttpd running on your server on a second IP address, and therefore domain name/subdomain name, or on another port such as 81. My gallery is on the domain hardcoredreamer.com so I created a DNS A record for fast.hardcoredreamer.com to point to the IP where my Lighttpd process is on.</p>
<p><strong>lighttpd.conf:</strong><br />
If you are running lighttpd on a different port, you would just need to set the document root to be the folder of your web root.<br />
<code>server.document-root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= &quot;/location/of/my/website/root/&quot;</code></p>
<p>Running on a subdomain:<br />
<pre><code>$HTTP[&quot;host&quot;] == &quot;fast.hardcoredreamer.com&quot; {
server.document-root = &quot;/location/of/my/website/root/&quot;
}</code></pre></p>
<p>For security reasons:<br />
<code>url.access-deny&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = ( &quot;~&quot;, &quot;.inc&quot;, &quot;.htaccess&quot;, &quot;.ini&quot;, &quot;.php&quot; )</code></p>
<p>This will deny somebody access to the config.php with my setup password or .htaccess files. I did not enable Lighttpd to be able to even use PHP, so there is no point in it trying to access them. This means Lighttpd stays &#8220;light&#8221;.</p>
<p>Inside of my /gallery/.htaccess file I added these rewrite rules [note if your gallery folder is called something else, use that name]:</p>
<p><pre><code>RewriteCond %{REQUEST_FILENAME} .(js|css|gif|jpg|png)$ [NC]
RewriteCond %{REQUEST_URI} /gallery/themes/$
RewriteRule ^(.*)$ http://fast.hardcoredreamer.com/gallery/themes$1 [R,L]
RewriteCond %{REQUEST_FILENAME} .(js|css)$ [NC]
RewriteRule ^(.*)$ http://fast.hardcoredreamer.com/gallery%1/$1 [R,L]
RewriteCond %{REQUEST_FILENAME} .png [NC]
RewriteCond %{REQUEST_URI} /gallery/modules/icons/iconpacks/$
RewriteRule ^(.*)$ http://fast.hardcoredreamer.com/gallery/modules/icons/iconpacks$1 [R,L]</code></pre></p>
<p>Explanation: My problem was that my silk icon pack icons loaded incredibly slow. They&#8217;re small files and I have a 30Mbit connection from my server to home &#8211; I shouldn&#8217;t actually see them loading up from top to bottom. This redirects any requests for the .png icons in the icon pack to another server. What this does is redirects the requests to Lighttpd which in turn responds with the icons &amp; themes .png, .css, and .js files in parallel to Apache serving all of the other content such as the main pages and thumbnails.</p>
<p>If you are running Lighttpd or another server on a different port, you would just change the RewriteRule to point to your domain/ip/anything:81 or whichever port you choose.</p>
<p>I&#8217;m sure this could be expanded upon somehow. I&#8217;m sure this makes little sense to many people. I&#8217;ve found performance gains by using mysqld_multi to run simultaneously a separate database instance on a second drive with its own innodb caches as well as another instance for Firestats (since it *severely* degrades performance when its sleeping threads tie up your gallery2/other threads.) If anyone is interested in that, let me know.</p>
<p>If you decide you want to try this out, watch your Lighttpd logs to see if the rules you&#8217;ve modified for your own server are indeed serving requests. You can also copy your /gallery folder and put that on another drive and just let Lighttpd have access to that one folder, but i&#8217;m also using Lighttpd to serve static files for my wordpress blog and anything else I can think of. Using redirect rules, the end user does not see that such and such file is actually located elsewhere.</p>
<p>I&#8217;m willing to say that if you use iconpacks, add in the rule for the .png files in your own .htaccess and see if it works. If your gallery folder is called gallery2 try:<br />
<pre><code>RewriteCond %{REQUEST_FILENAME} .png [NC]
RewriteCond %{REQUEST_URI} /gallery2/modules/icons/iconpacks/$
RewriteRule ^(.*)$ http://fast.hardcoredreamer.com/gallery/modules/icons/iconpacks$1 [R,L]</code></pre></p>
<p>Caveat: Gallery2 will change your .htaccess file if you tell it to, erasing any additions you make.</p>
<p>If I could just somehow figure out how to get the thumbnails sent through a static server, I&#8217;d be quite happy. Compared to Lighttpd, Apache is a lumbering beast filled with features but resource intensive.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2009/03/using-lighttpd-to-serve-gallery-2-static-content-with-redirect-rules/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installed Lighttpd for super fast uses!</title>
		<link>http://blog.rayrayisforever.com/2008/11/installed-lighttpd-for-super-fast-uses</link>
		<comments>http://blog.rayrayisforever.com/2008/11/installed-lighttpd-for-super-fast-uses#comments</comments>
		<pubDate>Sun, 02 Nov 2008 07:36:23 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[Server Blog]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=74</guid>
		<description><![CDATA[
I adopted a cute lil&#8217; cow fetus
from Fetusmart! Hooray fetus! 
Wow! Its just amazing how little memory Lighttpd uses to serve out thousands of tiny .gif files. Apache would generate a memory intensive process for every request. I&#8217;ll be able to find creative uses for this in the future.
I&#8217;ve updated us to the SVN Gallery [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://fast.cyborgcow.net/fetusmart/henry29.gif" alt="henry29 Installed Lighttpd for super fast uses!" align="left" title="Installed Lighttpd for super fast uses!" /><a href="http://bunnysnoog.cyborgcow.net/index.html" onclick="pageTracker._trackPageview('/outgoing/bunnysnoog.cyborgcow.net/index.html?referer=');"><br />
I adopted a cute lil&#8217; cow fetus<br />
from Fetusmart! Hooray fetus! </a></p>
<p>Wow! Its just amazing how little memory Lighttpd uses to serve out thousands of tiny .gif files. Apache would generate a memory intensive process for every request. I&#8217;ll be able to find creative uses for this in the future.</p>
<p>I&#8217;ve updated us to the SVN Gallery 2 that has the Gallery Core at 2.3. It seems really fast. Firestats slows down the gallery, and I wish that it would use PostgreSQL as an option so that the database writes, even in innodb, don&#8217;t slow it down so much. I get great stats from Firestats for both Wordpress and Gallery 2, however its speed degradation is pretty enormous. I gave up trying mod_mem_cache once I realized that I could never speed it up to the degree that it runs without Firestats. One idea is to run a separate MySQL server, but this seems inelegant. I may just end up trying it out, or putting a Firestats database on a VPN.</p>
<p>I still would like to finish sorting and updating all of the pictures. I can add so many recent pictures that Gordon and Cubbie have taken, but work consumes my life at the moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/11/installed-lighttpd-for-super-fast-uses/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Earthdance Videos from Lostinthestarzzz.net</title>
		<link>http://blog.rayrayisforever.com/2008/09/earthdance-videos-from-lostinthestarzzznet</link>
		<comments>http://blog.rayrayisforever.com/2008/09/earthdance-videos-from-lostinthestarzzznet#comments</comments>
		<pubDate>Tue, 16 Sep 2008 08:56:24 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Best Of Gallery]]></category>
		<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[My friends]]></category>
		<category><![CDATA[Embed]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=55</guid>
		<description><![CDATA[You can see the 321 pictures and videos from Earthdance 2008 from Lostinthestarzzz.net here!
Earth Dance Video Player!
Below this cut, however, you can see all of the videos from a neat flash player!


]]></description>
			<content:encoded><![CDATA[<p><noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://www.lostinthestarzzz.net/v/gallery/lostin/Event+Photos_0/2008/Earthdance/"  >You can see the 321 pictures and videos from Earthdance 2008 from Lostinthestarzzz.net here!</a></noindex></p>
<p><noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://www.lostinthestarzzz.net/earthdance_videos.html"  >Earth Dance Video Player!</a></noindex></p>
<p>Below this cut, however, you can see all of the videos from a neat flash player!<br />
<span id="more-55"></span></p>
<div id="videoDiv" style="width: 700px; height: 850px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="100%" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="E2Demo" /><param name="bgcolor" value="#000000" /><param name="align" value="middle" /><param name="flashvars" value="xmlUrl=http://www.hardcoredreamer.com/gallery/mediaRss.php&amp;g2_itemId=669300&amp;color1=0x999999&amp;color2=0x333333&amp;albumSelect=false&amp;siteInfoText=Earthdance2008" /><param name="src" value="http://www.hardcoredreamer.com/gallery/E2.swf" /><embed type="application/x-shockwave-flash" width="100%" height="100%" src="http://www.hardcoredreamer.com/gallery/E2.swf" flashvars="xmlUrl=http://www.hardcoredreamer.com/gallery/mediaRss.php&amp;g2_itemId=669300&amp;color1=0x999999&amp;color2=0x333333&amp;albumSelect=false&amp;siteInfoText=Earthdance2008" align="middle" bgcolor="#000000" name="E2Demo"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/09/earthdance-videos-from-lostinthestarzzznet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallery Statistics!</title>
		<link>http://blog.rayrayisforever.com/2008/07/gallery-statistics</link>
		<comments>http://blog.rayrayisforever.com/2008/07/gallery-statistics#comments</comments>
		<pubDate>Mon, 21 Jul 2008 05:11:03 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[Server Blog]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=34</guid>
		<description><![CDATA[


Statistic
Value


Number of Items
134,116


Number of Albums
1,998


Total Views
3,640,050


Total Users
71






Item
Size (Reported)


Gallery
86.71 GB


» Albums
55.47 GB (55.44 GB)


» Derivatives
31.16 GB (31.29 GB)


Database
254.95 MB


Total
86.97 GB



]]></description>
			<content:encoded><![CDATA[<table class="gbDataTable" style="height: 102px;" border="0" width="404">
<tbody>
<tr>
<th width="50%">Statistic</th>
<th width="50%">Value</th>
</tr>
<tr class="gbEven">
<td>Number of Items</td>
<td>134,116</td>
</tr>
<tr class="gbOdd">
<td>Number of Albums</td>
<td>1,998</td>
</tr>
<tr class="gbEven">
<td>Total Views</td>
<td>3,640,050</td>
</tr>
<tr class="gbOdd">
<td>Total Users</td>
<td>71</td>
</tr>
</tbody>
</table>
<table class="gbDataTable" style="height: 135px;" border="0" width="404">
<tbody>
<tr>
<th width="50%">Item</th>
<th width="50%">Size (Reported)</th>
</tr>
<tr class="gbEven">
<td>Gallery</td>
<td>86.71 GB</td>
</tr>
<tr class="gbOdd">
<td>» Albums</td>
<td>55.47 GB (55.44 GB)</td>
</tr>
<tr class="gbEven">
<td>» Derivatives</td>
<td>31.16 GB (31.29 GB)</td>
</tr>
<tr class="gbOdd">
<td>Database</td>
<td>254.95 MB</td>
</tr>
<tr class="gbEven">
<td>Total</td>
<td>86.97 GB</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/07/gallery-statistics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browse the gallery with Piclens</title>
		<link>http://blog.rayrayisforever.com/2008/06/browse-the-gallery-with-piclens</link>
		<comments>http://blog.rayrayisforever.com/2008/06/browse-the-gallery-with-piclens#comments</comments>
		<pubDate>Fri, 27 Jun 2008 02:45:50 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=29</guid>
		<description><![CDATA[Using the Piclens plugin with Firefox, you can browse any of the galleries in 3D!

]]></description>
			<content:encoded><![CDATA[<p>Using the <noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://www.piclens.com/"   target="_self">Piclens</a></noindex> plugin with <noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://www.spreadfirefox.com/"   target="_blank">Firefox</a></noindex>, you can browse any of the galleries in 3D!</p>
<p><img src="http://www.hardcoredreamer.com/blog/wp-content/uploads/2008/06/piclens.jpg" title="PicLens Support" alt="HardcoreDreamer Gallery With Piclens" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/06/browse-the-gallery-with-piclens/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cameraphone Gallery Auto Import</title>
		<link>http://blog.rayrayisforever.com/2008/06/cameraphone-gallery-auto-import</link>
		<comments>http://blog.rayrayisforever.com/2008/06/cameraphone-gallery-auto-import#comments</comments>
		<pubDate>Thu, 26 Jun 2008 20:15:44 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=28</guid>
		<description><![CDATA[If you send your pictures from your camera phone to cameraphone(at)hardcoredreamer.com with the word pic in the subject line, it will be auto-imported into the gallery. This should be fun, assuming we don&#8217;t get spammed.

]]></description>
			<content:encoded><![CDATA[<p>If you send your pictures from your camera phone to <strong>cameraphone(at)hardcoredreamer.com</strong> with the word <strong>pic </strong>in the subject line, it will be auto-imported into the gallery. This should be fun, assuming we don&#8217;t get spammed.</p>
<p><img src="http://hardcoredreamer.com/gallery/d/652358-2/Photo-0071.jpg" alt="My three kitties" width="640" height="480" title="Cameraphone Gallery Auto Import" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/06/cameraphone-gallery-auto-import/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I made a new favicon.</title>
		<link>http://blog.rayrayisforever.com/2008/05/i-made-a-new-favicon</link>
		<comments>http://blog.rayrayisforever.com/2008/05/i-made-a-new-favicon#comments</comments>
		<pubDate>Thu, 29 May 2008 02:51:16 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[radiation]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=20</guid>
		<description><![CDATA[I&#8217;ve had the old radiation icon for this site for years now, and decided to re-vamp it. Unfortunately, this wouldn&#8217;t scale down well, so instead I modified an animated .gif I made.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had the old radiation icon for this site for years now, and decided to re-vamp it. Unfortunately, this wouldn&#8217;t scale down well, so instead I modified an animated .gif I made.</p>

<a href="http://blog.rayrayisforever.com/2008/05/i-made-a-new-favicon/favicon"  title='favicon'><img width="16" height="16" src="http://blog.rayrayisforever.com/wp-content/uploads/2008/05/favicon.png" class="attachment-thumbnail" alt="favicon I made a new favicon." title="favicon" /></a>
<a href="http://blog.rayrayisforever.com/2008/05/i-made-a-new-favicon/obey"  title='obey'><img width="100" height="100" src="http://blog.rayrayisforever.com/wp-content/uploads/2008/05/obey.gif" class="attachment-thumbnail" alt="obey I made a new favicon." title="obey" /></a>
<a href="http://blog.rayrayisforever.com/2008/05/i-made-a-new-favicon/faviconbig"  title='faviconbig'><img width="150" height="150" src="http://blog.rayrayisforever.com/wp-content/uploads/2008/05/faviconbig-150x150.png" class="attachment-thumbnail" alt="faviconbig 150x150 I made a new favicon." title="faviconbig" /></a>

]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/05/i-made-a-new-favicon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Every thumbnail and resize is built!</title>
		<link>http://blog.rayrayisforever.com/2008/05/every-thumbnail-and-resize-is-built</link>
		<comments>http://blog.rayrayisforever.com/2008/05/every-thumbnail-and-resize-is-built#comments</comments>
		<pubDate>Wed, 28 May 2008 09:48:37 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[Server Blog]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[munin]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=19</guid>
		<description><![CDATA[Success! Every thumbnail, resize, and movie still has been built! It took quite a bit of work and some switching around of certain plugins, but the gallery does not need to generate any images when a picture is requested.

In the meantime, I have munin monitoring the server and I am very pleased with how smoothly [...]]]></description>
			<content:encoded><![CDATA[<p>Success! Every thumbnail, resize, and movie still has been built! It took quite a bit of work and some switching around of certain plugins, but the gallery does not need to generate any images when a picture is requested.</p>
<p><img src="http://www.hardcoredreamer.com/munin/cyborgcow.net/new.cyborgcow.net-apache_processes-day.png" alt="Apache Processes By Day" width="491" height="286" title="Every thumbnail and resize is built!" /></p>
<p>In the meantime, I have <noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://www.cyborgcow.net/munin/"   target="_blank">munin monitoring the server</a></noindex> and I am very pleased with how smoothly everything is running. I have given MySQL much more ram than it needs for the sake of performance, and have been watching the free memory to make sure there is enough for http processes. Of course, I was able to free up many processes by using mod_security smartly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/05/every-thumbnail-and-resize-is-built/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook App and Desktop Wallpapers</title>
		<link>http://blog.rayrayisforever.com/2008/05/facebook-app-and-desktop-wallpapers</link>
		<comments>http://blog.rayrayisforever.com/2008/05/facebook-app-and-desktop-wallpapers#comments</comments>
		<pubDate>Tue, 20 May 2008 02:50:44 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=14</guid>
		<description><![CDATA[Would you like to add your gallery photos to your facebook? Well just create an RSS feed for 4 items and install this app! Also, if you have Windows, you can have your gallery as a rotating desktop background with GLoSS!
]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Would you like to add your gallery photos to your facebook? Well just create an RSS feed for 4 items and <noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://apps.facebook.com/galleryphotos/" rel="nofollow"  >install this app</a></noindex>! Also, if you have Windows, you can have your gallery as a rotating desktop background with <noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://gloss.ildica.com/"  >GLoSS</a></noindex>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/05/facebook-app-and-desktop-wallpapers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embed Flash Slideshow in your Myspace, Livejournal, or website</title>
		<link>http://blog.rayrayisforever.com/2008/05/embed-flash-slideshow</link>
		<comments>http://blog.rayrayisforever.com/2008/05/embed-flash-slideshow#comments</comments>
		<pubDate>Sun, 18 May 2008 14:19:41 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Livejournal]]></category>
		<category><![CDATA[Myspace]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/blog/?p=12</guid>
		<description><![CDATA[Here are some instructions to get your albums to show up as a flash slideshow!


Here is how to embed any of your albums as a flash slideshow in your Myspace, Livejournal, or website that accepts the &#60;embed&#62; tag for flash!
First, go to your album that you wish to have displayed as a random slideshow. In [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some instructions to get your albums to show up as a flash slideshow!</p>
<p><span id="more-12"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="160" height="160" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="minislide" /><param name="align" value="middle" /><param name="flashvars" value="xmlUrl=http://www.hardcoredreamer.com/gallery/xml.php?g2_itemId=35490&amp;shuffle=true&amp;showDropShadow=true&amp;delay=3&amp;transInType=Fade&amp;transOutType=Random&amp;showTitle=bottom" /><param name="src" value="http://www.hardcoredreamer.com/gallery/minislideshow.swf" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="160" height="160" src="http://www.hardcoredreamer.com/gallery/minislideshow.swf" wmode="transparent" flashvars="xmlUrl=http://www.hardcoredreamer.com/gallery/xml.php?g2_itemId=35490&amp;shuffle=true&amp;showDropShadow=true&amp;delay=3&amp;transInType=Fade&amp;transOutType=Random&amp;showTitle=bottom" align="middle" name="minislide"></embed></object></p>
<p>Here is how to embed any of your albums as a flash slideshow in your Myspace, Livejournal, or website that accepts the &lt;embed&gt; tag for flash!</p>
<p>First, go to your album that you wish to have displayed as a random slideshow. In the sidebar, you will see:</p>
<p><noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/../../gallery/srss/35490"><img style="border: 0pt none;" src="http://www.hardcoredreamer.com/gallery/modules/icons/iconpacks/silk/rss_feed.png"  class="gbAdminLink gbLink-rss_SimpleRender"  alt="RSS Icon" width="16" height="16" title="Embed Flash Slideshow in your Myspace, Livejournal, or website" />RSS Feed for this Album</a></noindex></p>
<p>I chose my downtown Phoenix Album. When you click this, in the title bar it will show /srss/35490 for my album, and a number specific to yours. This number is all  you need to identify which album you want to be displayed.Use that number to replace the 35490 in the following HTML with the number that corresponds with yours:</p>
<p>&lt;embed width=&#8221;160&#8243; height=&#8221;160&#8243; align=&#8221;middle&#8221; pluginspage=&#8221;http://www.macromedia.com/go/getflashplayer&#8221; type=&#8221;application/x-shockwave-flash&#8221; name=&#8221;minislide&#8221; wmode=&#8221;transparent&#8221; quality=&#8221;high&#8221; flashvars=&#8221;xmlUrl=http://www.hardcoredreamer.com/gallery/xml.php?g2_itemId=<strong>35490</strong>&amp;shuffle=true&amp;showDropShadow=true&amp;delay=3&amp;transInType=Fade&amp;transOutType=Random&amp;showTitle=bottom&#8221; src=&#8221;http://www.hardcoredreamer.com/gallery/minislideshow.swf&#8221;&gt;&lt;/embed&gt;</p>
<p>I hope you see the 35490 in there, because that is all you&#8217;ll have to replace in order to post this! <noindex><a rel="nofollow" href="http://blog.rayrayisforever.com/goto/http://www.flashyourweb.com/dokuwiki/doku.php?id=xmlmini"   target="_blank">The original instructions can be found at this website</a></noindex>, and I have the mini slideshow flash file located here for you: <em>http://www.hardcoredreamer.com/gallery/minislideshow.swf</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/05/embed-flash-slideshow/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Map Integration!</title>
		<link>http://blog.rayrayisforever.com/2008/05/google-map-integration</link>
		<comments>http://blog.rayrayisforever.com/2008/05/google-map-integration#comments</comments>
		<pubDate>Sat, 17 May 2008 07:04:26 +0000</pubDate>
		<dc:creator>RayRay</dc:creator>
				<category><![CDATA[Gallery Features]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[maps]]></category>

		<guid isPermaLink="false">http://www.hardcoredreamer.com/?p=3</guid>
		<description><![CDATA[
http://www.hardcoredreamer.com/gallery/map/
Any item can have GPS coordinates now!
GREEN:  Default Photo Color
ORANGE:  CLUB
PURPLE:  RAVE
RED:  Default Group Color
YELLOW:  Default Album Color
WHITE: Adventure
GRAY:  Vacation
BLUE:  Family
AQUA:  To Be Decided
BLACK:  To Be Decided
All you have to do is go to &#8220;Edit album&#8221; or &#8220;Edit picture&#8221; and there is now a Google Map [...]]]></description>
			<content:encoded><![CDATA[<p><a href="../gallery/map/"><img src="../gallery/d/612886-10/map" border="0" alt=" Google Map Integration!"  title="Google Map Integration!" /></p>
<p>http://www.hardcoredreamer.com/gallery/map/</a></p>
<p>Any item can have GPS coordinates now!</p>
<p>GREEN: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_GREEN.png" alt="none" title="Google Map Integration!" /> Default Photo Color<br />
ORANGE: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_ORANGE.png" alt="none" title="Google Map Integration!" /> CLUB<br />
PURPLE: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_PURPLE.png" alt="none" title="Google Map Integration!" /> RAVE<br />
RED: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_RED.png" alt="none" title="Google Map Integration!" /> Default Group Color<br />
YELLOW: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_YELLOW.png" alt="none" title="Google Map Integration!" /> Default Album Color<br />
WHITE: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_WHITE.png" alt="none" title="Google Map Integration!" />Adventure<br />
GRAY: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_GRAY.png" alt="none" title="Google Map Integration!" /> Vacation<br />
BLUE: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_BLUE.png" alt="none" title="Google Map Integration!" /> Family<br />
AQUA: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_AQUA.png" alt="none" title="Google Map Integration!" /> To Be Decided<br />
BLACK: <img src="../gallery/modules/map/images/markers/smallpushpins/marker_BLACK.png" alt="none" title="Google Map Integration!" /> To Be Decided</p>
<p>All you have to do is go to &#8220;Edit album&#8221; or &#8220;Edit picture&#8221; and there is now a Google Map section where you can look up the GPS coordinates by Address or by using a map that will help you find where the party was!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rayrayisforever.com/2008/05/google-map-integration/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

