
WWW::SchneierFacts - API for retrieving facts about Bruce Schneier

use WWW::SchneierFacts;
my $db = WWW::SchneierFacts->new;
foreach my $fact ( $db->top_facts ) {
print "$fact\n",
( $fact->author ? ( " --", $fact->author, "\n" ) : () ),
"\n";
}

Bruce Schneier is the Chuck Norris of cryptography.

Return a fact with the ID id, or if a URI object is provided, at the link.
If no arguments are given a random fact will be fetched.
Returns a WWW::SchneierFacts::Fact object.
Get the top facts.

This module is maintained using Darcs. You can get the latest version from http://nothingmuch.woobling.org/code, and use darcs send to commit changes.

Yuval Kogman <nothingmuch@woobling.org>

Copyright (c) 2008 Yuval Kogman. All rights reserved
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.