<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Sat, 18 May 2013 23:00:16 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Derick Rethans' Blog: Using OpenStreetMap tiles with Flickr]]></title>
      <guid>http://www.phpdeveloper.org/news/15976</guid>
      <link>http://www.phpdeveloper.org/news/15976</link>
      <description><![CDATA[<p>
<i>Derick Rethans</i> has a new post today with a bit of code showing how to <a href="http://derickrethans.nl/using-openstreetmap-with-flickr.html">combine Flickr and OpenStreetMap</a> and make a mapping tool that plots out the location information for the Flickr images.
</p>
<blockquote>
I like taking pictures, and I usually take a GPS so that I can place them on a map on my Flickr page. On my last excursion however, the battery of my GPS had died, so I did not have location information available to store in my pictures' EXIF headers. Flickr can use the EXIF headers to then show the images on the map. Because I did not have the location information to automatically place my pictures on the map, I wanted to do that by hand. 
</blockquote>
<p>
His <a href="http://derickrethans.nl/files/redirectYahooMapsToOsm.php.txt">script</a> (as used by a local Squid proxy) supports two different versions of the mapping - one for Yahoo! Maps and the other for OpenStreetMaps'. You can see the <a href="http://derickrethans.nl/images/content/flickrosm.png">end result here</a> - a set of Flickr images with a map in the background.
</p>]]></description>
      <pubDate>Tue, 01 Mar 2011 09:37:56 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[iFadey.com: Get Flickr Images Using SimpleXML]]></title>
      <guid>http://www.phpdeveloper.org/news/15591</guid>
      <link>http://www.phpdeveloper.org/news/15591</link>
      <description><![CDATA[<p>
In <a href="http://www.ifadey.com/2010/04/get-flickr-images-using-simplexml/">this new post</a> to the iFadey blog, there's a quick tutorial on using SimpleXML to fetch and parse the image feeds from <a href="http://flickr.com">Flickr</a>.
</p>
<blockquote>
In this article you will learn two main things: how to parse XML using SimpleXML and how to get Flickr images from RSS feed and display them on your web page.
</blockquote>
<p>
He offers both <a href="http://www.ifadey.com/demos/03/index.php">a demo</a> of it in action and a <a href="http://www.ifadey.com/demos/03/source.zip">download of the source</a> for those that want to jump right in. The tutorial walks you through fetching the XML feed for a Flickr gallery, loading it into a SimpleXML object and creating a reusable class to pull out the photo titles, image details and profile link.
</p>]]></description>
      <pubDate>Thu, 16 Dec 2010 12:04:20 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Integrating Flickr Photostreams with PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/13969</guid>
      <link>http://www.phpdeveloper.org/news/13969</link>
      <description><![CDATA[<p>
On the Zend Developer Zone there's a new tutorial showing you how to <a href="http://devzone.zend.com/article/11775-Integrating-Flickr-Photostreams-with-PHP-using-the-Zend-Framework">integrate your application with Flickr</a> with some help from components in the <a href="http://framework.zend.com">Zend Framework</a>.
</p>
<blockquote>
Like many Web 2.0 applications, Flickr exposes its data to the public via a REST API, making it possible to develop customized applications that run on top of the base service. This REST API allows access to a number of important functions, including photo searching, tagging and uploading; photoset retrieval; contact retrieval; and panda recommendations.
</blockquote>
<p>
The tutorial uses the Zend_Rest_Client component of the Zend Framework to make the actual request to the Flickr API and you'll need a <a href="http://www.flickr.com/services/api/keys/">API key/shared secret</a> to be able to use it. The rest of the tutorial is code dedicated to helping you connect to the service, fetch data, search the API (and output the results), and looking at some of the "interestingness" magic Flickr has to share.
</p>]]></description>
      <pubDate>Thu, 04 Feb 2010 12:22:46 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Web Development Blog: Ajax requests using jQuery and PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/13733</guid>
      <link>http://www.phpdeveloper.org/news/13733</link>
      <description><![CDATA[<p>
In <a href="http://www.web-development-blog.com/archives/ajax-requests-using-jquery-and-php/">a recent post</a> to the Web Development Blog there's a tutorial about creating a simple script to connect to <a href="http://flickr.com">Flickr</a> and run a search to return matching image thumbnail information.
</p>
<blockquote>
Our last tutorial about the <a href="http://www.web-development-blog.com/archives/search-for-photos-using-php-and-the-flickr-api/">flickr API</a> was an example on how-to search the flickr photo database for images using some short PHP code. This time we will use parts from the past tutorial together with some jQuery Ajax requests to show our photo search result without reloading the web page.
</blockquote>
<p>
They include the code for the different parts of the application - the HTML for the frontend form, the Ajax functions to access the PHP backend interface and the PHP code to make the request over to the Flickr API for images matching your search term.
</p>]]></description>
      <pubDate>Mon, 28 Dec 2009 10:16:19 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Web Development Blog: Search for photos using PHP and the flickr API]]></title>
      <guid>http://www.phpdeveloper.org/news/13708</guid>
      <link>http://www.phpdeveloper.org/news/13708</link>
      <description><![CDATA[<p>
On the Web Development Blog there's <a href="http://www.web-development-blog.com/archives/search-for-photos-using-php-and-the-flickr-api/">a recent post</a> about connecting your PHP application with the <a href="http://flickr.com">Flickr</a> API to search for photos with the help of a simple class.
</p>
<blockquote>
We will be using the php function "file_get_contents" to receive data from flickr. The data which we will receive will be a serialized PHP array which means all we need to do is unserialize the array and we will easily be able to use the data returned. As an alternative we can use a cURL function to get the data, for example if the function "file_get_contents" is not allowed on your web host.
</blockquote>
<p>
They show how to get your API key from the Flickr website and the sample code that you'll need to make a GET request (with <a href="http://php.net/file_get_contents">file_get_contents</a>) and an example of a loop displaying the response.
</p>]]></description>
      <pubDate>Mon, 21 Dec 2009 15:16:31 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[DZone.com: Building a Flickr Slideshow with NetBeans IDE 6.5]]></title>
      <guid>http://www.phpdeveloper.org/news/13318</guid>
      <link>http://www.phpdeveloper.org/news/13318</link>
      <description><![CDATA[<p>
On DZone.com today there's <a href="http://php.dzone.com/screencasts/building-a-php-flickr-slideshow">a new screencast</a> posted from the NetBeans IDE group showing how to create a simple Flickr slide show inside the application.
</p>
<blockquote>
In this screencast, Justin Bolter, Technology Evangelist at Sun Microsystems, shows you how to build a PHP Flickr slideshow using NetBeans IDE 6.5 . Bolter walks through the various ways in which NetBeans IDE 6.5 supports PHP development, including project support, run configurations, code completion, syntax highlighting, documentation, refactoring and debugging.
</blockquote>
<p>
If you can't view the screencast, the full transcript of it is <a href="http://php.dzone.com/screencasts/building-a-php-flickr-slideshow">also included in the post</a>.
</p>]]></description>
      <pubDate>Thu, 01 Oct 2009 11:06:44 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: Looking Back at the Dutch PHP Conference 2009]]></title>
      <guid>http://www.phpdeveloper.org/news/12694</guid>
      <link>http://www.phpdeveloper.org/news/12694</link>
      <description><![CDATA[<p>
The <a href="http://www.phpconference.nl/">Dutch PHP Conference</a> for this year has finished and the wrapups and reviews are already starting to pop up. Here's a listing of several bloggers that have already shared their memories:
</p>
<ul>
<li><a href="http://akrabat.com/2009/06/15/dpc-09/">Rob Allen</a>
<li><a href="http://www.tibobeijen.nl/blog/2009/06/13/dpc09-down-dpc10-to-go/">Tibo Beijen</a>
<li><a href="http://techportal.ibuildings.com/2009/06/16/dpc09-wrapup/">Cal Evans</a> (on the Ibuildings blog)
<li><a href="http://www.lornajane.net/posts/2009/Dutch-PHP-Conference">Lorna Mitchell</a>
<li><a href="http://leftontheweb.com/message/Dutch_PHP_Conference_2009_The_Best_Content_Around">Stefan Koopmanschap</a>
<li><a href="http://feedproxy.google.com/~r/dragonbe/~3/FB8ahtFLyoM/dutch-php-conference-2009-wrapup.html">Michelangelo van Dam</a>
<li><a href="http://devzone.zend.com/article/4760-Dutch-PHP-Conference-2009-Wrap-up">Eli White</a> (on the Zend Developer Zone)
<li><a href="http://techportal.ibuildings.com/2009/06/15/dpc-sessions-and-slides/">Sessions and slides</a> (on the Ibuildings blog)
<li><a href="http://www.flickr.com/search/?q=dpc09&w=all">Flickr images</a> from multiple attendees
<li><a href="http://joind.in/event/dpc09">Joind.in reviews</a> of both the event and speakers
</ul>
<p>
Keep an eye here for more summaries to be added to the list as they're posted.
</p>]]></description>
      <pubDate>Tue, 16 Jun 2009 10:21:02 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Sebastian Bergmann's Blog: Flickr: The Real World PHP 5 Benchmark]]></title>
      <guid>http://www.phpdeveloper.org/news/12225</guid>
      <link>http://www.phpdeveloper.org/news/12225</link>
      <description><![CDATA[<p>
<i>Sebastian Bergmann</i> has posted a <a href="http://sebastian-bergmann.de/archives/858-Flickr-The-Real-World-PHP-5-Benchmark.html">real world benchmark</a> as justification for moving from a PHP 4 to PHP 5 environment - <a href="http://www.flickr.com/photos/allspaw/3384206153/">evidence</a> from Flickr's change.
</p>
<blockquote>
Benchmarks such as the PHP / GCC / ICC Benchmark I posted quite a while ago on this blog are synthetic. They test "raw bytecode execution" speed that cannot be translated into real-world situations per se. Flickr recently migrated from PHP 4 to PHP 5. And <a href="http://www.flickr.com/photos/allspaw/3384206153/">here</a> are their real world numbers.
</blockquote>
<p>
The graph shows a dramatic drop in processing needed (CPU usage) at the moment they made the switch over from PHP4 to PHP5.The system processing usage stayed about the same (system processes like logging and memory handling) but the user CPU usage (like what the web server would use) saw an immediate change by almost twenty percent.
</p>]]></description>
      <pubDate>Fri, 27 Mar 2009 12:03:08 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[NETTUTS.com: Create a Slick Flickr Gallery with SimplePie]]></title>
      <guid>http://www.phpdeveloper.org/news/12031</guid>
      <link>http://www.phpdeveloper.org/news/12031</link>
      <description><![CDATA[<p>
In <a href="http://net.tutsplus.com/tutorials/php/create-a-slick-flickr-gallery-with-simplepie/">this new tutorial</a> from NETTUTS.com there's information on how to create a gallery of the images from your <a href="http://flickr.com">Flickr</a> account with help from <a href="http://simplepie.org/">SimplePie</a>, a PHP tool for parsing XML feeds (like RSS).
</p>
<blockquote>
Ok, so we're going to be touching on a number of technologies for this tutorial. We'll be using an RSS feed from Flickr, a bit of PHP, and some jQuery to make things nice and interactive! We'll use <A href="http://simplepie.org/">SimplePie</a> to handle the RSS feed, as it makes life much easier, and can be used in any other projects where RSS feeds are involved.
</blockquote>
<p>
They pull in the public photo information for a given user ID and parse details like the title of the gallery and each image's details, including descriptions. Add in a few links, some Javascript (<a href="http://jquery.com">jQuery</a>) and HTML and you have a simple image gallery that automatically updates when you upload new photos to Flickr. You can <a href="http://nettuts.s3.amazonaws.com/220_flickr/demo.zip">grab the source here</a> or just <a href="http://www.nettuts.com/demos/025_flickr/index.php">see it in action</a> in their demo.
</p>]]></description>
      <pubDate>Thu, 26 Feb 2009 12:56:12 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Michelangelo van Dam's Blog: Zend Framework Bughuntday review]]></title>
      <guid>http://www.phpdeveloper.org/news/11392</guid>
      <link>http://www.phpdeveloper.org/news/11392</link>
      <description><![CDATA[<p>
<i>Michelangelo van Dam</i> has <a href="http://www.dragonbe.com/2008/11/zend-framework-bughuntday-review.html">posted his summary</a> of the recent <a href="http://bughuntday.org/">BugHuntDay</a> that happened in Roosendaal (the Netherlands) this past weekend:
</p>
<blockquote>
<a href="http://bughuntday.org/">Bughuntday</a> is a whole day developers can come together to start fixing bugs for open-source frameworks and libraries. This Saturday we started these series with <a href="http://framework.zend.com/">Zend Framework</a>, a hugely adopted <A href="http://www.php.net/">PHP</a> framework within enterprise and professional web application development.
</blockquote>
<p>
He also <a href="http://www.dragonbe.com/2008/11/zend-framework-bughuntday-review.html">includes</a> the slides from the <a href="http://www.slideshare.net/norm2782/2008-11-08-bughuntday-presentation">presentation</a> and <a href="http://idisk.mac.com/michelangelovandam/Public/Bughuntday.mov">a video</a> of <i>Jurien Stutterheim</i>'s talk introducing everyone to testing and the Zend Framework. There's pictures of the event <a href="http://www.flickr.com/photos/tags/bughuntday">on Flickr</a> too.
</p>
<p>
<a href="http://www.dragonbe.com/2008/11/update-zend-framework-bughuntday.html">Check here</a> for an updated video from the event.
</p>]]></description>
      <pubDate>Wed, 12 Nov 2008 07:53:56 -0600</pubDate>
    </item>
  </channel>
</rss>
