[0] [1] [2] [3]

PHP Script


<?php
// For terms of use see LICENSE.txt in this distribution.
include('simplerdf-php5.php');
exampleName('RDF compatible RSS feed parsing'"This example shows how simple it is to parse RSS/RDF with SimpleRDF/PHP5!\nFor those who don't like to mass with returning objects: It tries to avoid using of SimpleRdf objects as much as possible...");

// Create new SimpleRDF
$rdf=new SimpleRdf();
$rdf->loadFile('simplerdf-php5-00.in');

// Define constant for easier usage...
define('NS_RSS''http://purl.org/rss/1.0/');

// Question: Is there some resource of type RSS channel?
// =>
// Subject: ??? (resource we are looking for)
// Predicate: is of RDF type
// Object: RSS channel
// =>
// Find something (FALSE means any) that is of type (NS_RDF.'type') RSS channel (NS_RSS.'channel').
$rssResource=$rdf->findFirst(FALSENS_RDF.'type'NS_RSS.'channel'RDF_RETURN_SUBJECT RDF_RETURN_VALUE);
echo 
'RSS Feed Resource: '.$rssResource."\n";

// Title of the RSS feed
// What (object: FALSE) is the title (predicate: NS_RSS.'title') of the RSS resource we found (subject: $rssResource)?
// Used constants:
// RDF_RETURN_VALUE - return result as string (otherwise returns SimpleRdf object)
// RDF_RETURN_OBJECT - return object part only (otherwise returns whole triples consisting of SUBJECT, PREDICAT, OBJECT)
echo 'The tittle is: '.$rdf->findFirst($rssResourceNS_RSS.'title'FALSERDF_RETURN_VALUE RDF_RETURN_OBJECT)."\n";

// Display the rights...
// What (o:FALSE) info of type rights (p:NS_DC.'rights') has the RSS we found (s: $rssResource)?
// Did you noticed the 'o', 'p', 's' abbreviations for 'object', 'predicate', 'subject'? ;-)
$rights=$rdf->findFirst($rssResourceNS_DC.'rights'FALSERDF_RETURN_VALUE RDF_RETURN_OBJECT);
echo 
wordwrap("Rights: $rights\n");

// My method located in simplerdf-php5.php include to draw lines. There is also exampleName() method...
drawLine('*');

// News are located as follows <channel><items><Seq><li><!!!NEWS!!!>
// Normally we should go like this:
// 
// Q1: "What resources of type RSS 'items' does the 'channel' have?"
// A1: 'channel' have the 'Seq' as the child of type 'items'
// Q2: What list items 'li' does the sequence 'Seq' has?
// A2: 'Seq' has URI1, URI2, ... children of type 'li'.
// 
// But with SimpleRdf you can save the subsequent question using RDF_RESOLVE_CONTAINER constant.
// It forces the SimpleRdf to the the subsequent question automaticaly for you.
// 
// So the only question you need to give is:
// What resources (o:FALSE) of type RSS items (p:NS_RSS.'items') does the the RSS feed we found (s:$rssResource) have?
$allNews=$rdf->find($rssResourceNS_RSS.'items'FALSERDF_RETURN_OBJECT RDF_RETURN_VALUE RDF_RESOLVE_CONTAINER);

// Cycle sequence of news resources and display each
foreach($allNews as $newsResource) {
  
  
// What (o:FALSE) is the subject (p:NS_DC.'subject') of the news (s:$newsResource)?
  
echo "Subject: ".$rdf->findFirst($newsResourceNS_DC.'subject'FALSERDF_RETURN_OBJECT RDF_RETURN_VALUE)."\n";
  
  
// What (o:FALSE) is the creator (p:NS_DC.'creator') of the news (s:$newsResource)?  
  
echo "Creator: ".$rdf->findFirst($newsResourceNS_DC.'creator'FALSERDF_RETURN_OBJECT RDF_RETURN_VALUE)."\n";

  
// What (o:FALSE) is the description (p:NS_RSS.'description') of the news (s:$newsResource)?  
  
$text=$rdf->findFirst($newsResourceNS_RSS.'description'FALSERDF_RETURN_OBJECT RDF_RETURN_VALUE);  
  echo 
wordwrap($text."\n");
  
  
drawLine('.');
}

// This is the list of all triples we parsed from RDF source... You do not need to give any attention to this...
h1('All N-Triples');
echo 
$rdf->saveNt();

saveOutput(__FILE__);

?>

Input


<?xml version="1.0" encoding="ISO-8859-1"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:admin="http://webns.net/mvcb/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/">
  <channel rdf:about="http://slashdot.org/">
    <title>Slashdot</title>
    <link>http://slashdot.org/</link>
    <description>News for nerds, stuff that matters</description>
    <dc:language>en-us</dc:language>
    <dc:rights>Copyright 1997-2004, OSTG - Open Source Technology Group, Inc.  All Rights Reserved.</dc:rights>
    <dc:date>2004-10-16T07:13:05+00:00</dc:date>
    <dc:publisher>OSTG</dc:publisher>
    <dc:creator>pater@slashdot.org</dc:creator>
    <dc:subject>Technology</dc:subject>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1970-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/2127244"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/2122225"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/1611238"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/205203"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/2135211"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/1953250"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/1840215"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/1837204"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/1749252"/>
        <rdf:li rdf:resource="http://slashdot.org/article.pl?sid=04/10/15/1735207"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://images.slashdot.org/topics/topicslashdot.gif"/>
    <textinput rdf:resource="http://slashdot.org/search.pl"/>
  </channel>
  <image rdf:about="http://images.slashdot.org/topics/topicslashdot.gif">
    <title>Slashdot</title>
    <url>http://images.slashdot.org/topics/topicslashdot.gif</url>
    <link>http://slashdot.org/</link>
  </image>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/2127244">
    <title>System Recovery with Knoppix</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/2127244</link>
    <description>An anonymous reader writes "This article shows how to access a non-booting Linux system with a Knoppix CD, get read-write permissions on configuration files, create and manage partitions and filesystems, and copy files to various storage media and over the network. You can use Knoppix for hardware and system configuration detection and for creating and managing partitions and filesystems. You can do it all from Knoppix's excellent graphical utilities, or from the command line."</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>debian</dc:subject>
    <dc:date>2004-10-16T07:00:00+00:00</dc:date>
    <slash:section>linux</slash:section>
    <slash:department>handy-stuff</slash:department>
    <slash:comments>16</slash:comments>
    <slash:hitparade>16,16,10,5,0,0,0</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/2122225">
    <title>Can't Draw?  You Need The Inkulator 9000.</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/2122225</link>
    <description>NTK was kind enough to point out the Inkulator 9000, software to render pen-and-ink style drawings from 3D meshes. NTK also points to a number of other handy tools and papers.</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>graphics</dc:subject>
    <dc:date>2004-10-16T04:00:00+00:00</dc:date>
    <slash:section>mainpage</slash:section>
    <slash:department>scratch-paper</slash:department>
    <slash:comments>91</slash:comments>
    <slash:hitparade>91,85,65,47,22,6,2</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/1611238">
    <title>Build Your Own Drum-Playing Robot</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/1611238</link>
    <description>libertynews writes "Here is a project called P.E.A.R.T. where EE students constructed a drum playing robot using USB controlled pneumatic actuators and MIDI files."</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>robotics</dc:subject>
    <dc:date>2004-10-16T02:00:00+00:00</dc:date>
    <slash:section>mainpage</slash:section>
    <slash:department>rimshot</slash:department>
    <slash:comments>129</slash:comments>
    <slash:hitparade>129,117,92,64,24,15,11</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/205203">
    <title>Science Television:  Does Joe Public Care?</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/205203</link>
    <description>AVIDJockey writes "Wired News has an article about a new science television network. As someone who is a fan of TV shows that lack a shiny veneer of stupid, such as those found on UWTV, UCTV and ResearchChannel, I've wondered if hard science or technology programming will ever catch on with the general public. What do you think?"</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>tv</dc:subject>
    <dc:date>2004-10-15T23:59:00+00:00</dc:date>
    <slash:section>science</slash:section>
    <slash:department>mr.-wizard</slash:department>
    <slash:comments>307</slash:comments>
    <slash:hitparade>307,301,235,164,52,30,15</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/2135211">
    <title>InfiniBand Drivers Released for Xserve G5 Clusters</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/2135211</link>
    <description>A user writes, "A company called Small Tree just announced the release of InfiniBand drivers for the Mac, for more supercomputing speed. People have already been making supercomputer clusters for the Mac, including Virginia Tech's third-fastest supercomputer in the world, but InfiniBand is supposed to make the latency drop. A lot. Voltaire also makes some sort of Apple InfiniBand products, though it's not clear whether they make the drivers or hardware."</description>
    <dc:creator>pudge</dc:creator>
    <dc:subject>networking</dc:subject>
    <dc:date>2004-10-15T23:30:00+00:00</dc:date>
    <slash:section>apple</slash:section>
    <slash:department>insert-grunting-noise-here</slash:department>
    <slash:comments>92</slash:comments>
    <slash:hitparade>92,89,56,47,23,15,5</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/1953250">
    <title>The Conference Bike</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/1953250</link>
    <description>gomaze writes "If you are like me, you don't look forward to conference meetings. Until now. We are going to be getting a Conference Bike. They even have a movie on how you can find love with the bike, very interesting. Great way for everyone to get out of the office and still get work done."</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>toys</dc:subject>
    <dc:date>2004-10-15T23:00:00+00:00</dc:date>
    <slash:section>mainpage</slash:section>
    <slash:department>do-you-get-to-use-the-HOV-lane?</slash:department>
    <slash:comments>164</slash:comments>
    <slash:hitparade>164,154,117,79,28,18,12</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/1840215">
    <title>Google Desktop Search Functions As Spyware</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/1840215</link>
    <description>dioscaido writes "Users of the Google Desktop Search software beware -- it indexes your files across all users on your PC, bypassing user protections. The Google cache feature allows all users to browse the contents of messages and files it has indexed, irrespective of who is logged in. 'This is not a bug, rather a feature,' says Marissa Mayer, Google's director of consumer Web products. 'Google Desktop Search is not intended to be used on computers that are shared with more than one person.'" Reminds me of a Neal Stephenson essay: "The Hole Hawg is dangerous because it does exactly what you tell it to. It is not bound by the physical limitations that are inherent in a cheap drill, and neither is it limited by safety interlocks that might be built into a homeowner's product by a liability-conscious manufacturer. The danger lies not in the machine itself but in the user's failure to envision the full consequences of the instructions he gives to it."</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>google</dc:subject>
    <dc:date>2004-10-15T22:00:00+00:00</dc:date>
    <slash:section>yro</slash:section>
    <slash:department>multi-talented</slash:department>
    <slash:comments>372</slash:comments>
    <slash:hitparade>372,362,290,198,56,32,28</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/1837204">
    <title>Bungie Speaks On Halo 2 Leak</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/1837204</link>
    <description>BlueMoon writes "A moderator on the official Halo 2 forums posted some speculations and warnings about the Halo 2 leak. To the question where the leak originated he answered "is almost positively the work of some jerk in the manufacturing plant who pocketed the game". They also send out a warning that posting any kind of information about leak will result in "having your XBox Live account's ability to play Halo 2 crippled as we can and we will ban your gamertags from access to vital parts of Halo 2's online experience"." TalkXbox has a repost of an official statement asking community members to assist in the capture of the folks who leaked the game.</description>
    <dc:creator>Zonk</dc:creator>
    <dc:subject>xbox</dc:subject>
    <dc:date>2004-10-15T21:10:00+00:00</dc:date>
    <slash:section>games</slash:section>
    <slash:department>coming-down-hard-on-punkz</slash:department>
    <slash:comments>341</slash:comments>
    <slash:hitparade>341,331,206,141,50,32,18</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/1749252">
    <title>Probe Crash Due to Misdesigned Deceleration Sensor</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/1749252</link>
    <description>squirrelhack writes "Seems as though the Genesis spacecraft was able to launch from earth, travel through space, avoid aliens, and cruise back into the atmosphere to be caught by stunt pilots waiting patiently with their helicopters. Alas, the brakes didn't work because a sensor was designed upside down.</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>space</dc:subject>
    <dc:date>2004-10-15T20:20:00+00:00</dc:date>
    <slash:section>science</slash:section>
    <slash:department>for-want-of-a-nail</slash:department>
    <slash:comments>327</slash:comments>
    <slash:hitparade>327,310,213,141,60,38,26</slash:hitparade>
  </item>
  <item rdf:about="http://slashdot.org/article.pl?sid=04/10/15/1735207">
    <title>Itty Bitty SCSI Hard Drive Arrives</title>
    <link>http://slashdot.org/article.pl?sid=04/10/15/1735207</link>
    <description>Bender writes "The Tech Report has a review of the new Seagate Savvio hard drive. This little SCSI drive is roughly one-third the size of the Cheetah 10K-RPM drives so popular for servers, but the benchmarks all show it performing about the same. Not only that, but noise levels and power consumption are both lower than 3.5" SCSI drives. Is it time for 1U servers to convert to 2.5" hard drives?"</description>
    <dc:creator>michael</dc:creator>
    <dc:subject>storage</dc:subject>
    <dc:date>2004-10-15T19:30:00+00:00</dc:date>
    <slash:section>mainpage</slash:section>
    <slash:department>little-silver-different</slash:department>
    <slash:comments>227</slash:comments>
    <slash:hitparade>227,212,178,128,47,31,20</slash:hitparade>
  </item>
  <textinput rdf:about="http://slashdot.org/search.pl">
    <title>Search Slashdot</title>
    <description>Search Slashdot stories</description>
    <name>query</name>
    <link>http://slashdot.org/search.pl</link>
  </textinput>
</rdf:RDF>

Output


::::::::::::::::::::::RDF compatible RSS feed parsing::::::::::::::::::::::
:: This example shows how simple it is to parse RSS/RDF with
:: SimpleRDF/PHP5!
:: For those who don't like to mass with returning objects: It tries to
:: avoid using of SimpleRdf objects as much as possible...
:::::::::::::::::::::::SimpleRDF v0.2.10 (2004-11-19)::::::::::::::::::::::

RSS Feed Resource: http://slashdot.org/
The tittle is: Slashdot
Rights: Copyright 1997-2004, OSTG - Open Source Technology Group, Inc.  All
Rights Reserved.
***************************************************************************
Subject: debian
Creator: michael
An anonymous reader writes "This article shows how to access a non-booting
Linux system with a Knoppix CD, get read-write permissions on
configuration files, create and manage partitions and filesystems, and
copy files to various storage media and over the network. You can use
Knoppix for hardware and system configuration detection and for creating
and managing partitions and filesystems. You can do it all from Knoppix's
excellent graphical utilities, or from the command line."
...........................................................................
Subject: graphics
Creator: michael
NTK was kind enough to point out the Inkulator 9000, software to render
pen-and-ink style drawings from 3D meshes. NTK also points to a number of
other handy tools and papers.
...........................................................................
Subject: robotics
Creator: michael
libertynews writes "Here is a project called P.E.A.R.T. where EE students
constructed a drum playing robot using USB controlled pneumatic actuators
and MIDI files."
...........................................................................
Subject: tv
Creator: michael
AVIDJockey writes "Wired News has an article about a new science television
network. As someone who is a fan of TV shows that lack a shiny veneer of
stupid, such as those found on UWTV, UCTV and ResearchChannel, I've
wondered if hard science or technology programming will ever catch on with
the general public. What do you think?"
...........................................................................
Subject: networking
Creator: pudge
A user writes, "A company called Small Tree just announced the release of
InfiniBand drivers for the Mac, for more supercomputing speed. People have
already been making supercomputer clusters for the Mac, including Virginia
Tech's third-fastest supercomputer in the world, but InfiniBand is
supposed to make the latency drop. A lot. Voltaire also makes some sort of
Apple InfiniBand products, though it's not clear whether they make the
drivers or hardware."
...........................................................................
Subject: toys
Creator: michael
gomaze writes "If you are like me, you don't look forward to conference
meetings. Until now. We are going to be getting a Conference Bike. They
even have a movie on how you can find love with the bike, very
interesting. Great way for everyone to get out of the office and still get
work done."
...........................................................................
Subject: google
Creator: michael
dioscaido writes "Users of the Google Desktop Search software beware -- it
indexes your files across all users on your PC, bypassing user
protections. The Google cache feature allows all users to browse the
contents of messages and files it has indexed, irrespective of who is
logged in. 'This is not a bug, rather a feature,' says Marissa Mayer,
Google's director of consumer Web products. 'Google Desktop Search is not
intended to be used on computers that are shared with more than one
person.'" Reminds me of a Neal Stephenson essay: "The Hole Hawg is
dangerous because it does exactly what you tell it to. It is not bound by
the physical limitations that are inherent in a cheap drill, and neither
is it limited by safety interlocks that might be built into a homeowner's
product by a liability-conscious manufacturer. The danger lies not in the
machine itself but in the user's failure to envision the full consequences
of the instructions he gives to it."
...........................................................................
Subject: xbox
Creator: Zonk
BlueMoon writes "A moderator on the official Halo 2 forums posted some
speculations and warnings about the Halo 2 leak. To the question where the
leak originated he answered "is almost positively the work of some jerk in
the manufacturing plant who pocketed the game". They also send out a
warning that posting any kind of information about leak will result in
"having your XBox Live account's ability to play Halo 2 crippled as we can
and we will ban your gamertags from access to vital parts of Halo 2's
online experience"." TalkXbox has a repost of an official statement asking
community members to assist in the capture of the folks who leaked the
game.
...........................................................................
Subject: space
Creator: michael
squirrelhack writes "Seems as though the Genesis spacecraft was able to
launch from earth, travel through space, avoid aliens, and cruise back
into the atmosphere to be caught by stunt pilots waiting patiently with
their helicopters. Alas, the brakes didn't work because a sensor was
designed upside down.
...........................................................................
Subject: storage
Creator: michael
Bender writes "The Tech Report has a review of the new Seagate Savvio hard
drive. This little SCSI drive is roughly one-third the size of the Cheetah
10K-RPM drives so popular for servers, but the benchmarks all show it
performing about the same. Not only that, but noise levels and power
consumption are both lower than 3.5" SCSI drives. Is it time for 1U
servers to convert to 2.5" hard drives?"
...........................................................................
-----------------------------[ All N-Triples ]-----------------------------
<http://slashdot.org/>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/channel> .
<http://slashdot.org/>    <http://purl.org/rss/1.0/title>    "Slashdot" .
<http://slashdot.org/>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/" .
<http://slashdot.org/>    <http://purl.org/rss/1.0/description>    "News for nerds, stuff that matters" .
<http://slashdot.org/>    <http://purl.org/dc/elements/1.1/language>    "en-us" .
<http://slashdot.org/>    <http://purl.org/dc/elements/1.1/rights>    "Copyright 1997-2004, OSTG - Open Source Technology Group, Inc.  All Rights Reserved." .
<http://slashdot.org/>    <http://purl.org/dc/elements/1.1/date>    "2004-10-16T07:13:05+00:00" .
<http://slashdot.org/>    <http://purl.org/dc/elements/1.1/publisher>    "OSTG" .
<http://slashdot.org/>    <http://purl.org/dc/elements/1.1/creator>    "pater@slashdot.org" .
<http://slashdot.org/>    <http://purl.org/dc/elements/1.1/subject>    "Technology" .
<http://slashdot.org/>    <http://purl.org/rss/1.0/modules/syndication/updatePeriod>    "hourly" .
<http://slashdot.org/>    <http://purl.org/rss/1.0/modules/syndication/updateFrequency>    "1" .
<http://slashdot.org/>    <http://purl.org/rss/1.0/modules/syndication/updateBase>    "1970-01-01T00:00+00:00" .
<http://slashdot.org/>    <http://purl.org/rss/1.0/items>    _:SimpleRDF_id2290983 .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/2127244> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/2122225> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/1611238> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/205203> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/2135211> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/1953250> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/1840215> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/1837204> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/1749252> .
_:SimpleRDF_id2290983    <http://www.w3.org/1999/02/22-rdf-syntax-ns#li>    <http://slashdot.org/article.pl?sid=04/10/15/1735207> .
<http://slashdot.org/>    <http://purl.org/rss/1.0/image>    <http://images.slashdot.org/topics/topicslashdot.gif> .
<http://slashdot.org/>    <http://purl.org/rss/1.0/textinput>    <http://slashdot.org/search.pl> .
<http://images.slashdot.org/topics/topicslashdot.gif>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/image> .
<http://images.slashdot.org/topics/topicslashdot.gif>    <http://purl.org/rss/1.0/title>    "Slashdot" .
<http://images.slashdot.org/topics/topicslashdot.gif>    <http://purl.org/rss/1.0/url>    "http://images.slashdot.org/topics/topicslashdot.gif" .
<http://images.slashdot.org/topics/topicslashdot.gif>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/rss/1.0/title>    "System Recovery with Knoppix" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/2127244" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/rss/1.0/description>    "An anonymous reader writes "This article shows how to access a non-booting Linux system with a Knoppix CD, get read-write permissions on configuration files, create and manage partitions and filesystems, and copy files to various storage media and over the network. You can use Knoppix for hardware and system configuration detection and for creating and managing partitions and filesystems. You can do it all from Knoppix's excellent graphical utilities, or from the command line."" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/dc/elements/1.1/subject>    "debian" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/dc/elements/1.1/date>    "2004-10-16T07:00:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/rss/1.0/modules/slash/section>    "linux" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/rss/1.0/modules/slash/department>    "handy-stuff" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/rss/1.0/modules/slash/comments>    "16" .
<http://slashdot.org/article.pl?sid=04/10/15/2127244>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "16,16,10,5,0,0,0" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/rss/1.0/title>    "Can't Draw?  You Need The Inkulator 9000." .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/2122225" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/rss/1.0/description>    "NTK was kind enough to point out the Inkulator 9000, software to render pen-and-ink style drawings from 3D meshes. NTK also points to a number of other handy tools and papers." .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/dc/elements/1.1/subject>    "graphics" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/dc/elements/1.1/date>    "2004-10-16T04:00:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/rss/1.0/modules/slash/section>    "mainpage" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/rss/1.0/modules/slash/department>    "scratch-paper" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/rss/1.0/modules/slash/comments>    "91" .
<http://slashdot.org/article.pl?sid=04/10/15/2122225>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "91,85,65,47,22,6,2" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/rss/1.0/title>    "Build Your Own Drum-Playing Robot" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/1611238" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/rss/1.0/description>    "libertynews writes "Here is a project called P.E.A.R.T. where EE students constructed a drum playing robot using USB controlled pneumatic actuators and MIDI files."" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/dc/elements/1.1/subject>    "robotics" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/dc/elements/1.1/date>    "2004-10-16T02:00:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/rss/1.0/modules/slash/section>    "mainpage" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/rss/1.0/modules/slash/department>    "rimshot" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/rss/1.0/modules/slash/comments>    "129" .
<http://slashdot.org/article.pl?sid=04/10/15/1611238>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "129,117,92,64,24,15,11" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/rss/1.0/title>    "Science Television:  Does Joe Public Care?" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/205203" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/rss/1.0/description>    "AVIDJockey writes "Wired News has an article about a new science television network. As someone who is a fan of TV shows that lack a shiny veneer of stupid, such as those found on UWTV, UCTV and ResearchChannel, I've wondered if hard science or technology programming will ever catch on with the general public. What do you think?"" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/dc/elements/1.1/subject>    "tv" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/dc/elements/1.1/date>    "2004-10-15T23:59:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/rss/1.0/modules/slash/section>    "science" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/rss/1.0/modules/slash/department>    "mr.-wizard" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/rss/1.0/modules/slash/comments>    "307" .
<http://slashdot.org/article.pl?sid=04/10/15/205203>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "307,301,235,164,52,30,15" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/rss/1.0/title>    "InfiniBand Drivers Released for Xserve G5 Clusters" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/2135211" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/rss/1.0/description>    "A user writes, "A company called Small Tree just announced the release of InfiniBand drivers for the Mac, for more supercomputing speed. People have already been making supercomputer clusters for the Mac, including Virginia Tech's third-fastest supercomputer in the world, but InfiniBand is supposed to make the latency drop. A lot. Voltaire also makes some sort of Apple InfiniBand products, though it's not clear whether they make the drivers or hardware."" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/dc/elements/1.1/creator>    "pudge" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/dc/elements/1.1/subject>    "networking" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/dc/elements/1.1/date>    "2004-10-15T23:30:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/rss/1.0/modules/slash/section>    "apple" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/rss/1.0/modules/slash/department>    "insert-grunting-noise-here" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/rss/1.0/modules/slash/comments>    "92" .
<http://slashdot.org/article.pl?sid=04/10/15/2135211>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "92,89,56,47,23,15,5" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/rss/1.0/title>    "The Conference Bike" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/1953250" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/rss/1.0/description>    "gomaze writes "If you are like me, you don't look forward to conference meetings. Until now. We are going to be getting a Conference Bike. They even have a movie on how you can find love with the bike, very interesting. Great way for everyone to get out of the office and still get work done."" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/dc/elements/1.1/subject>    "toys" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/dc/elements/1.1/date>    "2004-10-15T23:00:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/rss/1.0/modules/slash/section>    "mainpage" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/rss/1.0/modules/slash/department>    "do-you-get-to-use-the-HOV-lane?" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/rss/1.0/modules/slash/comments>    "164" .
<http://slashdot.org/article.pl?sid=04/10/15/1953250>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "164,154,117,79,28,18,12" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/rss/1.0/title>    "Google Desktop Search Functions As Spyware" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/1840215" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/rss/1.0/description>    "dioscaido writes "Users of the Google Desktop Search software beware -- it indexes your files across all users on your PC, bypassing user protections. The Google cache feature allows all users to browse the contents of messages and files it has indexed, irrespective of who is logged in. 'This is not a bug, rather a feature,' says Marissa Mayer, Google's director of consumer Web products. 'Google Desktop Search is not intended to be used on computers that are shared with more than one person.'" Reminds me of a Neal Stephenson essay: "The Hole Hawg is dangerous because it does exactly what you tell it to. It is not bound by the physical limitations that are inherent in a cheap drill, and neither is it limited by safety interlocks that might be built into a homeowner's product by a liability-conscious manufacturer. The danger lies not in the machine itself but in the user's failure to envision the full consequences of the instructions he gives to it."" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/dc/elements/1.1/subject>    "google" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/dc/elements/1.1/date>    "2004-10-15T22:00:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/rss/1.0/modules/slash/section>    "yro" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/rss/1.0/modules/slash/department>    "multi-talented" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/rss/1.0/modules/slash/comments>    "372" .
<http://slashdot.org/article.pl?sid=04/10/15/1840215>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "372,362,290,198,56,32,28" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/rss/1.0/title>    "Bungie Speaks On Halo 2 Leak" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/1837204" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/rss/1.0/description>    "BlueMoon writes "A moderator on the official Halo 2 forums posted some speculations and warnings about the Halo 2 leak. To the question where the leak originated he answered "is almost positively the work of some jerk in the manufacturing plant who pocketed the game". They also send out a warning that posting any kind of information about leak will result in "having your XBox Live account's ability to play Halo 2 crippled as we can and we will ban your gamertags from access to vital parts of Halo 2's online experience"." TalkXbox has a repost of an official statement asking community members to assist in the capture of the folks who leaked the game." .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/dc/elements/1.1/creator>    "Zonk" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/dc/elements/1.1/subject>    "xbox" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/dc/elements/1.1/date>    "2004-10-15T21:10:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/rss/1.0/modules/slash/section>    "games" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/rss/1.0/modules/slash/department>    "coming-down-hard-on-punkz" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/rss/1.0/modules/slash/comments>    "341" .
<http://slashdot.org/article.pl?sid=04/10/15/1837204>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "341,331,206,141,50,32,18" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/rss/1.0/title>    "Probe Crash Due to Misdesigned Deceleration Sensor" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/1749252" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/rss/1.0/description>    "squirrelhack writes "Seems as though the Genesis spacecraft was able to launch from earth, travel through space, avoid aliens, and cruise back into the atmosphere to be caught by stunt pilots waiting patiently with their helicopters. Alas, the brakes didn't work because a sensor was designed upside down." .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/dc/elements/1.1/subject>    "space" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/dc/elements/1.1/date>    "2004-10-15T20:20:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/rss/1.0/modules/slash/section>    "science" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/rss/1.0/modules/slash/department>    "for-want-of-a-nail" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/rss/1.0/modules/slash/comments>    "327" .
<http://slashdot.org/article.pl?sid=04/10/15/1749252>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "327,310,213,141,60,38,26" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/item> .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/rss/1.0/title>    "Itty Bitty SCSI Hard Drive Arrives" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/article.pl?sid=04/10/15/1735207" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/rss/1.0/description>    "Bender writes "The Tech Report has a review of the new Seagate Savvio hard drive. This little SCSI drive is roughly one-third the size of the Cheetah 10K-RPM drives so popular for servers, but the benchmarks all show it performing about the same. Not only that, but noise levels and power consumption are both lower than 3.5" SCSI drives. Is it time for 1U servers to convert to 2.5" hard drives?"" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/dc/elements/1.1/creator>    "michael" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/dc/elements/1.1/subject>    "storage" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/dc/elements/1.1/date>    "2004-10-15T19:30:00+00:00" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/rss/1.0/modules/slash/section>    "mainpage" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/rss/1.0/modules/slash/department>    "little-silver-different" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/rss/1.0/modules/slash/comments>    "227" .
<http://slashdot.org/article.pl?sid=04/10/15/1735207>    <http://purl.org/rss/1.0/modules/slash/hitparade>    "227,212,178,128,47,31,20" .
<http://slashdot.org/search.pl>    <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>    <http://purl.org/rss/1.0/textinput> .
<http://slashdot.org/search.pl>    <http://purl.org/rss/1.0/title>    "Search Slashdot" .
<http://slashdot.org/search.pl>    <http://purl.org/rss/1.0/description>    "Search Slashdot stories" .
<http://slashdot.org/search.pl>    <http://purl.org/rss/1.0/name>    "query" .
<http://slashdot.org/search.pl>    <http://purl.org/rss/1.0/link>    "http://slashdot.org/search.pl" .
___________________________________________________________________________
SimpleRDF v0.2.10 <http://simplerdf.sourceforge.net>,RDF/XML parser for PHP5
Generated using PHP 5.0.2 on Fri Nov 19 09:15:43 2004