Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Practical RDF

Posted by timothy on Tue Sep 23, 2003 11:00 AM
from the tools-applied dept.
briandonovan writes "World Wide Web Consortium (W3C) Director Tim Berners-Lee and his compatriots would like to transform the current Web into a 'Semantic Web' where 'software agents roaming from page to page can readily carry out sophisticated tasks for users' using 'structured collections of information and sets of inference rules.' The Resource Description Framework (RDF), designed as a language for expressing information about resources on the Web, and allied technologies are the result to date of ongoing efforts at the W3C to furnish Semantic Web proponents with the requisite tools. While it's far too early to predict whether TimBL's grand vision will be realized, RDF/XML (the XML serialization of RDF) is already in widespread use, having been incorporated into a surprising array of applications." Read on below for briandonovan's link-stuffed review of O'Reilly's Practical RDF.
Practical RDF: Solving Problems with the Resource Description Framework
author Shelley Powers
pages 331
publisher O'Reilly & Associates
rating 9/10
reviewer Brian Donovan
ISBN 0596002637
summary Great introduction to RDF, an assortment of tools and utilities for working with RDF, and some real-world applications.

RDF first hit my radar screen a couple of years ago while I was working on a barebones tool to manage my personal website. I was writing the code to generate RSS feeds ("What is RSS?") for my site and had to choose whether to support RSS 0.9x (non-RDF) or RSS 1.0 (RDF-based) or both. Long story short: I went with RSS 1.0 and was able to implement the feeds, but never got any further into RDF afterwards. I couldn't make headway through the RDF-related working drafts rapidly enough to justify the time that I was spending, there weren't any worthwhile-looking books available at the time, and the few online tutorials that I found were sorely lacking -- possibly because the specs themselves were still evolving as the RDF Core Working Group hashed out some remaining issues.

Fast forward a few years: the dust in RDF-land seems to be settling a bit (although new working drafts of all of the current RDF specs were released on September 5th, most of the changes from previous versions appear to be relatively minor) and, with the publication of Shelley Powers' Practical RDF: Solving Problems with the Resource Description Framework, there's finally a good book available on the subject.

Overview

After an introductory chapter that touches on the history of RDF and some applications of RDF/XML (the preferred, W3C-blessed serialization of RDF), the book is divided into three broad sections. In the first, the reader is guided through the raft of documentation produced by the RDF Core WG, including : Resource Description Framework (RDF): Concepts and Abstract Data Model, RDF/XML Syntax Specification, RDF Model Theory (formerly Semantics), and RDF Vocabulary Description Language 1.0: RDF Schema. Before moving on to Part II, where she surveys programming language support and tools available for working with RDF (with code snippets where appropriate), Powers spends a chapter developing an RDF vocabulary, "PostCon," that's used throughout the remainder of the book for demo purposes.

Chapter 7, the first in the tools-focused portion of Practical RDF is dedicated to (mostly Java-based) editors, parsers, validators, browsers, etc. for desktop use. Next, she dives into Jena, the Java RDF toolkit that began life as the labor of love of HP Labs researcher Brian McBride before being elevated to the status of a formal HP Labs project under their Semantic Web Research umbrella. Another HP Labs Semantic Web project, Damian Steer's BrownSauce, a slick little Java-based RDF browser, was introduced back in Chapter7. Means for manipulating RDF/XML in Perl (RDF::Core, part of Ginger Alliance's PerlRDF project), PHP (RAP, the RDF API for PHP), and Python (RDFLib) are addressed in Chapter 9. RDF query engines/languages are taken up next -- rdfDB QL, the query language of R.V. Guha's rdfDB (written in C); SquishQL, implemented in the Java-based Inkling query engine (built atop PostgreSQL); RDQL, used within Jena; and Sesame, a JSP/Servlet querying engine that supports both RDQL and its own query language, RQL, and can be deployed atop MySQL or PostgreSQL. Powers rounds out this part of her book with a chapter that deals briefly with the leftovers. Drive, an RDF API for C#, is briefly discussed along with RDF APIs for less fashionable programming languages : Nokia's Wilbur for CLOS, XOTcl for Tcl, and RubyRDF for Ruby. Redland, an RDF toolkit written in C with Java, Perl, PHP, Python, Ruby, and Tcl wrappers, is covered at some length (about half a dozen pages) and a couple more are given over to Redfoot, a Python RDF framework consisting of RDFLib (mentioned earlier in the Perl/PHP/Python chapter), a small-footprint HTTP server (according to the changelog at redfoot.net, they're using Medusa), and a native scripting language called Hypercode that lives within CDATA blocks in RDF/XML (example).

The last third of Practical RDF is devoted to uses of RDF and begins with a chapter on the OWL Web Ontology Language, an extension to RDF that's designed to supply more constraints for RDF vocabularies than can be provided by RDF Schema alone. This chapter would have been better situated after Chapter 5, which addresses RDF Schema, and feels a bit out of place here. RSS 1.0, the RDF-based syndication format, gets a chapter all of its own, beginning with a short synopsis of the evolution of RSS and the rift between the RSS 0.9x/2.0 and RSS 1.0 camps, progressing through descriptions of the RSS elements, some discussion of the use of modules, RSS autodiscovery, and aggregators (Amphetadesk, Meerkat, and NetNewsWire are mentioned), and finishing with an example RSS file (a syndicated list of book recommendations), producing RSS 1.0 using the Informa RSS Library (a set of Java classes), and merging two RSS 1.0 files using the XML::RSS Perl module. Two "Applications Based on RDF" (commercial and noncommercial) chapters top off the book. Noncommercial applications of RDF are visited first : Mozilla, where history and bookmarks, among other classes of information, are stored in RDF; the Creative Commons licensing scheme, whose proponents encourage content creators to embed RDF snippets into their documents and applications to provide information about the work itself and the restrictions placed on its reuse under the particular CC license that they've chosen; a Java and PostgreSQL based digital library system jointly developed by MIT and HP that uses RDF; and FOAF (Friend-of-a-Friend), an RDF vocabulary designed to express personal information and interpersonal relationships. Among the list of commercial applications utilizing RDF that comprises the final chapter in the book is Chandler, the same as yet very-alpha personal information manager that's managed to garner multiple mentions on this site.

The Verdict

The real meat of Practical RDF, for me, was in Chapters 1 through 6 (plus the OWL chapter, Chapter 12). This is not to say that the material in the last 2/3 of the book isn't useful or interesting. The section on RDF software tools is a great annotated survey of what's out there right now ... and I would imagine that installing and testdriving each of the software applications featured in those chapters must have been an extremely time-consuming process. The chapters describing real-world applications of RDF could be useful to someone trying to convince a manager that RDF is a viable, widely-used technology. Given a choice, though, I would rather have seen those pages spent on additional coverage of RDF, RDFS, and OWL with more example RDF vocabularies developed (like PostCon, which the author formulated, then refined through RDFS and OWL). The displaced material could have been made available online at the author's site for the book. A lot of that information will become less accurate over time as the software evolves and people come up with more applications for RDF anyway.

All nitpicking aside, though, if you're looking for a book on RDF, then you can't go wrong with Shelley Powers' Practical RDF.


You can purchase Practical RDF from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.

This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • Amazon costs $8 MORE than bn (Score:1, Informative)

    by Anonymous Coward on Tuesday September 23 2003, @11:02AM (#7034567)
    Amazon has this book for $8 more than bn. [amazon.com]
    Free shipping doesn't make up the difference...
    There are some cheap used copies, however...
    • 1 reply beneath your current threshold.
  • A guide to Practical Reality Distortion Fields?

    Sign me up!
  • Oh its for the web (Score:1, Funny)

    by egg troll (515396) on Tuesday September 23 2003, @11:06AM (#7034600)
    (http://www.microsoft.com/ | Last Journal: Thursday October 16 2003, @10:33PM)
    I thought it was the Robotech Defence Force. Now I feel cheated. :(
  • RDF is quite pratical (Score:5, Informative)

    by stonebeat.org (562495) on Tuesday September 23 2003, @11:11AM (#7034629)
    (http://validate.sf.net/)
    RDF is quite pratical - with or without the book. There are several hundred websites explaning how to use RDF in your application. There are classes for JAVA/PHP etc for this purpose. A interesting use of RSS is to integrate it with the IMAP, and get the latest email show up on your portal page.
  • by Gortbusters.org (637314) on Tuesday September 23 2003, @11:13AM (#7034637)
    (http://www.gortbusters.org/ | Last Journal: Friday June 11 2004, @06:34AM)
    Can be found using Dashboard [nat.org]!
  • Was this a joke (Score:1)

    by Hieronymus Howard (215725) * on Tuesday September 23 2003, @11:15AM (#7034663)
    RDF first hit my radar screen a couple of years ago

    Was this meant to be a joke, since RDF also stands for Radio Direction Finding [directionfinder.com]?

    HH
  • Inside RDF is a smaller language... (Score:3, Interesting)

    by Googol (63685) on Tuesday September 23 2003, @11:16AM (#7034664)

    RDF is a great idea. But it needs to loose the java and the XML. People who are attracted to those have no use for RDF--they want messages they can read without documentation. I know XML is more than that, but in the corporate world its attraction is "configuration files I can read after the author was outsourced".

    There are two XML movements--one creating a kludgy layer of application bureaucracy and the other visionary. RDF presently combines the worst of both. Neither "side" really wants it. AI is happy with ontologies and the corporate world is happy with messages 100 times larger than the underlying network protocol. (Could be worse: ASN.1 anyone?)

    *BUT* the underlying idea to RDF (ontologies for your metadata). RDF schema is really more important than RDF syntax. The idea is a simple model for describing metamodels. This fits in the same space as UML metamodels, and the Common Warehouse metamodels, only it is much more light weight and you can implement it with existing tools (you do have to use XML--eeeewww).

    XML serves one good perpose--it makes s-expressions socially respectable in corporate world and for that I am greatful. They almost got Scheme in too (DSSSL), but the angle-bracket police got them. Too bad.

    RDF can sneak in metaprogramming if you let it.

    =googol=
  • by Anonymous Coward on Tuesday September 23 2003, @11:16AM (#7034671)
    the OWL Web Ontology Language, an extension to RDF that's designed to supply more constraints for RDF vocabularies than can be provided by RDF Schema alone
    Er...no. OWL allows you to define relationships between different RDF vocabularies. It has nothing to do with RDF Schema and sounds like it is in the correct place in the book. Please read this chapter again more carefully.
  • Scary page (Score:1)

    by deltagreen (522610) on Tuesday September 23 2003, @11:23AM (#7034720)
    (http://slashdot.org/)

    Perhaps it's just me, but the graphics on the homepage of The Friend of a Friend (FOAF) project [foaf-project.org](linked to from the review), actually makes me wonder if these so called friends have other reasons for describing us and our webpages. ;)

    • Re:Scary page by danbri (Score:2) Tuesday September 23 2003, @11:33AM
      • Re:Scary page by deltagreen (Score:1) Tuesday September 23 2003, @11:49AM
  • Dave Winer... (Score:5, Funny)

    by antic (29198) on Tuesday September 23 2003, @11:23AM (#7034724)

    $50 says Dave Winer is pissed off that he didn't get mentioned in this write-up...

    Double that if I do a gleeful dance when it turns out that he is. Weeee!
  • Spoilers. (Score:3, Funny)

    by Captain Large Face (559804) on Tuesday September 23 2003, @11:25AM (#7034735)
    (http://www.grant.org.uk/)
    Damn it.. I hate it when reviewers give away the ending.. :(
  • It Needs More Vocabulary Descriptions (Score:4, Interesting)

    by Erisian Pope (636878) on Tuesday September 23 2003, @11:28AM (#7034751)
    (http://gnuthought.com/)

    I just finished skimming the whole book and reading about half. My biggest complaint is there isn't much guidance as to where you should go and define your own vocabulary and where you should use an existing one. The only vocabulary discussed besides the RDF core is Dublin Core. To make things worse, most of the examples shows using a custom vocabulary that unnecessarily defines 'Author' and 'Title' instead of using Dublin Core's 'creator' and 'title'.

    I like RDF alot, its really a great tool, but without some serious guidance and discipline when defining vocabularies its going to descend into babble and become pretty useless.

    Does anyone know of a good resource for finding emerging standards for RDF vocabularies so we don't all go out and reinvent the wheel?

    • 1 reply beneath your current threshold.
  • by Anonymous Coward on Tuesday September 23 2003, @11:30AM (#7034771)
    The rest of this comment is fluff. The subject line says it all.

    I'm sure RDF has plenty to offer to the world of online porn. Porn afficianados will more efficiently scour their favorite sites to find the material pertaining to their specific fetishes. Porn merchants will more easily attract the customers who seek them by exactly specifying what they have to offer instead of spamming the search engines with likely keywords.

    I can't wait!
  • by Anonymous Coward on Tuesday September 23 2003, @11:32AM (#7034781)
    I've been working in this area. First off the reviewer is wrong. There are very few production systems using RDF. In fact most of it right now is pure academic research. The commercial implementations of RDF graft on a whole bunch of things to make it useful. One critical flaw of the current thinking is URI is authorative and persistent. In other words, a URI uniquely identifies a domain and does not change. That is a falicy which does not exist in commercial sites. URI/URL's are rarely persistent or authorative. RuleML in my opinion is a much better approach to building a semantic web. As far as OWL goes. It is horribly broken and the commercial industry is moving towards other models of onotology. Most are actually going with a webservices model, rather than a strict ontology. There are numerous issues and problems which the current semantic doesn't address. For example the whole concept of binding is poorly addressed and is not flexibly. Many of the researchers believe RDF should be the object model, but companies are using schema, relaxNG and XMI. Semantic web holds a lot of promise if only they work out these critical issues.
  • a practical WHAT? (Score:1)

    by jamesbrown1000 (39200) on Tuesday September 23 2003, @11:35AM (#7034795)
    (http://typingoutloud.blogspot.com/ | Last Journal: Sunday February 10 2002, @05:41PM)
    a practical Reality Distortion Field? try e-mailing this guy [mailto] -- he may be able to help you a bit more.

    (see what a mac-addled brain turns Slashdot stories into on first glance?)
  • Shello Powers (Score:2)

    by Karamchand (607798) on Tuesday September 23 2003, @11:36AM (#7034806)
    Wasn't Shelly Powers the girl from Austin Powers?
  • RDF Tools (Score:3, Informative)

    by MarkWatson (189759) on Tuesday September 23 2003, @11:36AM (#7034810)
    (http://www.markwatson.com/)
    I enjoyed this book review - useful, and the links to tools are useful.

    One tool not mentioned: the semantic web library for Swi-Prolog [swi-prolog.org] that provides a high level toolkit for dealing with RDF, Owl, etc. Since the hoped-for use of RDF is applications that make logical inferences, Prolog seems like a good language to use :-)

    The Jena and Sesame packages are written in Java and also are very good tools.

    The big problem is getting people to use RDF - this technology can only be useful if enough people use it (think FAX machines).

    I believe that the earliest large scale adoption of Semantic Web technologies will really be on company LANs and be used for organizing company/.organizational information.

    Think of shifting from information technology to knowledge management technology.

    -Mark

  • Dang...wrong RDF! (Score:1)

    by inteller (599544) on Tuesday September 23 2003, @11:39AM (#7034831)
    ...and here I was thinking Veritechs were now becoming practical for everyday use.
  • I've read it as well, and largely agree with the review though I would say a little more strongly that if you are new to RDF this is an invaluable resource. There's lots of great information online, but not with this cohesive style and concise format.
  • Intranets (Score:1)

    by jargoone (166102) on Tuesday September 23 2003, @11:47AM (#7034890)
    My company's intranet site acts like a portal (I know the term is overused), and it relies heavily on RDF files to gather data. Slashdot is one of the sites it gathers information from, and it makes it a very nice, uniform page.
  • by dnaumov (453672) on Tuesday September 23 2003, @11:47AM (#7034895)
    ...who after seeing the title of this article thought of a book by Steve Jobs ? :)
  • by B5_geek (638928) on Tuesday September 23 2003, @11:47AM (#7034896)
    (http://o2kewl.net/)
    Was I the first one to think about the Zentradi and all the cool new toys that might become available if they realised that the RDF might be practicle?
  • Where're the Semantics? (Score:3, Insightful)

    by plasticmillion (649623) <matthew@allpeers.com> on Tuesday September 23 2003, @12:29PM (#7035261)
    (http://www.allpeers.com/blog)
    I have to admit that I haven't been following RDF closely for a year or so, but I did spend a lot of time investigating the standardization effort from its inception (in like 1996... no joke). At the time I was struck by the appallingly obfuscated specification and syntax.

    It seems like a lot of progress has been made since then, but personally I still don't see the point. If you buy into XML as the "lingua franca" of semantic data interchange, then great. I do too. But what exactly is RDF useful for? If we can agree on an XML schema for our data, we can exchange it directly without the need for yet another layer of abstraction on top of it.

    The really hard part is agreeing on the schemas, and this has nothing to do with RDF. Having worked in one XML vocabulary standardization effort (Universal Business Language), I can only stress that the technical and political challenges of getting any group of individuals and companies to agree on any common data format are enormous. For example, it would be great if Amazon and B&N used the same schema for their book descriptions, but imagine trying to make this happen (particularly as they are likely to feel that the specificities of their formats represent some kind of competitive advantage).

    So until proven wrong I continue to believe that RDF is nothing but smoke and mirrors. The easy stuff is done by XML right out of the box, and the hard stuff has nothing whatsoever to do with data structures and wire serialization formats.

  • by *weasel (174362) on Tuesday September 23 2003, @12:32PM (#7035285)
    /(...)/ == sarcasm

    On our staggeringly democratic web, anyone can be a publisher, and as Meta tags have shown - not everyone has the truth in mind.

    I find it odd to note that it is never discussed how RDF will be kept from rapidly degenerating into Meta-tag style abuse.

    Will there be an authority that will verify content descriptors, or at least handle complaints of abuse?

    I would honestly like someone to prove me wrong, to show me where the technology prevents, handles and/or reduces abuse. Because I'm genuinely excited about what is possible with a trustworthy intelligent network. However, I'm just not seeing it here.

    Even normally trustworthy hosts tend to have some disingenuous information in their RSS feeds when they think it will benefit their business.

    (Eg. altering post dates or posting phantom or questionable updates to get more hits from feed subscribers, broadly labelling their content to avoid being properly categorized to expand their exposure, etc)

    So is it accounted for?
  • by graffix_jones (444726) on Tuesday September 23 2003, @12:39PM (#7035352)
    of this story I suspected it was going to be a book about the life and times of Steven P. Jobs.
  • by Psychic Burrito (611532) on Tuesday September 23 2003, @02:07PM (#7036246)
    I ran over the pages of Spinning the semantic web [amazon.com] today - does anybody know if this book is worthwhile my time?

    Thanks!
    - PB
  • Or more to the point, How will ownership get in the way? For the masses, turning the web into a repository of all knowledge and distributing tools to digest it and do things with it would be great. But what ultimately drives progress is its ability to make money. What blocks progress is its negative impact on the people who are already getting most of the money.

    Since the Internet came online we have seen a tremendous, mostly obstructionist reaction from the relatively small community that claims ownership of information. Although copyright conveys no actual ownership, the concepts of "stealing" and "pirating" information have become solidly entrenched. People who put information in front of the public are increasingly trying to control what happens to it. They feel they not only own the information itself, but are entitled to get paid whenever anyone benefits from it in any way.

    I don't see this community of information controllers sitting still while other people develop new and wonderful uses for "their" data. What I do see is lawmakers giving them more and more control over types of progress that may infringe their rights, and to perpetuate those rights indefinitely. So when I read about the rosy future of RDF and all its benefits for mankind, I have to think, yeah, and we'll have jetpacks, undersea cities and lunar vacations by the year 2000.
  • Realworld example (Score:1)

    by slazlo (87565) on Tuesday September 23 2003, @02:53PM (#7036780)
    (http://www.23pools.com/)
    At my site which a combination blogger/yahoo groups/office pool central any user can make their own blogs [23pools.com] and provide RSS feeds. In addition the users can build their own FOAF RDF files [23pools.com] which can then be used to explore their network of connections. SVG plugin required.
  • by wfberg (24378) on Tuesday September 23 2003, @03:50PM (#7037452)
    There is nothing practical about RDF.
    The syntax is horribly complex for what it does, which is basically assert relationships between pairs (think isa(tweety,bird), where 'isa' is the relationship). Also note that asserting relationships between pairs is NOT at all sufficient to model real world data (think update anomalies); which is why we have much better models, such as the relational model, and the prolog and LISP datastructures. (In fact, prolog comes with an assert statement)

    With RDFS you can define restraints on relationships; for example that in the relationship is_married_to(M,F) the participants M and F should be of a different gender (just an example folks, visit Amsterdam!). Again, this is done in a horribly convoluted syntax, and it cannot model some very useful restraints.

    Furthermore, the tools for RDF c.s. are not up to scratch. Buggy parsers, buggy GUIs, apps that are not under active development, memory footprints that are insane.

    RDF is useful only for RSS, which, by-the-by, doesn't conform to the RDF/RDFS specs - precisely because of the tools.

    For storing data in a meaningful way, even the simplest of databases (yes, mysql) is much better. If you want to have better constraints on stuff, and perhaps even do some nifty "inference engine" stuff, stick to prolog if you need that sort of thing, it will make life much easier, even though it's a scary language and not as hyped as XML. (Other options would be CLIPS/Jess, LISP/Scheme or some custom made magic).

    I've worked with RDF and it plain sucks. No two ways about it. Just say no to RDF!
  • C# RDF Parser (Score:1)

    by DuckFoundry (451178) on Tuesday September 23 2003, @04:08PM (#7037671)
    Most of the RDF tools are in Java, but some folks doing C# may be interested in Drive [driverdf.org], and excellent RDF parser for C#.
  • Damn! (Score:2)

    For a second there, I thought they had channelled Steve Jobs' reality distortion field.

    "Use it for fun, or profit! Amaze your friends! Make women succumb to your power!"

    Throw in some sea monkeys and a pair of x-ray specs, and you'd have my credit card number.
  • by clary (141424) on Tuesday September 23 2003, @11:10AM (#7034627)
    And you think this is a bad thing? Muhahahaha, more power!
    [ Parent ]
  • by wdebruij (239038) * on Tuesday September 23 2003, @11:17AM (#7034677)
    For a research project I've actually been doing a bit of reading about RDF and OWL yesterday. When you do, you occasionally come across these types of remarks.

    > java + XML = demand for 4+ghz CPUs

    Let's make one thing clear: RDF is not an instantiation of the XML syntax. You can use XML to transfer RDF statements, but for reasoning other, internal, representations are to be preferred.

    As I'm working on a Prolog project that needs RDF I use the SWI-Prolog RDF library, which, according to
    this recent paper (pdf)* [psy.uva.nl] speeds up processing 22 folds compared to using the RDF/XML serialization syntax. Please note that Mozilla uses Prolog+RDF as well.

    (*) here's [216.239.41.104] google's html version of the paper
    [ Parent ]
    • 1 reply beneath your current threshold.
  • Re:Beautiful (Score:4, Funny)

    by Shimbo (100005) on Tuesday September 23 2003, @11:19AM (#7034697)
    XML hasn't been widely adapted yet

    True, but would you want to see 'XML the Movie' ?
    [ Parent ]
  • Re:Stop the XML madness (Score:5, Insightful)

    by julesh (229690) on Tuesday September 23 2003, @11:25AM (#7034740)
    java + XML = demand for 4+ghz CPUs

    Err.. OK.

    1. Java runs perfectly adequately for me on my 400 MHz machine. Typical application startup times are ~1 second which is generally acceptable, and once the application is running there's not normally a noticeable difference between it and a 'native' application (whatever that might mean for you...). (Note the distinction between noticeable and measurable, also please bear in mind that I'm not talking about AWT/Swing apps here, those really are slow, but that's the library not the language that's responsible, IMHO).

    2. XML might be a little slower to process than other similarly expressive data formats (eg s-expressions, ASN.1 and similar). Maybe by a factor of 10, even. However, the data formats I am comparing it to were considered acceptable for use on 4 MHz processors, and even then the I/O time was a lot more significant than processor time for such operations. Processor speed growth has substantially outpaced IO speed growth over that period.

    AFAICT the only people "demanding 4 GHz CPUS" are the "I've got a better PC than you" crowd, serious gamers, and people who are doing really demanging applications, like video editing or scientific applications (or who want to do a lot of work on ).

    [ Parent ]
  • Re:What kinds of advanced searches? (Score:3, Insightful)

    by gatekeep (122108) on Tuesday September 23 2003, @11:41AM (#7034840)
    You're not thinking outside the box. What the world really needs is searching along the line of "All the pr0n since yesterday with red-haired women."
    [ Parent ]
  • 15 replies beneath your current threshold.