Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
NAME
WWW::SchneierFacts - API for retrieving facts about Bruce Schneier
SYNOPSIS
use WWW::SchneierFacts;
my $db = WWW::SchneierFacts->new;
foreach my $fact ( $db->top_facts ) {
print "$fact\n",
( $fact->author ? ( " --", $fact->author, "\n" ) : () ),
"\n";
}
DESCRIPTION
Bruce Schneier is the Chuck Norris of cryptography.
METHODS
- fact $id
- fact $uri
- fact
-
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.
- top_facts
-
Get the top facts.
VERSION CONTROL
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.
AUTHOR
Yuval Kogman <nothingmuch@woobling.org>
COPYRIGHT
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.