<?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>Lepolt.com &#187; code</title>
	<atom:link href="http://www.lepolt.com/blog/category/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lepolt.com/blog</link>
	<description>Random stuff from my head to your computer</description>
	<lastBuildDate>Sat, 27 Mar 2010 03:13:20 +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>My First Try at a WordPress Plugin</title>
		<link>http://www.lepolt.com/blog/2008/11/15/my-first-try-at-a-wordpress-plugin/</link>
		<comments>http://www.lepolt.com/blog/2008/11/15/my-first-try-at-a-wordpress-plugin/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 19:30:03 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.lepolt.com/blog/?p=149</guid>
		<description><![CDATA[In a previous post I talked about how I could never seem to get my photo albums to fit into my webpage templates quite the way I wanted to&#8230;so I ended up writing my own PHP script that tapped into my Picasa Web Albums to do that for me. 
Since then I decided to take [...]]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://www.lepolt.com/blog/2008/10/28/integrating-picasa-web-albums-into-my-site-with-php/">previous post</a> I talked about how I could never seem to get my photo albums to fit into my webpage templates quite the way I wanted to&#8230;so I ended up writing my own PHP script that tapped into my Picasa Web Albums to do that for me. </p>
<p>Since then I decided to take it a step further and write a WordPress plugin that did exactly the same thing&#8230;only was much easier for novice users to integrate in their webpages. </p>
<p>The result, <strong>Get Picasa Albums.</strong> Available here:</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/get-picasa-albums/">WordPress plugin download</a></li>
<li><a href="http://www.lepolt.com/blog/downloads/get-picasa-albums/">Plugin homepage</a></li>
</ul>
<p>So, if anyone out there is looking for some way to integrate their Picasa Web Albums into their WordPress site, this should help. Enjoy!</p>
<p>See the plugin used in action <a href="http://www.lepolt.com/blog/pictures">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lepolt.com/blog/2008/11/15/my-first-try-at-a-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Integrating Picasa Web Albums Into my Site with PHP</title>
		<link>http://www.lepolt.com/blog/2008/10/28/integrating-picasa-web-albums-into-my-site-with-php/</link>
		<comments>http://www.lepolt.com/blog/2008/10/28/integrating-picasa-web-albums-into-my-site-with-php/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 21:37:33 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://www.lepolt.com/blog/?p=140</guid>
		<description><![CDATA[I like to think that I take a moderate number of digital photos, and I&#8217;m always looking to store them on my computer. I use iPhoto for organization, which I believe is a great application. I&#8217;ve always liked to share my photos online with friends and family (and whatever other creeps find the links), but [...]]]></description>
			<content:encoded><![CDATA[<p>I like to think that I take a moderate number of digital photos, and I&#8217;m always looking to store them on my computer. I use iPhoto for organization, which I believe is a great application. I&#8217;ve always liked to share my photos online with friends and family (and whatever other creeps find the links), but I never could find a solid display method that did what I wanted (thumbnail page, higher res images, etc.). I used Photoshop for a while, which offers some decent page templates and automated creation of thumbnails and high(er) resolution images, but I still had to manually add a link from my page to the album page. I used Dreamweaver for a while, which also offers some decent page templates, but again, I was still stuck manually adding a new link to the new album page. In addition, none of the templates ever matched the template I used for the rest of the site; ie, there was too much manual work required!</p>
<p>I tossed around the idea of writing my own PHP script to pull images from a directory, generate thumbnails, create pages, etc., but it always seemed like too much work and I never got around to doing it. Anything I found online never did &#8220;exactly&#8221; what I wanted it to do, so I was never happy with any 3rd party solutions.</p>
<p>A while ago I finally gave up with Photoshop and Dreamweaver and decided that I would let Google handle all of my photo albums online. Using Picasa Web Albums has worked out very well, but there was never any integration between Lepolt.com and my Picasa Web page. A couple weeks ago I found out that Google [more or less] provides an API to Picasa Web. This is nothing new, I just had never heard about it. It&#8217;s not a direct API, but basically works by reading the XML feed that Google uses to store information about the albums and photos within. After Googling around a little and messing with some code, I finally developed a version that I was happy with. </p>
<p>It can be seen in production here: (<a href="http://www.lepolt.com/pictures.php">http://www.lepolt.com/pictures.php</a>).</p>
<p>For those interested, I will post the final version of my code. Please note that this code carries no warranty.<br />
<a href="http://www.lepolt.com/blog/wp-content/uploads/2008/10/getpicasapics.zip">http://www.lepolt.com/blog/wp-content/uploads/2008/10/getpicasapics.zip</a></p>
<p>Additional links:<br />
<a href="http://www.ibm.com/developerworks/library/x-picasalbum/">http://www.ibm.com/developerworks/library/x-picasalbum/</a><br />
<a href="http://code.google.com/apis/picasaweb/developers_guide_protocol.html">http://code.google.com/apis/picasaweb/developers_guide_protocol.html</a></p>
<p><strong>Update: </strong>See <a href="http://www.lepolt.com/blog/downloads/get-picasa-albums/">this link</a> for an updated version of the code for use as a WordPress plugin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lepolt.com/blog/2008/10/28/integrating-picasa-web-albums-into-my-site-with-php/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>
