Just a quick note for those of you wanting a 64bit version of Firefox!
You can obtain a 64bit version here! For those of you that are daring, download and install Firefox.next (version is based on a time stamp).
For those wanting something that works, you should download a version after the list of files for Firefox.next (e.g. Firefox 3.6 below).
JAVA is available (and more stable from what I can tell) in 64bit flavors and I would recommend installing a 64bit version after installing a 64 bit version of Firefox
Note that Flash is not available for 64 bit browsers yet (unless you are on linux).
Tuesday, February 16, 2010
Thursday, January 28, 2010
Posting to Blogger from Perl
Here is a little snippet that allows you to post to your Blogger blog from Perl:
use Net::SMTP::TLS;
my $mailer = new Net::SMTP::TLS(
'smtp.gmail.com', # dont change
Hello => 'smtp.gmail.com', # dont change
Port => 587, # dont change
User => 'your.address@gmail.com', # change to your username
Password => 'password' # change to your password
);
# you email address associated with the blog
$mailer->mail('your.address@gmail.com');
# the address to send the post to
$mailer->to('blogid.secretword@blogger.com');
$mailer->data;
# blog post body
$mailer->datasend("Subject: Title of my blog post\n\n")
; # keep the trailing \n\n!
$mailer->datasend("The text of my post here\n");
# end blog post
$mailer->dataend;
$mailer->quit;
Let me know how this works for you!
Thursday, January 14, 2010
Mapping OWL ontologies into PERL
Unlike in JAVA, there doesn't exist a way in PERL to generate modules from Web Ontologies (OWL). Well, not until recently!
As part of a bigger effort, the CPAN module, SADI, contains a script for generating fully functional PERL modules from Web Ontologies. The script is called sadi-generate-datatypes.pl and is automatically installed along side the SADI module. Under the hood it is using RDF/OWL parsing code from PLUTO (a module built on from a project from IBM).
I wont go into the details for how to use this module here (there is ample documentation available on CPAN for this module). I would like to point the interested reader to the documentation for generating the Perl modules. Go to http://search.cpan.org/dist/SADI/ and at the very bottom you will see under the "Other Files" header a link called doc/working_with_datatypes.html. That file should get you going.
As part of a bigger effort, the CPAN module, SADI, contains a script for generating fully functional PERL modules from Web Ontologies. The script is called sadi-generate-datatypes.pl and is automatically installed along side the SADI module. Under the hood it is using RDF/OWL parsing code from PLUTO (a module built on from a project from IBM).
I wont go into the details for how to use this module here (there is ample documentation available on CPAN for this module). I would like to point the interested reader to the documentation for generating the Perl modules. Go to http://search.cpan.org/dist/SADI/ and at the very bottom you will see under the "Other Files" header a link called doc/working_with_datatypes.html. That file should get you going.
Labels:
ontologies,
OWL,
perl
Subscribe to:
Posts (Atom)

