<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7648565</id><updated>2012-01-13T14:08:20.295-08:00</updated><category term='voting'/><category term='hawaii'/><category term='uverse'/><category term='disney'/><category term='funny'/><category term='movies/tv'/><category term='apple'/><category term='programming'/><category term='airlines'/><category term='windows'/><category term='monorail'/><category term='star trek'/><category term='att'/><category term='open source'/><category term='rant'/><title type='text'>Quanterium: The Weblog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>85</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7648565.post-4222099097775775324</id><published>2012-01-13T14:05:00.000-08:00</published><updated>2012-01-13T14:08:20.308-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><title type='text'>Creating a Self-Signed SSL Certificate for Multiple Domains</title><content type='html'>This morning's adventure was trying to figure out how to generate a self-signed SSL certificate for multiple domains using OpenSSL. I found lots of discussions online, but they all didn't quite work. There were a few different ways to get a Certificate Signing Request with the SubjectAltName fields correct, but the signed certificate itself didn't have them. Finally, I got something that worked.&lt;br /&gt;&lt;br /&gt;Credit where credit is due: The final steps that worked were based on&amp;nbsp;&lt;a href="http://www.mail-archive.com/openssl-users@openssl.org/msg47647.html"&gt;this message from the openssl-users list&lt;/a&gt;&amp;nbsp;and the command to generate the certificate from&amp;nbsp;&lt;a href="http://library.linode.com/security/ssl-certificates/subject-alternate-names"&gt;this page in the Linode Library&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;First, save the following in a config file, for this example I'll call it example.conf and it will be for various similar domains:&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ ca ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;default_ca &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= CA_default&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ CA_default ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;dir &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = .&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;serial &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= $dir/serial&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;database &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= $dir/index.txt&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;new_certs_dir &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = $dir/newcerts&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;certs &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = $dir/certs&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;certificate &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = $certs/cacert.pem&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;private_key &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = $dir/private/cakey.pem&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;default_days &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 365&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;default_md &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= sha1&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;preserve &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= no&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;email_in_dn &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = no&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;nameopt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = default_ca&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;certopt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = default_ca&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;policy &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= policy_match&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;copy_extensions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = copy&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ policy_match ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;countryName &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = match&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;stateOrProvinceName &amp;nbsp; &amp;nbsp; = match&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;organizationName &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= match&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;organizationalUnitName &amp;nbsp;= optional&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;commonName &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= supplied&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;emailAddress &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= optional&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ req ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;default_bits &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 2048 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;# Size of keys&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;default_keyfile &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = example.key &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # name of generated keys&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;default_md &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= sha1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;# message digest algorithm&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;string_mask &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = nombstr &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # permitted characters&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;distinguished_name &amp;nbsp; &amp;nbsp; &amp;nbsp;= req_distinguished_name&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;req_extensions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= v3_req&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;x509_extensions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = v3_req&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ req_distinguished_name ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Variable name &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Prompt string&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#---------------------- &amp;nbsp; ----------------------------------&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;0.organizationName &amp;nbsp; &amp;nbsp; &amp;nbsp;= Organization Name (company)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;organizationalUnitName &amp;nbsp;= Organizational Unit Name (department, division)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;emailAddress &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= Email Address&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;emailAddress_max &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 40&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;localityName &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= Locality Name (city, district)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;stateOrProvinceName &amp;nbsp; &amp;nbsp; = State or Province Name (full name)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;countryName &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = Country Name (2 letter code)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;countryName_min &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 2&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;countryName_max &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 2&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;commonName &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= Common Name (hostname, IP, or your name)&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;commonName_max &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 64&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Default values for the above, for consistency and less typing.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Variable name &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Value&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#------------------------------ &amp;nbsp; ------------------------------&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;commonName_default &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= www.example.com&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;0.organizationName_default &amp;nbsp; &amp;nbsp; &amp;nbsp;= Example Company&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;localityName_default &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= Honolulu&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;stateOrProvinceName_default &amp;nbsp; &amp;nbsp; = Hawaii&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;countryName_default &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = US&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;emailAddress_default &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= webmaster@example.com&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ v3_ca ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;basicConstraints &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= CA:TRUE&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;subjectKeyIdentifier &amp;nbsp; &amp;nbsp;= hash&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;authorityKeyIdentifier &amp;nbsp;= keyid:always,issuer:always&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ v3_req ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Extensions to add to a certificate request&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;basicConstraints = CA:FALSE&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;keyUsage = nonRepudiation, digitalSignature, keyEncipherment&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Some CAs do not yet support subjectAltName in CSRs.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Instead the additional names are form entries on web&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# pages where one requests the certificate...&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;subjectAltName &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= @alt_names&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[alt_names]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;DNS.1 &amp;nbsp; = www.example.com&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;DNS.2 &amp;nbsp; = www2.example.com&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;DNS.3 &amp;nbsp; = www.example.net&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;DNS.4 &amp;nbsp; = example.com&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ server ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Make a cert with nsCertType set to "server"&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;basicConstraints=CA:FALSE&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;nsCertType &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= server&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;nsComment &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = "OpenSSL Generated Server Certificate"&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;subjectKeyIdentifier=hash&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;authorityKeyIdentifier=keyid,issuer:always&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;[ client ]&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# Make a cert with nsCertType set to "client"&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;basicConstraints=CA:FALSE&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;nsCertType &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= client&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;nsComment &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = "OpenSSL Generated Client Certificate"&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;subjectKeyIdentifier=hash&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;authorityKeyIdentifier=keyid,issuer:always&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;Before saving the file, some changes will need to be made to be specific to your site. The one critical change is to change the [alt_names] section to be relevant to your domain, since these needed to be specified in the configuration file rather than being requested later. If you need more or fewer DNS names you can add or remove lines. One thing to note is that the first time I tried this, Firefox didn't like the URL when I tried to connect using the domain name listed in the commonName field, so I went ahead and added it to the alt_names section as well.&lt;br /&gt;&lt;br /&gt;You may also want to change the default keyfile names and other defaults to save yourself some typing later, especially if you're only going to be generating one certificate.&lt;br /&gt;&lt;br /&gt;Once you have the configuration file the way you like it, you're ready to generate the key and certificate. We'll be doing it in just one step, without saving the intermediate certificate signing request:&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;$ openssl req -new -x509 -days 365 -nodes -out example.crt -keyout example.key -config example.conf&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You'll be promoted for various certificate parameters; if you didn't change the defaults to what you want, you will need to enter them when prompted, otherwise you can just hit Enter at each prompt to accept the default specified in the configuration file. The certificate will be good for one year, if you want to change it, you can alter the number of days specified in the command line (or change the default in the config file).&lt;br /&gt;&lt;br /&gt;Once this is done, you'll see two new files: example.key (which contains the private key) and example.crt (which contains the public certificate). Do whatever it is to need to do with them for your application.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-4222099097775775324?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/4222099097775775324/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=4222099097775775324' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/4222099097775775324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/4222099097775775324'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2012/01/creating-self-signed-ssl-certificate.html' title='Creating a Self-Signed SSL Certificate for Multiple Domains'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-2690344951352096881</id><published>2011-11-16T16:16:00.001-08:00</published><updated>2011-11-17T13:30:38.791-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Using a Scientific Linux/CentOS/RHEL 6 Server for Time Machine</title><content type='html'>I recently tried to setup a Scientific Linux 6 server as a backup volume for Time Machine. I based my steps on &lt;a href="http://www.kremalicious.com/2008/06/ubuntu-as-mac-file-server-and-time-machine-volume/"&gt;these instructions for Ubuntu&lt;/a&gt;, but I thought there was enough differences that I thought it was worth posting what worked for me. I used Scientific Linux 6, but it should work just as well for CentOS 6 and Red Hat Enterprise Linux 6.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;A few assumptions made in these instructions, you will want to replace them as appropriate:&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;The user's username is "user".&lt;/li&gt;&lt;li&gt;The Linux server has a hostname of "linux.example.com". If you don't have a hostname in DNS, you can use the server's IP address instead.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;First, we need to setup the server:&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1. Install the EPEL repository. I already had it on the machine, but if it's not yet installed, read and follow the instructions at &lt;a href="http://fedoraproject.org/wiki/EPEL"&gt;http://fedoraproject.org/wiki/EPEL&lt;/a&gt;.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2. Install netatalk from the EPEL repository:&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# yum install netatalk&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3. Add the following line to the end of &lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;/etc/netatalk/afpd.conf&lt;/span&gt;:&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;- -transall -uamlist uams_randnum.so,uams_dhx.so -nosavepassword -advertise_ssh&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;4. Create the TimeMachine directory in the user's home directory or wherever you want it:&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;$ mkdir /home/user/TimeMachine&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;5. Add the following two lines to the end of &lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;/etc/netatalk/AppleVolumes.default&lt;/span&gt;. Note that I commented out the ~ line that was already present since I didn't want to enable home directory access; I just want to use this for Time Machine:&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;#~&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;/home/user/TimeMachine TimeMachine allow:user cnidscheme:dbd options:userdots,upriv&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;6. Configure netatalk to be started when the system boots:&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# chkconfig netatalk on&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;7. Start netatalk:&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;# service netatalk start&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;8. Open the AFP port in the firewall. Go to System, Administration, Firewall. Click Other Ports, Add, then scroll down until you find Port 548, Protocol tcp, Service afpovertcp. Select it and click OK. Repeat for Port 548, Protocol udp, Service aftpovertcp. Click Apply, then close the Firewall&amp;nbsp;Configuration&lt;span class="Apple-style-span" style="font-family: inherit;"&gt;&amp;nbsp;window.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Now, on your Mac:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1. Verify that you can connect to the server. From the Finder's Go menu, choose Connect to Server. Enter the server address &lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;afp://linux.example.com&lt;/span&gt; and click Connect. You should be prompted for a username and password.&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2. Configure Time Machine to allow you to use network volumes for Time Machine. Enter the following command in Terminal.app:&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space: pre;"&gt; &lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;$ &lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3. Go to System Preferences, select Time Machine. Enable Time Machine and select your mounted TimeMachine volume. You will be prompted for a username and password that Time Machine will use to connect when it's performing the backup.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-2690344951352096881?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/2690344951352096881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=2690344951352096881' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/2690344951352096881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/2690344951352096881'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2011/11/using-scientific-linuxcentosrhel-6.html' title='Using a Scientific Linux/CentOS/RHEL 6 Server for Time Machine'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-6090964883862623790</id><published>2011-03-18T21:35:00.000-07:00</published><updated>2011-03-18T21:36:26.088-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='att'/><category scheme='http://www.blogger.com/atom/ns#' term='uverse'/><title type='text'>Why AT&amp;T Should Give Me a 93% Discount on U-Verse Internet</title><content type='html'>&lt;div&gt;So, I recently moved. At my new house, I signed up for AT&amp;amp;T U-Verse TV and Internet. So, what happens this week, before I've even received my first bill? DSLReports and Engadget &lt;a href="http://www.engadget.com/2011/03/13/atandt-will-cap-dsl-u-verse-internet-and-impose-overage-fees/"&gt;break the news&lt;/a&gt; that AT&amp;amp;T will begin imposing a 250 gigabyte per month cap on U-Verse Internet service. This already has me reconsidering my options.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Switching to DSL (I've heard a lot of good things about DSLExtreme) would be my likely choice, as I've had some pretty bad experiences with Time Warner Cable's Internet offerings. Plus, from what I understand, DSL and U-Verse run over the same copper pair, so I'd also have to change my TV provider. Time Warner Cable isn't all that attractive, and I had some bad experiences with the DirecTV customer service people before deciding on U-Verse. But that's really beside the point, and not why I'm breaking out the Blogger account for the first time in almost a year.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;No, I want to lay out why AT&amp;amp;T should be giving me an 93% discount on my U-Verse service. It all boils down to simple math:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/-AeuA-PKoByU/TYQtEiO3SCI/AAAAAAAAEGk/Px_nenPyFac/s1600/uverse.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 32px;" src="http://4.bp.blogspot.com/-AeuA-PKoByU/TYQtEiO3SCI/AAAAAAAAEGk/Px_nenPyFac/s400/uverse.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5585638993778133026" /&gt;&lt;/a&gt;I have the U-Verse Max plan, which offers download speeds of 12 megabits per second. I even did the math in AT&amp;amp;T's favor, and used a non-leap year February as the definition of a month, being 28 days. Now we need to do one more division:&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-AZ_HlqC3fVw/TYQwR_HTW_I/AAAAAAAAEHI/rcVte2VaLq0/s1600/uverse2.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 79px; height: 42px;" src="http://1.bp.blogspot.com/-AZ_HlqC3fVw/TYQwR_HTW_I/AAAAAAAAEHI/rcVte2VaLq0/s400/uverse2.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5585642523404229618" /&gt;&lt;/a&gt;In other words, the bandwidth caps allow me to use just 7% of the theoretical maximum amount of Internet usage I could have in a month. And that doesn't account for the 1.5 megabits per second upload speed. So if I can only get 7% of what I signed up for, I should only pay 7% of what I was paying for before. In other words, a 93% discount.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Since the current charge for U-Verse Max is $45/month, that means I'll be paying just $3.15/month if I were to get the discount. Oh, and the folks with the $65/month Max Turbo plan, which offers 24 megabits per second? They'll barely get 4% of what they signed up for. It actually makes Max Turbo the an even better deal, at a mere $2.60/month.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Figuring out how long it would take at 12 megabits per second to consume the 250 gigabyte per month limit is left as an exercise to the reader. It's simple middle school algebra.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-6090964883862623790?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/6090964883862623790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=6090964883862623790' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/6090964883862623790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/6090964883862623790'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2011/03/why-at-should-give-me-93-discount-on-u.html' title='Why AT&amp;T Should Give Me a 93% Discount on U-Verse Internet'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-AeuA-PKoByU/TYQtEiO3SCI/AAAAAAAAEGk/Px_nenPyFac/s72-c/uverse.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-258402479687004169</id><published>2010-04-06T22:33:00.000-07:00</published><updated>2010-04-06T22:43:05.828-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>Spirit Airlines Hates Its Customers</title><content type='html'>Spirit Airlines likes to charge low fares.  Really low fares.  Absurdly low fares.  So low, that they don't cover the cost of hauling the passenger from the gate to the end of the runway.  How low?  Try $9.  But that's apparently not low enough.  Yesterday, they announced new, even lower fares.  But where do you go from $9?&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;img src="http://i38.tinypic.com/1zmh1r7.jpg" width="100" /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Of course, if you think you're really going to get to fly somewhere on an airplane for one measly penny, you'd be quite mistaken.  For if there's one thing Sprit likes more than really low fares, this is it:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Fees.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Here are a few of them:&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Want to check a bag? $19 if you pay online, $25 at the airport.&lt;/li&gt;&lt;li&gt;How about another bag? $25. After August 1st, it will be $45.&lt;/li&gt;&lt;li&gt;Get thirsty on board the plane? $2-3&lt;/li&gt;&lt;li&gt;Want to pick your seat before you check in? $7.  For the middle seat.&lt;/li&gt;&lt;li&gt;Rather pre-reserve a window or aisle seat? $12.  $20 for the emergency exit row.&lt;/li&gt;&lt;li&gt;Oh, and you actually want that $9 fare?  You'll have to join their $9 Fare Club, which costs $39.95 per year.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;But all of that isn't new.  And much of it is being copied by other airlines, some not exactly known for having low fares in the first place.  That one-penny fare also doesn't include fuel.  You pay for the seat, but there's an extra fee to actually move it anywhere.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;But, buried in that press release about the one-penny fare (which I'm sure Spirit was hoping would get most of the attention), was yet another new fee.&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Want to carry-on your own luggage?  Free.  If it fits under the seat in front of you.&lt;/li&gt;&lt;li&gt;$20.  If you're a member of the $9 Fare Club and you pay in advance.&lt;/li&gt;&lt;li&gt;Otherwise, it's $30.&lt;/li&gt;&lt;li&gt;Or $45 if you wait to pay at the gate.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;That's right. For the privilege of hauling your bag through the security checkpoint by yourself (ensuring that all liquids are in 100mL containers or less in a 1-quart zip top plastic bag outside your luggage), dragging it all through the airport terminals and down the jet bridge, and hoisting it in to the overhead bin all by yourself (ok, so you might get another passenger or a flight attendant to help you with that last bit), you have to pay Spirit Airlines a fee.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I want people to pay me to do things themselves.  Imagine having to tip the bellman at a hotel for not bringing your luggage to your room, or tipping the valet to park your car yourself.  That's what this is.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;At the same time, they're lowering the fee for the first checked bag.  $15 on domestic flights and $20 on international flights; $10 more if you're not a $9 Fare Club member.  So it's actually cheaper to check a bag then not.  The airline is charging you more if you do something yourself than if they do it for you.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Does that make any sense?  It's like if, at the gas station, the prices at the full service pumps cost less than at the self service pumps.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Actually, yes it does make sense.  Spirit's COO lays it out in the press release:&lt;/div&gt;&lt;div&gt;&lt;blockquote&gt;“In addition to lowering fares even further, this will reduce the number of carry-on bags, which will improve inflight safety and efficiency by speeding up the boarding and deplaning process, all of which ultimately improve the overall customer experience,” says Spirit’s Chief Operating Officer Ken McKenzie. “Bring less; pay less. It’s simple.”&lt;/blockquote&gt;So, they want to reduce the number of carry-on bags.  So if you charge people to do it, they won't.  Simple enough.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Or is it?  We have to ask the question: Why are people bringing on so many carry-on bags?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I've already answered that question.  Scroll back up.  I'll wait.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ok, I'll tell you again:&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Want to check a bag? $19 if you pay online, $25 at the airport.&lt;/li&gt;&lt;li&gt;How about another bag? $25. After August 1st, it will be $45.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;a href="http://quanterium.blogspot.com/2008/05/more-bad-ideas-from-airline-industry.html"&gt;As I predicted&lt;/a&gt; when American Airlines started charging for that first checked bag almost two years ago, when asked to pay a fee to check their bags, many customers will choose instead to carry them on.  How do we know this is happening?  Ask the flight attendants, &lt;a href="http://www.suntimes.com/business/2115406,CST-NWS-baggage22.article"&gt;who will tell you&lt;/a&gt; that passengers have been carrying on more since the airlines started charging to check bags.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So, doesn't that mean that the problem of too-many carry-ons is really the airlines' fault in the first place?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Yes.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;And does it also mean that they could solve the problem by simply not charging that fee?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Yes.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;But instead of reversing the move that caused the problem in the first place, Sprit has decided to solve the problem by charging &lt;i&gt;yet another&lt;/i&gt; fee.  It may work too, but not in the way Spirit is hoping.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Fewer passengers on board mean fewer carry ons, regardless of whether or not they check the bags.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So why would the company choose the customer-unfriendly option in the first place, that has the possibility of hurting its business even more?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I can draw only one conclusion:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Spirit Airlines hates its customers.&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-258402479687004169?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://finance.yahoo.com/news/Spirit-Airlines-Announces-bw-1858262563.html?x=0&amp;.v=1' title='Spirit Airlines Hates Its Customers'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/258402479687004169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=258402479687004169' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/258402479687004169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/258402479687004169'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2010/04/spirit-airlines-hates-its-customers.html' title='Spirit Airlines Hates Its Customers'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://i38.tinypic.com/1zmh1r7_th.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-960380817940308372</id><published>2010-03-01T22:11:00.000-08:00</published><updated>2010-03-01T22:36:47.214-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='disney'/><title type='text'>Captain EO, a Quick Review</title><content type='html'>I was at Disneyland on Sunday and saw the return of &lt;i&gt;Captain EO&lt;/i&gt;.  This was the first day with full weekend crowds since it opened (as Saturday was rainy, the park was likely not as busy as it would normally be on a Saturday).  I was there around 10:30 in the morning and the wait was about the same as I'd read about during the week on MiceChat's forums:  I had to wait a few minutes in the queue, pretty much right under the new sign.  We were then let in to the main queue area, and I was able to find a spot to stand at the bottom of the steps near the theater door.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;There was a several minute wait for the pre-show video to start.  Some of it seemed familiar.  It was nice, and the Kodak ad wasn't nearly as drawn out as it was for &lt;i&gt;Honey, I Shrunk the Audience!&lt;/i&gt; &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;When we were let into the theater, several announcements were made reminding people to move all the way to the end of the row as the auditorium was going to be full.  I was seated a few rows back, near the exit side of the row.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The show itself was great.  I did see some ghosting in the 3D picture, but it might have just been me as I was noticing the picture didn't seem quite right for &lt;i&gt;MuppetVision 3D&lt;/i&gt; and &lt;i&gt;It's Tough to be a Bug&lt;/i&gt; that afternoon as well.  I was too young to remember the starfield effect, but having had it pointed out in advance, I did miss the lasers when EO's ship is under attack in space, since there's no visual effect to go with the sound.  It seems like of the three missing original effects (the third being smoke), the lasers would have been the easiest to reinstall in the theater.  This might be heretical to say, but if they're not going to reinstall the lasers, I wonder if the visual effect should be added to the film itself.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The motion floor was interesting.  I don't know if it can move at an angle or just uniform up and down; if so it would have been nice to angle the floor to synchronize with the movements of the ship before it lands, to give the audience the feeling of turning as well.  The movement of the floor during the musical numbers sometimes worked and seem to fit but sometimes felt unnecessary, like it was added just because they could.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Got a cheer from the audience when EO first comes on screen -- before we even saw his face.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;At the end of the show, the cast member referred to our 3D glasses as "safety goggles", which is what they were referred to as for HISTA.  The signs at the receptacle bins also referred to them that way.  The glasses are HISTA yellow; the original EO glasses were purple.  MuppetVision glasses are purple, it seems like it would be simple enough to swap the EO and MuppetVision glasses for the extra bit of authenticity at EO, but the color of the glasses is a pretty minor thing.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Here's hoping that, at least in Anaheim, Wayne Szalinski has shrunk his last audience.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-960380817940308372?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/960380817940308372/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=960380817940308372' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/960380817940308372'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/960380817940308372'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2010/03/captain-eo-quick-review.html' title='Captain EO, a Quick Review'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-7056056373902562656</id><published>2009-11-03T21:21:00.000-08:00</published><updated>2009-11-04T10:29:52.993-08:00</updated><title type='text'>TRENDnet modems with AT&amp;T DSL</title><content type='html'>I recently got a new DSL modem, a TRENDnet TEW-435BRM.  I had trouble getting it to work; the automatic configuration wasn't working.  I searched around and saw lots of people having problems getting TRENDnet routers to work on AT&amp;amp;T DSL as well.  After playing around with settings for a while, I did get it to work, so I thought I'd post here in case it might help others in the future.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The following settings work for me:&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;VPI: 0&lt;/li&gt;&lt;li&gt;VCI: 35&lt;/li&gt;&lt;li&gt;DSL Modulation: ADSL2&lt;/li&gt;&lt;li&gt;Connection method: Login, PPPoE&lt;/li&gt;&lt;li&gt;DSL Duplexing Method: LLC-BASED&lt;/li&gt;&lt;li&gt;Login name and password are my AT&amp;amp;T/Yahoo credentials&lt;/li&gt;&lt;li&gt;Connect Behavior: Keep Alive (Reconnect immediately)&lt;/li&gt;&lt;li&gt;IP Address: Automatic&lt;/li&gt;&lt;li&gt;DNS: Automatic&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-7056056373902562656?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/7056056373902562656/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=7056056373902562656' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/7056056373902562656'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/7056056373902562656'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2009/11/trendnet-modems-with-at-dsl.html' title='TRENDnet modems with AT&amp;T DSL'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-5178760096639452140</id><published>2009-06-05T14:41:00.000-07:00</published><updated>2009-06-05T14:45:28.870-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>The GIGO Buffer</title><content type='html'>&lt;p&gt;I've contemplated doing this for a while, and after a conversation at work this past week, I've decided to actually implement it.&lt;/p&gt;&lt;p&gt;Presenting, a GIGO (Garbage In, Garbage Out) Buffer. Implemented in Python, and won't work on Windows (because really, that whole OS is basically a giant GIGO buffer).&lt;/p&gt;&lt;pre&gt;&lt;br /&gt;#!/usr/bin/env python&lt;br /&gt;&lt;br /&gt;class GIGO_Buffer:&lt;br /&gt; """&lt;br /&gt; Implementation of a Garbage In, Garbage Out buffer.&lt;br /&gt; """&lt;br /&gt;&lt;br /&gt; def push(self, element):&lt;br /&gt;   """&lt;br /&gt;   Push data into the buffer.&lt;br /&gt;  &lt;br /&gt;   @param element: Data to add to the buffer.&lt;br /&gt;   """&lt;br /&gt;   return&lt;br /&gt;&lt;br /&gt; def pop(self, len):&lt;br /&gt;   """&lt;br /&gt;   Pop data from the buffer.&lt;br /&gt;  &lt;br /&gt;   @param len: Number of bytes of data to pop from the buffer.&lt;br /&gt;   @returns len bytes of data from the buffer.&lt;br /&gt;   """&lt;br /&gt;   data = open('/dev/urandom', 'r')&lt;br /&gt;   rval = data.read(len)&lt;br /&gt;   data.close()&lt;br /&gt;   return rval&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-5178760096639452140?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/5178760096639452140/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=5178760096639452140' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/5178760096639452140'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/5178760096639452140'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2009/06/gigo-buffer.html' title='The GIGO Buffer'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-526778525542482957</id><published>2008-05-21T19:40:00.000-07:00</published><updated>2010-04-06T22:36:54.837-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>More Bad Ideas from the Airline Industry</title><content type='html'>Here's why this is a bad idea:&lt;br /&gt;&lt;br /&gt;First, for at least the short term, checking in will take longer as people argue with the agents about the fee. Plus, there will be confusion about who pays the fee and who doesn't. Sure, they lay it out pretty clearly on their web site, but do we really expect all their front line agents to know all the details? And we know customers don't read.&lt;br /&gt;&lt;br /&gt;Second, it will make security lines longer as more people who might have otherwise checked a bag now try to bring it through as a carry on to avoid paying the fee. People like me who would check through their liquid stuff will now have to have it as one more thing to pull out of the back and place in a separate bin along with my shoes, laptop, and sweater/coat.&lt;br /&gt;&lt;br /&gt;Third, boarding will take longer while people try to find room for all that stuff they didn't check. People trying to stuff it in the overhead bin, figure out how to get it under their seat, and finally having to check it through anyway.&lt;br /&gt;&lt;br /&gt;The ultra-low-cost carriers like Ryanair, Allegiant, and the late, unmissed Skybus can get away with this because their fares are so low that I actually buy the argument that they're simply operating on an a la carte model where you pay for the services you want. I have a harder time buying that argument from American, where we won't be seeing the fares going down (and most people won't notice if they keep the fares lower by doing this in lieu of simply raising fares) and their fares aren't and won't be substantially different from their competitors.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-526778525542482957?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.dallasnews.com/sharedcontent/dws/dn/latestnews/stories/052208dnbusaaprotest.14f22ce7.html' title='More Bad Ideas from the Airline Industry'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/526778525542482957/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=526778525542482957' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/526778525542482957'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/526778525542482957'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2008/05/more-bad-ideas-from-airline-industry.html' title='More Bad Ideas from the Airline Industry'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-7823053784898278732</id><published>2008-03-30T15:44:00.001-07:00</published><updated>2008-04-13T12:34:08.208-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hawaii'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>We'll Miss You</title><content type='html'>&lt;img src="http://img.photobucket.com/albums/v471/hawaiian717/aloha.jpg" border="0" /&gt;&lt;div&gt;1946-2008&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-7823053784898278732?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://savealoha.org' title='We&apos;ll Miss You'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/7823053784898278732/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=7823053784898278732' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/7823053784898278732'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/7823053784898278732'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2008/03/well-miss-you.html' title='We&apos;ll Miss You'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-7295189862165587216</id><published>2007-10-27T21:05:00.000-07:00</published><updated>2007-10-27T21:08:12.330-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Leopard: The Cat is Out of the Bag</title><content type='html'>Yeah, yeah.  That's not original at all.&lt;br /&gt;&lt;br /&gt;Rawr.&lt;br /&gt;&lt;br /&gt;So I've had Leopard running on my G5 for a few hours, and here are some thoughts.&lt;br /&gt;&lt;br /&gt;Before I installed Leopard, I used &lt;a href="http://www.bombich.com/software/ccc.html"&gt;Carbon Copy Cloner&lt;/a&gt; to clone my system onto an external FireWire hard drive that will ultimately become my Time Machine backup drive.  This turned out to be a good thing, as the installation turned out to be a bit of a hairy experience.  I initially attempted to do an Archive and Install, however during the process I got a message that installation had failed.  I tried again, this time doing an Erase and Install, and got the same error.  I dug out my original Power Mac G5 DVD and ran the Apple Hardware Test.  Sure enough, it reported problems with memory.  I pulled the two 512MB modules I had added a while back, reverting to the original 512MB of RAM.  These modules were warranty replacements for my original pair which had gone bad, and I didn't really want to have to replace them again.  Sure enough, this time the install succeeded.  After the system was up and running, I put the extra memory modules back in and so far no problems.&lt;br /&gt;&lt;br /&gt;During the install process, there was the option to copy my information over from an external hard drive; a feature I had used before when I replaced my iBook with a PowerBook, only this time I would be using just the hard drive rather than a Mac in FireWire target disk mode.  The copy took a while, but when it was done I was up and running again, just the same as if I had done an Archive and Install -- except that the Previous System was tucked away on another disk rather than on the same disk.  The only hitch was that it had trouble copying over the software for my Microsoft keyboard; I was able to grab that off of their web site and reinstall it without much difficulty.&lt;br /&gt;&lt;br /&gt;Once I got things up and running, things seemed to work fine.  I did have to update the &lt;a href="http://xiph.org/quicktime/"&gt;Xiph QuickTime Components&lt;/a&gt; to get Ogg files to play properly in iTunes.  One time Firefox got suck behind the other windows; quitting and relaunching fixed that. &lt;a href="http://www.ksuther.com/chax/"&gt;Chax&lt;/a&gt; doesn't work yet; while I no longer need it to get tabbed chats in iChat, I do miss having the buddy list automatically resize itself to be just long enough to show all my online contacts like &lt;a href="http://www.adiumx.com/"&gt;Adium&lt;/a&gt; does.  I'd use Adium for everything, except that I do use the video feature, and now expect to use screen sharing as well.&lt;br /&gt;&lt;br /&gt;Thanks to &lt;a href="http://forum.insanelymac.com/index.php?showtopic=67265"&gt;a post on the InsanelyMac forum&lt;/a&gt;, I found the new nebula background that is used on the login screen.  It's &lt;span style="font-weight: bold;"&gt;DefaultDesktop.jpg&lt;/span&gt; in &lt;span style="font-weight: bold;"&gt;/System/Library/CoreServices&lt;/span&gt;.  I wanted to use it as my desktop, so I opened up the Desktop &amp;amp; Screen Saver preferences panel and dragged it into the little graphic well.  Why Apple didn't just put it in with the other default desktop pictures, I'm not sure.&lt;br /&gt;&lt;br /&gt;I like the look of the new dock.  Until now, I'd always kept the dock set to hide unless I moved the mouse to the bottom of the screen.  Which probably made sense back when I was using a 17" CRT (at probably 1034x768) like when I first installed Mac OS X 10.0.  Since I'm now using a 21" LCD at 1600x1200, I think I can give up that little bit of space at the bottom.  I'm not sure about the Stacks thing but I think I can get used to it.  In the past, I've kept a copy of my Applications and user home folder in my dock for easy access.  I'd right click on Applications to pick an application, and usually just click the home folder to open it in a Finder window.  It seems to be taking a bit longer to find applications in the grid view than it did as a menu, since instead of just finding it vertically, I have to search both the right row and column in the grid.  On the other hand, not having to scroll ought to be nice, so it balances out.  I do prefer the grid view to the fan view; having the list curve off to the side seems rather useless.&lt;br /&gt;&lt;br /&gt;I'm not wild about the new folder icon; I prefer the older ones.  The new ones remind me of the rather ugly ones used in the &lt;a href="http://fedoraproject.org/wiki/Tours/Fedora7/022_Fedora_Desktop"&gt;default Fedora 7 desktop&lt;/a&gt;.  Did someone decide that the 3D folder icons--which date back to the &lt;a href="http://en.wikipedia.org/wiki/Copland_%28operating_system%29"&gt;Copland&lt;/a&gt; project and ultimately appeared in Mac OS 8--have gone out of style?&lt;br /&gt;&lt;br /&gt;I also saw some complaints about the transparent menu bar, but that doesn't seem to be bothering me.  It seems pretty smart: Against a dark background, it is less transparent so it maintains good contrast with the black text.&lt;br /&gt;&lt;br /&gt;I'm not wild about having document icons be previews.  I usually turn this off in Konqueror.  I normally use the column view, so all the icons are pretty small and they all look about the same.  I'd much rather have a Word document icon for .docs, an Adobe Reader document icon for .pdfs, and so on, and use Quick Look to get a preview.&lt;br /&gt;&lt;br /&gt;I'll wrap this post up with this thought:  How come I haven't seen any Leopard &lt;a href="http://icanhascheezburger.com/"&gt;Lolcats&lt;/a&gt; yet?  Too obvious?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-7295189862165587216?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.apple.com/macosx/' title='Leopard: The Cat is Out of the Bag'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/7295189862165587216/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=7295189862165587216' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/7295189862165587216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/7295189862165587216'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2007/10/leopard-cat-is-out-of-bag.html' title='Leopard: The Cat is Out of the Bag'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-6691014381236302847</id><published>2007-10-22T19:18:00.000-07:00</published><updated>2007-10-22T19:19:22.374-07:00</updated><title type='text'>San Diego Fires</title><content type='html'>Just for anyone who might be concerned about me, my area of San Diego thus far isn't very badly affected.  Some smoke in the air but that's it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-6691014381236302847?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/6691014381236302847/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=6691014381236302847' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/6691014381236302847'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/6691014381236302847'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2007/10/san-diego-fires.html' title='San Diego Fires'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-4089912564280428362</id><published>2007-08-23T21:23:00.001-07:00</published><updated>2007-08-23T21:25:46.446-07:00</updated><title type='text'>Taro Chips</title><content type='html'>I knew taro chips are tasty, but apparently they also have great taste in television:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img.photobucket.com/albums/v471/hawaiian717/IMG_2744.jpg" border="0" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-4089912564280428362?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/4089912564280428362/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=4089912564280428362' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/4089912564280428362'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/4089912564280428362'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2007/08/taro-chips.html' title='Taro Chips'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-6449750450016905594</id><published>2007-06-17T10:51:00.000-07:00</published><updated>2007-06-17T10:52:02.598-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='movies/tv'/><title type='text'>HDTV</title><content type='html'>After stumbling across &lt;span style="font-style: italic;"&gt;Pirates of the Caribbean&lt;/span&gt; last night on ABC, I realized that ABC is one of the channels I get an over the air HDTV signal from, so I switched from my cable input to that.  And I have to say, HDTV looks a lot better.&lt;br /&gt;&lt;br /&gt;As an aside, I've also been rather impressed by the side-by-side comparisons of DVD versus BluRay at stores like Best Buy and Circuit City.  But I'm planning to wait until there's a clear winner in the BluRay versus HD-DVD format war (or players that can handle both formats become cheap) before moving from DVD to a new format.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-6449750450016905594?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/6449750450016905594/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=6449750450016905594' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/6449750450016905594'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/6449750450016905594'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2007/06/hdtv.html' title='HDTV'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-116296819347677162</id><published>2006-11-07T22:36:00.000-08:00</published><updated>2006-11-07T22:43:13.486-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='voting'/><title type='text'>Done Voting?  Good.  Pay More for Gas.</title><content type='html'>Sigh.&lt;br /&gt;&lt;br /&gt;Guess all those conspiracy theorists that were saying gas prices were down just for the elections were true.  They're already going up.&lt;br /&gt;&lt;br /&gt;Where's my &lt;a href="http://media.ford.com/mazda/article_display.cfm?article_id=17134&amp;amp;make_id=227"&gt;hydrogen-hybrid RX-8&lt;/a&gt;?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-116296819347677162?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.kfmb.com/features/consumer_alert/story.php?id=69376' title='Done Voting?  Good.  Pay More for Gas.'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/116296819347677162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=116296819347677162' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/116296819347677162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/116296819347677162'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/11/done-voting-good-pay-more-for-gas.html' title='Done Voting?  Good.  Pay More for Gas.'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-116296435346370125</id><published>2006-11-07T21:33:00.000-08:00</published><updated>2006-11-07T21:39:13.473-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='voting'/><title type='text'>Tap, tap, tap...</title><content type='html'>Yes, I voted today.  Yes, we had electronic voting machines.  Yes, they were Diebold.  Yes, they had voter verified paper trails.  Yes, I used it.&lt;br /&gt;&lt;br /&gt;Seemed to work pretty well.  I didn't have any problems with the machine not registering my vote correctly, so I guess my machine was properly calibrated.  I also went after work, so if there had been any issues hopefully they got worked out.  They also had paper ballots for those who needed to cast a provisional ballot and I suspect if I asked I could have gone that route.  Which I would have if they didn't have the paper trail.&lt;br /&gt;&lt;br /&gt;The only potential problem I saw was that the paper trail was pretty narrow, so some of the issue titles were cut off.  In particular I think all the judge confirmations looked the same.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-116296435346370125?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/116296435346370125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=116296435346370125' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/116296435346370125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/116296435346370125'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/11/tap-tap-tap.html' title='Tap, tap, tap...'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-116130849259375161</id><published>2006-10-19T18:26:00.000-07:00</published><updated>2006-10-19T18:41:32.630-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='voting'/><title type='text'>Decisions, Decisions</title><content type='html'>Well, I was planning to vote to reelect &lt;a href="http://www.house.gov/susandavis/"&gt;Susan Davis&lt;/a&gt;, since she did vote against the Military Commissions Act (you know, the one that lets the President define what torture is), but then she went and supported a bill to prohibit joint-use at Miramar.  I'm also not fond of the idea of the Republicans keeping control of the House.&lt;br /&gt;&lt;br /&gt;I wonder what Davis' proposal is for an alternative solution to the airport.  Does she really want to build an airport in Imperial County?  Does she really want to dislocate many people in order to build a second runway at Lindbergh?  Or does she prefer to keep the airport as is and watch Lindbergh get busier and busier, and hope that the problem just solves itself.&lt;br /&gt;&lt;br /&gt;Which is wishful thinking, because it won't.  We can't just demand airlines bring in larger planes, unless we want to alienate San Diego's largest airline, Southwest, which doesn't have anything bigger than it's current 737s.  We can't rely on Orange County and LAX to relieve us, as they have their own capacity problems to deal with, and Ontario is no better alternative for us than it is for LAX.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-116130849259375161?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.signonsandiego.com/news/politics/20061019-1346-bn19airport2.html' title='Decisions, Decisions'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/116130849259375161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=116130849259375161' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/116130849259375161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/116130849259375161'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/10/decisions-decisions.html' title='Decisions, Decisions'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-115881734463047650</id><published>2006-09-20T22:22:00.000-07:00</published><updated>2006-09-20T22:42:24.640-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hawaii'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>Inter-Island Airfares</title><content type='html'>One cannot deny that the arrival of go! in Hawaii's inter-island market has lowered airfares. What there seems to be a lot of misconceptions about is just how high fares were before Go arrived.&lt;br /&gt;&lt;br /&gt;Our tale starts in the good old days. The standard method of purchasing inter-island travel was the coupon.  These were pre-paid vouchers that were sold primarily through travel agents.  You bought the coupon, and then booked your reservation. Or not. If there was an open seat, you could just show up at the airport, hand the agent a coupon, and get on the plane.  You could also book your reservation by calling the airline, &lt;span style="font-style: italic;"&gt;then&lt;/span&gt; buy the coupon.  It didn't matter.  Hawaiian had them.  Aloha had them.  Island Air had them (but they were more expensive).  Mahalo had them.  &lt;span style="font-style: italic;"&gt;Air Molokai&lt;/span&gt; had them.  Coupon prices fluctuated; when there was more competition (such as Mahalo being in business), prices were down.  Then they'd slowly go up.  Different agencies sold them at different prices (Bankoh ATMs were usually a bit more expensive, but you couldn't beat the convenience of buying one at the Bankoh ATM in the Honolulu airport on your way from your flight from the mainland to your inter-island flight.  I did that once.)&lt;br /&gt;&lt;br /&gt;As you can imagine, yield-management, the practice of controlling price and inventory so as flights get fuller, prices go up, was basically impossible.&lt;br /&gt;&lt;br /&gt;So what happened?&lt;br /&gt;&lt;br /&gt;The same thing that wrecked everything else in the airline industry.  9/11.&lt;br /&gt;&lt;br /&gt;Coupons went away.  In its place came yield-managed e-tickets.  Actually, they had yield-managed fares for inter-island flights before, the difference was that people who knew about them went the coupon route.&lt;br /&gt;&lt;br /&gt;For the most part, the fares were a bit higher than what coupons left off at.  But not always.  But what really matters here is how it forced a changed in the way island residents had to travel.  Instead of being able to get on the flight for a relatively fixed price, last minute travelers would generally end up paying more, because the more popular flights would have long sold out their lower fares.  To get the lower fares, it became necessary to plan ahead and/or settle for a less desirable flight time.  Which is how it works everywhere else in the country.  &lt;span style="font-style: italic;"&gt;Even on Southwest&lt;/span&gt;.  People paying $200 or more to fly on a round trip inter-island ticket didn't plan ahead or insisted on taking a more popular flight time.&lt;br /&gt;&lt;br /&gt;All the arrival of Go did was cause the bottom end of the fare range to fall back into places it hasn't been... well, since Mahalo was around.  Go still has a range of fares, though to be fair their fares top out lower than Hawaiian's or Aloha's.  If you pick the more popular flight or don't plan ahead, you'll have to pay more.&lt;br /&gt;&lt;br /&gt;If you want the $39 flight, you'll have to plan ahead and be flexible.  It doesn't matter whether you're doing Las Vegas to Phoenix with Southwest or US Airways, or Honolulu to Kahului with Hawaiian or Go.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-115881734463047650?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/115881734463047650/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=115881734463047650' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115881734463047650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115881734463047650'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/09/inter-island-airfares.html' title='Inter-Island Airfares'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-115708351483687757</id><published>2006-08-31T21:01:00.000-07:00</published><updated>2006-08-31T21:05:14.846-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>Star Trek HD!</title><content type='html'>The rumors have been floating around this week, but you know it's confirmed with it's on StarTrek.com.  In mid month, the original Star Trek will return to TV with new digital special effects.  I've had thoughts now and then that this might be a neat thing to do, so I'm excited about it.  It's going into syndication so I'll have to track down which local station will be airing it.&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://www.tvguide.com/News/Insider/?cmsGuid=%7BFFD672A7-68D2-4EE3-A18C-781FC2972A5B%7D"&gt;TV Guide&lt;/a&gt; article has a photo of the new &lt;span style="font-style: italic;"&gt;Enterprise.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-115708351483687757?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.startrek.com/startrek/view/news/article/23775.html' title='Star Trek HD!'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/115708351483687757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=115708351483687757' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115708351483687757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115708351483687757'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/08/star-trek-hd.html' title='Star Trek HD!'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-115172369156288889</id><published>2006-06-30T20:08:00.000-07:00</published><updated>2006-06-30T20:15:18.786-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Intel-Native Office: The Sooner, the Better</title><content type='html'>Oh, and while I was at Best Buy I also stopped to briefly try out a MacBook.  I was particularly interested in checking out the new keyboard, so when I walked up to it (a black one, for the record), I clicked on the first word processing application I saw in the dock: Word.  Wow, it was slow to launch.  I didn't time it, but I just tried it on my 2001-vintage, 500MHz G3 iBook and it brought up Word a lot quicker.  I didn't try doing anything but opening a new document and typing a little, but just the launch time alone would have me wishing daily for an Intel-native version of Office.&lt;br /&gt;&lt;br /&gt;And for the record, the MacBook's new keyboard didn't bother me, nor did the shiny screen.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-115172369156288889?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/115172369156288889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=115172369156288889' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115172369156288889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115172369156288889'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/06/intel-native-office-sooner-better.html' title='Intel-Native Office: The Sooner, the Better'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-115172282681813584</id><published>2006-06-30T19:38:00.000-07:00</published><updated>2006-06-30T20:00:26.866-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>Vista, First Impressions</title><content type='html'>Best Buy has a Seagate 120GB hard drive on sale for $50 -- with no rebate nonsense -- so I decided I'd pick one up to throw Vista on.  Read on for some of my first impressions.&lt;br /&gt;&lt;br /&gt;The installer was a bit lame.  I booted off the DVD I'd burned and it installed ok.  But when it came to reboot, it booted off the DVD again and wanted to start the install again.  I'm not sure if that's just because of my particular PC's BIOS settings, but from when I've done XP installs, I seem to recall it managing to reboot to the hard drive without issues.  They could at least add a message saying to remove the DVD before rebooting, since it isn't needed after reboot anyway.&lt;br /&gt;&lt;br /&gt;My video card is weak (64MB GeForce4 MX 440) so I can only use the Vista Basic theme.  So no Aero for me.  Do get at least some of the new effects though.  The pulsing blue default button reminds me a lot of Mac OS X.  But I do think the new progress bar effect is pretty neat.  In programs that support it correctly, anyway.  Firefox doesn't.  Window borders for non-maximized windows are too big and take up too much space.&lt;br /&gt;&lt;br /&gt;The sideways folder icon is silly.&lt;br /&gt;&lt;br /&gt;Since I have separate Vista and XP installations, it would be nice if Vista could still recognize and use the apps I have installed in my XP partition, so I don't have to reinstall stuff to use under Vista.&lt;br /&gt;&lt;br /&gt;IE7 has tabs.  Nice.  Firefox was still the first program I downloaded and installed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-115172282681813584?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/115172282681813584/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=115172282681813584' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115172282681813584'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115172282681813584'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/06/vista-first-impressions.html' title='Vista, First Impressions'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-115034290896815945</id><published>2006-06-14T20:35:00.000-07:00</published><updated>2006-06-14T20:41:49.026-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>Windows Vista Is Too Big</title><content type='html'>I downloaded Windows Vista Beta 2 to install on the spare 6GB hard drive in my PC in order to check it out.  It won't fit.  I guess Vista will have to wait until I get around to buying a bigger spare hard drive, assuming it ever gets on the PC at all (it's already iffy with my low-end 64MB GeForce4 MX 440 graphics card).&lt;br /&gt;&lt;br /&gt;I didn't figure that part out until I'd already wiped out the Ubuntu install on that disk.  But that's not a big loss, since I still have Gentoo as my main Linux install on the machine, and the Ubuntu install had completed its purpose of my testing a Linux distribution to recommend besides Gentoo.  I approve of Ubuntu, and the network manager in Dapper Drake looks like the next best thing to Mac OS X I've seen yet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-115034290896815945?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/115034290896815945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=115034290896815945' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115034290896815945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/115034290896815945'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/06/windows-vista-is-too-big.html' title='Windows Vista Is Too Big'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-114559294055626560</id><published>2006-04-20T20:44:00.000-07:00</published><updated>2006-04-20T21:15:40.596-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Why Boot Camp Doesn't Mean the End of Mac OS X</title><content type='html'>There's been a lot of discussion going on ever since Apple released Boot Camp, a program that sets up Intel-powered Macs to dual boot Mac OS X and Windows XP.  A lot of that discussion has speculated as to what it means for the future of Mac OS X.  Some people think it means that software developers will stop supporting the Mac.  After all, why bother with a Mac OS X version when people can just reboot to Windows and use that?&lt;br /&gt;&lt;br /&gt;Because people won't reboot.&lt;br /&gt;&lt;br /&gt;My home PC is actually currently set up to triple boot, with the option of Windows XP Home, Gentoo Linux, and Ubuntu Linux (the latter just to play around with so I can give some advice on a good Linux distro for non-geeks, and so far I'd have to say it fits the bill a lot better than Fedora, though I still don't care much for Gnome...)  But this is a viable setup for me since I don't use the PC as my primary computer -- that's what my Power Mac G5 is for -- and spends most of it's time powered off.  So when I do want to use it for something, I just select which OS I want and go.&lt;br /&gt;&lt;br /&gt;As an aside, it's really nice to have a second machine, I don't have to stop doing what I'm doing on the Mac.  Instead I just turn to the PC and use it.  It's &lt;span style="font-style: italic;"&gt;really&lt;/span&gt; nice when I need directions for something:  I can have the directions up in a web browser, Adobe Reader, or whatever, on the Mac while doing whatever it is I'm trying to do on the PC.&lt;br /&gt;&lt;br /&gt;Which leads to why people won't want to reboot when they need to do something in Windows on an Intel-powered Mac.  To do that, you have to stop whatever you're doing, restart the computer, and bring up Windows.  If you're having an AIM chat with someone, you have to tell them you'll be right back, then log out of iChat when you reboot, then log into GAIM once Windows gets started and resume your conversation.  It's a pain.&lt;br /&gt;&lt;br /&gt;My work computer runs Fedora Linux.  But there are some things that I need to do that I can only do with Windows.  While my computer is configured to dual boot with Windows XP, I haven't actually done that.  Instead, I also have VMWare Workstation installed, and when I need to do my Windows stuff, I just start up VMWare, resume the virtual machine, and do whatever I need to do.  I don't have to close KDevelop, Evolution, Konsole, or any other apps I might have open, and can freely and smoothly move back and forth between Windows and Linux.&lt;br /&gt;&lt;br /&gt;Yeah, it can be a bit slow (I used to have the virtual machine set for 188MB of RAM... not nearly enough for XP), once I noticed that and set it to 384MB things got better.  There are some things that wouldn't work so well in the virtual machine, but nothing I need to do runs into that problem.  I have heard that VMWare is working on a version to run on Mac OS X, and have also read the reports about Parallels Workstation, a competing product (a less expensive one, I might add).&lt;br /&gt;&lt;br /&gt;So why won't developers say they don't need to create Mac OS X versions anymore, we can just run them in VMWare or Parallels?  Two reasons.&lt;br /&gt;&lt;br /&gt;One, this isn't really anything new.  For one, Mac users have been able to run PC applications for years.  I was running MS-DOS on a Mac LC II in the mid-1990s thanks to SoftPC.  VirtualPC has taken over the market since the introduction of the PowerPC, and has been a viable (if not speedy) option to run Windows on Macs ever since.  While virtualization products like VMWare and Parallels are faster since they don't have to emulate the Intel x86 processor architecture, it's still not quite as fast as running Windows naively, and having to start a second operating system on top of the first isn't that elegant.  Plus, you're running in a window, or full screen, and not even semi-integrated like OS X's Classic mode.&lt;br /&gt;&lt;br /&gt;More importantly is cost to the user.  Neither VMWare, nor Parallels (the beta is, but the final version won't), nor Windows are free.  Even if it was legal to do so, the version of Windows XP that comes with most store-bought PC's wouldn't install on an Intel Mac anyway, since it's not a full installer.  Instead, what many manufacturers do is they ship a CD (or set of CDs) that contain an image of the contents of the hard drive the way it was when the computer shipped, with Windows and the bundled applications.  Some companies don't even do that, instead including the image on the hard drive and telling the user to create a backup image using CD-Rs.  There's no Windows installer to run.&lt;br /&gt;&lt;br /&gt;So that means any switcher, who just got a new Intel-powered Mac, now has to go out and buy a copy of Windows XP.  And not the upgrade edition either.  That's $200 right there, for XP Home.  Toss in another $100 if you want XP Pro instead (prices from CompUSA's web site).  That's going to turn off a lot of people right there.&lt;br /&gt;&lt;br /&gt;So even with Apple providing a way for users to dual boot with Windows XP, and third party vendors providing virtualization solutions, the Mac OS X application market isn't going to die.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-114559294055626560?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.apple.com/macosx/bootcamp/' title='Why Boot Camp Doesn&apos;t Mean the End of Mac OS X'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/114559294055626560/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=114559294055626560' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/114559294055626560'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/114559294055626560'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/04/why-boot-camp-doesnt-mean-end-of-mac.html' title='Why Boot Camp Doesn&apos;t Mean the End of Mac OS X'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-114309523954039564</id><published>2006-03-22T22:20:00.000-08:00</published><updated>2006-03-22T22:28:17.726-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><title type='text'>So How is the Air?</title><content type='html'>On my way home from work today, I heard a story on the radio that an Environmental Protection Agency study had determined that California has the second dirtiest air, after New York.  No real surprises there I guess, having spent plenty of time in LA.&lt;br /&gt;&lt;br /&gt;But then they said that the study was based on air quality surveys taken in 1999, the most recent year that information is available.  So in other words, California &lt;span style="font-style: italic;"&gt;had&lt;/span&gt; the second-dirtiest air &lt;span style="font-style: italic;"&gt;seven years ago&lt;/span&gt;.  While it's nice to know how bad things were then, it would be a bit more useful if they had more recent data.  Or if the study had come out, say, six years ago.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-114309523954039564?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://msnbc.msn.com/id/11956479/' title='So How is the Air?'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/114309523954039564/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=114309523954039564' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/114309523954039564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/114309523954039564'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/03/so-how-is-air.html' title='So How is the Air?'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-113989202475467092</id><published>2006-02-13T20:25:00.000-08:00</published><updated>2006-02-13T20:40:37.113-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='monorail'/><title type='text'>My Favorite Train</title><content type='html'>People who know me know that I have a thing for airplanes. What is less well-known is that I occasionally develop an interest in trains as well.  Recently though, that interest has focused itself onto one train:&lt;br /&gt;&lt;br /&gt;The Disneyland Monorail System.&lt;br /&gt;&lt;br /&gt;The Mark V train is, quite simply, the best looking train in the world. It's sleek "LearJet" lines beat out those of the similar, but boxier and uglier Mark VI used at Walt Disney World. The Bombardier M-VI, a commercial derivative of the Mark VI used in Las Vegas, is uglier yet.  Maybe it's just because I grew up at Disneyland, but to me a Mark V is what a monorail should look like.&lt;br /&gt;&lt;br /&gt;The problem though, is that the Mark V isn't actually a full-size train.  It is smaller than what you'd normally do, to help it fit in with Disneyland. So you'd have to make it taller (like the M-VI) and you'd lose the proportions. To compensate, you'd have to make the train wider as well, but since I'm not a Transportation Engineer, I can't say if that would introduce more problems.&lt;br /&gt;&lt;br /&gt;That said, it's time to get your last rides on the Mark V, which has been in operation since 1987. It's currently running one way trips between Tomorrowland and Downtown Disney during construction of the new Finding Nemo Submarine Voyage.  Later this year, it will close completely and in 2007, will reopen along with Nemo. At that time, new Mark VII trains are slated to appear.&lt;br /&gt;&lt;br /&gt;Swiped from a &lt;a href="http://mousetimes.com/iboard/index.php?showtopic=7176&amp;st=0"&gt;MouseTimes Message Board thread&lt;/a&gt;, here's the concept drawing of what the Mark VII should look like:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img.photobucket.com/albums/v471/hawaiian717/sm_mono.jpg" alt="Disneyland Mark VII Monorail" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;I'll reserve judgment on it until I see the real thing, but in any case I'm sure I'll miss the Mark V.&lt;br /&gt;&lt;br /&gt;Just don't get me started on Disney's using Disneyland's 50th Anniversary to advertise Walt Disney World. You'd think that at least in California, they'd advertise our park, &lt;span style="font-style: italic;"&gt;the original&lt;/span&gt;, but no....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-113989202475467092?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://disneyland.disney.go.com/disneyland/en_US/parks/attractions/detail?name=DisneylandMonorailAttractionPage' title='My Favorite Train'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/113989202475467092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=113989202475467092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113989202475467092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113989202475467092'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/02/my-favorite-train.html' title='My Favorite Train'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-113778110200527220</id><published>2006-01-20T10:13:00.000-08:00</published><updated>2006-01-20T10:21:36.606-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='hawaii'/><title type='text'>Honolulu Still Doesn't Get It</title><content type='html'>From the &lt;span style="font-style: italic;"&gt;Honolulu Star-Bulletin&lt;/span&gt;:&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;He learned from City Council members that widening the entire roadway means a speed-limit reduction from 45 mph to 35 mph.&lt;/span&gt;&lt;/blockquote&gt;Let's see: Traffic congestion on Fort Weaver Road is a problem, so we'll add another lane. Good. But we'll also lower the speed limit.&lt;br /&gt;&lt;br /&gt;Um, yeah. That makes sense.&lt;br /&gt;&lt;br /&gt;In my opinion as a driver who learned to drive in Southern California, Hawaii's speed limits are already lower than they should be, and the cynic in me assumes that it is to generate additional revenue from speeding tickets. Whenever there is any sort of traffic accident in Hawaii, the media will nearly always say something along the lines of "speed may have been a factor."&lt;br /&gt;&lt;br /&gt;Get over it already. Hawaii drivers aren't bad drivers because they drive too fast, they are bad drivers because the driver's education system in Hawaii is bad. Speed doesn't cause accidents, speed differences do.&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-113778110200527220?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://starbulletin.com/2006/01/20/news/story06.html' title='Honolulu Still Doesn&apos;t Get It'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/113778110200527220/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=113778110200527220' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113778110200527220'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113778110200527220'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/01/honolulu-still-doesnt-get-it.html' title='Honolulu Still Doesn&apos;t Get It'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-113704698145220418</id><published>2006-01-11T22:20:00.000-08:00</published><updated>2006-01-11T22:23:01.463-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hawaii'/><title type='text'>Ba-Le in the Star-Bulletin</title><content type='html'>The &lt;span style="font-style: italic;"&gt;Honolulu Star-Bulletin&lt;/span&gt; has an article today about the sandwiches at Ba-Le.  Now I know they're called &lt;span style="font-style: italic;"&gt;Bahn mi&lt;/span&gt;.  And they are very yummy, however I wish more locations carried the teri beef sandwich, in my experience the one on Nimitz Highway near the airport is the only one that has them consistently.&lt;br /&gt;&lt;br /&gt;Too bad it's 2,600 miles away...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-113704698145220418?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://starbulletin.com/2006/01/11/features/story01.html' title='Ba-Le in the Star-Bulletin'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/113704698145220418/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=113704698145220418' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113704698145220418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113704698145220418'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2006/01/ba-le-in-star-bulletin.html' title='Ba-Le in the Star-Bulletin'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-113563128759218552</id><published>2005-12-26T12:52:00.000-08:00</published><updated>2007-02-18T16:38:29.780-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hawaii'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>Wings of Paradise: Hawaii's Incomparable Airlines</title><content type='html'>Recently received my copy of this new book, and read it over the holiday weekend.  I enjoyed it immensely, and recommend it to anyone interested in Hawaii's aviation history. Unlike some of the previous books, it covers the entire industry, rather than focusing on either Hawaiian Airlines (as in &lt;span style="font-style: italic;"&gt;Kennedy's Hawaiian Air&lt;/span&gt;) or Aloha Airlines (&lt;span style="font-style: italic;"&gt;50 Years of Aloha&lt;/span&gt;, published by Aloha Airlines itself).  Both of these books are slanted towards the history of the airline's story they're trying to tell, such as often referring to Aloha as "Brand X" in &lt;span style="font-style: italic;"&gt;Kennedy's Hawaiian Air&lt;/span&gt;.  You get some of this feeling from &lt;span style="font-style: italic;"&gt;Wings of Paradise&lt;/span&gt;, as well, but because it alternates between telling the story of Hawaiian, Aloha, Mid Pacific, Royal Hawaiian, Discovery, Mahalo, and others, you get a pretty balanced picture in the end.&lt;br /&gt;&lt;br /&gt;My biggest complaint with the book is that it's a bit short on recent details.  Coverage of Island Air, for example, is pretty much limited to the start as Princeville Airways, the acquisition by Aloha and name change to Aloha IslandAir, the crash on Molokai, and the final name change to Island Air, and the sale to Gavarnie Holding, though the acquiring company isn't mentioned by name in the book. Omitted from Island Air's history is the airline's brief flirtation with the Dornier Do 228 and eventual replacement of the Twin Otters with the Dash 8.  It also missed the point that a contributing factor to Mahalo Air's downfall was the replacement of new ATR-42s with older examples that ended up costing the airline a lot in maintenance expenses.  I can forgive omission of some of the recent events due to the lead time in book publishing, such as Island Air's planned acquisition of Q400 aircraft and details on Mesa and FlyHawaii's plans (though FlyHawaii is also not mentioned by name).  But completely omitting Pacific Wings is a definite oversight.&lt;br /&gt;&lt;br /&gt;However, one must keep in mind that it's easer to find out about more recent events, and perhaps omitting them now is reasonable course of action in favor of waiting to see how they effect the industry in the long term.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-113563128759218552?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.airlinesofhawaii.com/' title='Wings of Paradise: Hawaii&apos;s Incomparable Airlines'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/113563128759218552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=113563128759218552' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113563128759218552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113563128759218552'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/12/wings-of-paradise-hawaiis-incomparable.html' title='Wings of Paradise: Hawaii&apos;s Incomparable Airlines'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-113488378439917687</id><published>2005-12-17T21:27:00.000-08:00</published><updated>2005-12-17T21:29:44.410-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='movies/tv'/><title type='text'>Movies</title><content type='html'>I realized today that the last movie I saw in a theater is out on DVD. This can mean one of several things, or more likely, a combination of all.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;I don't see enough movies.&lt;/li&gt;&lt;li&gt;Most movies aren't worth watching in theaters.&lt;/li&gt;&lt;li&gt;Movie to DVD time is a lot lower than it used to be for VHS.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-113488378439917687?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/113488378439917687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=113488378439917687' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113488378439917687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113488378439917687'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/12/movies.html' title='Movies'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-113323497255930995</id><published>2005-11-28T19:26:00.000-08:00</published><updated>2005-11-28T19:29:32.570-08:00</updated><title type='text'>Green Day Videos</title><content type='html'>I was watching a few Green Day videos earlier today (&lt;span style="font-style: italic;"&gt;American Idiot&lt;/span&gt;, &lt;span style="font-style: italic;"&gt;Holiday&lt;/span&gt;, and &lt;span style="font-style: italic;"&gt;Boulevard of Broken Dreams&lt;/span&gt;, if you must know) and noticed they had a green tint to them. At first I was thinking it was a reference to &lt;span style="font-style: italic;"&gt;The Matrix&lt;/span&gt;, where the simulated world of the Matrix is presented with a green tint, drawing a sort of connection to the two.&lt;br /&gt;&lt;br /&gt;Then I remembered the name of the band...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-113323497255930995?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/113323497255930995/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=113323497255930995' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113323497255930995'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113323497255930995'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/11/green-day-videos.html' title='Green Day Videos'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-113165543445114266</id><published>2005-11-10T12:43:00.000-08:00</published><updated>2005-11-10T12:43:54.466-08:00</updated><title type='text'>Website back up</title><content type='html'>Finally, my web site is back up.  Took longer to get the DSL installed in my new apartment than I originally expected.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-113165543445114266?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.quanterium.com' title='Website back up'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/113165543445114266/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=113165543445114266' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113165543445114266'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/113165543445114266'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/11/website-back-up.html' title='Website back up'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-112819232287003650</id><published>2005-10-01T11:43:00.000-07:00</published><updated>2005-10-01T11:45:22.876-07:00</updated><title type='text'>Web Site Down</title><content type='html'>Yes, my web site that hosts Quanterium.com including The Mueller Quadrant and Mid Pacific Images is currently down.  I expect it should be back up around November 1st.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-112819232287003650?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/112819232287003650/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=112819232287003650' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112819232287003650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112819232287003650'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/10/web-site-down.html' title='Web Site Down'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-112793411171389097</id><published>2005-09-28T11:59:00.000-07:00</published><updated>2005-09-28T12:02:45.860-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hawaii'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>This Can't Be Good</title><content type='html'>This quote from today's &lt;span style="font-style: italic;"&gt;Honolulu Star-Bulletin&lt;/span&gt; caught my attention:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Faris said he was surprised the cash-strapped airline has been able to survive this long, and agreed with Aloha that it needs to hasten its emergence from bankruptcy.&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;It can't be a good sign when your bankruptcy judge is surprised that you're still in business.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-112793411171389097?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://starbulletin.com/2005/09/28/news/index5.html' title='This Can&apos;t Be Good'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/112793411171389097/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=112793411171389097' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112793411171389097'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112793411171389097'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/09/this-cant-be-good.html' title='This Can&apos;t Be Good'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-112698363593666953</id><published>2005-09-17T11:58:00.000-07:00</published><updated>2005-09-17T12:00:35.940-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><title type='text'>I Want My Money Back</title><content type='html'>First they go to WalMart and steal plasma TVs.  Now they're using the money we (the taxpayers) gave them to buy expensive shoes and purses.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-112698363593666953?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.wreg.com/Global/story.asp?S=3851262&amp;nav=3HvEeX1i' title='I Want My Money Back'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/112698363593666953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=112698363593666953' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112698363593666953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112698363593666953'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/09/i-want-my-money-back.html' title='I Want My Money Back'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-112648532469020205</id><published>2005-09-11T17:34:00.000-07:00</published><updated>2005-09-11T17:35:24.696-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>Star Trek: New Voyages</title><content type='html'>If you haven't seen this yet, what are you waiting for?  Go.  Download.  Watch.  NOW!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-112648532469020205?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.newvoyages.com' title='Star Trek: New Voyages'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/112648532469020205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=112648532469020205' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112648532469020205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112648532469020205'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/09/star-trek-new-voyages.html' title='Star Trek: New Voyages'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-112485496350453306</id><published>2005-08-23T20:42:00.000-07:00</published><updated>2005-08-23T20:42:43.510-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Cats</title><content type='html'>&lt;ul&gt;   &lt;li&gt;Eat&lt;/li&gt;   &lt;li&gt;Sleep&lt;/li&gt;   &lt;li&gt;Stare out window&lt;/li&gt; &lt;/ul&gt;&lt;br /&gt;Did I miss anything?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-112485496350453306?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/112485496350453306/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=112485496350453306' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112485496350453306'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112485496350453306'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/08/cats.html' title='Cats'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-112275155593779363</id><published>2005-07-30T12:25:00.000-07:00</published><updated>2005-07-30T12:25:55.966-07:00</updated><title type='text'>And then there were 10</title><content type='html'>All our elementary school science textbooks are now out of date.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-112275155593779363?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://starbulletin.com/2005/07/30/news/index3.html' title='And then there were 10'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/112275155593779363/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=112275155593779363' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112275155593779363'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112275155593779363'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/07/and-then-there-were-10.html' title='And then there were 10'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-112259768540378461</id><published>2005-07-28T17:41:00.000-07:00</published><updated>2005-07-28T17:41:25.426-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Acrobat Office Toolbar</title><content type='html'>Apparantly I'm not the only one annoyed by the little two icon Acrobat toolbar taking up an entire line of screen space in Word for Mac.  So here's how to get rid of it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-112259768540378461?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.macosx.com/forums/showthread.php?t=232613' title='Acrobat Office Toolbar'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/112259768540378461/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=112259768540378461' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112259768540378461'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/112259768540378461'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/07/acrobat-office-toolbar.html' title='Acrobat Office Toolbar'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-111828783118688091</id><published>2005-06-08T20:27:00.000-07:00</published><updated>2005-06-08T20:30:39.493-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='movies/tv'/><title type='text'>One Mustn't Forget One's Towel</title><content type='html'>So I'm roaming around WalMart while they change my car's oil.  Guess what I found?  The original BBC television series of &lt;span style="font-style: italic;"&gt;The Hitchhiker's Guide to the Galaxy&lt;/span&gt; on DVD.  So of course I immediately put it in my shopping cart.&lt;br /&gt;&lt;br /&gt;I remember first reading about it when it was released for Region 2 (Europe); it's nice to see that it's made its way to North America.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-111828783118688091?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/111828783118688091/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=111828783118688091' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111828783118688091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111828783118688091'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/06/one-mustnt-forget-ones-towel.html' title='One Mustn&apos;t Forget One&apos;s Towel'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-111621651733301261</id><published>2005-05-15T21:03:00.000-07:00</published><updated>2005-05-15T21:08:37.336-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Stuff to Read</title><content type='html'>A couple of books I've read recently and recommend:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Just for Fun: The Story of an Accidental Revolutionary&lt;/span&gt; by Linus Torvalds and David Diamond.  A nice, easy to read book that serves as a biography for both Linus Torvlads and the operated system he wrote, Linux.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Revolution in the Valley&lt;/span&gt; by Andy Hertzfield.  A collection of short stories detailing the development and introduction of the Macintosh computer, by one of the people that did it.  You can read the stories online at &lt;a href="http://www.folklore.org/"&gt;Folklore.org&lt;/a&gt; but I often find I prefer reading printed books over text on the screen.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-111621651733301261?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/111621651733301261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=111621651733301261' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111621651733301261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111621651733301261'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/05/stuff-to-read.html' title='Stuff to Read'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-111612304870960330</id><published>2005-05-14T19:07:00.000-07:00</published><updated>2007-02-18T16:45:42.336-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>These Are the Voyages...</title><content type='html'>So, &lt;span style="font-style: italic;"&gt;Star Trek: Enterprise&lt;/span&gt; is done. Over. Gone.&lt;br /&gt;&lt;br /&gt;The ending was the worst of all of Star Trek's season finale episodes -- I don't count Turnabout Intruder, since there was nothing special about that episode as the last episode of the classic &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Unlike others (such as Jolene Blalock&lt;span style="font-style: italic;"&gt;&lt;/span&gt;), I didn't have a problem with the concept of doing a show where the crew of a future ship was looking back at the missions of NX-01. I can definitely see that encapsulating the story within a story about Riker and Troi pushed away emphasis from the regulars on the show, and that does seem inappropriate for a finale. However, &lt;span style="font-style: italic;"&gt;These Are the Voyages...&lt;/span&gt; felt to me more like an epilogue to the series (or even the last 18 years of &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt; on television, which the producers indicated they were trying to do to some extent), with &lt;span style="font-style: italic;"&gt;Terra Prime&lt;/span&gt; being the "real" last episode of &lt;span style="font-style: italic;"&gt;Enterprise&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;My problem with the episode is that the two story arcs didn't seem to mesh that well. I've watched the episode twice, once last night and again this afternoon. I'm still having trouble working out exactly what about the events during the &lt;span style="font-style: italic;"&gt;Enterprise&lt;/span&gt;'s journey back to Earth was supposed to help Riker decide what to do with regards to telling Captain Picard the truth about the &lt;span style="font-style: italic;"&gt;Pegasus&lt;/span&gt;. At first I thought it was something about Trip and T'Pol's admitting to each other that they still have feelings for each other, despite having ended their relationship six years prior. Watching it again, I picked up that it's definitely something about Trip and his relationship with Captain Archer. Riker sees to see that relationship as parallel to the one he has with Picard. I guess that's it (it's amazing how these issues sort themselves out as you sit down and write about it). But it's not very obvious, and by the time I've figured that out, the episode hasn't left a very favorable impression in my mind.&lt;br /&gt;&lt;br /&gt;Jolene Blalock was right though, T'Pol does seem pretty out of character when she opens up to Riker. I suppose we can explain that away though as the holodeck adapting the program to have T'Pol answer Riker's questions in a way that is at least somewhat in character; no doubt Chef's discussions with various crew members were not word for word identical to Riker's.&lt;br /&gt;&lt;br /&gt;There were a few technical issues I had with the production as well. The biggest had to do with the appearance of the characters. &lt;span style="font-style: italic;"&gt;These Are the Voyages...&lt;/span&gt; is set six years after the events of &lt;span style="font-style: italic;"&gt;Terra Prime&lt;/span&gt;. Only two characters looked they were any older. Shran definately looked older, and Hoshi Sato seemed a bit older as well, even if all they did was take her hair out of the ponytail for most of her scenes. &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt; has aged characters plenty of times, examples that come to mind immediately are &lt;span style="font-style: italic;"&gt;Unnatural Selection&lt;/span&gt;, &lt;span style="font-style: italic;"&gt;The Deadly Years&lt;/span&gt;, &lt;span style="font-style: italic;"&gt;All Good Things...&lt;/span&gt;, and &lt;span style="font-style: italic;"&gt;Twilight&lt;/span&gt;.  They changed the characters' appearances a bit for &lt;span style="font-style: italic;"&gt;In A Mirror, Darkly&lt;/span&gt;, surely they could have done the same for &lt;span style="font-style: italic;"&gt;These Are the Voyages...&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;There were a few smaller issues as well.  Riker's beard seemed a bit too thin.  The interior for the &lt;span style="font-style: italic;"&gt;Enterprise&lt;/span&gt;-D's turbolift didn't look right. And if you look closely, right at the end of the teaser, after Riker has frozen the holodeck program and is on his way to the bridge, you can see Hoshi Sato moving a little bit. Though you do have to give the actors some leeway here; it can't be easy to stand perfectly still through several takes.&lt;br /&gt;&lt;br /&gt;I am one of those people that think it would be a neat idea for a future &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt; series not to be based around a single crew, but to do small arcs spanning a few episodes before moving on to someone else. Much like older television shows like &lt;span style="font-style: italic;"&gt;The Twilight Zone&lt;/span&gt; were different every week. There are a lot of little story lines spread throughout 200 years of "history" that it would be nice to come back to and follow up on. The biggest technical hurdle I see would be the constant need for vastly different sets. Many 24th century (and even late 23rd century) Federation starships have similar interiors, which would help, but some weeks we might want to set a story on &lt;span style="font-style: italic;"&gt;Deep Space Nine&lt;/span&gt; or a Romulan warbird, requiring vastly different sets.  But recreating the Constitution-class sets for the &lt;span style="font-style: italic;"&gt;Defiant&lt;/span&gt; in &lt;span style="font-style: italic;"&gt;In A Mirror, Darkly&lt;/span&gt; and then doing the &lt;span style="font-style: italic;"&gt;Enteprise-D&lt;/span&gt; for &lt;span style="font-style: italic;"&gt;These Are the Voyages...&lt;/span&gt; leads me to believe that this might not be as big of a deal after all.&lt;br /&gt;&lt;br /&gt;But anyway, the very end of &lt;span style="font-style: italic;"&gt;These Are the Voyages...&lt;/span&gt; was quite nice.  I would have liked to have heard Archer's speech, though.  But after that, the montage with the three &lt;span style="font-style: italic;"&gt;Enterprise&lt;/span&gt;s was way nice, it brought a tear to my eye.  &lt;span style="font-style: italic;"&gt;Enterprise&lt;/span&gt; NCC-1701 is now my computer's wallpaper.&lt;br /&gt;&lt;br /&gt;Oh and one final request. Will you forum people please stop posting the sexy pictures of Jeri Ryan and Jolene Blalock? It's all about Linda Park, after all. ;)&lt;br /&gt;&lt;br /&gt;To the crew of the &lt;span style="font-style: italic;"&gt;Enterprise&lt;/span&gt;, I can only say this:  Live long, and prosper.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-111612304870960330?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/111612304870960330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=111612304870960330' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111612304870960330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111612304870960330'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/05/these-are-voyages.html' title='These Are the Voyages...'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-111501197060703854</id><published>2005-05-01T22:31:00.000-07:00</published><updated>2005-05-14T19:11:36.920-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>In A Mirror, Darkly</title><content type='html'>If you missed the last two weeks of &lt;span style="font-style: italic;"&gt;Star Trek: Enterprise&lt;/span&gt;, then you really missed out on a couple of really good episodes. Fortunately, this is the 21st Century, and we have BitTorrent.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-111501197060703854?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/111501197060703854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=111501197060703854' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111501197060703854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111501197060703854'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/05/in-mirror-darkly.html' title='In A Mirror, Darkly'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-111483691889941656</id><published>2005-04-29T21:52:00.000-07:00</published><updated>2005-04-29T21:55:18.900-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='movies/tv'/><title type='text'>Don't Panic</title><content type='html'>Ignore what the film critics say.  &lt;span style="font-style: italic;"&gt;The Hitchhiker's Guide to the Galaxy&lt;/span&gt; is a good movie.  Go see it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-111483691889941656?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://hitchhikers.movies.go.com/' title='Don&apos;t Panic'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/111483691889941656/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=111483691889941656' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111483691889941656'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111483691889941656'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/04/dont-panic.html' title='Don&apos;t Panic'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-111457368484684510</id><published>2005-04-26T20:47:00.000-07:00</published><updated>2005-04-26T20:48:04.846-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>iPods and Candy</title><content type='html'>Just in case you don't have time to go to a store, now you can get an iPod from a vending machine in the SFO International terminal.  Click on the photo for a few more.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-111457368484684510?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://garycruz.textamerica.com/?r=2372528' title='iPods and Candy'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/111457368484684510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=111457368484684510' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111457368484684510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111457368484684510'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/04/ipods-and-candy.html' title='iPods and Candy'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-111008197166280169</id><published>2005-03-05T20:05:00.000-08:00</published><updated>2005-03-05T20:06:54.993-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>George Carlin says...</title><content type='html'>Weather forcast for tonight:  Dark. Continued dark overnight, with widely scattered light by morning.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-111008197166280169?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/111008197166280169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=111008197166280169' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111008197166280169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/111008197166280169'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/03/george-carlin-says.html' title='George Carlin says...'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110964941639062796</id><published>2005-02-28T19:55:00.000-08:00</published><updated>2005-02-28T19:56:56.390-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Munch Munch!</title><content type='html'>Found this on the Airliners.net forums.  Enjoy.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://img.photobucket.com/albums/v471/hawaiian717/FirefoxeatingIE.png" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110964941639062796?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.mozilla.org/products/firefox' title='Munch Munch!'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110964941639062796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110964941639062796' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110964941639062796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110964941639062796'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/02/munch-munch.html' title='Munch Munch!'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110946975676238950</id><published>2005-02-26T18:00:00.000-08:00</published><updated>2005-02-26T18:02:36.763-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Googling Yahoo</title><content type='html'>I'm out driving around earlier today, with the radio on, and after hearing &lt;span style="font-style: italic;"&gt;1-2-Step&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;Let Me Love You&lt;/span&gt; for like the 10 millionth time since I've been in Albuquerque, I decide I need to find a better radio station.  So I go home, Google "albuquerque radio stations" and which link to I find helpful in finding a new station to try?  Yahoo Directory.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110946975676238950?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110946975676238950/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110946975676238950' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110946975676238950'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110946975676238950'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/02/googling-yahoo.html' title='Googling Yahoo'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110783988130654227</id><published>2005-02-07T21:18:00.000-08:00</published><updated>2005-02-07T21:18:01.306-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Ban Urban Legends</title><content type='html'>Oooh... I can't wait to see the letters from the Believers on this one!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110783988130654227?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.bbspot.com/News/2005/02/ban_urban_legends.html' title='Ban Urban Legends'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110783988130654227/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110783988130654227' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110783988130654227'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110783988130654227'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/02/ban-urban-legends.html' title='Ban Urban Legends'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110748088020762153</id><published>2005-02-03T17:33:00.000-08:00</published><updated>2005-02-03T17:34:50.056-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>CBS, NBC, whoever...</title><content type='html'>Ok, so I kind of blew it with last night's rant about CBS.  The original &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt; was on NBC, not CBS.&lt;br /&gt;&lt;br /&gt;CBS we can blame for ripping off Gene Roddenberry's &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt; concepts for &lt;span style="font-style: italic;"&gt;Lost In Space&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110748088020762153?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110748088020762153/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110748088020762153' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110748088020762153'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110748088020762153'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/02/cbs-nbc-whoever.html' title='CBS, NBC, whoever...'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110740435751700906</id><published>2005-02-02T20:33:00.000-08:00</published><updated>2005-02-02T20:33:15.463-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>CBS Still Sucks</title><content type='html'>They cancelled &lt;em&gt;Star Trek&lt;/em&gt; again.  Only this time, they did it as the show was getting better, not worse.&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://www.trektoday.com/news/020205_04.shtml"&gt;TrekToday&lt;/a&gt; article indicates that it was CBS president Les Moonves that made the decision, so I think it's fair to blame them.  It's also interesting to note that both times &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt; has been cancelled (as opposed to the series simply ending after seven years), CBS did it.&lt;br /&gt;&lt;br /&gt;This may not be all bad, though.  New episodes could be produced in syndication, like &lt;span style="font-style: italic;"&gt;The Next Generation&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;Deep Space Nine&lt;/span&gt;.  Or perhaps on SciFi (or another cable channel).&lt;br /&gt;&lt;br /&gt;Though perhaps the best thing for &lt;span style="font-style: italic;"&gt;Star Trek&lt;/span&gt; is to give it a few years off.  No TV, no movies.  Get rid of Berman; I'd much rather see Manny Coto take over, and lanuch a new series in about five years.&lt;br /&gt;&lt;br /&gt;Live long and prosper, Captain Archer.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110740435751700906?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.startrek.com/startrek/view/news/article/9469.html' title='CBS Still Sucks'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110740435751700906/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110740435751700906' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110740435751700906'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110740435751700906'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/02/cbs-still-sucks.html' title='CBS Still Sucks'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110663226721337590</id><published>2005-01-24T21:51:00.000-08:00</published><updated>2005-01-24T21:51:07.213-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>$50</title><content type='html'>No wonder Mozilla took so long to come out. ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110663226721337590?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='https://bugzilla.mozilla.org/show_bug.cgi?id=52094' title='$50'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110663226721337590/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110663226721337590' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110663226721337590'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110663226721337590'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/01/50.html' title='$50'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110541978623940766</id><published>2005-01-10T21:02:00.000-08:00</published><updated>2005-01-10T21:03:06.240-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Another iPod user</title><content type='html'>Scroll the thumbnails all the way to the right, then count back about 14.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110541978623940766?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.viiphoto.com/detail-story3.php?news_id=347' title='Another iPod user'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110541978623940766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110541978623940766' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110541978623940766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110541978623940766'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/01/another-ipod-user.html' title='Another iPod user'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110481452656258199</id><published>2005-01-03T20:55:00.000-08:00</published><updated>2005-01-03T20:55:26.563-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>evaPod</title><content type='html'>Who saw this coming?&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110481452656258199?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://lalabitmarket.channel.or.jp/ipod_eva.html' title='evaPod'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110481452656258199/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110481452656258199' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110481452656258199'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110481452656258199'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2005/01/evapod.html' title='evaPod'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110447448846921623</id><published>2004-12-30T22:27:00.000-08:00</published><updated>2004-12-30T22:28:08.470-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Even Microsoft Uses Firefox</title><content type='html'>Look closely at the screen shot showing off the new MSN Search.  That's Firefox, not IE.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110447448846921623?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.flickr.com/photos/mrdigital/1658199/' title='Even Microsoft Uses Firefox'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110447448846921623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110447448846921623' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110447448846921623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110447448846921623'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/12/even-microsoft-uses-firefox.html' title='Even Microsoft Uses Firefox'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110412716164353477</id><published>2004-12-26T21:39:00.000-08:00</published><updated>2004-12-26T22:01:13.386-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>Another Way the Airlines Screw Passengers</title><content type='html'>A conversion my father had with a Continental Airlines gate agent yesterday lead to my realization of another way the airlines are screwing passengers. You see, the airlines have put Regional Jets on a lot of routes, not only those formerly operated by turboprop aircraft, but also those formerly operated with larger jets like 737s and DC-9s.&lt;br /&gt;&lt;br /&gt;So why is this a problem? It's simple. There's not a lot of space for carry-on luggage in the cabin of RJs, so like on turboprops, most "carry-on" bags need to be checked. The airline will let you drop off your bag on a cart next to the aircraft, and you pick it up on another cart after the plane lands. Different airlines have different names for this. For example, Horizon Air calls it &lt;span style="font-style: italic;"&gt;a la cart&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;So how does this screw the passenger? As my father learned, the airline will not be responsible for damage to bags checked plane side. Most passengers know that fragile items should be carried on, to avoid the possibility of their items being damaged when passing through the baggage systems or as a result of rough handling by airline employees. Checking a bag plane side helps as it avoids some of the machinery, but it is still subject to rough handling when being loaded into the aircraft's cargo compartment. By using RJs instead of larger jets, the airlines force passengers who had hoped to avoid damage to fragile items by carrying them on to check them anyway, with the bonus that the airline &lt;span style="font-style: italic;"&gt;will not pay for any damage that results&lt;/span&gt;.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110412716164353477?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.airliners.net/open.file/706834/L/' title='Another Way the Airlines Screw Passengers'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110412716164353477/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110412716164353477' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110412716164353477'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110412716164353477'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/12/another-way-airlines-screw-passengers.html' title='Another Way the Airlines Screw Passengers'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110408639358622549</id><published>2004-12-26T10:39:00.000-08:00</published><updated>2004-12-26T10:39:53.586-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Amusing signs in parking lots</title><content type='html'>&lt;span style="font-style: italic;"&gt;1 hour parking for Denny's customers only.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110408639358622549?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110408639358622549/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110408639358622549' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110408639358622549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110408639358622549'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/12/amusing-signs-in-parking-lots.html' title='Amusing signs in parking lots'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110263542230578922</id><published>2004-12-09T15:24:00.000-08:00</published><updated>2004-12-09T15:37:02.306-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>You Will Be Assimilated</title><content type='html'>Well, today I was assimilated.&lt;br /&gt;&lt;br /&gt;I have an iPod now.  20GB $279+tax at Costco, which works out to $300 plus some coins.  So for the same price as one of those no tax and free shipping web sites, I got mine without having to wait for it.&lt;br /&gt;&lt;br /&gt;The amusing part of all this, of all my PC-using friends who got iPods with their PowerBooks, &lt;span style="font-style: italic;"&gt;I'm&lt;/span&gt; the one who got the HP iPod.  Me, the Mac user since 1984.  Go figure.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110263542230578922?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://h10049.www1.hp.com/music/us/en/ipod_flash.html' title='You Will Be Assimilated'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110263542230578922/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110263542230578922' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110263542230578922'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110263542230578922'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/12/you-will-be-assimilated.html' title='You Will Be Assimilated'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110214382910308405</id><published>2004-12-03T22:55:00.000-08:00</published><updated>2004-12-03T23:08:22.440-08:00</updated><title type='text'>Atom Feed</title><content type='html'>I just enabled the Atom feed for the blog, so those of you that like those can read the blog that way. Yes, it works with Firefox's Live Bookmarks feature and with My Yahoo. The feed URL is: &lt;a href="http://quanterium.blogspot.com/atom.xml"&gt;http://quanterium.blogspot.com/atom.xml&lt;/a&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110214382910308405?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110214382910308405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110214382910308405' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110214382910308405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110214382910308405'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/12/atom-feed.html' title='Atom Feed'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110179894011220591</id><published>2004-11-29T23:14:00.000-08:00</published><updated>2004-12-03T22:50:25.390-08:00</updated><title type='text'>Missing Blogger Feature</title><content type='html'>Did you notice that Blogger doesn't put the date a comment was posted to an entry, just the time?&lt;br /&gt;&lt;br /&gt;EDIT 12/3:&lt;br /&gt;I figured out that you have to change your timestamp format settings under Settings - Formatting, then it will work. Yay. But it's slightly annoying, since the date info is redundant on the blog itself, since the date is listed above the post.  I would like to have the time only on the blog, and date and time on comments.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110179894011220591?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110179894011220591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110179894011220591' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110179894011220591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110179894011220591'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/11/missing-blogger-feature.html' title='Missing Blogger Feature'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-110002792913753183</id><published>2004-11-09T11:18:00.000-08:00</published><updated>2004-11-09T11:18:49.136-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><title type='text'>Firefox 1.0</title><content type='html'>Is here.  Go get it.  Now.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-110002792913753183?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.getfirefox.com/' title='Firefox 1.0'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/110002792913753183/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=110002792913753183' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110002792913753183'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/110002792913753183'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/11/firefox-10.html' title='Firefox 1.0'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109977340648525401</id><published>2004-11-06T13:37:00.000-08:00</published><updated>2004-11-06T12:36:46.486-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='voting'/><title type='text'>Vote for Me Calls</title><content type='html'>On election day and the day before, I received a total of four phone calls that contained pre-recorded messages asking me to vote to re-elect President Bush.&lt;br /&gt;&lt;br /&gt;The first was on November 1st, a pre-recoreded message from the President himself asking me to vote for him.&lt;br /&gt;&lt;br /&gt;The remaining three were all on November 2nd.  Two were the same pre-recorded message from Governor Arnold Schwarzenegger.  The last one was an unidentified woman with a Hawaii-oriented message.  Amusingly, this was about a half hour &lt;span style="font-style: italic;"&gt;after&lt;/span&gt; Hawaii's polls closed.&lt;br /&gt;&lt;br /&gt;I suppose I should mention that I sent in my absentee ballot a few weeks before the election.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109977340648525401?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109977340648525401/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109977340648525401' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109977340648525401'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109977340648525401'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/11/vote-for-me-calls.html' title='Vote for Me Calls'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109941899057937261</id><published>2004-11-02T10:10:00.000-08:00</published><updated>2004-11-02T10:09:50.580-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Lies, Damn Lies, and Statistics</title><content type='html'>At first, this survey sounds nice, makes it sound like Mac OS X and *BSD boxes are safer.&lt;br /&gt;&lt;br /&gt;However, you can't actually draw any conclusions from it.  Look at this:&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-style: italic;"&gt;&lt;blockquote&gt;Of the 235,907 successful break-ins researched as part of this study, 65.64 percent, or 154,846, were made against Linux-based systems. Microsoft Windows computers accounted for 25.19 percent of all break-ins recorded, while Mac OS X or BSD-based computers accounted for just 4.82 percent of all breaches recorded.&lt;/blockquote&gt;&lt;/span&gt;It breaks down percentage of successful break-ins by platform. This doesn't tell me much of anything. What you would want to know is what was the percentage of successful break-ins for each platform.&lt;br /&gt;&lt;br /&gt;Neither the MacCentral article, nor the mi2g press release give an indication of how many of each platform were studied. I suppose I'd have to buy the report to get that info.&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;span style="font-style: italic;"&gt;&lt;blockquote&gt;Matai calls adoption of Mac OS X and BSD Unix "an accelerating paradigm shift" thanks to professionals who "don't have the time to cope with umpteen flavours of Linux or to wait for Microsoft's Longhorn when Windows XP has proved to be a stumbling block in some well chronicled instances."&lt;/blockquote&gt;&lt;/span&gt;Professionals don't cope with umpteen flavors of Linix. Normally, they'll pick one (genernally a commercially supported distribution like Red Hat or SuSE) and stick with it. Home hobbists may play around, changing from Fredora to SuSE to Gentoo to Debian to Mandrake, and so on, but a professional running a commercial server isn't going to do that. And about the problem of waiting for Longhorn after the problems with Windows XP, well, they're forgetting Server 2003.&lt;br /&gt;&lt;br /&gt;I'm not saying that people should stick with Linux or Windows servers rather than evaluating Mac OS X or another BSD. People should evaluate their needs, and decide which platform works best for them. The point I'm trying to make is that this study doesn't mean much at all.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109941899057937261?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.macworld.com/news/2004/11/02/mi2g/index.php' title='Lies, Damn Lies, and Statistics'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109941899057937261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109941899057937261' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109941899057937261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109941899057937261'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/11/lies-damn-lies-and-statistics.html' title='Lies, Damn Lies, and Statistics'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109890657264542697</id><published>2004-10-27T12:47:00.000-07:00</published><updated>2004-10-27T20:20:35.173-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><title type='text'>Giving back to the community</title><content type='html'>It's small, but here's my first contribution to the larger open source community. Since Gentoo's &lt;a href="http://packages.gentoo.org/search/?sstring=xgridagent"&gt;XgridAgent ebuild&lt;/a&gt;, which was listed alredy as working on PowerPC, worked just fine on my x86 Linux box, I let them know. xgridagent-1.0 is now marked ~x86.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109890657264542697?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://bugs.gentoo.org/show_bug.cgi?id=68412' title='Giving back to the community'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109890657264542697/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109890657264542697' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109890657264542697'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109890657264542697'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/10/giving-back-to-community.html' title='Giving back to the community'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109841837367752338</id><published>2004-10-21T21:12:00.000-07:00</published><updated>2004-10-21T21:12:53.676-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='movies/tv'/><title type='text'>Drew Carey's Green Screen Show</title><content type='html'>Nifty new show on The WB.  Take &lt;em&gt;Whose Line is it Anyway?&lt;/em&gt;, do it in front of a green screen, and add animation.  If you like &lt;em&gt;Whose Line?&lt;/em&gt;, you'll like this.  If you haven't seen &lt;em&gt;Whose Line?&lt;/em&gt;, you'll probably like it anyway.  And go watch &lt;em&gt;Whose Line?&lt;/em&gt; on ABC Family, too.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109841837367752338?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109841837367752338/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109841837367752338' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109841837367752338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109841837367752338'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/10/drew-careys-green-screen-show.html' title='Drew Carey&apos;s Green Screen Show'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109836440267940179</id><published>2004-10-21T06:13:00.000-07:00</published><updated>2004-10-21T06:13:22.680-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hawaii'/><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><title type='text'>Airlines of Hawaii</title><content type='html'>New book coming out next year, will have to keep my eyes open for this one.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109836440267940179?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.airlinesofhawaii.com/index.htm' title='Airlines of Hawaii'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109836440267940179/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109836440267940179' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109836440267940179'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109836440267940179'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/10/airlines-of-hawaii.html' title='Airlines of Hawaii'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109771816628757713</id><published>2004-10-13T18:42:00.000-07:00</published><updated>2004-10-13T18:43:32.503-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>iBook Battery</title><content type='html'>Oooh, lookie!  This battery for an Apple iBook laptop is shown as PC Compatible!  Complete with the Windows XP logo!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109771816628757713?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.techdepot.com/pro/product.asp?productid=1073366&amp;affid=10001003&amp;srccode=cii_10500952&amp;cpncode=07-1155132' title='iBook Battery'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109771816628757713/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109771816628757713' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109771816628757713'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109771816628757713'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/10/ibook-battery.html' title='iBook Battery'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109729306337260862</id><published>2004-10-08T20:37:00.000-07:00</published><updated>2004-10-08T20:37:43.373-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Learn to spell</title><content type='html'>Folks, this is why your elementary school teacher made you memorize all those Presidents' names, states, etc.&lt;br /&gt;&lt;br /&gt;Oh, the art looks like about 4th grade, too.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109729306337260862?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://sfgate.com/cgi-bin/article.cgi?f=/news/archive/2004/10/08/state1245EDT0047.DTL' title='Learn to spell'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109729306337260862/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109729306337260862' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109729306337260862'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109729306337260862'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/10/learn-to-spell.html' title='Learn to spell'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109690327530630555</id><published>2004-10-04T08:20:00.000-07:00</published><updated>2004-10-04T08:21:15.306-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Dance, Monkeyboy! Dance!</title><content type='html'>If Steve Ballmer did an iPod ad...&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109690327530630555?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.macboy.com/cartoons/ballmer/' title='Dance, Monkeyboy! Dance!'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109690327530630555/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109690327530630555' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109690327530630555'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109690327530630555'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/10/dance-monkeyboy-dance.html' title='Dance, Monkeyboy! Dance!'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109685209342302782</id><published>2004-10-03T18:04:00.000-07:00</published><updated>2004-10-03T18:08:13.423-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><title type='text'>Paying too much</title><content type='html'>I don't get it.&lt;br /&gt;&lt;br /&gt;I've used one of these cameras.  The image quality isn't that great.  10x optical zoom is nice, but still, only 0.3 megapixels and 640x480 resolution.  You can't really get all that many images on a floppy disk, and unlike flash memory card based cameras, you can't avoid carrying around lots of disks by getting a larger disk.  For $270, you can definately do better.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109685209342302782?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&amp;category=31388&amp;item=3840931384&amp;rd=1' title='Paying too much'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109685209342302782/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109685209342302782' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109685209342302782'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109685209342302782'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/10/paying-too-much.html' title='Paying too much'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109647884111369546</id><published>2004-09-29T10:20:00.000-07:00</published><updated>2004-09-29T10:27:21.113-07:00</updated><title type='text'>Why I Prefer Earthquakes to Hurricanes</title><content type='html'>Hurricans you see coming at you, so you worry and panic and prepare for days on end, then it hits you or maybe not.  Earthquakes just come with no warning (unless you have a pet that goes nuts before one) so while you keep in the back of your mind that one might come, you don't have to spend the days immediately before worrying about what's going to happen.  You're just happily going about your life, then it happens.  It lasts for a few seconds, maybe even a minute or two, then it's over.  Hurricanes can take several hours to pass through.&lt;br /&gt;&lt;br /&gt;Also, hurricanes move around, so the damage can cover a pretty large area.  An earthquake is centered in one spot, and damage is inversely proportional to distance from that spot:  Greater distance implies less damage.  So the likelyhood of damage from a single event in a particular location is lower.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109647884111369546?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://quake.wr.usgs.gov/recenteqs/Quakes/nc51148805.htm' title='Why I Prefer Earthquakes to Hurricanes'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109647884111369546/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109647884111369546' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109647884111369546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109647884111369546'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/09/why-i-prefer-earthquakes-to-hurricanes.html' title='Why I Prefer Earthquakes to Hurricanes'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109589905176713115</id><published>2004-09-22T17:24:00.000-07:00</published><updated>2004-09-22T17:24:11.766-07:00</updated><title type='text'>Crazy Train or Emotional Subway Attack</title><content type='html'>This is great.  I'm pretty tolerant of most people's different beliefs, except those beliefs specifically preach intolerance of my beliefs.  That includes most of those loud God-nuts.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109589905176713115?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.livejournal.com/users/koaloha/29646.html' title='Crazy Train or Emotional Subway Attack'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109589905176713115/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109589905176713115' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109589905176713115'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109589905176713115'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/09/crazy-train-or-emotional-subway-attack.html' title='Crazy Train or Emotional Subway Attack'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109574951383592133</id><published>2004-09-20T23:51:00.000-07:00</published><updated>2004-09-20T23:51:53.836-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>Riker to Enterprise</title><content type='html'>Life continues to imitate Star Trek.  It seems there's a device out now that does person to person communications over WiFi and Voice over IP.  What makes it really interesting, is that it's a one button interface and uses voice recognition to determine who you're trying to reach.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109574951383592133?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://interactive.usc.edu/archives/002577.html' title='Riker to Enterprise'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109574951383592133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109574951383592133' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109574951383592133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109574951383592133'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/09/riker-to-enterprise.html' title='Riker to Enterprise'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109520118553592202</id><published>2004-09-14T15:32:00.000-07:00</published><updated>2004-09-14T15:33:05.536-07:00</updated><title type='text'>GMail</title><content type='html'>I've got some GMail invites.  Let me know if you want one.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109520118553592202?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109520118553592202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109520118553592202' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109520118553592202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109520118553592202'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/09/gmail.html' title='GMail'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109468051856858500</id><published>2004-09-08T14:53:00.000-07:00</published><updated>2004-09-08T14:55:18.566-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Windows XP Service Pack 2 (yes, again)</title><content type='html'>Hehe.&lt;br /&gt;&lt;br /&gt;Windows XP Service Pack 2 removes the copyright date from the screen that appears before the login screen.  I guess Microsoft wants to hide the fact that Windows XP is from 2001.&lt;br /&gt;&lt;br /&gt;They also removed the notation of which Edition is running, though that is still on the login screen itself.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109468051856858500?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109468051856858500/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109468051856858500' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109468051856858500'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109468051856858500'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/09/windows-xp-service-pack-2-yes-again.html' title='Windows XP Service Pack 2 (yes, again)'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109461468934459532</id><published>2004-09-08T12:53:00.000-07:00</published><updated>2004-09-08T12:53:05.476-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>Why the iMac G5 will succeed</title><content type='html'>In case you're living under a rock (or more likely, a Windows box) you might not yet know that at Apple Expo in Paris last month, Apple unveiled the new iMac G5. Like the iMacs before it, it is an all in one design, however this time the CPU is directly behind the LCD. If you imagine a 2-inch thick LCD display, that's the new iMac. Or go click the link for photos.&lt;br /&gt;&lt;br /&gt;I have read some criticism of the new iMac, and I want to address the point that other computer companies (and, in fact, Apple itself - namely, the &lt;a href="http://www.everymac.com/systems/apple/20th_mac/"&gt;20th Anniversary Macintosh&lt;/a&gt;) have done a similar designs before, but they haven't been terribly successful. There is one major reason I think the iMac G5 will be different.&lt;br /&gt;&lt;br /&gt;Previous all-in-one-LCD designs have been compromised machines, generally with a far inferior price/performance ratio than a conventional tower/LCD combination, let alone a tower/CRT. But the iMac G5 is different.&lt;br /&gt;&lt;br /&gt;The iMac G5 fits right in the Apple product line right where the iMac belongs, right between the Power Mac G5 and the eMac. Now, the iMac G5 is no Power Mac G5: The big tower features overall higher end specs, starting with the presence of two PowerPC G5 processors, rather than one. But it doesn't invert price/performance, that is, charge more for lesser performance. At $1899, top configuration, the 20-inch model with a 1.8 GHz Power PC G5, is $100 less than the lowest-priced Power Mac, the $1999 dual 1.8GHz model. Which doesn't include a display.&lt;br /&gt;&lt;br /&gt;Compare this with Gateway.  Their &lt;a href="http://www.gateway.com/home/products/hm_dtp_aio.shtml"&gt;Profile 5&lt;/a&gt; series places the CPU in the base, so it's really more like the iMac G4 rather than the iMac G5 in design. The low-end model, the Profile 5S-C, gives you a 2.6GHz Celeron processor for $1099.99. Compare this to Gateway's 310B, which gives you a a 2.8GHz Celeron in a mini-tower case for $499.99, including a 17" CRT. The specs are pretty similar, though the Profile does give you a DVD/CD-RW drive, but you can add that and also double your memory and hard drive size for $150 more.&lt;br /&gt;&lt;br /&gt;Let's also look at Sony, which sells the &lt;a href="http://www.sonystyle.com/is-bin/INTERSHOP.enfinity/eCS/Store/en/-/USD/SY_DisplayProductInformation-Start;sid=rSFYcTIhysZY-3Mf1wNSen0wyIZCsRSvW6o=?ProductSKU=PCVW700G&amp;Dept=cpu_VAIODesktopComputers&amp;amp;CategoryName=cpu_VAIODesktopComputers_WSeries"&gt;Viao W700G&lt;/a&gt;, an all-in-one which places the CPU behind the LCD. $1999.99 gets you a 2.8GHz Pentium 4 processor and a 17.5" LCD. Sony's entry-level mini-tower, the Viao RS600C, when equipped with a 2.8GHz Pentium 4, runs $877.99. Add $399.99 for a 17" LCD.&lt;br /&gt;&lt;br /&gt;I would have a hard time justifying either the Gateway or the Sony all-in-one models versus a comparable mini-tower. I suspect that most people have the same difficulty, and as a result these models don't end up selling well. The iMac G5, on the other hand, isn't undercut by a significantly cheaper model with similar specs but in a more ordinary case. Sure, you can grab the eMac for a mere $799, including 17" CRT, but that gets you a mere 1.25GHz PowerPC G4. But the iMac G5, starting at $1299, gets you so much more computer, most notably a G5 processor. There may not be as much as a difference now, but in a few years, there will be plenty of applications that will run only on a G5, just like now Mac OS X runs only on G3 and newer chips, ruling out the first generation (601) and second generation (603/604) PowerPC processors.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109461468934459532?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.apple.com/imac/' title='Why the iMac G5 will succeed'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109461468934459532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109461468934459532' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109461468934459532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109461468934459532'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/09/why-imac-g5-will-succeed.html' title='Why the iMac G5 will succeed'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109419356899273462</id><published>2004-09-02T23:39:00.000-07:00</published><updated>2004-09-02T23:39:28.993-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><category scheme='http://www.blogger.com/atom/ns#' term='apple'/><title type='text'>They think of everything...</title><content type='html'>&lt;a href="http://docs.info.apple.com/article.html?artnum=86816"&gt;How to pick up and carry your iMac G5&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://docs.info.apple.com/article2.html?artnum=93960"&gt;How to determine if you have a Hewlett-Packard iPod&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109419356899273462?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109419356899273462/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109419356899273462' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109419356899273462'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109419356899273462'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/09/they-think-of-everything.html' title='They think of everything...'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-10932922416540784</id><published>2004-08-23T13:17:00.000-07:00</published><updated>2004-08-23T13:17:21.653-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>Transparent Aluminum!</title><content type='html'>Once again, life imitates Star Trek.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-10932922416540784?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://physicsweb.org/article/news/8/8/9' title='Transparent Aluminum!'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/10932922416540784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=10932922416540784' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/10932922416540784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/10932922416540784'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/08/transparent-aluminum.html' title='Transparent Aluminum!'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109315574563963005</id><published>2004-08-21T23:21:00.000-07:00</published><updated>2004-08-22T19:48:55.070-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><title type='text'>Fun things to type in Gentoo</title><content type='html'>#ACCEPT_KEYWORDS="~x86" emerge --update world&lt;br /&gt;&lt;br /&gt;Edit: 8/22:&lt;br /&gt;Don't do it.  You'll regret it.  Stick to x86, not ~x86 (or the equivalent if you're running on another architecture).&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109315574563963005?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109315574563963005/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109315574563963005' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109315574563963005'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109315574563963005'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/08/fun-things-to-type-in-gentoo.html' title='Fun things to type in Gentoo'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109251927720322979</id><published>2004-08-14T14:32:00.000-07:00</published><updated>2004-08-14T14:34:37.203-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='open source'/><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>You know you're a computer scientist when...</title><content type='html'>You doze off on a Saturday afternoon thinking about assemblers using &lt;a href="http://tuxracer.sourceforge.net/"&gt;Tux Racer&lt;/a&gt; imagery.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109251927720322979?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109251927720322979/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109251927720322979' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109251927720322979'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109251927720322979'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/08/you-know-youre-computer-scientist-when.html' title='You know you&apos;re a computer scientist when...'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109191282846385344</id><published>2004-08-07T14:07:00.000-07:00</published><updated>2004-08-07T14:07:08.463-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Strange Invasion</title><content type='html'>The last paragraph amused me.  It's not every day that the movie &lt;em&gt;Evolution&lt;/em&gt; gets referenced in a major newspaper.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109191282846385344?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://starbulletin.com/2004/08/07/news/story1.html' title='Strange Invasion'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109191282846385344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109191282846385344' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109191282846385344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109191282846385344'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/08/strange-invasion.html' title='Strange Invasion'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109184543361988546</id><published>2004-08-06T19:04:00.000-07:00</published><updated>2004-08-06T19:27:30.906-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rant'/><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><title type='text'>Windows XP Service Pack 2</title><content type='html'>&lt;span style="font-family:lucida grande;"&gt;So Windows XP Service Pack 2 is finally done and on its way.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:lucida grande;"&gt;Looks like Microsoft still doesn't quite get it.  I found the following paragraph from an &lt;/span&gt;&lt;a style="font-family: lucida grande;" href="http://www.pcmag.com/article2/0,1759,1631256,00.asp"&gt;article on PC Magazine's web site&lt;/a&gt;&lt;span style="font-family:lucida grande;"&gt; to be rather interesting:&lt;/span&gt;&lt;br /&gt;&lt;blockquote style="font-style: italic;"&gt;Microsoft has included a programmatic interface for Windows Firewall that allows an application to do things like set FirewallEnabled to FALSE, add itself to the list of AuthorizedApplications, or change the configuration of GloballyOpenPorts. Our concern here is that a malicious application could turn off Windows Firewall or, more likely, mark itself as an authorized application. Corporate administrators can disable some or all local configurations, which will prevent programs from making changes; but ultimately, Microsoft maintains, individuals still have to be smart about what apps they run. Even the best deadbolt won't protect your house once you've let the bad guys in.&lt;/blockquote&gt;&lt;span style="font-family:lucida grande;"&gt;The way I see it, they gave the keys to the dead bolt to the bad guys. Suppose one way or another, I manage to get some malware on my system. This malware then has the ability to disable the firewall and do whatever it wants. Thanks. Looks like I'll still be recommending a third party firewall such as &lt;/span&gt;&lt;a style="font-family: lucida grande;" href="http://www.zonelabs.com/store/content/home.jsp"&gt;ZoneAlarm&lt;/a&gt;&lt;span style="font-family:lucida grande;"&gt;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:lucida grande;"&gt;A while back, Bill Gates was quoted as saying something along the lines of there isn't a need for perfectly secure software, since we have firewalls to protect us. At the time it seemed absurd to me: What happens if your firewall software isn't secure? Now, Microsoft shows they can't even get the firewall right.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:lucida grande;"&gt;I &lt;/span&gt;&lt;a style="font-family: lucida grande;" href="http://slashdot.org/comments.pl?sid=117069&amp;amp;cid=9905834"&gt;posted&lt;/a&gt;&lt;span style="font-family:lucida grande;"&gt; some of this on Slashdot, too.&lt;/span&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109184543361988546?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109184543361988546/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109184543361988546' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109184543361988546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109184543361988546'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/08/windows-xp-service-pack-2.html' title='Windows XP Service Pack 2'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109159495610087561</id><published>2004-08-03T21:47:00.000-07:00</published><updated>2004-08-03T21:49:16.100-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='airlines'/><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Repetitively repetitive</title><content type='html'>An e-ticket confirmation e-mail I got tonight from American Airlines contained the following:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;Nonrefundable tickets cannot be refunded.&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109159495610087561?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109159495610087561/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109159495610087561' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109159495610087561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109159495610087561'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/08/repetitively-repetitive.html' title='Repetitively repetitive'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109142814683867002</id><published>2004-08-01T23:29:00.000-07:00</published><updated>2004-08-01T23:36:17.386-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='funny'/><title type='text'>Ziggy</title><content type='html'>At least he has some idea about computer viruses, which I'd say is more than most people, based on the the number of Slammer hits I picked up during the two months I was running Snort.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109142814683867002?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.ucomics.com/ziggy/2004/07/29/' title='Ziggy'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109142814683867002/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109142814683867002' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109142814683867002'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109142814683867002'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/08/ziggy.html' title='Ziggy'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109054464256746857</id><published>2004-07-22T18:04:00.000-07:00</published><updated>2004-07-22T18:04:02.566-07:00</updated><title type='text'>Matt Damon Makes Benefit Appearance In Oklahoma City</title><content type='html'>Why am I noting this?  I was also in Oklahoma City on Sunday, visiting the Oklahoma City National Memorial, located at the site of the Murrah Federal Building.  Matt Damon was also there.  I didn't see him, but others in the group I was with did.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109054464256746857?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.channeloklahoma.com/entertainment/3546137/detail.html' title='Matt Damon Makes Benefit Appearance In Oklahoma City'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109054464256746857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109054464256746857' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109054464256746857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109054464256746857'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/07/matt-damon-makes-benefit-appearance-in.html' title='Matt Damon Makes Benefit Appearance In Oklahoma City'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-109001420347524125</id><published>2004-07-16T14:43:00.000-07:00</published><updated>2004-07-16T14:43:23.476-07:00</updated><title type='text'>Slashdot fan</title><content type='html'>Wow, I have a fan on Slashdot.  When did this happen?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-109001420347524125?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://slashdot.org/~hawaiian717/fans' title='Slashdot fan'/><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/109001420347524125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=109001420347524125' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109001420347524125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/109001420347524125'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/07/slashdot-fan.html' title='Slashdot fan'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7648565.post-108995608706129060</id><published>2004-07-15T22:32:00.000-07:00</published><updated>2004-07-15T23:45:37.746-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='star trek'/><title type='text'>First Post!</title><content type='html'>Why not start with something simple, hmm?&lt;br /&gt; &lt;br /&gt; &lt;a href="http://www.williamshatner.com/modules.php?op=modload&amp;amp;name=News&amp;amp;file=article&amp;amp;sid=156&amp;amp;mode=thread&amp;amp;order=0&amp;amp;thold=0"&gt;William Shatner was nominated for an Emmy Award.&lt;/a&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7648565-108995608706129060?l=quanterium.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://quanterium.blogspot.com/feeds/108995608706129060/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7648565&amp;postID=108995608706129060' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/108995608706129060'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7648565/posts/default/108995608706129060'/><link rel='alternate' type='text/html' href='http://quanterium.blogspot.com/2004/07/first-post.html' title='First Post!'/><author><name>David</name><uri>http://www.blogger.com/profile/04186722406739248552</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
