Microformat

Microformats are cool, little standards for representing data in HTML. They give you “formats” for creating: contact-info (hCard) lists (XOXO) events (hCalendar) tags (rel-tag) Check out microformats if you need any of the above on you website. I surely do! microformats.org

SSL on Ubuntu

Short tutorial on setting up SSL site on Ubuntu. 1) Make sure apache is working correctly without SSL 2) Enable SSL apache module sudo a2enmod ssl 3) Add generate self-signed certificate cd /etc/apache2/ mkdir ssl sudo openssl req -new -x509 -nodes -days 365 -out server.crt -keyout server.key sudo chmod o-r server.key 4) Add port 443 […]