I've made some tweaks to opml2html to make it a little cleaner and more useful.
The main two additions are a class so opml2html can be called programmatically and a command line argument so the input file isn't static.
A Java/GWT webmail experiment.
Link: ssmail
NOTE: The follow instructions are meant for the Linux CLI, and should be run with sudo or as root.
Install wvdial
Debian/Ubuntu: apt-get install wvdial
Fedora/RHEL: yum install wvdial
Edit /etc/wvdial.conf and replace its content with:
[Dialer Defaults]
Modem = /dev/ttyACM0
Baud = 460800
Init1 = ATZ
Init2 = ATQ0
[Dialer ricochet]
Username = *
Password = *
Phone = 3333
Inherits = Dialer Defaults
Replace /dev/ttyACM0 with the device your modem connected to:
$ dmesg | grep cdc_acm
cdc_acm 2-1:1.0: ttyACM1: USB ACM device
Take the device name and prepend dev, so you get:
Modem = /dev/ttyACM1
Start wvdial
wvdial ricochet &
I've created a simple Python script to convert Google Reader’s OPML to HTML.
Link: http://github.com/silas/graveyard/tree/master/python-opml2html/