<?xml version="1.0" encoding="utf8"?>
<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"
	>

<channel>
	<title>daisyrust.com &#187; net art</title>
	<atom:link href="http://www.daisyrust.com/category/net-art/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daisyrust.com</link>
	<description>digital art hacks - quartz composer - creative code - exhibition</description>
	<pubDate>Mon, 18 Aug 2008 12:30:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Using Magpie RSS to scrape blog headlines to html</title>
		<link>http://www.daisyrust.com/2006/03/25/using-magpie-rss-to-scrape-blog-headlines-to-html/</link>
		<comments>http://www.daisyrust.com/2006/03/25/using-magpie-rss-to-scrape-blog-headlines-to-html/#comments</comments>
		<pubDate>Sat, 25 Mar 2006 09:43:42 +0000</pubDate>
		<dc:creator>ian grant</dc:creator>
		
		<category><![CDATA[digital art hacks]]></category>

		<category><![CDATA[general]]></category>

		<category><![CDATA[net art]]></category>

		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://www.daisyrust.com/2006/03/25/using-magpie-rss-to-scrape-blog-headlines-to-html/</guid>
		<description><![CDATA[Creating a mashup often requires manipulating RSS feeds and exploring XML formats. MagpieRSS is an excellent tool that can simplify manipulations with RSS feeds. This article illustrates a simple, introductory use of this powerful tool.]]></description>
			<content:encoded><![CDATA[<p>This walkthrough assumes you have access to a server running PHP and the ability to change permissions on directories.</p>
<p>Step One: <a href="http://magpierss.sourceforge.net/">Get MagpieRSS here!</a> Head to sourceforge and grab the latest copy of the excellent MagpieRSS.</p>
<p>Step Two: Read the docs. Quickstart: setup a directory on the webserver that looks a bit like this:</p>
<p><img src="http://www.daisyrust.com/wp-content/images/directory_001.png" border="1" alt="Directory 001" hspace="4" vspace="4" width="355" height="192" /></p>
<p>Set the permission of the &#8220;cache&#8221; directory to 777 - world writable. You may be able to get away with more restricted permissions.</p>
<p>Step Three: use the code below as a starting point for exploration. You can see the results of it here<a href="http://www.daisyrust.com/magpie/magpierss_test_001.php"> here </a></p>
<p>There are several lines you can comment/uncomment to see the object magpierss returns. The current example is set to return the results of a blogger feed. With some extra code one can detect the feed and provide summaries accordingly&#8230; that is to come.</p>
<pre name="code" class="php">

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;

&lt;?php
require_once(&#039;magpierss/rss_fetch.inc&#039;);
// the @ suppresses errors
// change the URL to the blog atom / rss feed.
// If the feed is not atom but RSS some of the
// item names will be different - one will need
// to check. The info is in the &#039;channel&#039; array.

$rss = @fetch_rss( &#039;http://internetandnetworkart.blogspot.com/atom.xml&#039; );
// $rss = @fetch_rss( &#039;http://ellington.tvu.ac.uk/dev/?feed=rss2&#039; );

// dump the object to the screen to study the structure magpie returns
echo &#039;

&#039;;
print_r($rss);
echo &#039;

&#039;;
// end dump

$channel = $rss-&gt;channel;
echo &quot;Blog Title: &quot; .$channel[&#039;title&#039;];

//display links recent blog entries:

echo â€œLatest blog additions:\n&quot;;
foreach ($rss-&gt;items as $item) {

   $href = $item[&#039;link&#039;];
   $title = $item[&#039;title&#039;];
   $author = $item[&#039;author_name&#039;];
   $created = $item[&#039;created&#039;];
   $content = $item[&#039;atom_content&#039;];

   echo &quot;$title created by $author on $created\n
   $content\n&quot;
}

echo &#039;

&#039;;

?&gt;
</pre>
<p>The sample files can be downloaded here:</p>
<p><a href="http://www.daisyrust.com/magpie/magpierss_blog_scrape.zip">magpierss_blog_scrape.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.daisyrust.com/2006/03/25/using-magpie-rss-to-scrape-blog-headlines-to-html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>online: seaside towns with curious - performance and media</title>
		<link>http://www.daisyrust.com/2003/06/10/2002-seaside-towns-project-with-curious-performance-and-media/</link>
		<comments>http://www.daisyrust.com/2003/06/10/2002-seaside-towns-project-with-curious-performance-and-media/#comments</comments>
		<pubDate>Tue, 10 Jun 2003 14:59:47 +0000</pubDate>
		<dc:creator>ian grant</dc:creator>
		
		<category><![CDATA[net art]]></category>

		<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://www.daisyrust.com/2006/02/10/2002-seaside-towns-project-with-curious-performance-and-media/</guid>
		<description><![CDATA[<p style="text-align: left"><img align="left" src="http://www.daisyrust.com/wp-content/uploads/2006/02/seaside_towns_01.thumbnail.png" alt="seaside towns screenshot 1" description="seaside towns screenshot 1"/></p>

commissioned by south east arts. words by helen paris, photography by leslie hill, web design, qtvr and flash by ian grant. an episodic online narrative located along the south east coastline of the uk. Using quicktime virtual reality (qtvr), flash and other web technologies.]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><img align="left" id="image21" src="http://www.daisyrust.com/wp-content/uploads/2006/02/seaside_towns_01.thumbnail.jpg" alt="seaside towns screenshot 1" /></p>
<p><a href="http://placelessness.com/works/" alt="curious works link">placelessness.com</a> commissioned by south east arts. words by helen paris, photography by leslie hill, web design, qtvr and flash by ian grant. as a collaborator with curious, i designed an episodic online narrative located along the south east coastline of the uk. Using quicktime virtual reality (qtvr), flash and other web technologies, we created an innovative interactive episodic narrative. </p>
<p style="text-align:left;"><img align="left" id="image23" src="http://www.daisyrust.com/wp-content/uploads/2006/02/seaside_towns_02.thumbnail.jpg" alt="seaside towns screenshot 2" /></p>
<p>in pre-blog times, curious developed a groundbreaking style of web art that was location specific, temporal, that bridged virtual and visceral space and explored textual and visual narrative. see <a href="http://placelessness.com/works/" alt="curious works link">route 66</a> and <a href="http://placelessness.com/works/" alt="curious works link">left bank cafe</a> for other earlier examples of curious&#8217; work in a similar form.</p>
<p style="text-align:left;"><img id="image26" src="http://www.daisyrust.com/wp-content/uploads/2006/02/seaside_towns_03.jpg" alt="seaside towns screenshot 3" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.daisyrust.com/2003/06/10/2002-seaside-towns-project-with-curious-performance-and-media/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
