<?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-8175480</id><updated>2011-12-14T18:56:13.528-08:00</updated><title type='text'>randome note to self</title><subtitle type='html'>Random thoughts on places, activities, incidents and things I like to lookup/research on.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default?start-index=101&amp;max-results=100'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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>244</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8175480.post-8465123490881445831</id><published>2008-08-03T21:58:00.000-07:00</published><updated>2008-08-03T22:05:45.576-07:00</updated><title type='text'>modestneeds.org</title><content type='html'>washing a car on a sunny sunday afternoon, cleaning the house, pullin weeds, ..., these are small happiness.&lt;br /&gt;&lt;br /&gt;while reading this month's fortune magazine, i read more of small bits of happiness under the title 'Saving Lives, One Rent Check at a Time'.&lt;br /&gt;&lt;br /&gt;this is similar to the movie 'pay it forward' i watched a while back.  i was astonished that keith taylor, who had a modest teacher's income of $33,000/yr would save and give $350/mo and that now runs a full organization called Modest Needs.&lt;br /&gt;&lt;br /&gt;my rather lame excuse for not doing enough charity in donating my time nor cash is that so many of these non-profit organization nowadays smell fishy.  that with all these event organizers and such, you will be forced to donate a lot and only small insignficant amount will actually go toward the needs and the rest are wasted on paying for the event organizers and the staffs' pocket.  that, instead of inspiring, enraged me and put me to despair.  &lt;br /&gt;&lt;br /&gt;i'm not a fully committed member yet, but i'll read up http://www.modestneeds.org/help/grants/ to see if this is something i can commit, and that something that will help me (feel better about the world i live in and feel better about myself), as well as be of service to those in a short term jam.  &lt;br /&gt;&lt;br /&gt;so i'm bookmarking now, and can look this up any time in future.&lt;br /&gt;&lt;br /&gt;wow, fortune magazine actually has an article about non-profit/charity organization?  that's quiet impressive and pleasant surprise to me.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-8465123490881445831?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/8465123490881445831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=8465123490881445831' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/8465123490881445831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/8465123490881445831'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2008/08/modestneedsorg.html' title='modestneeds.org'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-9035611692337745753</id><published>2008-05-16T22:06:00.000-07:00</published><updated>2008-05-16T22:18:18.622-07:00</updated><title type='text'>keeping 1 assertion per testcases in RoR</title><content type='html'>I'm rewriting badly written unit test at the office.&lt;br /&gt;&lt;br /&gt;first, using MVC for RoR, unit test mirrors models/, checking the validity of what goes into database and data types allowed.  and much of what's handled in controllers/ go to functional tests.  Then there are view tests that often goes into unit/ and some of full regressions in scenario based that goes into integration tests area.&lt;br /&gt;&lt;br /&gt;the ones i had to rewrite, there were much of controllers validations, for example.  and, each testcases with like two dozen assert this and assert that.  so how can you tell when you run 12 testcases and out of 75 assertions 3 fails?  how to you analyze and how do you put it in matrix?  and, how do you know if assertion failure triggers cascade affect for the rest of assertions in testcase or not?&lt;br /&gt;&lt;br /&gt;as tedious as it may seem, do setup and teardown repeatedly, and put one assertion per testcase.  say if you put assertion for an account's email existing, in next testcase where you use same account, make a note either to yourself or on the comments that email existance check is already done and that you move on the format of the email.  not if it's used for login or not, but just enter different possible email addresses, like with non-alphanumeric characters, or in localized address, or ones entered without domain, or ones that are very long.&lt;br /&gt;&lt;br /&gt;i like the one i careated for account testing, which still has whole lot more roon to add, by the way, and i'm excited to add more testcases here, and also to build whole suite of'em ground up!&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;require File.dirname(__FILE__) + '/../../test_helper'&lt;br /&gt;&lt;br /&gt;require 'test/unit'&lt;br /&gt;&lt;br /&gt;class AccountTest &lt; Test::Unit::TestCase&lt;br /&gt;    def setup&lt;br /&gt;        super&lt;br /&gt;        @account = create_testacct&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def teardown&lt;br /&gt;        acct_cleanup&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_new_acct_have_a_unique_username&lt;br /&gt;        @account = create_testacct&lt;br /&gt;&lt;br /&gt;        assert_not_nil @account.unique_username&lt;br /&gt;&lt;br /&gt;        acct_cleanup&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_cannot_create_acct_with_email_not_having_domainname&lt;br /&gt;        assert_raise(ArgumentError,"accttest is not a valid email address.") do&lt;br /&gt;            @account = Account.create_by_email("accttest")&lt;br /&gt;        end&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_cannot_create_acct_with_email_not_having_domainname2&lt;br /&gt;        assert_raise(ArgumentError,"accttest is not a valid email address.") do&lt;br /&gt;            @account = Account.create_by_email("accttest@")&lt;br /&gt;        end&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_cannot_create_acct_with_email_having_bad_domain&lt;br /&gt;        assert_raise(ArgumentError,"accttest is not a valid email address.") do&lt;br /&gt;            @account = Account.create_by_email("accttest@testdomain")&lt;br /&gt;        end&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_cannot_create_acct_with_email_having_only_domainname&lt;br /&gt;        assert_raise(ArgumentError,"accttest is not a valid email address.") do&lt;br /&gt;            @account = Account.create_by_email("@testdomain.com")&lt;br /&gt;        end&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_new_acct_not_activated&lt;br /&gt;        @account = create_testacct&lt;br /&gt;        set_default_password&lt;br /&gt;&lt;br /&gt;        assert !(@account.activated?)&lt;br /&gt;&lt;br /&gt;        acct_cleanup&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_activate_method_makes_new_acct_active_acct&lt;br /&gt;        @account = create_and_activate_testacct&lt;br /&gt;&lt;br /&gt;        assert @account.activated?&lt;br /&gt;&lt;br /&gt;        acct_cleanup&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_activate_acct_without_password_fails_with_correct_error&lt;br /&gt;        @account = create_testacct&lt;br /&gt;&lt;br /&gt;        assert_raises(Error::HumanReadable, "You must set a password before we can activate your account!") do&lt;br /&gt;            @account.activate()&lt;br /&gt;        end&lt;br /&gt;&lt;br /&gt;        acct_cleanup&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def test_cannot_create_acct_with_existing_email_address&lt;br /&gt;        @account = create_and_activate_testacct&lt;br /&gt;        assert_raise(AccountModule::AccountExistsError,&lt;br /&gt;                     "There is already an account with this email address, please try a different one.") do&lt;br /&gt;            @account2 = create_and_activate_testacct&lt;br /&gt;        end&lt;br /&gt;&lt;br /&gt;        acct_cleanup&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    private&lt;br /&gt;    def create_testacct&lt;br /&gt;        @account = Account.create_by_email("accttest@localhost")&lt;br /&gt;        @account.save!&lt;br /&gt;&lt;br /&gt;        return @account&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def set_default_password&lt;br /&gt;        @account.password = "test123"&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def create_and_activate_testacct&lt;br /&gt;        @account = create_testacct&lt;br /&gt;        set_default_password&lt;br /&gt;        @account.activate()&lt;br /&gt;        @account.save&lt;br /&gt;&lt;br /&gt;        return @account&lt;br /&gt;    end&lt;br /&gt;&lt;br /&gt;    def acct_cleanup&lt;br /&gt;        @account.destroy&lt;br /&gt;    end&lt;br /&gt;end&lt;br /&gt;&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/8175480-9035611692337745753?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/9035611692337745753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=9035611692337745753' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/9035611692337745753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/9035611692337745753'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2008/05/keeping-1-assertion-per-testcases-in.html' title='keeping 1 assertion per testcases in RoR'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-5300822784408966261</id><published>2008-05-03T20:55:00.000-07:00</published><updated>2008-05-03T21:00:06.538-07:00</updated><title type='text'>if i were yahoo exec i'd have taken microsoft's counter offer</title><content type='html'>wow, was i busy or what? no postings in 2mo?  &lt;br /&gt;&lt;br /&gt;okay, i've been paying attention to micro's courting of yahoo, and yeah i thought initial offer was on lower side than i'd like. but counter offer's pretty decent.&lt;br /&gt;&lt;br /&gt;first offer was at $29, which i wouldn't have liked myself, but at $33/share yahoo walked again.  wanted $37.  even steve balmer says it's no fun courting the princess-like yahoo. heh.  &lt;br /&gt;&lt;br /&gt;i wouldn't mind $37/share for my little bits of shares, what some 100-200 shares?  &lt;br /&gt;but i'd gladly take $33.&lt;br /&gt;&lt;br /&gt;i worry my yhoo will plunge into lower $20s again. sigh* &lt;br /&gt;&lt;br /&gt;like fellow yahoo share owners, like yahoo execs, i'm too greedy to wash my shares at some $20 odd per share.&lt;br /&gt;&lt;br /&gt;hmm... should i knock on balmer's front step and offer my tiny bits of shares?  heh.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-5300822784408966261?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/5300822784408966261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=5300822784408966261' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5300822784408966261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5300822784408966261'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2008/05/if-i-were-yahoo-exec-id-have-taken.html' title='if i were yahoo exec i&apos;d have taken microsoft&apos;s counter offer'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-4355127523895636541</id><published>2008-03-19T00:21:00.000-07:00</published><updated>2008-03-19T00:23:32.008-07:00</updated><title type='text'>free domain registration at register.com until 3-25-08</title><content type='html'>register.com sent me email saying 'til 3-25-08 i can register 1 domain for free up to 1 yr, providing i claim i am a small biz and i confirm i have right to register domain on behalf of my small biz.&lt;br /&gt;&lt;br /&gt;hmm...  now the dilemma sets in.  do i want .com or .org?  what name to register?  and what will i do with it?&lt;br /&gt;&lt;br /&gt;heh.  it's a happy dilemma.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-4355127523895636541?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/4355127523895636541/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=4355127523895636541' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4355127523895636541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4355127523895636541'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2008/03/free-domain-registration-at-registercom.html' title='free domain registration at register.com until 3-25-08'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-5275304425710753757</id><published>2008-01-21T00:42:00.000-08:00</published><updated>2008-01-21T00:57:09.418-08:00</updated><title type='text'>finally on skype. yet another IM to keep up with</title><content type='html'>I started with AIM, moved into YIM and tried MSN IM then on google talk.  It certainly takes a good IM manager, to be logged on all of them, and to maintain the account.  I've signed up for MSN IM a few times since the first AIM I got on in '98, work related.  Ah, those pre-'98 days when I was oblivious of all these, and of ICQ and IRC.  &lt;br /&gt;&lt;br /&gt;I've not bee on AIM more than once two or three months, and not much on IRC either.&lt;br /&gt;&lt;br /&gt;well, google talk isn't enough now I'll have to use skype, again for work related.&lt;br /&gt;&lt;br /&gt;so I went to skype site and downloaded rpm for my FC 6, and of course the PGP key isn't verifying.  looked up and followed the steps to add skype.repo and all.  when it didn't work out, I had to download the binary, installed and now I'm running into trouble with dependency issue.  libqt, libsigc, ...&lt;br /&gt;&lt;br /&gt;some blogs say i should copy the libraries from previous version, 1.4.0.9x instead of 1.4.0.118.  that looked aweful complicated, and skype didn't have older version available, anyways.  instead I downloaded beta version, skype 2.0 and after the install, and after copying binary 'skype' to /usr/bin and copying 'sounds/' and 'avatars/' to 'usr/share/skype/', now I'm on skype.  ready for next conference call.&lt;br /&gt;&lt;br /&gt;skype on FC6 works, but still not as conveniently as if i was on mac or windows, not quite yet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-5275304425710753757?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/5275304425710753757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=5275304425710753757' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5275304425710753757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5275304425710753757'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2008/01/finally-on-skype-yet-another-im-to-keep.html' title='finally on skype. yet another IM to keep up with'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-6431487534993858429</id><published>2008-01-15T16:17:00.001-08:00</published><updated>2008-01-15T16:25:22.282-08:00</updated><title type='text'>macbook air, small enough for me?</title><content type='html'>macworld 2008 keynote announced 'macbook air'.&lt;br /&gt;&lt;br /&gt;macworld has historically been apples' new product announcement platform, announcing iPhone, iPod, ..., all the popular commodities that many teens and 20-somethings wouldn't know how to live without.&lt;br /&gt;&lt;br /&gt;I got my Sony Vaio X505 back in 2005, for christmas, and have been happy with it's light weight.  having been leisurely shopping for replacement for my Vaio X505, I had my eyes peeled watching the keynote via online video and reading the spec from apple's website.  3lbs?  it's definitely much lighter than conventional macbook or macbook pro.  and, of course, it's from apple, afterall.&lt;br /&gt;&lt;br /&gt;still 3lbs?  that means my bag would be heavier by 1+ lbs.&lt;br /&gt;&lt;br /&gt;hmm... i'll have to wait and see.  anyone rushing out to buy macbook air yet?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-6431487534993858429?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/6431487534993858429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=6431487534993858429' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/6431487534993858429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/6431487534993858429'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2008/01/macbook-air-small-enough-for-me.html' title='macbook air, small enough for me?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-6931274195878781257</id><published>2008-01-15T16:04:00.000-08:00</published><updated>2008-01-15T16:07:27.672-08:00</updated><title type='text'>chm viewing with chmox or kchmviewer</title><content type='html'>'sudo yum install kchmviewer' worked on my FC 5 desktop, and chmox dmg download and install works on leopard mac os x.&lt;br /&gt;&lt;br /&gt;seems like many files are in .chm format in addition to .pdf, so good to update my environment on laptop and future desktop.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-6931274195878781257?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/6931274195878781257/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=6931274195878781257' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/6931274195878781257'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/6931274195878781257'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2008/01/chm-viewing-with-chmox-or-kchmviewer.html' title='chm viewing with chmox or kchmviewer'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-1146635964097060604</id><published>2007-12-26T22:42:00.001-08:00</published><updated>2007-12-26T22:42:52.937-08:00</updated><title type='text'>legacies remembered, through musical and through 'kennedy center honors'</title><content type='html'>&lt;div style="float: right; margin-left: 10px; margin-bottom: 10px;"&gt; &lt;a href="http://www.flickr.com/photos/speattle/2133502357/" title="photo sharing"&gt;&lt;img src="http://farm3.static.flickr.com/2034/2133502357_c378bef5f1_m.jpg" alt="" style="border: solid 2px #000000;" /&gt;&lt;/a&gt; &lt;br /&gt; &lt;span style="font-size: 0.9em; margin-top: 0px;"&gt;  &lt;a href="http://www.flickr.com/photos/speattle/2133502357/"&gt;jersey boys at last.  wanted to see this since i first heard about in sf 3 yrs ago&lt;/a&gt;  &lt;br /&gt;  Originally uploaded by &lt;a href="http://www.flickr.com/people/speattle/"&gt;speattle&lt;/a&gt; &lt;/span&gt;&lt;/div&gt;Brian Wilson, Diana Ross, Steve Martin, Leon Fleisher and Martin Scorsese are honored during "Kennedy Center Honors" on CBS.&lt;br /&gt;&lt;br /&gt;This reminded me of recent visit to "Jersey Boys", a musical based on 50-70's pop group 'Four Season'.&lt;br /&gt;&lt;br /&gt;Less dramatic, maybe a little, than Jersey Boys, it was nice to see  someone like Yo-yo-ma on the stage versing Leon Fleisher's life story, and funny to see someone re-acting Steve Martin's comedy.  It seems like a lot of toughts were put in to organizing this, and many volunteered(?) to perform.  A young aspiring pianist playing in tribute to Leon was also pretty mesmerizing and made me ashamed of my lazyness in practice.&lt;br /&gt;&lt;br /&gt;Something that made me think, of these two occassions: value of talent!  I usually don't believe in talent but more so on hard work.  But would these great artists be great artists with perserverance alone?  Maybe the passion, and that 1% that makes differences against other artists would be their god-given talent?  If so, what would be my talent?  Heh, ouch...&lt;br /&gt;&lt;br /&gt;Maybe the vocab. 'talent' is some special quality not common in general public, like me, thus my justification for lacking talent.  I'm a mediocre at drawing/painting, at music, at computers, at math, at finances, ...&lt;br /&gt;&lt;br /&gt;maybe my talent is just being mediocre good at things? lol.&lt;br /&gt;&lt;br /&gt;anyways, it's pretty amazing how some people can listen to a tune and can identify, play along and even improve what he/she heard.&lt;br /&gt;&lt;br /&gt;I really enjoyed "Jersey Boys", and now I can appreciate 'Four Season's music with insight.  And, now the "Kennedy Center Honours" helps me realize I shouldn't give up on a boring things like new year's resolution.  If someone like Diana Ross was determined, and loved singing at age 15, and carried through all the black-and-white-TV era through 70s and 80s, ...  &lt;br /&gt;&lt;br /&gt;Don't need to be honored at Kennedy Center myself, but "wouldn't it be nice if ..." i had no regret with my life when I look back at what I have accomplished? &lt;br /&gt;&lt;br /&gt;^^&lt;br clear="all" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-1146635964097060604?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/1146635964097060604/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=1146635964097060604' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1146635964097060604'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1146635964097060604'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/12/legacies-remembered-through-musical-and.html' title='legacies remembered, through musical and through &amp;#39;kennedy center honors&amp;#39;'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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://farm3.static.flickr.com/2034/2133502357_c378bef5f1_t.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-3206371240767622223</id><published>2007-12-26T20:20:00.001-08:00</published><updated>2007-12-26T20:20:52.795-08:00</updated><title type='text'>checkin out gentoo 2007</title><content type='html'>&lt;div style="float: right; margin-left: 10px; margin-bottom: 10px;"&gt; &lt;a href="http://www.flickr.com/photos/speattle/2134333930/" title="photo sharing"&gt;&lt;img src="http://farm3.static.flickr.com/2219/2134333930_56e041f0c1_m.jpg" alt="" style="border: solid 2px #000000;" /&gt;&lt;/a&gt; &lt;br /&gt; &lt;span style="font-size: 0.9em; margin-top: 0px;"&gt;  &lt;a href="http://www.flickr.com/photos/speattle/2134333930/"&gt;checkin out gentoo 2007&lt;/a&gt;  &lt;br /&gt;  Originally uploaded by &lt;a href="http://www.flickr.com/people/speattle/"&gt;speattle&lt;/a&gt; &lt;/span&gt;&lt;/div&gt;not so much by choice, but i got to learn to install and setup gentoo on intel based mac mini for ruby on rails app.&lt;br /&gt;&lt;br /&gt;partitioning, installation, package installation with emerge, ..., it's been quite painful 4 days.&lt;br /&gt;&lt;br /&gt;i had to use mac mini, because that was only hardware available to me, and duh, i started with 10.4 without boot camp.  that was my stumbling block.  once i grabbed leopard installation that came with bootcamp, partitioning got easier. &lt;br /&gt;&lt;br /&gt;oh, also partition it as windows partition, then change it to linux using 'fdisk /dev/sda' when in gentoo shell.&lt;br /&gt;&lt;br /&gt;i had downloaded gentoo 2007 livedvd but for some reason it didn't like looking up '/dev/sda' to kick off the installation. &lt;br /&gt;&lt;br /&gt;after about 2-3 failed attempt and about 2 complete reinstall from mac os, i sorta got wised and attempted to chmod /dev/sda* from root as livedvd took me to X windows as gentoo user.  That didn't help, but now i know not to panic, as i can sudo as gentoo user without password.&lt;br /&gt;&lt;br /&gt;still with no success at install, i had to opt for minimial install cd, and as i've not done gentoo install before i'd be reading gentoo handbook and wouldn't know the instruction.  now that i do understand, it's pretty easy instruction to follow; explaining the steps that followed by exact command line to enter. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?full=1#book_part1_chap1"&gt;http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?full=1#book_part1_chap1&lt;/a&gt; is bookmarked for me now, along with &lt;a href="http://gentoo-wiki.com/HARDWARE_Apple_Mac_Mini"&gt;http://gentoo-wiki.com/HARDWARE_Apple_Mac_Mini&lt;/a&gt;.  &lt;br /&gt;&lt;br /&gt;i'm in the middle of adding packages via emerge now.  &lt;br /&gt;&lt;br /&gt;still am not familiar with raiserfs, but am glad to know gentoo can be loaded to mac mini.  &lt;br /&gt;&lt;br /&gt;although it didn't work out livedvd logging in as gentoo and taking me to X window desktop was nice.  after following minimal install i'm logged in to shell for emerge update, and got to locate X window/desktop packages to install to get ack into the Desktop as nice/fancy as gentoo user's was when i booted from DVD.&lt;br /&gt;&lt;br /&gt;oh, it was nice i made note about rEFit earlier in blog, i had to look it up when partitioning from Mac OS X.&lt;br clear="all" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-3206371240767622223?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/3206371240767622223/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=3206371240767622223' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/3206371240767622223'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/3206371240767622223'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/12/checkin-out-gentoo-2007.html' title='checkin out gentoo 2007'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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://farm3.static.flickr.com/2219/2134333930_56e041f0c1_t.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-254821959480226214</id><published>2007-11-12T16:25:00.000-08:00</published><updated>2007-11-12T16:33:49.871-08:00</updated><title type='text'>things to remember: network scanning tools, and painful ror select tags</title><content type='html'>i literally spent half day on using select_tag with options_for_select using ror.&lt;br /&gt;ouch.&lt;br /&gt;&lt;br /&gt;in theory &lt;br /&gt;&lt;blockquote&gt;&lt;%= select_tag 'table_name[field_name]', options_for_select([array of options list],'what is inserted in table table_name field field_name as value') %&gt;&lt;/blockquote&gt;&lt;br /&gt; to get the select list showing up w/ prepopulated data.  &lt;br /&gt;&lt;br /&gt;why spend whole half day?&lt;br /&gt;&lt;br /&gt;hmm... well, the field i am trying to pre-populate have mysql db table with type enum. i think that's why it's not working for the category i am building. works for 'os' which have data type as string works after a few try.  should i add '.to_i' to get the enum map to the integer value of the list?  how stupid it feels.  continue on hacking.&lt;br /&gt;&lt;br /&gt;so far it works for:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;%= select_tag 'testtable[target_os]', options_for_select(["", "Windows", "OS X", "Linux"], @testtable.target_os) %&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;%= select_tag 'testtable[target_browser]', options_for_select(["", "Firefox", "IE", "Safari", "opera"], @testtable.target_browser) %&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;with&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;@testtable = TestTable.find(params[:id])&lt;/blockquote&gt;&lt;br /&gt;in my controller's class method.&lt;br /&gt;&lt;br /&gt;Oh, i also better not forget how to use ss and nmap.&lt;br /&gt;&lt;br /&gt;'ss -l' in most cases and 'nmap -A -T4 hostname' tells me what ports i am using.  not sure if it's weather or just banging my head of this select_tag, but it took me forever to remember these two.  Actually I had to ask around for ss. What a monday...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-254821959480226214?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/254821959480226214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=254821959480226214' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/254821959480226214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/254821959480226214'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/11/things-to-remember-network-scanning.html' title='things to remember: network scanning tools, and painful ror select tags'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-1158745177746862078</id><published>2007-11-12T13:55:00.000-08:00</published><updated>2007-11-12T13:59:35.286-08:00</updated><title type='text'>belkin n1 wireless router and derek: he knows all the latest toy</title><content type='html'>I can imagine Derek with leopard, or latest iPhone, or even with new guitar hero.  But when I found out about Belkin N1 with UI for thoroughput speed on gizmodo and forwarded link to Derek, he messaged me back with his blog: &lt;a href="http://5thirtyone.com/archives/842"&gt;http://5thirtyone.com/archives/842&lt;/a&gt; instantly. &lt;br /&gt;&lt;br /&gt;He's already reviewed it way way back, and got lots of feedback. &lt;br /&gt;OMG, does he like know all the latest toys, regardless of platform and regardless of realm?  As long as it's new, technology related, and cool?&lt;br /&gt;&lt;br /&gt;I am so lame, thinking I'd ask him to get one and check it out. I should know better.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-1158745177746862078?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/1158745177746862078/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=1158745177746862078' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1158745177746862078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1158745177746862078'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/11/belkin-n1-wireless-router-and-derek-he.html' title='belkin n1 wireless router and derek: he knows all the latest toy'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-7364962935810089873</id><published>2007-11-08T13:05:00.001-08:00</published><updated>2007-11-08T13:06:13.758-08:00</updated><title type='text'>learning AJAX stuffs: testing javascript with JSSpec</title><content type='html'>Roland forwarded me http://jania.pe.kr/aw/moin.cgi/JSSpec&lt;br /&gt;it's neat.&lt;br /&gt;heh, it's also done by a korean guy.&lt;br /&gt;i'll have to give a try and get me some silly screenshot of me screwing up on it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-7364962935810089873?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/7364962935810089873/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=7364962935810089873' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/7364962935810089873'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/7364962935810089873'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/11/learning-ajax-stuffs-testing-javascript.html' title='learning AJAX stuffs: testing javascript with JSSpec'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-4135623214859088214</id><published>2007-11-01T04:28:00.000-07:00</published><updated>2007-11-01T13:07:17.439-07:00</updated><title type='text'>chasing leopard, ..., caught up on rmagick at least.</title><content type='html'>when i first got into ror(ruby on rails) earlier this year getting the system configured w/ ruby, rails, gem, and rmagick in particular was a pain, on my fedora core desktop.&lt;br /&gt;then came along ubuntu's easy install guide followed by fedora core(5, 6 and onward)'s easy to install, with all those '*-dev' packages that contain all the libraries.&lt;br /&gt;&lt;br /&gt;rmagick, in short, is imagemagick/graphicsmagick package for ruby-on-rail that ror developers use a lot.  &lt;br /&gt;&lt;br /&gt;well, with my environment setup nicely, and not being a heavy mac user i only enjoyed stuffed animal leopard at local mac sotres and didn't bother with mac os update.  getting a bit too old to be caught up in flurry of hypes.&lt;br /&gt;&lt;br /&gt;well, derek is a cool guy and he waited on the line on last friday to get leopard copy, along with free t-shirt, and installed it.  now it comes with ruby, rubygem and rails, but not with rmagick or mysql.  when he had no success and couldn't get his work done (for having clean installed the whole system on his mac book), i got volunteered in this morning. i mean yesterday morning. i spent good 5hours solid chasing gtk, librsvg and imagemagick-devel that may or may not exist.  with gtk, the dependencies were about as greek to me as the gtk package itself.  requires pango then requires cairo, but it reality gtk requires pango with cairo support. and then there is question of incompatible pkgconfig.  what do you mean pkgconfig is too old?  leopard is been out less than a week....&lt;br /&gt;&lt;br /&gt;anyhow, i can't let rmagick defeat me, so i picked up a leopard copy and spent good 2+ hrs getting it on my precious mac mini, the one with dual boot partition of fedora core 6.  why 2+ hours?  takes about 45minutes, and i did it twice, because i messed up playing with boot camp and few other configs.  with the install my rEFI bootloader is blown away.  my linux partition is still there, but no bootloader to let me start with linux partition. sob, sob, sob...  since boot camp is only compatible with windows os, and i have no room nor wish to delete current linux partition and reinstall(i actually was using my inux partition right up to the point i started inserting leopard dvd in, for installation).&lt;br /&gt;&lt;br /&gt;unlike earlier the day i actually searched for rmagick installation how to, and got lucky.  &lt;br /&gt;&lt;br /&gt;http://pastie.caboo.se/72596 actually works.&lt;br /&gt;&lt;br /&gt;some of urls didn't work so i had to manually download it.  but steps are golden.  i skipped ruby, rubygem and rails.  i also used 'sudo gem install rmagick' instead of doing tar source install.&lt;br /&gt;&lt;br /&gt;but it works.&lt;br /&gt;&lt;br /&gt;i did 'cd rails/test/; script/console; require 'RMagick' ' and it worked.  only took me what about 2+ hours, and another hour to copy over the list of tar files and instruction for derek?  &lt;br /&gt;&lt;br /&gt;yay...&lt;br /&gt;&lt;br /&gt;thanks Josh Goebel.  you saved me my sanity.&lt;br /&gt;&lt;br /&gt;now i still gotta figure out why readline doesn't compile and why mysql server doesn't start from boot.&lt;br /&gt;&lt;br /&gt;worst of all, i gotta figure out my dual boot.&lt;br /&gt;&lt;br /&gt;but now i can sleep, finally, at 4am, for having rmagick working on my new shiney leopard os.&lt;br /&gt;&lt;br /&gt;and, i can see some cool desktop features on leopard. through my sleepy slanted eyes.&lt;br /&gt;&lt;br /&gt;pkgs i needed:&lt;br /&gt;* pcre-7.4&lt;br /&gt;* lighttpd-1.4.18&lt;br /&gt;* freetype-2.3.4&lt;br /&gt;* libpng-1.2.22&lt;br /&gt;* jpegsrc.v6b&lt;br /&gt;* tiff-3.8.2&lt;br /&gt;* libwmf-0.2.8.4&lt;br /&gt;* lcms-1.17&lt;br /&gt;* ImageMagick-6.3.6-4&lt;br /&gt;* ghostscript-fonts-std-8.11 (when untar, goes to fonts dir instead of ghostscript-fonts dir)&lt;br /&gt;&lt;br /&gt;steps from my home&gt;Downloads folder terminal shell:&lt;br /&gt;tar xvf pcre-7.4.tar &lt;br /&gt;cd pcre-7.4&lt;br /&gt;./configure --prefix=/usr/local CFLAGS=-01&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar xvf lighttpd-1.4.18.tar &lt;br /&gt;cd lighttpd-1.4.18&lt;br /&gt;./configure --prefix=/usr/local --with-pcre=/usr/local&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar zxvf freetype-2.3.4.tar.gz &lt;br /&gt;cd freetype-2.3.4&lt;br /&gt;./configure --prefix=/usr/local&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar xvf libpng-1.2.22.tar &lt;br /&gt;cd libpng-1.2.22&lt;br /&gt;./configure --prefix=/usr/local&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar xvf jpegsrc.v6b.tar &lt;br /&gt;cd jpeg-6b/&lt;br /&gt;ln -s `which glibtool` ./libtool&lt;br /&gt;echo $MACOSX_DEPLOYMENT_TARGET&lt;br /&gt;export MACOSX_DEPLOYMENT_TARGET=10.5&lt;br /&gt;./configure --enable-shared --prefix=/usr/local&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar xvf tiff-3.8.2.tar &lt;br /&gt;cd tiff-3.8.2&lt;br /&gt;./configure --prefix=/usr/local&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar zxvf libwmf-0.2.8.4.tar.gz &lt;br /&gt;cd libwmf-0.2.8.4&lt;br /&gt;make clean&lt;br /&gt;./configure&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar xvf lcms-1.17.tar &lt;br /&gt;cd lcms-1.17&lt;br /&gt;make clean&lt;br /&gt;./configure&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;cd ..&lt;br /&gt;tar xvf ghostscript-fonts-std-8.11.tar&lt;br /&gt;mkdir /usr/local/share/ghostscript&lt;br /&gt;mkdir /usr/local/share/ghostscript/fonts&lt;br /&gt;cp fonts/* /usr/local/share/ghostscript/fonts/.&lt;br /&gt;tar xvf ImageMagick-6.3.6-4.tar &lt;br /&gt;cd ImageMagick-6.3.6&lt;br /&gt;export CPPFLAGS=/-I/usr/local/include&lt;br /&gt;export CPPFLAGS=-I/usr/local/include&lt;br /&gt;export LDFLAGS=-L/usr/local/lib&lt;br /&gt;./configure --prefix=/usr/local --disable-static --with-modules --without-perl --with-quantum-depth=8 --with-gs-font-dir=/usr/local/share/ghostscript/fonts&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;gem install RMagick&lt;br /&gt;&lt;br /&gt;does it work? yes:&lt;br /&gt;so far it looks okay on irb:&lt;br /&gt;mac-mini:~ user$ cd rails/test/&lt;br /&gt;mac-mini:test user$ script/console&lt;br /&gt;Loading development environment.&lt;br /&gt;&gt;&gt; require 'RMagick'&lt;br /&gt;=&gt; []&lt;br /&gt;&gt;&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-4135623214859088214?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/4135623214859088214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=4135623214859088214' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4135623214859088214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4135623214859088214'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/11/chasing-leopard-caught-up-on-rmagick-at.html' title='chasing leopard, ..., caught up on rmagick at least.'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-1144729161662853835</id><published>2007-10-04T23:14:00.001-07:00</published><updated>2007-10-04T23:19:46.550-07:00</updated><title type='text'>with a trace or without a trace?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_vLIk6WsN2yM/RwXWYCKEAWI/AAAAAAAAABM/fMDSgkLsO7U/s1600-h/sudoku_toilet_paper.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_vLIk6WsN2yM/RwXWYCKEAWI/AAAAAAAAABM/fMDSgkLsO7U/s200/sudoku_toilet_paper.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5117732259960717666" /&gt;&lt;/a&gt; Without a trace new season began.  Like 'Law and Order: Criminal Intent', it's got a lot of brain work and foot work.  I am somewhat okay with CSI:NY with new york being the location, but don't like other CSI for their being too much  of fancy and flash labs and equipment usually not available for cops.  Not even in real life, let alone in fantasy.  I've not yet caught up with '24' although the author is from nearby in Washington state.  While watching new 'My Name is Earl', and 'Without a Trace' and hoping for someone to post streaming video of new 'Law and Order:Criminal Intent' i was on dealscatcher.com and saw this sudoku on toilet paper and had a hearty laugh.  So write it on sudoku paper while you know what and use that paper?  What if you don't finish solving the sudoku in time?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-1144729161662853835?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/1144729161662853835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=1144729161662853835' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1144729161662853835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1144729161662853835'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/10/with-trace-or-without-trace.html' title='with a trace or without a trace?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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://bp3.blogger.com/_vLIk6WsN2yM/RwXWYCKEAWI/AAAAAAAAABM/fMDSgkLsO7U/s72-c/sudoku_toilet_paper.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-8376805819807872515</id><published>2007-09-12T02:31:00.000-07:00</published><updated>2007-09-12T03:16:47.118-07:00</updated><title type='text'>work hard, drink hard @ netfilter workshop</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_vLIk6WsN2yM/Rue1UNY2GPI/AAAAAAAAABE/NvaFYWVEAbY/s1600-h/jUpload_used.png"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_vLIk6WsN2yM/Rue1UNY2GPI/AAAAAAAAABE/NvaFYWVEAbY/s200/jUpload_used.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5109251661070997746" /&gt;&lt;/a&gt;I didn't attempt attending Linux Kernel Summit in Cambridge, UK.  It's way way above my head.  Netfilter workshop guys were nice to let me sit in their some 30 members panel and I'm glad to be in it and yet have to admit it's still way above my head.  Eric's maintaining live blog with each sessions so I stop typing like crazy writing notes w/ all these keywords for netlink, netfilter, iptables, tracking, conntrack, HA, ... and am trying to listen in to the discussion.  It's not a tutorial, it is about as intense as netconf headed by core contributor of linux netdev.  Eric's live  blog is at: &lt;a href="http://nfws.inl.fr/en/"&gt;Netfilter Workshop Résumé&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Another thing I've been busy, taking advantage of excellent wifi bandwidth @ hosting company, Astaro, is uploading photos from Cambridge, London, Paris and Karlsruhe/Durlach.  I usually use the tool for iPhoto on Mac, so I attempted manual upload which I have not done in over a year.  Ouch!  uploading over 200 images manually, 6 at a time?  Soon, I got impatient and went to flickr's tools section and learned about jUpload.  Only downside was requirement for latest Java SDK, which I had to go to http://java.sun.com, download, and do the link for /usr/bin/java.  That took extra 1/2hour but boy am I glad now that jUpload is doing all the photo uploading work.  It took mere 1/2hour to upload my photos from punting in Cambridge, some 60+ photos.  Yay...&lt;br /&gt;&lt;br /&gt;Harald is supposed to have moved on from netfilter maintainership to do openMoco, but he's real sharp with questions, feedback and practically leading discussion.  Between Patrick and Harald, the past two days' discussions are running real tight and intensely.&lt;br /&gt;&lt;br /&gt;Of course, Astaro and Patrick,currently maintaining netfilter and works for Astaro as a contractor, is putting some fun stuffs like drinking, bowling and stuffs in between discussions.  Beer glass seem to be twice the size of what i see in U.S. pubs and I see guys drinking 4-5 glasses w/o showing it at all.  &lt;br /&gt;&lt;br /&gt;Well, in Akihabara group members would disappear in numbers when passing different electronics shop.  In Karlsruhe a few members would disappear when passing different pub house. ROFL.  Like it was in Australia, or in UK, discussions are heated and long and drinkings go on until midnight.  Amazing but true, these guys would get up at 7am following day and show up eagerly by 8am.  ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-8376805819807872515?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/8376805819807872515/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=8376805819807872515' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/8376805819807872515'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/8376805819807872515'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/09/work-hard-drink-hard-netfilter-workshop.html' title='work hard, drink hard @ netfilter workshop'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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://bp3.blogger.com/_vLIk6WsN2yM/Rue1UNY2GPI/AAAAAAAAABE/NvaFYWVEAbY/s72-c/jUpload_used.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-2929875320268423447</id><published>2007-08-26T02:40:00.001-07:00</published><updated>2007-08-26T03:03:32.100-07:00</updated><title type='text'>vnc server and vncviewer, side by side</title><content type='html'>&lt;a href="http://bp0.blogger.com/_vLIk6WsN2yM/RtFL4YqIhPI/AAAAAAAAAA0/ISsdH1oTJCI/s1600-h/P8260764.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_vLIk6WsN2yM/RtFL4YqIhPI/AAAAAAAAAA0/ISsdH1oTJCI/s200/P8260764.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5102943284851410162" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;after updating ubuntu on sony vaio x505 from edge to feisty, everything's hunky-dory.  updating from edge to feisty, however, was ugly and messy.  somehow the ide2 doesn't get recognized thus, update via CD-ROM was impossible, and had to do update over net, with a bit of cheatin'.  anyhow, once feisty was on the machine and thus ruby was to latest available version of 1.8.4, i just followed &lt;a href="http://wiki.rubyonrails.org/rails/pages/RailsOnUbuntu" target="new"&gt;http://wiki.rubyonrails.org/rails/pages/RailsOnUbuntu&lt;/a&gt; and rubygems and rails installation was easy.  so was rmagick installation.  i think people often forget to do 'apt-get install ruby1.8-dev' before 'gem install rmagick'. compared to having spent good day or two to ge t rmagick working by downloading .tar on fedora core, then something not working and try to download again using yum, and now having two downloads to deal with, ..., etc., it was less than 10minutes 1-line experience that's pretty pleasant.  should i have started with yum install of rmagick in the first place?  well, that's what we call a learning curve i guess.  now i know better to get 'ruby*-dev' when installing 'ruby*' and now i know 'yum install rmagick' or 'apt-get install rmagick' can be relatively painless and easy.&lt;br /&gt;&lt;br /&gt;this inspired me to make vnc working between my laptop and mac mini converted desktop with fedora core 6.  i had the server setup but was keep getting connection issue from laptop when using 'vncview host:port'.  duh me!  i had to be told maybe vnc port is not open on the server? alas, when i fixed that, i'm on my mac mini's fedora core from my ubuntu laptop, right next to the server or a few blocks down the cafe.&lt;br /&gt;&lt;br /&gt;it's fun making a good progress on things, and pretty inspiring.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-2929875320268423447?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/2929875320268423447/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=2929875320268423447' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/2929875320268423447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/2929875320268423447'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/08/vnc-server-and-vncviewer-side-by-side.html' title='vnc server and vncviewer, side by side'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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://bp0.blogger.com/_vLIk6WsN2yM/RtFL4YqIhPI/AAAAAAAAAA0/ISsdH1oTJCI/s72-c/P8260764.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-9153355324768757280</id><published>2007-08-25T20:42:00.000-07:00</published><updated>2007-08-25T20:48:30.227-07:00</updated><title type='text'>fur elise (lotus elise)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_vLIk6WsN2yM/RtD27IqIhNI/AAAAAAAAAAk/w2AIqp73ipc/s1600-h/lotus-elise-ii003.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_vLIk6WsN2yM/RtD27IqIhNI/AAAAAAAAAAk/w2AIqp73ipc/s200/lotus-elise-ii003.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5102849873607689426" /&gt;&lt;/a&gt;&lt;br /&gt;i finally bid adieu my devotion to mini cooper of last 3 years.&lt;br /&gt;&lt;br /&gt;my new love?&lt;br /&gt;&lt;br /&gt;went to tully's in ballard after a nice dinner at a korean restaurant named 'yet-gol' to help digest a big dinner, and there it was.  nice and curvey, and tiny and shining, even at late 9pm darkness i could spot it right away parked right outside lombardi.&lt;br /&gt;&lt;br /&gt;heh, i wasn't the only one.  the girl in the passenger seat of the car was getting lots of questions from a few guys hanging around.  not often a girl will have to let a car get the spotlight on friday night, but i must admit it's worth it and i bet she'd not mind the car stealing the attention.  &lt;br /&gt;&lt;br /&gt;came home and searched wiki and google, to see lots of racing photos and decided elise II is the one i like, and maybe now i have a reason to drop by on next auto show.&lt;br /&gt;&lt;br /&gt;mi-re-mi-re-mi-ti-re-do-ra~~~  i play 'fur elise' for the cute new lotus elise II. ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-9153355324768757280?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/9153355324768757280/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=9153355324768757280' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/9153355324768757280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/9153355324768757280'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/08/fur-elise-lotus-elise.html' title='fur elise (lotus elise)'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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://bp2.blogger.com/_vLIk6WsN2yM/RtD27IqIhNI/AAAAAAAAAAk/w2AIqp73ipc/s72-c/lotus-elise-ii003.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-3195498812187894436</id><published>2007-05-20T09:52:00.000-07:00</published><updated>2007-05-20T09:56:26.898-07:00</updated><title type='text'>railsconf 2007 so far</title><content type='html'>no digicam photos developed yet.&lt;br /&gt;&lt;br /&gt;here's notes i was taking at sessions, and a few interesting links i start collecting:&lt;br /&gt;&lt;a href="http://wiki.oreillynet.com/wiki/railsconf2007/index.cgi?PresentationSlides"&gt;railsconf 2007 presentation slides&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://pastie.caboo.se/all"&gt;pastie&lt;/a&gt; for ror snippets&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.therailsway.com/"&gt;the railsway&lt;/a&gt; webpage/blog&lt;br /&gt;&lt;br /&gt;and &lt;a href="http://manuals.rubyonrails.com/read/book/5"&gt;a guide to testing the rails&lt;/a&gt;&lt;br /&gt;and few others, of course.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;Intro to Test-Driven Development for Rails ¶&lt;br /&gt;Ruby ¶&lt;br /&gt;&lt;br /&gt;    * User Stories&lt;br /&gt;    * Customer Acceptance Tests&lt;br /&gt;    * Test Driven Development&lt;br /&gt;    * Refactoring&lt;br /&gt;    * Pair Programming&lt;br /&gt;    * Demo/Exercise&lt;br /&gt;          o demo: http://pastie.caboo.se/62413&lt;br /&gt;          o excercise to do: http://pastie.caboo.se/62420&lt;br /&gt;          o exercise answer sample: http://pastie.caboo.se/62421&lt;br /&gt;    * Tools: Test::Unit, RSpec, Flexmock, Mocha &lt;br /&gt;&lt;br /&gt;Rails ¶&lt;br /&gt;&lt;br /&gt;    * Demo/Exercise : was out of time &lt;br /&gt;&lt;br /&gt;Full-stack Web App Testing with Selenium and Rails ¶&lt;br /&gt;&lt;br /&gt;    * kind: selenium on rails, selenium rc(remote control, for ui testing via http)&lt;br /&gt;    * pivotal lab doing presentation&lt;br /&gt;    * about 1/2 the room uses selenium now, of a coulpe hundreds folks in the room.&lt;br /&gt;    * selenium rc features&lt;br /&gt;          o runs in the browser, executes app in frame, use javascript, goes all the way to the server and back, complementary to jsunit, cross-platform testing in a single test run&lt;br /&gt;          o ex: ==&gt; rake selenium:test&lt;br /&gt;          o ... it runs, checking servers, time, schema, and building testcases ...&lt;br /&gt;          o demo via web, http://localhost:4000/selenium-server/core/... captured via digicam &lt;br /&gt;    * selenium rc architecture: launch&lt;br /&gt;    * selenium rc architecture: run test&lt;br /&gt;    * os/browser: win, linux, mac and firefox, ie and safari&lt;br /&gt;    * slow-lenium: you can run fast and slow suite&lt;br /&gt;    * gotchas: disable transactional fixtures, reload fixtures before every run, ...&lt;br /&gt;    * Q&amp;A&lt;br /&gt;          o only 1 QA?&lt;br /&gt;          o =&gt; still prefers selenium rc, for cross platform browser driven testing&lt;br /&gt;          o what kind of tests?&lt;br /&gt;          o =&gt; integration, acceptance, ui, smoke tests &lt;br /&gt;&lt;br /&gt;Taking Rails Tests to the Next Level ¶&lt;br /&gt;&lt;br /&gt;    * Q&amp;A or BOF style. no notes. &lt;br /&gt;&lt;br /&gt;Adding Tests to Legacy Rails Apps ¶&lt;br /&gt;&lt;br /&gt;    * test coding: write app, write test, run test, refactor test, run test, write more app&lt;br /&gt;    * run: rake and/or individually with 'ruby test.rb'&lt;br /&gt;    * rake stat vs. rcov&lt;br /&gt;    * autotest: because sometimes our tests can run themselves&lt;br /&gt;    * continuous integration&lt;br /&gt;    * fixtures: ugliness, ar_fixtures, use mocks, fixture senarios&lt;br /&gt;    * zentest: controller &amp; model tests, more (useful) assertions&lt;br /&gt;    * focus on the bugs (don't write test for test's sake) &lt;br /&gt;&lt;br /&gt;Heckle: Take Your Tests' Lunch Money (combined with Adding Tests to Legacy Rails Apps) ¶&lt;br /&gt;&lt;br /&gt;    * mutation tester : quotes from sneakers movie, something like 'break in to make sure the pace isn't break-in-able'&lt;br /&gt;    * like pen-testing/fuzzing&lt;br /&gt;    * how's it fit into the testing stack?&lt;br /&gt;    * "RSpec/Test::Unit is your safety belt. RCov is your airbag. Heckle is your helmet, neck brace and full fireproof suit."&lt;br /&gt;    * use Heckle to do the fire-proof kind of test, after basic unit, functional and integration tests are done. &lt;br /&gt;&lt;br /&gt;Fixtures: Friend or Foe ¶&lt;br /&gt;&lt;br /&gt;    * yml files&lt;br /&gt;    * example of convulated fixtures,&lt;br /&gt;    * fixtures :listings, :address, ...&lt;br /&gt;    * quotes of many 'i hate fixutres'... : complexity!&lt;br /&gt;    * grievances: namespacing, brittleness, validation, contamination&lt;br /&gt;    * workaround:&lt;br /&gt;          o use activerecord, helper methods -- solve validation problem. but not all the problems&lt;br /&gt;          o go mock- and stub-crazy -- straight to method. no data mining, manipulation. other problems&lt;br /&gt;          o in-memory database&lt;br /&gt;          o transactional fixtures -- ex) self.use_transactional_fixtures = true&lt;br /&gt;          o preload all fixtures (from Rails Edge) &lt;br /&gt;    * my solution:&lt;br /&gt;          o -&gt;fixtureScenarios&lt;br /&gt;          o http://code.google.com/p/fixture-scenarios&lt;br /&gt;          o -&gt;testing your scenarios &lt;br /&gt;&lt;br /&gt;  [rails_root]&lt;br /&gt;  +- test/&lt;br /&gt;         scenario/&lt;br /&gt;              brank_new_user_test.rb&lt;br /&gt;              experienced_user_test.rb&lt;br /&gt;&lt;br /&gt;    * -&gt; cleans up after itself&lt;br /&gt;    * -&gt; backwards compatible &lt;br /&gt;&lt;br /&gt;    *Q&amp;A&lt;br /&gt;&lt;br /&gt;    * can fixtures be loaded in specific order?&lt;br /&gt;    * =&gt; not yet. patch's in to fix this.(in terms of foreign key). as for scenario loads in run time it's from root down on the tree, rails_root-&gt;test-&gt;scenario-&gt;...&lt;br /&gt;    * =&gt;rake supports, as is. rake test:scenarios, rake &lt;br /&gt;&lt;br /&gt;    * revisit grievances&lt;br /&gt;          o check namespacing, brittleness, validation, contamination, and performace gets yellow flag instead of green flag like others.&lt;br /&gt;&lt;br /&gt;             [RAILS_ROOT]&lt;br /&gt;              +-test/&lt;br /&gt;                +-fixtures/&lt;br /&gt;                  +-brand_new_user/&lt;br /&gt;                    +-users.yml&lt;br /&gt;&lt;br /&gt;    * reference/contact&lt;br /&gt;          o tom@rubyisawesome.com&lt;br /&gt;          o http://rubyisawesome.com/ (blog) &lt;br /&gt;&lt;br /&gt;Sat Keynotes: Bring Ruby to the Enterprise. Not the Other Way 'Round&lt;br /&gt;==============&lt;br /&gt;Cyndi Mitchell&lt;br /&gt;&lt;br /&gt;enterprise (good &amp; bad) continue to move to ror&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;railswork,&lt;br /&gt;mingle,&lt;br /&gt;thoughtworks&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sat Keynotes&lt;br /&gt;===============&lt;br /&gt;Tim Bray&lt;br /&gt;&lt;br /&gt;how many from startup? about 1/2, how many from large/non-startup? about 1/2, how many service providers and consultants? less&lt;br /&gt;&lt;br /&gt;how many migrate from java?  largest, how many migrated from microsoft env? 2nd large, how many migrate from php? about 3rd large.&lt;br /&gt;&lt;br /&gt;oreilly's booksale chart: java, ..., ... (photo taken), from last night's keynote&lt;br /&gt;&lt;br /&gt;pragmaticstudio.com/donate&lt;br /&gt;&lt;br /&gt;sun's hardware &amp; approach&lt;br /&gt;&lt;br /&gt;some of his experiences, in business consulting for sun&lt;br /&gt;&lt;br /&gt;-&gt; java will never go away, php will never go away.  thus, what about integration between these different languages/platforms with ror?&lt;br /&gt;&lt;br /&gt;his solution --&gt;java: platform, language, ..., thus, jvm can run java, ruby, javascript, php and others...?&lt;br /&gt;&lt;br /&gt;a good practice: REST&lt;br /&gt;&lt;br /&gt;web architectural references:&lt;br /&gt;=&gt;architectural styles and the design of network-based software architectures by roy fielding, thesis&lt;br /&gt;etc.&lt;br /&gt;&lt;br /&gt;example of MS webcam ad.&lt;br /&gt;  ad says '1 touch blogging', if on MS's blog, not everybody's on it&lt;br /&gt;  -&gt; atom publishing protocol&lt;br /&gt;&lt;br /&gt;conventional wisdom:&lt;br /&gt;java: compute performance, tooling&lt;br /&gt;php: web scaling, ease of use&lt;br /&gt;rails: time to market, maintainability&lt;br /&gt;&lt;br /&gt;Is Ruby Ready for Corporate IT? and Behind Mingle: ThoughtWorks Studio's Collaborative Project Management Tool ¶&lt;br /&gt;&lt;br /&gt;    * mingle demo. no notes. &lt;br /&gt;&lt;br /&gt;Big Stinky Piles (of Data) ¶&lt;br /&gt;&lt;br /&gt;    * mingle's edloan product related. usage of rftp demo. no notes. &lt;br /&gt;&lt;br /&gt;RESTful Modeling with ActiveRecord ¶&lt;br /&gt;&lt;br /&gt;    * RESTful&lt;br /&gt;    * Modeling&lt;br /&gt;    * ActiveRecord?&lt;br /&gt;    * Vonnage was facing a software problem, identified SOA as architecture of choice and improved hardware scaling and development scaling&lt;br /&gt;    * Solutions We Found&lt;br /&gt;          o -&gt; text over HTTP, forget SOAP, we like to be dirty, allowing for diverse development and implementation, use right tool for the right job, not the tool everyone else is using&lt;br /&gt;          o -&gt;rails for rapid prototyping of applications&lt;br /&gt;          o 2 components required: backend and frontend &lt;br /&gt;    * RestResource? Summary&lt;br /&gt;    * Rest Resource serves as the back end or service solution&lt;br /&gt;    * maps a RESTful interface on top of ActiveRecord? objects&lt;br /&gt;    * exploits ActiveRecord? model relationships&lt;br /&gt;    * XML Examples&lt;br /&gt;          o ==&gt; XML example for rendering&lt;br /&gt;          o demo: &lt;br /&gt;    * post game highlights:&lt;br /&gt;          o simple protocol, simple application, DRY, ...&lt;br /&gt;          o open source &lt;br /&gt;    * resources du jour&lt;br /&gt;          o http://del.icio.us/vonage_railsconf_2007 &lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-3195498812187894436?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/3195498812187894436/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=3195498812187894436' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/3195498812187894436'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/3195498812187894436'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/05/railsconf-2007-so-far.html' title='railsconf 2007 so far'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-951009454218558786</id><published>2007-05-06T12:42:00.000-07:00</published><updated>2007-05-06T12:44:14.777-07:00</updated><title type='text'>ocean's 13 coming soon</title><content type='html'>june 18th is when ocean's 13th is coming to theatre.&lt;br /&gt;sad as is that shrek 3 preview isn't coming to my town, but am super looking forward to june when daniel brings his 12 crew plus one mystery member.&lt;br /&gt;&lt;br /&gt;spiderman 3 seem somewhat more interesting than past 2, the 2nd one was a bit of sleeper.  friday night was sold out, wonder if the fever's died out a bit by now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-951009454218558786?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/951009454218558786/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=951009454218558786' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/951009454218558786'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/951009454218558786'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/05/oceans-13-coming-soon.html' title='ocean&apos;s 13 coming soon'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-2852950672874313635</id><published>2007-04-20T15:56:00.000-07:00</published><updated>2007-04-20T15:57:46.291-07:00</updated><title type='text'>naver blog to save</title><content type='html'>&lt;a href="http://blog.naver.com/rkdlq81/30016457023"&gt;syndrome, 신드롬 &lt;br /&gt;[무한도전] 야외 촬영 ^^&lt;/a&gt; -- nice craft!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-2852950672874313635?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/2852950672874313635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=2852950672874313635' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/2852950672874313635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/2852950672874313635'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/04/naver-blog-to-save.html' title='naver blog to save'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-254914769116374686</id><published>2007-04-19T19:36:00.000-07:00</published><updated>2007-04-19T19:43:09.760-07:00</updated><title type='text'>is flickr choking?</title><content type='html'>it took me more than 5 minutes to upload flickr photos from my mac, and I asked someone working at yahoo and say the 3 photos i uploaded are just fine.  so, the upload did work, huh?&lt;br /&gt;&lt;br /&gt;i did try to login from my browser and it failed.  annoyed, i moved onto my windows with ie, then windows with firefox, linux with firefox, ...., etc.&lt;br /&gt;&lt;br /&gt;finally, i left my last login window at the blank white page with the loading circle thing running like the squirrel in a cage and left for dinner.  that was an hour ago.  i can get to any other sites just fine, just like this blogger.com.  i still am not loggin onto the site. &lt;br /&gt;&lt;br /&gt;maybe i should take a nap and come back. yawn!&lt;br /&gt;&lt;br /&gt;what's happened?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-254914769116374686?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/254914769116374686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=254914769116374686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/254914769116374686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/254914769116374686'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/04/is-flickr-choking.html' title='is flickr choking?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-1168192050834933519</id><published>2007-04-14T14:07:00.001-07:00</published><updated>2007-04-14T23:36:21.962-07:00</updated><title type='text'>justice for all -- commissioner steps in for unsportsmanlike conducts</title><content type='html'>not fully 24hrs since Bernier of Sharks got hit from behind, with full malice intent and no accident, NHL suspended the Nashville player who hit Bernier during friday's game 2.  Finally, justice.  Too bad nothing's done for Cheechoo's hit from game 1 other than that game's suspension.  Still, maybe this will make Nashville to play by the book, and lift Shark's morale that they can play clean and sportsmanlike and still win.&lt;br /&gt;&lt;br /&gt;respect for NHL commissioner.  looking forward to the game 3, clean and fair!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-1168192050834933519?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/1168192050834933519/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=1168192050834933519' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1168192050834933519'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/1168192050834933519'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/04/just-for-all-commissioner-steps-in-for.html' title='justice for all -- commissioner steps in for unsportsmanlike conducts'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-7644783088433469200</id><published>2007-04-14T10:09:00.000-07:00</published><updated>2007-04-14T10:15:18.715-07:00</updated><title type='text'>this old house.... live!</title><content type='html'>i'm watching this old house, boston version of a house near the airport.&lt;br /&gt;&lt;br /&gt;and, am hearing the footstep and motor sounds upstairs, of window installers who showed up 9:30am prompt.&lt;br /&gt;&lt;br /&gt;within half an hour the bedroom windows are out, and the livingroom one's half way out.  they brought their own ladder with platform to work on 2nd floor bedroom and livingroom.  they got their wood cutting unit at the front porch, and the motor sound is sweet sound of getting argon gas for double-pane.&lt;br /&gt;&lt;br /&gt;oh, boy!  i got 'this old house' seattle version going on in my own house. &lt;br /&gt;&lt;br /&gt;giggle* giggle*&lt;br /&gt;&lt;br /&gt;i do try to stay out of their way, but also am sneaking around with my portable camera, dying with curiosity.  let's see how the house is aired with new windows and sliding deck-door at the end of the day, as they promoised...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-7644783088433469200?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/7644783088433469200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=7644783088433469200' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/7644783088433469200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/7644783088433469200'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/04/this-old-house-live.html' title='this old house.... live!'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-234839097370627080</id><published>2007-04-13T22:18:00.000-07:00</published><updated>2007-04-14T10:28:30.643-07:00</updated><title type='text'>don't hate ya IRS no more.</title><content type='html'>davem made me sit down thursday night, against my kickin and screamin...&lt;br /&gt;for that dreaded tax return deadline, not extended far enough to april 17th.&lt;br /&gt;&lt;br /&gt;well, i've done it like 80% already at the beginning of february, stopping as soon as i found out i get no return and need to pay about a grand or so.  no need rushing paying, was the idea.&lt;br /&gt;&lt;br /&gt;a few of forms from CDs and other small investment interests, like oh! i didn't know i paied foreign stock tax of $20 to various countries last year that i didn't know.  &lt;br /&gt;&lt;br /&gt;sitting for 10minutes about missing forms here and there, and whining and chasing the paper i didn't place well, I was done with it and used e-filing at abut 1am this morning before I went sleep.&lt;br /&gt;&lt;br /&gt;duh, what do you expect, it's friday the 13th.  i should be just glad it's done.&lt;br /&gt;&lt;br /&gt;i post-poned checking email as long as i could, and was midly surprised and massively glad when the email confirmed both state and federal took the tax return.  phew~~~&lt;br /&gt;&lt;br /&gt;no sending in, no nothing, just let them take money out of my bank account and deposit to the same account, still short of cash but at least no worries about any federal agents knocking on my door.&lt;br /&gt;&lt;br /&gt;i did all the follow-up clicking, and i'm glad to say i'm completely done!&lt;br /&gt;&lt;br /&gt;hey IRS, ain't no more scare o' ya!&lt;br /&gt;&lt;br /&gt;oOOoo wee.  hey, i got the whole weekend ahead o' me. ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-234839097370627080?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/234839097370627080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=234839097370627080' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/234839097370627080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/234839097370627080'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/04/dont-hate-ya-irs-no-more.html' title='don&apos;t hate ya IRS no more.'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-4040361192276842837</id><published>2007-03-30T19:56:00.000-07:00</published><updated>2007-03-30T19:58:20.907-07:00</updated><title type='text'>firebug for firefox</title><content type='html'>ah, my ignorance is being lifted, one layer at a time.&lt;br /&gt;&lt;br /&gt;i'm about to download &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/1843"&gt;firebug&lt;/a&gt; i learned about yesterday.&lt;br /&gt;&lt;br /&gt;help debug javascript, css, html and ajax stuffs for FE development.  good thing to know.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-4040361192276842837?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/4040361192276842837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=4040361192276842837' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4040361192276842837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4040361192276842837'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/03/firebug-for-firefox.html' title='firebug for firefox'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-7624623702583288938</id><published>2007-03-28T01:53:00.000-07:00</published><updated>2007-03-28T01:57:16.103-07:00</updated><title type='text'>late bloomer to YouTube -- thanks to the detective Goren</title><content type='html'>It's been over a year since YouTube took sensational debut and remains darling, bought up by Google, and is on a trial for being too popular.  The very reason I statyed away from this popular portal for video sharing.&lt;br /&gt;&lt;br /&gt;While looking up Google's Test Automation clips, I accidentally stumbled on Youtube, and voila, there are so many of short clips of Law and Order: CI with different music choices, many I do dearly like so, as music video clips and a few full length episode!&lt;br /&gt;&lt;br /&gt;I spent hours clicking through, listening to beattles, linkin park, ..., and watching endless clips of episodes I'm so familiar with.  ^^  oops, it's almost 2am, time to go to sleep? or one more clip to view.  maybe i should start making my own music video to upload.  there are sooooo many, it's good thing I don't need to get up at 7am to go to work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-7624623702583288938?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/7624623702583288938/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=7624623702583288938' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/7624623702583288938'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/7624623702583288938'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/03/late-bloomer-to-youtube-thanks-to.html' title='late bloomer to YouTube -- thanks to the detective Goren'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-5605227666556019553</id><published>2007-03-22T22:18:00.000-07:00</published><updated>2007-03-24T07:01:31.807-07:00</updated><title type='text'>Dell and 19"</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_vLIk6WsN2yM/RgNmgVgTCuI/AAAAAAAAAAc/i1dAU4hD4Lw/s1600-h/big_monitor.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_vLIk6WsN2yM/RgNmgVgTCuI/AAAAAAAAAAc/i1dAU4hD4Lw/s200/big_monitor.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5044988713299544802" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Dell may be setting new trends in commonly used LCD size to be 19".&lt;br /&gt;&lt;blockquote&gt;Dell Small Business has the Dell Dimension C521 Athlon64 X2 Dual-Core 3800+ System + 19" E197FP Analog Flat Panel LCD Monitor for $479 + free shipping. Thanks Dancancook.&lt;br /&gt;&lt;br /&gt;Specs:&lt;br /&gt;AMD Athlon 64 X2 Dual-Core 3800+&lt;br /&gt;Genuine Windows Vista Home Basic&lt;br /&gt;1GB Dual Channel DDR2 SDRAM at 667MHz- 2DIMMs&lt;br /&gt;160GB Serial ATA Hard Drive (7200RPM) w/DataBurst Cache&lt;br /&gt;48X CD-RW/ DVD Combo Drive&lt;br /&gt;NVIDIA GeForce 6150 LE Integrated Graphics GPU&lt;br /&gt;Integrated 7.1 Channel Audio&lt;br /&gt;1 Year On-site Economy Plan&lt;br /&gt;Dell USB Keyboard and Dell 2-button USB mouse&lt;br /&gt;19 inch E197FP Analog Flat Panel&lt;/blockquote&gt;&lt;br /&gt;Not quite two weeks after &lt;a href="http://vger.kernel.org/~davem"&gt;Davem&lt;/a&gt; got himself an Intel machine w/ 19" deal(which, of course he upgraded to 22"), Dell posted new deals.&lt;br /&gt;&lt;br /&gt;Is it like 'Deal or No Deal'?  I told him to wait 'til like 4th of July, as I got a rather fantastic deal over christmas, putting myself out of business on putting hardware together.  Dell's Athlon Duo 64 with 19" LCD, 1gig memory and 160gig disk with free shipping for like $450 or so was pretty sweet.  &lt;br /&gt;&lt;br /&gt;As usual, he didn't have patience of Jobs, and insist on fulfilling his instant gratification.  Like a week after he got his new system, I'm on &lt;a href="http://stealdeals.net"&gt;stealdeals.net&lt;/a&gt; to look for any brookstone coupons and I see Dell's C521 with 19" and 1gig and all the thing I got over christmas for $479 again.&lt;br /&gt;&lt;br /&gt;Didn't really let me take off monitor for more discount, but this still is a good deal.&lt;br /&gt;&lt;br /&gt;of course, banana republic's 40% off and free shipping stuffs and old navy's 2 for 1 deal didn't really escape my eyes.&lt;br /&gt;&lt;br /&gt;shopping! shopping! they really know how to squeaze and torment you with the deals.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-5605227666556019553?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/5605227666556019553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=5605227666556019553' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5605227666556019553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5605227666556019553'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/03/dell-and-19.html' title='Dell and 19&quot;'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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://bp1.blogger.com/_vLIk6WsN2yM/RgNmgVgTCuI/AAAAAAAAAAc/i1dAU4hD4Lw/s72-c/big_monitor.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-174507502387282198</id><published>2007-03-14T15:21:00.000-07:00</published><updated>2007-03-14T15:25:10.070-07:00</updated><title type='text'>fixing mousy fedora core 5 bug</title><content type='html'>after an overbearing 2months without mouse cursor and embarking 2nd fc 5 system (dell w/ dual partitioning being done to share with windows vista), i finally caught up and googled around in search for an answer.&lt;br /&gt;&lt;br /&gt;after a few different posting, all pointed to comment #20 of https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=182517.&lt;br /&gt;basically /etc/X11/xorg.conf need to be updated:&lt;br /&gt;adding:&lt;br /&gt;## fehlender cursor, hwcursor off  rhb#182517&lt;br /&gt;        Option      "HWCursor" "off"&lt;br /&gt;&lt;br /&gt;to &lt;br /&gt;&lt;br /&gt;Section "Device"&lt;br /&gt;        Identifier  "Videocard0"&lt;br /&gt;        Driver      "nv"&lt;br /&gt;        VendorName  "Videocard vendor"&lt;br /&gt;        BoardName   "nVidia Corporation C51 PCI Express Bridge"&lt;br /&gt;EndSection&lt;br /&gt;&lt;br /&gt;to make it:&lt;br /&gt;&lt;br /&gt;Section "Device"&lt;br /&gt;        Identifier  "Videocard0"&lt;br /&gt;        Driver      "nv"&lt;br /&gt;        VendorName  "Videocard vendor"&lt;br /&gt;        BoardName   "nVidia Corporation C51 PCI Express Bridge"&lt;br /&gt;## fehlender cursor, hwcursor off  rhb#182517&lt;br /&gt;        Option      "HWCursor" "off"&lt;br /&gt;EndSection&lt;br /&gt;&lt;br /&gt;i was about to be good at sensing where my mouse was pointing to without seeing the cursor points, but seeing it doesn't bother me either.  necessary, indeed, is a mother of invention, or in this case a mother of fixing&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-174507502387282198?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/174507502387282198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=174507502387282198' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/174507502387282198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/174507502387282198'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/03/fixing-mousy-fedora-core-5-bug.html' title='fixing mousy fedora core 5 bug'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-5588198628257407218</id><published>2007-02-27T14:23:00.000-08:00</published><updated>2007-02-27T14:28:22.302-08:00</updated><title type='text'>can userdir and virstualhost coexists? on apache2.2?</title><content type='html'>i've not configured apache all that much, even in 1.3.&lt;br /&gt;&lt;br /&gt;and yesterday was probably first time i looked up httpd.conf since apache2.2 debutted.&lt;br /&gt;&lt;br /&gt;i spent whole day trying to make a lousy 'UserDir public_html' bits working.  First I had to check userdir module is loaded or not, and then added UserDir directive and &lt;directory&gt;...&lt;/directory&gt; bits.&lt;br /&gt;I've also googled a lot to read up on troubleshooting, and followed all the suggestions on directory permission, groups, user permission, ...&lt;br /&gt;After trying to make it work for about 5-6hours straight was quiet frustrating.&lt;br /&gt;&lt;br /&gt;this morning, per coworker's suggestion, i tried to get virtualhost configured.  making port to listen, and add &lt;virtualhost&gt;...&lt;/virtualhost&gt; took less than 30minutes to work.&lt;br /&gt;&lt;br /&gt;Someone mentioned that maybe UserDir doesn't work because Virtualhost is active.  I've not seen that on Apache's wiki/documentation.&lt;br /&gt;&lt;br /&gt;Anyone got UserDir on Apache2.2 working?  with Virtualhost also configured?&lt;br /&gt;&lt;br /&gt;Ma'an, how do you make that work?&lt;br /&gt;Heh...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-5588198628257407218?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/5588198628257407218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=5588198628257407218' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5588198628257407218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/5588198628257407218'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/02/can-userdir-and-virstualhost-coexists.html' title='can userdir and virstualhost coexists? on apache2.2?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-4153694472041654192</id><published>2007-02-23T10:23:00.000-08:00</published><updated>2007-02-23T10:35:19.513-08:00</updated><title type='text'>forced upgrades -- ubuntu and blogger</title><content type='html'>Google once was known for it's being 'beta' everywhere, and now the reknowned 'beta' is busily scrubbed off.  After weeks and months of warning, I finally am forced to what they call upgrade.  That means I must use google account.  Heh. &lt;br /&gt;&lt;br /&gt;Not sure the benefit nor compromise with this change as yet. (Aside from this 'Labels for this post' I see visibly on new blog posting UI).&lt;br /&gt;&lt;br /&gt;On the other hand, I've had Ubuntu on my notoriously anoraxic(I mean thin) Sony Vaio Laptop.  It originally came with WinXP, got switched to FC 2 within days and stayed with FC 2 past two years, with a bit of kernel updates here and there and other package updates.  Other than Atheros wifi card giving me troubles now and then, inside firewalled network with essid/phrase, I was okay with FC 2.  I actually enjoyed not getting so many of those 'you have new packages to upgrade ...' messages as FC progressed to version 3, then 4, then 5 and now is at version 6 and backward compatibility to FC 2 seem fading away. &lt;br /&gt;&lt;br /&gt;So I was finally ready for FC 6 upgrade now that all the initial release bugs seem to have been fixed.  FC 6 download is in DVD and ubuntu on CD and that's how the decision from FC 6 upgrade got changed to ubuntu upgrade.  I'm slowly getting used to my new desktop setting.  At first, I didn't see what the buzz is about this thing called ubuntu.  Well, I still am not jumping out of my seat to advocate ubuntu over any other flavours of linux.  I used to get real irritated about admin-&gt;networking pop-up to get wifi and ethernet working.  And, that I can't go to /etc/sysconfig/networking-script/ to change the config setting.  it's at /etc/network/interfaces.  A creature of habit pampered by no upgrades for a few years, the switch isn't quiet as easy.  And, wifi at the downtown office still doesn't work.  :( Bah!  Maybe it's my atheros, maybe I got incorrect essid and phrase. &lt;br /&gt;&lt;br /&gt;I'm too lazy to switch back to familiar FC so I'm here to stay.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-4153694472041654192?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/4153694472041654192/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=4153694472041654192' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4153694472041654192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/4153694472041654192'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/02/forced-upgrades-ubuntu-and-blogger.html' title='forced upgrades -- ubuntu and blogger'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116970170843232796</id><published>2007-01-24T21:00:00.000-08:00</published><updated>2007-01-24T21:08:28.450-08:00</updated><title type='text'>opal in sydney, ruby (on rail) in seattle?</title><content type='html'>i've learned a thing or two about taihitian black perl when vacationing in taihiti/bora bora a few years back, and learned a thing or two about opal while in sydney for lca2007; i like boulder opal and black opal for the dark &amp; deep blueness more than the white shiney opal of other kinds, i learned.&lt;br /&gt;&lt;br /&gt;back in seattle, i got a chance to have somewhat not-so-in-depth(mainly due to my lack of knowledge) discussion about ruby on rail and ajax.  I, of course, googled ruby on rail and got forwarded to o'reilly's olamp.org site to read up on ruby, the language, and rail, the framework to house ruby and mysql on windows.  hmm...  ruby seem very high level language, and mysql on windows with all the odbc crap being taken care of by rail seem interesting.&lt;br /&gt;&lt;br /&gt;of course i just got back from lca2007 where i saw someone like dave jones giving a demo on how many useless cycles of application/user layer system calls there are, and i bet making things easier for the developers on rail would create more of these extra system calls. heh.  shrug...&lt;br /&gt;&lt;br /&gt;i googled again and found watir, web application testing in ruby, or something like that? pronounced water, is what the web page says.  i should try to play with both ruby on rail and watir.  i also found this rather interesting website called opensourcetesting.org, listing many automation tools, like sourceforge.  &lt;br /&gt;&lt;br /&gt;something new everyday, i guess.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116970170843232796?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116970170843232796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116970170843232796' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116970170843232796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116970170843232796'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/01/opal-in-sydney-ruby-on-rail-in-seattle.html' title='opal in sydney, ruby (on rail) in seattle?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116970243488029543</id><published>2007-01-18T21:14:00.000-08:00</published><updated>2007-01-24T21:20:34.883-08:00</updated><title type='text'>sneezing w/ sunburn?</title><content type='html'>hope it's not lca tradition.&lt;br /&gt;as of tuesday morning i have slight sore throat, and as of wednesday afternoon i have sniffling and light headedness.&lt;br /&gt;&lt;br /&gt;last year in dunedin, new zealand, there was some bad stomache flu sort of virus that someone picked up from christchurch and i heard it was nasty; many toilet drivers...&lt;br /&gt;&lt;br /&gt;not sure if vigorous tour schedule on sunday, i got like 4 band-aids on my poor toes after 10hr walking, or if it's that fabulous speaker dinner on captain cook cruise that lasted late well past 11pm on monday, but sad truth is i got a cold.  *cough* *cough*...&lt;br /&gt;&lt;br /&gt;mmm... funny part of this is that walking around saturday and sunday, with rigorous application of sun block lotion every 15minutes, gave me much sun burn, on face, on scalp, on shoulder and on legs and the sun burn started peeling already.&lt;br /&gt;&lt;br /&gt;laugh or cry?  the cold is mild, and sun burn doesn't hurt (just itches).  so i guess i can laugh it off?  a cold in the hot summer of january in sydney!  sun burn in january when it actually snows back at home!&lt;br /&gt;&lt;br /&gt;hahaha&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116970243488029543?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116970243488029543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116970243488029543' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116970243488029543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116970243488029543'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/01/sneezing-w-sunburn.html' title='sneezing w/ sunburn?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116908282279387699</id><published>2007-01-17T16:51:00.000-08:00</published><updated>2007-01-17T17:13:42.813-08:00</updated><title type='text'>linux.conf.au sessions so far -- 2</title><content type='html'>okay, it's thursday, almost noon.  and i crashed and burned badly. "The Hao of testing" had a homework section and I didn't know and when I was supposed to start download gmp and its patch to follow along, i should've quitted.  Some one whole lot more advanced and clueful next to me, however , was coaching me to go to ubuntu patch download site to get the package, apply the patch, and also to apply Hao patches from the homework wiki site, http://lca2007.linux.org.au/HaoHomeWork, and I couldn't say no.  So I sat through for about 40minutes, downloading, compiling and frentically looking for the source that the tutorial session speaker was going over, and I heard Quantas, United and even KAL fly over my head, and I had to admit my ignorance and bail out.  A big ouch!  but then again, so many more have walked out before me, that maybe ... mmm...  maybe it was more stupid to be sitting in on something I got no clue whatsoever.  Nothing wrong with the course, just that I was clueless other than the session description mentioning that it's a tutorial on how to test kernel. Heh.&lt;br /&gt;&lt;br /&gt;I sat through Davem's Netchannel talk and Simon's Kexec talk, about as clueless, but less in pain of being and looking every bit stupid as I was. heh.&lt;br /&gt;&lt;br /&gt;back to tuesday's kernel mini-confs.  Through Peter Chubb's session I also took notes to checkout some source control tools like cogito, Mercurial and quilt.  Never knew of quilt to go w/ CVS, and never knew cogito to go with git, so something to search on wiki.&lt;br /&gt;&lt;br /&gt;he also talked about debugging, with magic sysRQ key, kernel debugger and 'wolf fence' technique, of which I ony know the last, put lots of 'print' statement before and after.  :)&lt;br /&gt;&lt;br /&gt;After lunch was divided between linuxchix track, "Demystifying PCI" with Kristin Carlson Accardi, Rusty's "Wesnoth for Kernel Hackers (and everyone else)", and kernel hacker's panel.  Heh, from PCI session I got out the basic concept for what 'driver' and 'bus' means, and thanks to Peter's session earlier I did read through /usr/src/linux-2.6/Documentation for PCI, so things made more sense.  And, of course I now use lspci. heh.&lt;br /&gt;&lt;br /&gt;i didn't go to sleep that late, yet i missed Dr. Andrew S. Tanenbaum's 9am session in auditorium on wednesday.  shame on me!  how do these geeks who drink 'til the whee hour of the night wake up promptly to go to these 9am session? i dunno.&lt;br /&gt;&lt;br /&gt;luckily, i made it to Jonathan Corbet's "The Kernel Report" in full, and wide awake too.&lt;br /&gt;After much internal debate, I decide to be a good gal and crashed another session before lunch.  "Electronics with Linux" with James Cameron.  Yup, he began w/ self introductory of no I'm not a director of Titanic bits.  funny funny...  I liked his demo of how he worked on night light and door bell that he designed and made himself.  I particularly liked the idea of the door bell having 'how many rings you missed while you were out' idea, and the fact that i might play with pcb myself one day; hmm...  maybe not at home, even with a full insurance. ;p&lt;br /&gt;but the poor visitor w/ no clue as to the fact that he's used fire alarm to incorporate into his door bell?  heehee.  that gave me many many silly ideas while seated.&lt;br /&gt;&lt;br /&gt;his main topic was on testing network bandwidth for OLPC, the cute old mac like white sub-laptop with green rabbit ear for antenna and hand-held.  :) cute!  It's pretty funny to see a big man like James holding it up to his ear to show how he tested the ping sound while walking away from the other laptop.  like a giant in fairy tale, with big bearded and all. huhu.  Anyways, he made it look rather simple and fun project to volunteer for a thing like that and people asked some silly and some naughty questions.  someone asked if the wireless coverage had any differences day time and night time and he made a face as if he'd been too afraid in the night to go out. lol.  in any case, he demonstrated that he could just run a ping on one machine, walk away or drive away from it while holding the other one, to get the idea as to how this wireless coverage would work, sometimes having a tree or other objects in between, and sometimes leaving it on the car and sometimes taping the access point to the ladder.  I had much fun, and I see how this conference is encouraging for hobbists alike the professionals.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116908282279387699?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116908282279387699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116908282279387699' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116908282279387699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116908282279387699'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/01/linuxconfau-sessions-so-far-2.html' title='linux.conf.au sessions so far -- 2'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116907045658678636</id><published>2007-01-17T13:27:00.000-08:00</published><updated>2007-01-17T13:56:02.090-08:00</updated><title type='text'>linux.conf.au sessions so far</title><content type='html'>this year's conf runs from monday 'til friday, ending promptly with the penguin dinner.&lt;br /&gt;meaning, there'll be no circus of shaving, ^^ for poor Rusty who's just allowed to grow his facial hair again.&lt;br /&gt;&lt;br /&gt;weather on sunday was up to it's reputation, giving me sun burn with all that sunblock lotion.  heh, a sun burn in january.  had breakfast in coogee beach, took ferry to the zoo for a few hours, and hung out in downtown/chinatown for the rest of the afternoon until we met up with Kay's sunday party at the Opera House Bar.  Took off early around 9:30pm to make it to the monday/tuesday adventure at 6am, but obviously didn't wake up for it.&lt;br /&gt;&lt;br /&gt;monday and tuesday were mostly miniconfs, each of conference room setup as a track for one topic.  there were debian, GNOME, education, embedded, mySQL, research for monday and debian, GNOME, Education, gaming, kernel, postgreSQL, openoffice and linuxchix for tuesday.  Hmm... one too many tracks for a single person to go to.  And, wednesday is when the full session began.  &lt;br /&gt;&lt;br /&gt;i like the bag for linux.conf.au 2007, it fits my laptop perfectly fine and is a size of a purse.  &lt;br /&gt;&lt;br /&gt;i began monday with Jonathan Oxer's "Escaping Image Storage Hell", and learned immediately one of more popular topics of the conference this year, virtualization!&lt;br /&gt;&lt;br /&gt;his slides should be available at http://jon.oxer.com.au.talks and started with a brief description of storage options and how the virtualization oes work in current models.  he used some humour describing the name xim(xen image manager) that it rhymes with vim, to state 'xim with vim', haha.  His xim works for build and clean removal and other basic fuctions and he's still working on synchronization of virtual machine images and is still researching with rsync and unison, and on things like configuration.  &lt;br /&gt;unlike me many of the attendees were active player in the fields, or have been paying enough attention to come up with all sort of comments and suggestions.  what a lively panel for the first session of the conference, and a mini-conf session it was too.&lt;br /&gt;&lt;br /&gt;then, i thought i might checkout this "A solar powered blue-tooth enabled, embedded video capture device" by Jamie Honan, mainly because I'm a sucker for this 'solar power' bits and 'embedded' another keyword that buzzed my attention.  it was more of a demo and sharing session and i enjoyed immensely.  Jamie is an active bee watcher it seems, so he was trying to come up with a way he could monitor and study his bees and bee hives.  He began a session with a thing or two about bees and went on to describe each of the parts and generations of progress as he surveyed and added different devices.    I've seen a few solar-powered devices for home appliance at Fry's but was still a little too timid to do anything with any yet; solar-powered lights for lawn or solar panels to charge up the car and things like that.  Jamie had brought a few of his devices and let people discover his bluetooth device, and also showed the small solar panel mounted to the steel pipe and described what gave him difficulties and such.  it was a quite motivating session.&lt;br /&gt;&lt;br /&gt;university cafe were pretty nice and inexpensive, and were open to feed us, some 600+ attendees at the conference. &lt;br /&gt;&lt;br /&gt;there was no question and no arguments about skipping Keith's 2pm session, even as it was titled 'TBA'.  Unlike last year, I'm not surprised that he gets to work on the slides 3 days before coming to the conference, and yet come up with topics that everybody cramms the room to come hear about.  &lt;br /&gt;&lt;br /&gt;Jetlag finally hit me, and I don't really remember anything from 3pm until I was hungry waiting for the speakers dinner bus to transport us all to Captain Cook's cruise.  It wasn't until 8pm that we got on, but there were ice cream shops and pie shops at the pier, so ...&lt;br /&gt;&lt;br /&gt;Tuesday morning was a bit tough, I wanted to crash Kernel track and also wanted to checkout linuxchix track, not to mention gaming.  I started the morning with Peter Chubb's "Speeding up Kernel Development"  where I got reminded to go back to the basic, read /usr/src/linux-2.6/Documentation for things, and other neat tips like -&gt; google for LXR on other online documents, -&gt; use distcc and ccache to help speed up the compilation, and tune the machine for faster compilation (use SMP, better than multi-core) and things like that.  He also mentioned to use ccache -C to compile if there's any assembly code changes to be picked up during the compilation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116907045658678636?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116907045658678636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116907045658678636' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116907045658678636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116907045658678636'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/01/linuxconfau-sessions-so-far.html' title='linux.conf.au sessions so far'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116883227087025985</id><published>2007-01-13T07:12:00.000-08:00</published><updated>2007-01-14T19:37:50.890-08:00</updated><title type='text'>a few perks of 16+ hours flying</title><content type='html'>Haven't yet grown wings, and am not a fool enough to consider myself neither Peter Pan nor Superman. &lt;br /&gt;&lt;br /&gt;With much of disadvantages health-wise, I do like flying, do like going to airport, even if it's to the other side of hemisphere, half world around, with much time zone changes.&lt;br /&gt;&lt;br /&gt;To my surprise, time rolled fast enough so that lca2007 which I thought would never come and didn't think I'd ever see has yet come again.  Week of Jan 15, 2007.&lt;br /&gt;&lt;br /&gt;After much rains and much sunshines, the snow began wednesday afternoon and continued 'til much later through the night, leaving a few inches of snow on my lawn.  My previous experiences in SF and in Busan leaves me with much wonder and awe at this sight.  Also leaves me with a bit of worry, as I've seen what it does to traffics and power systems, from christmas' blizzard.&lt;br /&gt;&lt;br /&gt;We left little after noon, to catch 4:30pm flight, getting to the airport by 2pm, with all the precautions taken; toilleteries in clear bag, pack everything into carry-on bag and cookies for 2 hrs at Sea-tac and another 2hrs at LAX.  Some research saved us fees as monorail to the airport isn't quite there yet, not until 2009, and left us with airport shuttle, bus, taxi or airport parking as options and we got this $5.95/day option for this place in sea-tac, less than a mile away from airport with free shuttle to the airport.&lt;br /&gt;&lt;br /&gt;As much as I hate to admit, upgrade to business class is worth every single dime, for that long 14hour flight.  A quick lunch at Sea-tac's newly renovated food court area, watching planes take off and land, and chatting with some stranger(s), a Horizon mechanic with much tales to tell for this time, kills 2 hours easily, and premium status due to much of flights in 2006 saves me the long wait line at TSA X-ray station.  Getting to LAX, getting upgrades, getting food and all is just fine, with an unexpected surprise, seeing Comet McNaught with bare eyes.&lt;br /&gt;&lt;br /&gt;Maybe I've not caught up with current events lately, though I'm sure I did.  And, maybe I'm no astronomy geek, but I'd no idea about it, and it made the flight to LAX a lot more unique and cool, even without any upgrades to first class.  I was lucky to be sitting on the right side of the plane, getting a full view.  How tiny it looks.  Would I have been able to see it on the ground?  I doubt, seeing how tiny it is hundreds and thousands feet up in the air.  above the cloud, the sunset looks glowing red, and there are a few stars visible in a size of dots way way above the sky, and in the midst of red glowingness is a small dot with a long tail, about an half inch long to the dot-to-blob size comet.  Thanks to the flight attend distributing newspaper article xeroxes and pilots exlpaining, and thanks to be sitting on the right side of the plane, I got to see and learn much about McNaught, a pretty cool event.&lt;br /&gt;&lt;br /&gt;LAX to Sydney, the 14hour flight to start at 9pm, of course got delayed 30min before boarding and another 30min-1hr after seating.  How did I survive all this?  And, 14hours of flying?  Heh, service for business class and the leg space is pretty phenominal.  I can arrane the seat and the leg supporter extension to make it almost vertical, maybe about 5-10 degrees off?, position to rest my leg and lay my head to sleeping position.  2-3 meals they serve are better than some of fine restaurant meals I've had, and definitely nothing to compare to the economy class meal.  I got orange juice served upon seating, dinner composed of appetizer, warm roll, and steak dinner, along with dessert.  warm nuts were also served for snacks and hot drinks were served in a real tea cup, and napkings were not paper but cloth, and warm towel also a real towel not paper one.  I did sleep through midnight snack, but I knew to be better prepared for breakfast, from the experience I had with the dinner before.  It's a pretty big meal, all tasty, thus don't eat appetizer as if it's a meal itself!  Flight attendants are pleasant, and movie access and individual reading light, with things like toothbrush and toothpaste, not to mention all the special toilettery stuffs from H2O(facial cleanser and water sprayer).  &lt;br /&gt;&lt;br /&gt;Having had some bad flight experiences before, including that one time for 12hour flight from London where the guy in front of me in regular economy class having pushed his seat backward for the entire flight while the little girl behind me screamed, cried and kicked my seat, this is about as close to heaven as it gets.&lt;br /&gt;&lt;br /&gt;McNaught and upgrade!  Maybe it's a sign how much fun lca2007 would be.  ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116883227087025985?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116883227087025985/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116883227087025985' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116883227087025985'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116883227087025985'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2007/01/few-perks-of-16-hours-flying.html' title='a few perks of 16+ hours flying'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116760290053146568</id><published>2006-12-31T13:53:00.000-08:00</published><updated>2006-12-31T14:08:20.543-08:00</updated><title type='text'>who buys anything at full price anyways?</title><content type='html'>past two weeks have been a pure bargain madness, especially with DVDs, dress clothes and computer products.&lt;br /&gt;&lt;br /&gt;when I finally accepted I'm in microsoft-land, I tried my best to revive my home-built old pentium desktop I put together back in 1999 and failed, thus turned to good old Dell.  with Christmas in the middle, it took 6-business days to deliver, but I'm happy w/ this new dimension C521 series AMD box with 1gig RAM and 80gig HD with 19-inch flat panel, all for under $450, with free shipping.  hmm....  merry christmas to me?&lt;br /&gt;&lt;br /&gt;not that my bank account needs any diet nor wouldn't my credit card mind getting a well deserved holiday breaks, I have discovered premium outlet in marysville on about half way home to seattle from mt. baker.  a big ouch!  there's calvin klein, borders, banana republic, gap, not to mention coach, tommy hilfiger, nine west, aldo, and even restoration hardware outlet.  oh, my...  of course the stores are jammed, but at some 30-40% discounts on every thing, and getting a blouse at banana republic for like $15 and nine west dress shoes for $29?  heh. &lt;br /&gt;&lt;br /&gt;well, the worst part is this incredible DVD discounts I'm still addicted to.  All started with Best Buy having those $14.99 DVDs for Television Series, which got me landed on 2 Seinfelds and Friends' 1st season.  Since the DVDs on sale were Seinfeld season 5 and 6, where I was still missing season 4, I started hunting Amazon, overstock.com, bestbuy, target, you name it I hunt it.  That led me to discover that for a short period of time Murphy Brown's first season was at $8.50 but to get free shipping for $25 plus total amount, I had to click through each and every TV series that Amazon had listed.  Oh, my....  what have I turned into?  After much shopping I have bought Seinfeld 4 at $19 at Target, then Dawson's Creek season 6 for $14.95 at Best Buy again, which made me anxious about missing season 3, 4 and 5.  Ultimately I've got me Seinfeld 4-6, Friends 1-3, Dawsons' Creek 3-6, Married with Children 1-4, Will and Grace 1-2, and Law and Order Criminal Intent season 2, total of 17 box sets, all within last 2 weeks, both at store and online.  that's like more than $300, with pathetic excuse that they were all like some 50-70% discount.&lt;br /&gt;&lt;br /&gt;shame on me....&lt;br /&gt;&lt;br /&gt;heh, but thanks stealdeals and dealnews, for all those saving tips!  ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116760290053146568?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116760290053146568/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116760290053146568' title='15 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116760290053146568'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116760290053146568'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/12/who-buys-anything-at-full-price.html' title='who buys anything at full price anyways?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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>15</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-116601758669458133</id><published>2006-12-13T05:42:00.000-08:00</published><updated>2006-12-13T05:51:44.913-08:00</updated><title type='text'>okay, okay, i need to update my FC</title><content type='html'>I'm still stuck in the dark age of FC3.&lt;br /&gt;&lt;br /&gt;Recently I needed to update Firefox from 1.0.7 to 2.0, so I lazily thought of updating with rpm.&lt;br /&gt;&lt;br /&gt;I stumbled on http://people.redhat.com/caillon/RPMS/fc7/ while googling, and when I try to heck the site by substituting 'fc7' with 'fc3' the infamous 404 not found surfaced.&lt;br /&gt;&lt;br /&gt;My ethros driver is still from '05, giving me grief with corp wifi access with WEP, and I can't even update my browser? heehee...&lt;br /&gt;&lt;br /&gt;I'll bravely try to rpm -i on firefox 2.0 for fc7, but maybe it's about time I do some updates.&lt;br /&gt;&lt;br /&gt;houses are not the only ones with 'TLC(tender loving care)' I guess.  my good old laptop(s) and desktops need my TLC     \^^/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116601758669458133?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116601758669458133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116601758669458133' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116601758669458133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116601758669458133'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/12/okay-okay-i-need-to-update-my-fc.html' title='okay, okay, i need to update my FC'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116565540219990355</id><published>2006-12-09T00:50:00.000-08:00</published><updated>2006-12-09T01:10:02.213-08:00</updated><title type='text'>well equipped with treo 700 and highlander hybrid</title><content type='html'>picked up treo 700 p at downtown yesterday, and signed my life over for 2007 highlander hybrid tonight.&lt;br /&gt;&lt;br /&gt;shopping, indeed, is a lot of work.  panting*&lt;br /&gt;&lt;br /&gt;i've not had palm in like almost 5 years, and certainly wasn't a color one.  650 seem to be the current model, and 700 is the latest that verizon and sprint have been advertising on newspaper.  700 w is for windows OS and 700 p is for palm os.  can take a photo with camera phone, so creating addressbook is a lot more interesting.  i declined to get the internet for $15 a month extra.  The helpful salesman told me I can probably download google map and/or MS map for free using bluetooth, and NFL; hmmm... do i look a big football fan?  anyways, yet to play with it and discover more features.  so far i'm still not all that used to with keyboard layout and the button-like keys on keypad. &lt;br /&gt;&lt;br /&gt;after not having driven for almost 2 years, getting a car took some emotional toll.  test driving itself got my neck and shoulder stiff enough as is, especially since i've never driven suv before. &lt;br /&gt;&lt;br /&gt;i've been trying to be environmental friendly, to get hybrid over ever-so-tempting cutie mini (cooper), and yet i didn't know i could actually drive an suv.  the toyota dealer that came to yahoo dealer this summer had shown me the 4wd with gps color map and how smooth the drive is that i've been reading up specs and competative analysis against ford escape, mercury mariner, and lexus against highlander for some time.&lt;br /&gt;&lt;br /&gt;the dealer at the lake city dealership assured me of many color &amp; feature choices on the phone, and i just was gonna do the test drive and shop around.  well, these car dealers have reputation for being a good seller, and well, i'm a pretty good sucker.  some other interesting features of the car included seat heater and the seat adjuster, to forward &amp; back, and up &amp;amp; down, and the angle of seats.  i'm sure i'll find out more.  when I narrowed down to 4wd and gps as requirement, the color options decreased rapidly.  i got to test drive a nice metallic ocean blue color that i liked against white, black and silver color options i got.  but none had both 4wd and gps.  the floor manager guy did place a few phone calls and got the black color model.  the only silver they had, on display, was already sold and i was told that the owner actually waited 3 months and is getting it delivered this weekend.&lt;br /&gt;&lt;br /&gt;when i was asking for 2006 model, hoping for better price and better availability the salesman almost bursted into laughter.  he showed me on his computer screen that there are 2 model left and one is in rural california and the other in idaho. hmm...  and when he told me the price, and no discount and 5.9 apr, i was like 'noooo way!'  well, there are lots highlander but not many highlander hybrid, and reasonable selection of highlander 2 wd but not that many 4wd,  selection of gas-powered highlander but not that many hybrid, and practically none with gps package on the car.  so my color option ran out fast.  the black one actually required the transfer from other lot, and either i take it or could wait 3mo myself for the right configuration and right color which i couldn't afford. &lt;br /&gt;&lt;br /&gt;with a bit of negotiation, with a bit of waiting, and a bit of paperwork let us out with down payment check written and signing my life away.  will pickup the car tomorrow afternoon, and will get the gps training; learn to follow the gps direction and drive ever so huge suv.&lt;br /&gt;&lt;br /&gt;saw grey's anatomy and seinfeld season dvd sale on newspaper ads, but i think i sunk enough money down past few days as is.&lt;br /&gt;&lt;br /&gt;oh well, watch out people!  i'll be on the road soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116565540219990355?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116565540219990355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116565540219990355' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116565540219990355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116565540219990355'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/12/well-equipped-with-treo-700-and.html' title='well equipped with treo 700 and highlander hybrid'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116535464259946357</id><published>2006-12-05T13:34:00.000-08:00</published><updated>2006-12-05T13:37:22.616-08:00</updated><title type='text'>lost - camera!  come home, missy camera</title><content type='html'>it's been exactly a month since i saw camera the last time.&lt;br /&gt;&lt;br /&gt;wasn't lost in snow covered mountain like that poor family who got lost in southwest oregon for 9 days.&lt;br /&gt;&lt;br /&gt;still, i should post 'lost camera' on mil cartons and on polls every corner.&lt;br /&gt;&lt;br /&gt;i've had that camera for 2 years, and i admit i drooled over other new cameras and over the latest model that is supposed to be water-proof.&lt;br /&gt;&lt;br /&gt;i am sorry camera!  just come home....&lt;br /&gt;&lt;br /&gt;p.s.  while looking for my digicam, pentax optio 5, i found my old old camera that i didn't have heart to toss out.  still good to use, but i got no films. heh.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116535464259946357?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116535464259946357/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116535464259946357' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116535464259946357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116535464259946357'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/12/lost-camera-come-home-missy-camera.html' title='lost - camera!  come home, missy camera'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116456798223250458</id><published>2006-11-26T10:55:00.000-08:00</published><updated>2006-11-26T11:06:23.710-08:00</updated><title type='text'>no mas for shopping?</title><content type='html'>using hispanic movers who don't speak almost no english meant i learn a few words of spanish myself.&lt;br /&gt;&lt;br /&gt;one phrase i heard all day last friday was 'no mas?'  and 'no mas!', and that means "no more". heh....&lt;br /&gt;&lt;br /&gt;in afluent modern society 'no mas' might apply for holiday shopping.  all friends and relatives already have necessities and some of extravagant toys as well.&lt;br /&gt;&lt;br /&gt;this year ps3 and wii seem popular, and of course i have been shopping for hybrid car myself.  hmm.... that adds up 'shop for myself', ba-humbug!!!  but, holidays are for sharing and giving. lol.&lt;br /&gt;&lt;br /&gt;i remember people camping out at best buy from midnight stroke of thanksgivings for black friday specials on news from last year, and how some people stood outside macy's at 3am for their special black friday opening at 7am.  oh! my.... didn't know people were that diligent. &lt;br /&gt;&lt;br /&gt;after seeing downtown macy's parade at 8:45am and thowing frozen bodies in downtown mall i couldn't help but search 'black friday deals' on google when i got home and saw stealdeals and dealnews and few other sites with emphasis on black friday deals.&lt;br /&gt;&lt;br /&gt;heh,  i got seinfeld season 4,5 and will &amp; grace season 1 on the way and friends season 1 in my dvd player, all at whopping discount of $14.99 each and will &amp;amp; grace at $9.99.  best buys had after thanksgivings special i couldn't even say no.&lt;br /&gt;&lt;br /&gt;lcd tv's at best buys, frys, any and every electronics store seem super popular, and i am still shopping for $25 or more and free shipping buddy for my murphy brown season 1 from amazon; at $8.50 for whole season of murphy brown, i'm losing sleep browing amazon for something similar.&lt;br /&gt;&lt;br /&gt;deals, deals, deals.  looks like we got ourselves a big casino out there.  at fry's i had to slap my own hand to say no to sandisk 1gig memory card at $9.99 for my camera; wouldn't it be darn convenient to not have to bring a charger to go on a week vacation?  and at ikea, i also had to drag myself out after a swedish cookie at $0.99 mainly because i didn't need anything.&lt;br /&gt;&lt;br /&gt;about every stores i walked into, with a few exception of fred meyer and costco, this weekend's shopping was for instant gratification of much of unnecessary items and none practical.  heh...&lt;br /&gt;&lt;br /&gt;no more shopping, no more shopping!&lt;br /&gt;&lt;br /&gt;yeah, i'm clipping sunday paper's coupons, but i'm really not buying anything (ehem!).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116456798223250458?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116456798223250458/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116456798223250458' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116456798223250458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116456798223250458'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/11/no-mas-for-shopping.html' title='no mas for shopping?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116431482448796541</id><published>2006-11-23T12:40:00.000-08:00</published><updated>2006-11-23T14:28:49.620-08:00</updated><title type='text'>baby turkey legs</title><content type='html'>one of my favorite food at renaissance fair is big turkey drumstick that could easily feed a family of four.&lt;br /&gt;&lt;br /&gt;it's heavy and i just carry it aroud all day long nibbling it.&lt;br /&gt;&lt;br /&gt;when the smallest turkey at the grocery store was 10lbs, which means it'll last until next june in freezer with turkey soup, turkey jerkeys, turkey in curry, turkey pie, ..., etc., we opted out of having a big turkey on thanksgivings table.&lt;br /&gt;&lt;br /&gt;after shopping around much, the best option was 2 turkey legs wrapped in meat section.&lt;br /&gt;&lt;br /&gt;2 turkey legs, 1 box of stove oven box, a bit of celery, some raisons, a can of yams, a can of cranberry sauce. phew.... i dunno how people did from scratch, and i dunno how mums cook for family of 10s and 20s of relatives and friends.&lt;br /&gt;&lt;br /&gt;in an hour of time that turkey leg in oven will be cooked.&lt;br /&gt;&lt;br /&gt;any cooking tips? heh.&lt;br /&gt;&lt;br /&gt;since i didn't know turkeys are supposed to be cooked in any special ways, i just preheat the ove to 350-degree, add some leaves for flavour, butter, some orange juice since that's only fruit juices i got, also for flavour, some liquor from cabinet, some water, and dunked in the legs after buttering'em up. i added chopped celery and some raisons into stuffings foil box before pouring in hot water and also put into oven to be cooked for 30min.&lt;br /&gt;&lt;br /&gt;^^  happy happy thanksgivings.&lt;br /&gt;&lt;br /&gt;to everybody,&lt;br /&gt;and to the body of the two turkey legs our stomache are adopting!&lt;br /&gt;&lt;br /&gt;p.s. burning yams pot was not intentional.  just too much tasks for mindful housekeeper, to feed so many ... lol.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116431482448796541?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116431482448796541/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116431482448796541' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116431482448796541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116431482448796541'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/11/baby-turkey-legs.html' title='baby turkey legs'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116417973515467009</id><published>2006-11-21T22:53:00.000-08:00</published><updated>2006-11-21T23:17:40.806-08:00</updated><title type='text'>Idiot A-da-da</title><content type='html'>I've been digging some old boxes and re-reading post-war existentialism short-story pieces lately.&lt;br /&gt;&lt;br /&gt;Ha, too busy to read literatures, I guess.&lt;br /&gt;&lt;br /&gt;Some of these short stories are like wine, sipping and savorying the tangy and sweet-bitterness of life.&lt;br /&gt;&lt;br /&gt;Idiot A-da-da(Baek-chi A-da-da) is a story I would like to remind myself some times. Equivalent asian cultural literature in English would be madame Pearl S. Buck's 'The Mother.'&lt;br /&gt;&lt;br /&gt;A-da-da is an idiot girl, who is a mute and is clumsy born to a middle class family with pride, and her parents and family were somewhat ashamed and annoyed with her effort that usually ends up disasteriously. Her name's A-da-da because that's what she utters, and when she wants to help w/ kitchen work she sets fire under rice pot or breaks rather nice dishes and her mother usually chases her away half in tear and usually with big broom to beat her as she chases A-da-da away. When she was of age, her parents gave a lot of money to nearby poor man with a mother to support in order to marry her off. At first, the poor mother and son welcomed A-da-da, for bringing such wealth to the family, but soon also got irritated with her. They got rich, with fine clothes and no longer hungry, and she was of no help at field work nor at household work, and was always getting in the way and they were ashamed to have her shown to the neighbors.&lt;br /&gt;A-da-da was soon sent back to home from husband and mother-in-law, and instantly became sore sight to her mother, who's now got an idiot daughter who also got abandoned by in-law. A-da-da's mother was annoyed to have her around, and was ashamed that she had an idiot daughter home sent back from in-law.&lt;br /&gt;It was very harsh life for A-da-da once she's sent back home from her husband who regularly beat her and yell at her, and one day a neighborhood man talked sweet to her and she fell in love. They promised to run away together and got on a boat when he showed her money wrapped in his cotton towel, enough for them to rent a small house and small field. His logic was that he's too poor to get himself a wife with dowry in traditional sense, but if she ran off with him he'd have a wife and they could work together to have own home and fields to work together and raise family; she's idiot, but is strong and would not run away from him nor demand much from him.&lt;br /&gt;&lt;br /&gt;Alas, A-da-da being an idiot her entire life flashed before her, and she remembered how her husband and mother-in-law was nice to her with large sum of money sent to them at first that turned into regular beating and yelling at the end. It occured to her that the reason she got turned away from husband and get abused at her mother's house is due to this evil thing money. Her instinct tells her that this man would also turn against her because of money, and she unwrapped cotton to toss money notes into water that dissolves.&lt;br /&gt;The man jumps into water to save, but the notes melt faster than he can do anything. When he jumps back onto the boat, his red eyes look mad and he picks a rock, anything in his sight, and stabs A-da-da's head, until she bleeds to death. Slowly as her hurting head spills warm blood and she dies with her eyes open she assures herself it's money that is turning this sweet man into a mad man killing her.&lt;br /&gt;&lt;br /&gt;How stupid she is....&lt;br /&gt;And yet how sharp she is...&lt;br /&gt;&lt;br /&gt;How many of us are acting like A-da-da, I wonder?  A little bit like her at some time, I suppose.&lt;br /&gt;&lt;br /&gt;Nothing we do is right sometimes, and our judgements are flowed.&lt;br /&gt;&lt;br /&gt;It's just being human?&lt;br /&gt;&lt;br /&gt;I tell myself I'm nothing like her, but why would I re-assure myself in the first place?&lt;br /&gt;&lt;br /&gt;Money, greed, mis-judgement of situations, and human relationships.&lt;br /&gt;&lt;br /&gt;I'm watching 'Good Bye Solo' and the drama deals with this topics in a bit more details, with about 7-8 different characters each with own share of worries and life burdens. Luckily nobody dies with someone pounding on their heads with rock. All of them are wisen up and it's happy ending.&lt;br /&gt;&lt;br /&gt;Stories that makes me think, think in once in a long long while....&lt;br /&gt;&lt;br /&gt;Can't be that bad!&lt;br /&gt;&lt;br /&gt;Now, I'm off to hunt Hemingway's story, a story that begins with smell of death being compared to trash dump site. heh.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116417973515467009?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116417973515467009/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116417973515467009' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116417973515467009'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116417973515467009'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/11/idiot-da-da.html' title='Idiot A-da-da'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116197717037739591</id><published>2006-10-27T12:18:00.000-07:00</published><updated>2006-10-27T12:26:10.390-07:00</updated><title type='text'>consequences of pissing off big guys</title><content type='html'>so, i was watching ducks vs. oilers hockey game and the highlight of the game was pronger facing oilers and oilers fan.  the announcer guy said 'i am from the area, and folks there don't forget...' meaning pronger will have this 'please trade me out of edmonton to say anaheim...' tag on his back for the rest of his career.  there were oilers fans showing jersey number 44, pronger's old number, with big red circle and diagnal line across it, the sign of banning, sprayed on it.&lt;br /&gt;&lt;br /&gt;for the same token, we are witnessing what happens when you piss off oracle badly enough.  heh.  redhat bought jboss up, and paid in its stock heading down from its good 30plus a share and as if that's not bad enough, oracle's out to get redhat for stealing jboss away from its acquisition list.&lt;br /&gt;&lt;br /&gt;should that be a lesson for north korea not to piss off the great united states? lol.   last summer north korea's been begging for attention with nuclear test threat, and got no attention whatsoever.  so it fired away its test, and now it's got attention from united states alright.  america is vowing to just wipe out the country. oh my...  and it's getting bad attention from the rest of the world as well.  makes fidel castro look an angel, not?&lt;br /&gt;&lt;br /&gt;anyways, just made me wonder if it's good thing to piss off big guys and stand up or it's just stupid. &lt;br /&gt;&lt;br /&gt;time will tell.  we'll see how pronger's career pans out, how redhat fights back to oracle (or not), and if there will finally be unification of two koreas, peacefully or not.&lt;br /&gt;&lt;br /&gt;what lesson does it teach me?  heh, i'm chicken.  stay out of conflict, and be a giant myself. that's the lesson.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116197717037739591?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116197717037739591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116197717037739591' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116197717037739591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116197717037739591'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/consequences-of-pissing-off-big-guys.html' title='consequences of pissing off big guys'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116188014849164496</id><published>2006-10-26T09:26:00.000-07:00</published><updated>2006-10-26T09:29:08.536-07:00</updated><title type='text'>remembering sun linux</title><content type='html'>it's no eulogy, as i am assuming sun linux still is in existance?&lt;br /&gt;&lt;br /&gt;hmm... isn't oracle linux the same thing as  what sun linux was a few years back?&lt;br /&gt;&lt;br /&gt;sun microsystems tried something similar,  its  CD  with  general purpose server had sun logo on the top but everybody said it's redhat linux  stripped.&lt;br /&gt;&lt;br /&gt;heh, i guess that will take out a bit of fume I had toward Oracle.&lt;br /&gt;&lt;br /&gt;guess the only reason Oracle  forces  Redhat  stock tumble, and  attention from  wall street is because it's big, rich and has track record of  hostile take over, of sorts.&lt;br /&gt;&lt;br /&gt;hmm...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116188014849164496?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116188014849164496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116188014849164496' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116188014849164496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116188014849164496'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/remembering-sun-linux.html' title='remembering sun linux'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116187982625995896</id><published>2006-10-26T09:04:00.000-07:00</published><updated>2006-10-26T09:23:46.330-07:00</updated><title type='text'>ghosts of christmas should visit, mmm..., some business folks?</title><content type='html'>We're still hearing about sentencing of Enron, and how Intel gets sued from AMD, and how Microsoft and Google fight legal battles in socialistic european continent.&lt;br /&gt;&lt;br /&gt;Like gulf war is somewhat like verterans talking about  wrold wars, vietnam war and korean war, the story of how Microsoft rose above all comeptition from 70s, 80s well into today seem just a storybook fairytale.&lt;br /&gt;&lt;br /&gt;Oracle enters, after its drama to buyout peoplesoft, now it's after RedHat.&lt;br /&gt;&lt;br /&gt;Funny, how RedHat's exec. mention that Oracle wouldn't backstab, and how what Oracle is doing is a fair competition.  And, how Oracle chief insists their practice is fair and ethical.&lt;br /&gt;&lt;br /&gt;What business ethics school did he go to?&lt;br /&gt;&lt;br /&gt;When I first hear the rumor about Oracle wanting to build own distro, that sounded much better than the drama I read about its hostile takeover of peoplesoft and how employees of peoplesoft tried together to save the company from evil take over and losing; watching star wars without all the starships, heh.  Then I hear about Oracle wanting to support Ubuntoo, which still isn't crossing any business ethics.  Since Oracle World 2006 opened, my opinion is deteriorating faster than redhat's stock sinking. &lt;br /&gt;&lt;br /&gt;What?  Is Oracle a Walmart of tech section?  Is this how Microsoft became the giant evil it is today?  When the articles go fly with how Oracle will support redhat at discount price, that sounded pretty unethical and I wondered if it's legal.  I wondered, mainly because I wasn't sure.  That's a dirty tactic, but that's how a lot of business are.&lt;br /&gt;&lt;br /&gt;When I read fine lines and finally learned how Oracle's announcing its own linux, which isn't, that's down right sick.  So, it'll wait for Redhat to release a new release, get the sources &amp; patches, then strip any Redhat related texts, repackage it and sell it as its own linux OS?&lt;br /&gt;&lt;br /&gt;Hmm... So if I walk into someone's driveway and steal a BMW, take it to nearest bodyshop to get it re-painted and put a new license plate I had, then the car is mine?&lt;br /&gt;&lt;br /&gt;If I walk into someone's grape vineyard, steal lots of grapes, and put them into my ranch's boxing to sell, then I get to claim I grew them?&lt;br /&gt;&lt;br /&gt;Oracle sure makes Google an angel, as until a few days ago all people talked about were how Google is going to crush Yahoo and yet their tactics weren't half as dirty as Oracle's.&lt;br /&gt;&lt;br /&gt;What will Oracle say if mysql downloads Oracle's binary, reverse-engineer it, and strip any Oracle licensing from source, to re-package and sell it as its own database and tell everybody so.&lt;br /&gt;&lt;br /&gt;Is this a legal thing?&lt;br /&gt;If so, that'd make me depressed. &lt;br /&gt;&lt;br /&gt;Christmas spirits should leave poor Scrooge alone for a year and visit redwood city this winter.&lt;br /&gt;I can't believe I'm witnessing the sort of dirty business I only heard of as things of past or things happening far far away&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116187982625995896?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116187982625995896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116187982625995896' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116187982625995896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116187982625995896'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/ghosts-of-christmas-should-visit-mmm.html' title='ghosts of christmas should visit, mmm..., some business folks?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116146356910583956</id><published>2006-10-21T13:39:00.000-07:00</published><updated>2006-10-21T13:46:09.116-07:00</updated><title type='text'>speedy sharks, not gonzalez...</title><content type='html'>3 weeks lagging cold means a lot of quality time at home, either in bedroom or livingroom.&lt;br /&gt;&lt;br /&gt;that also means watching lots of hockey.&lt;br /&gt;&lt;br /&gt;sharks, having played like 6 games(or is it 7?) so far, and having lost only 1 is pretty impressive.&lt;br /&gt;&lt;br /&gt;even if that means no parker playing and fighting the way a decent hockey game ought to be...&lt;br /&gt;&lt;br /&gt;one thing impressive about sharks is speed, this year.&lt;br /&gt;&lt;br /&gt;watching 2 home games, tuesday oct. 17th and thursday oct.19th against lone star and red wing, it was pretty exhilirating.  within less than 30seconds i'll see puck flying from one end to another, shot being made to the goal, blocked then sent back to the other end. &lt;br /&gt;&lt;br /&gt;watching following coyote's vs. king's game made me wonder if i was watching some recorded game from 90s, slow slow and slow as ever.&lt;br /&gt;&lt;br /&gt;sharks and penguins and blues are pretty interesting teams to watch for this season.&lt;span style="font-style: italic;"&gt;&lt;/span&gt;&lt;em&gt;&lt;em&gt;&lt;br /&gt;&lt;/em&gt;&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116146356910583956?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116146356910583956/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116146356910583956' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116146356910583956'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116146356910583956'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/speedy-sharks-not-gonzalez.html' title='speedy sharks, not gonzalez...'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-116138167296862491</id><published>2006-10-20T14:56:00.000-07:00</published><updated>2006-10-20T15:01:12.970-07:00</updated><title type='text'>wow, what does hybrid hard disk mean?</title><content type='html'>came across: "     Samsung's Hybrid Hard Drive Exposed", http://www.tfot.info/content/view/83/59/&lt;br /&gt;&lt;br /&gt;well, actually it was posted on slashdot.&lt;br /&gt;&lt;br /&gt;a hybrid hard disk?  a hybrid car means mixing gasoline and electricity in running a car, and reducing emission and gas burning for cheaper fuel and better air control.&lt;br /&gt;&lt;br /&gt;what does a hybrid hard disk do?  other than to sound cool?&lt;br /&gt;&lt;br /&gt;will there be more hybrid coming out?  hybrid monitor? hybrind desktop? hybrid laptop? hybrid ... human?&lt;br /&gt;&lt;br /&gt;at the rate new and better size HD come into the market, i'm a bit scared to purchase a HD.  what if I buy a gig today and find out that in 2 weeks that's old and cheap and there's 5gig ones for the same price I bought 1 gig HD?&lt;br /&gt;&lt;br /&gt;the photo of hybrid HD looks slick, and flash memory usage sounds cool.&lt;br /&gt;&lt;br /&gt;i'm ignorant of hybrid expansion in computer hardware market.  will have to read more and research more, to be somewhat better informed.&lt;br /&gt;&lt;br /&gt;just was a pretty shocking thing for me to note today.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116138167296862491?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116138167296862491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116138167296862491' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116138167296862491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116138167296862491'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/wow-what-does-hybrid-hard-disk-mean.html' title='wow, what does hybrid hard disk mean?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116138131206883543</id><published>2006-10-20T14:51:00.000-07:00</published><updated>2006-10-20T14:55:12.106-07:00</updated><title type='text'>reviving jane austin: "Darcy's Story" by Janet Aylmer</title><content type='html'>By some random luck, I learned that there's a book titled "Darcy's Story", Darcy being the famous character from Jane Austin's "Pride &amp; Prejudice". &lt;br /&gt;&lt;br /&gt;Austin's book is from author's view with close examination of the main character, Elizabeth Bennett's reasons and emotions.&lt;br /&gt;&lt;br /&gt;This new book by author Janet Aylmer is from Darcy's perspective, at how Lizzy's family approaches his friend and himself, and how he reacts to things blossoming.&lt;br /&gt;&lt;br /&gt;I've not yet had a chance to read it yet, as I found out only 30sec. ago myself.&lt;br /&gt;&lt;br /&gt;Being a big fan of Jane Austin and having been some what bored with reading some random books here and there, I'm intrigued.&lt;br /&gt;&lt;br /&gt;note to self to check this book out when going to Stacey's or Borders by new Bloomingdale in downtown.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116138131206883543?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116138131206883543/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116138131206883543' title='31 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116138131206883543'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116138131206883543'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/reviving-jane-austin-darcys-story-by.html' title='reviving jane austin: &quot;Darcy&apos;s Story&quot; by Janet Aylmer'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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>31</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-116129639259459675</id><published>2006-10-19T15:15:00.000-07:00</published><updated>2006-10-19T15:19:52.606-07:00</updated><title type='text'>halloween special : truly loved?</title><content type='html'>i'm a lovin person, and yet people's been running at the sight of me, and cry when i offer a hug.&lt;br /&gt;&lt;br /&gt;it's not quiet halloween yet, and i never do dress scary.&lt;br /&gt;&lt;br /&gt;having a bad cold for 3 weeks, and coughing like crazy (my joke is: i'm building 6-pack ab with all the exercise my stomache muscle is getting), heads do turn at my cough sounds and i can't resist but to offer a hug.&lt;br /&gt;&lt;br /&gt;how many takes my hug?  not many... mmm, make it almost none.&lt;br /&gt;&lt;br /&gt;headache and fever are mostly gone after first week, persistant cough remains and marking it 3 week come this weekend.  pneumonia? possibly.  bronchitis?  maybe...&lt;br /&gt;&lt;br /&gt;i've been walking around crying 'maybe i am dying'...&lt;br /&gt;&lt;br /&gt;nobody yet buys it, just avoids my friendly hug and just smiles and walk away.&lt;br /&gt;&lt;br /&gt;geez, i guess halloween started early for me this year: cough or treat!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116129639259459675?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116129639259459675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116129639259459675' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116129639259459675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116129639259459675'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/halloween-special-truly-loved.html' title='halloween special : truly loved?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116079193018622420</id><published>2006-10-13T19:10:00.000-07:00</published><updated>2006-10-13T19:12:10.196-07:00</updated><title type='text'>today's slashdot:  IT and Divorce?</title><content type='html'>mmm... i read slashdot? nuh...&lt;br /&gt;&lt;br /&gt; &lt;span style="font-family: arial;"&gt;anyways: "IT and Divorce"?(http://ask.slashdot.org/article.pl?sid=06/10/13/060201&amp;from=rss) makes me wonder...&lt;br /&gt;&lt;br /&gt;christmas isn't here yet, and christmas carol isn't due for another month or so.  and i just watched 'click' with adam sandler and once is enough.&lt;br /&gt;&lt;br /&gt;any so many comments too.  oh my...&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116079193018622420?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116079193018622420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116079193018622420' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116079193018622420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116079193018622420'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/todays-slashdot-it-and-divorce.html' title='today&apos;s slashdot:  IT and Divorce?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-116017716149951488</id><published>2006-10-06T16:22:00.000-07:00</published><updated>2006-10-06T16:26:01.513-07:00</updated><title type='text'>duh, imap over ssl uses port 993</title><content type='html'>my ignorant got tested again when i reconfigured my ssh tunnel to use imap instead of pop, to get into company's vpn.&lt;br /&gt;&lt;br /&gt;i've spent quite a few times, first trying with imap.companyname.com with port 110, then with suggestion from company's mailinglist i switched over to 993.  yet, it didn't occur to me that 993 is imap port over ssl.&lt;br /&gt;duh,&lt;br /&gt;as soon as an in-house consultant clicked thunder bird's account configuration window's checkbox for ssl connection, i'm fetching some 7000 emails.&lt;br /&gt;&lt;br /&gt;yike.&lt;br /&gt;&lt;br /&gt;heehee, next is re-setting email filters to folders properly.  i hear many bemoaning about it at the office, too.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-116017716149951488?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/116017716149951488/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=116017716149951488' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116017716149951488'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/116017716149951488'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/10/duh-imap-over-ssl-uses-port-993.html' title='duh, imap over ssl uses port 993'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115964199909605798</id><published>2006-09-30T11:41:00.000-07:00</published><updated>2006-09-30T11:46:39.110-07:00</updated><title type='text'>new laptop envy and bloglines addiction</title><content type='html'>at Netconf '06 Herbert was showing off his tiny laptop, it's even slimmer, tinyier than my Sony Vaio X505, only like 1.5kg?(I think my 1.8lb is like 3.2kg...).&lt;br /&gt;To fuel my envy more Jamal and Harald went out and bought a few  of tiny laptop themselves, smaller keyboards and screen size, but certainly half my Vaio in weight at Akihabara.&lt;br /&gt;&lt;br /&gt;I wasn't able to take my Vaio, stuck with bricktop Dell that weight more than 5lb, i think it's one of those 7lb cheap-o.&lt;br /&gt;&lt;br /&gt;oh well, I'll leave.  either my shoulder will be muscular or will hurt more.&lt;br /&gt;heh.&lt;br /&gt;&lt;br /&gt;lately i gave in to bloglines and gave a try.  With my addictive nature(well, i'm no gamer, but a korean nonetheless...) I subscribed to about 2 dozen, and if I forget or am too busy to check for two days, each grows up to like 200.  sigh... A new boss for me.  gotta check and flush the bloglines RSS feed every two hours.   almost like feeding a newborn infant.&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/8175480-115964199909605798?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115964199909605798/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115964199909605798' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115964199909605798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115964199909605798'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/09/new-laptop-envy-and-bloglines.html' title='new laptop envy and bloglines addiction'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115964125400241733</id><published>2006-09-30T11:24:00.000-07:00</published><updated>2006-09-30T11:34:14.020-07:00</updated><title type='text'>is end to the greed possible?</title><content type='html'>those who were fortunate(?) enough to hear my endless rants about the seller to my latest home would know, .......&lt;br /&gt;&lt;br /&gt;i have to admit i'm sick of the greeds.&lt;br /&gt;&lt;br /&gt;i would not deny that  i have a streak of greed,  who wouldn't want to get more for less and be fat with cash reserves anyways.  &lt;br /&gt;&lt;br /&gt;they sold a house in a nice neighborhood at the going rate for the neighborhood, but they've not kept the house up to the standard of the neighborhood.  oh well, i'll eventually come to stop ranting.&lt;br /&gt;&lt;br /&gt;or just rant about different folks, differnt thing.&lt;br /&gt;&lt;br /&gt;recently there are so many articles about how big corporates put effort to save a few bucks here and there.  Know of any company?  How about whole united states of America?  Public companies are subject for either buyout or privatizations, look at Ford, look at Yahoo, look at Apple, ... &lt;br /&gt;&lt;br /&gt;What I am sick of is 'where is all the fun?'&lt;br /&gt;&lt;br /&gt;Youtube is having fun, and so is myspace.  Give them a few years, and like google it'll turn into evil, and in no time it'll become one of those once great now turned struggling company like Sun Micro.&lt;br /&gt;&lt;br /&gt;Sigh*&lt;br /&gt;&lt;br /&gt;What I see happening is, people lost fun and gained greed in the course of some sparkling success.&lt;br /&gt;&lt;br /&gt;Is success truly evil for us?&lt;br /&gt;&lt;br /&gt;I hope not.&lt;br /&gt;&lt;br /&gt;Nonetheless, how do we balance greed with fun?&lt;br /&gt;&lt;br /&gt;Will google also go south like Yahoo?  Will HP turn into Enron?&lt;br /&gt;&lt;br /&gt;Everybody's too busy spying, lying and cheating.&lt;br /&gt;&lt;br /&gt;:(  Though only a few, I did buy Sirius stock at the news of Howard Stern signup, bought Redhat when it hit $30, and bought goog at $450 with forecast for $600.&lt;br /&gt;&lt;br /&gt;So I'm being punished, to certain extent, myself.&lt;br /&gt;&lt;br /&gt;No grief here.  You are only supposed to invest with extra cash anyways.&lt;br /&gt;&lt;br /&gt;Will America, will the world survive this new era of greed?&lt;br /&gt;&lt;br /&gt;People! let's turn off light, shut off water faucet, and don't stuff up refrig only to empty it straight to trash can.  Stop buying shirts and shoes when closet is already bursting.&lt;br /&gt;&lt;br /&gt;I'm no Greenspan, but I am beginning to be seriously worried.  Where is the world going to? ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115964125400241733?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115964125400241733/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115964125400241733' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115964125400241733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115964125400241733'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/09/is-end-to-greed-possible.html' title='is end to the greed possible?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115914788249448390</id><published>2006-09-24T18:31:00.000-07:00</published><updated>2006-09-24T18:34:26.823-07:00</updated><title type='text'>truly lost in translation</title><content type='html'>somehow i stumbled upon gnome &amp; mozilla korean project site.&lt;br /&gt;&lt;br /&gt;the korean romanization, 그놈 &amp;amp; 모질라 look real funny.&lt;br /&gt;&lt;br /&gt;ought to have more dignity left in english. &lt;br /&gt;&lt;br /&gt;uhahaha, i'm laughing all the way.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115914788249448390?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115914788249448390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115914788249448390' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115914788249448390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115914788249448390'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/09/truly-lost-in-translation.html' title='truly lost in translation'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115821425235238790</id><published>2006-09-13T22:53:00.000-07:00</published><updated>2006-09-13T23:10:52.366-07:00</updated><title type='text'>a week in korea, and netconf progress in tokyo</title><content type='html'>my usual busy weeks have taken 'express' line past 2 weeks, as I've been having a sort of working vacation.  to attend netconf '07 this week, and take advantage of being in east asian sphere, i took 2 weeks vacation.  some extra work i picked up, however, have no vacation and i actually got more work assigned due to their pre-scheduled events.&lt;br /&gt;&lt;br /&gt;2 weeks ago friday, i left light-heartedly from sfo, flying like 12hrs to Incheon Airport.  crossing the time zone line, we arrived on saturday afternoon, slept in seoul to head out to a big hiking somewhere south west of country.  returning on tuesday evening, we were back in busy metropolitan for the rest of the week.  calling friends out, shopping, eating, Seoul was non-stop from 7am we wake up until 11pm we return to our serviced apartment.  and, trying to check email, reply IM, and check in some work in betwee outing and before going to sleep and first thing waking up.&lt;br /&gt;&lt;br /&gt;on sunday morning we headed back to Incheon to fly over to Tokyo, to Simon's Shinjuku apartment.  He and Chizu were nice to let us stay at their apartment for a week, and after cooling off the sweats from walking in hot weather with suitcases we headed out to Chizu's old hangout to eat a nice thai curry in area called shimokitazawa, a college town.  monday was Ghibli studio visit and harajuku field trip day; anime museum and street full of people dressing like anime character.  Thanks to Chizu we discovered 'cheese ramen' in ebisu, and I was tempted to buy myself a nice anime dress in harajuku too.  Kiddyland and Snoopy near Shibuya and Harajuku were just awesome too.  We also went to more of local hangout, a 'secret restaurant' in Shibuya.  Tuesday was reserved for Tsujiki at 6 in the morning and sumo watching all afternoon.&lt;br /&gt;&lt;br /&gt;with work demand, and with sightseeing demand i am almost about to get sick. heh.&lt;br /&gt;&lt;br /&gt;that didn't stop me from sneaking out from conference today to lunch with Chizu and Nancy near Chizu's work.&lt;br /&gt;&lt;br /&gt;wed, 9/13, was first day of conference, at UDX in Akihabara.  since we felt time constrant past 2 years for having only  2 days, we reserved 3 days this year. wednesday's speakers didn't take more than allocated 1hr, but this heped everyone to relax a little and interject with comments and questions.  there are total 18 of us, me being only the ignorant one, it was interesting to see a speaker addressing what he's been focusing on and receiving floods of suggestions, comments and questions from folks specializing in slight different field.  Saw David and Rusty running to whiteboard and turn on the light to draw diagram to assert their point.  It was also funny when Miyazawa-san, one of sponsor speaker, gave his presentation of implementing a RFC and say he didn't understand the RFC fully himself as certain of words in RFC weren't available for his english-japanese dictionary. hohoho~~~&lt;br /&gt;&lt;br /&gt;thurs, 9/14, is running a little slower, with more open discussion.   So far, face-to-face discussions are pretty useful.&lt;br /&gt;&lt;br /&gt;i start re-work on my presentation.  bite my lip! hmm....  아자,아자, 파이팅!(aja-aja-fighting!!!) to myself.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115821425235238790?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115821425235238790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115821425235238790' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115821425235238790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115821425235238790'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/09/week-in-korea-and-netconf-progress-in.html' title='a week in korea, and netconf progress in tokyo'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115763018197485904</id><published>2006-09-07T04:46:00.000-07:00</published><updated>2006-09-07T04:56:21.996-07:00</updated><title type='text'>A Long day hike on Wolch`ul Mountain</title><content type='html'>As if I could forget the 8 hour hike through Sorak mountain's trail to Daech`ongbong last october, that made me limp in pain for 3 full days, I got talked into a hike through Wolch`ul mountain in search of suspension bridge in mid Jolla-namdo, about an hour away from Province's port town Mokp`o again.&lt;br /&gt;&lt;br /&gt;Upon arriving Seoul on saturday evening, we bused into Seoul, rested for the night and started early on sunday, at 7am to catch the high speed rail KTX at Seoul Railway station.  Lucky for us, we could leave clothing suitcases at the service apartment's lobby for 2 days until tuesday, and were able to start our trip much lighter, just with a few clothings, umbrella in case rain storm hits, a few water bottles, and of course heavy bricktop laptops.  A true backpakers.  We were hoping to catch 7:25am express train and were dully notified we have to go to different train station for Honam-bound trains.  Who knew...  And, that the next KTX train for Gwangju would be 9:35am.  With 2 hours left, and only 2 subway stations away, we indulged on Dunkin donuts we didn't quiet finish, walked around the station a bit for sightseeing, got held up by father-and-daughter team of Jahova's witness with broken english and some homeless begging for money.  The station designated for Honam-province bound trains, Yongsan, had very elaborate station attached to mall, movie theatres, 4 stories of food court, and outdoor concert center.  We spent about an hour walking around, buying some ginsaeng drink bottle popular in Korea, and drooling over some sushi houses and other numerious restaurants.  We end up buying a few cheese burgers from Lotteria, Korea's own fastfood hamburger chain.  The train left the station promptly, and our 3hour long express train ride began.  From what I understand, slow train or slow bus would take some 5-6 hours, so 3 hour ride at speed over 300km/hr is a world class transportation.  At such a high speed, I could use laptop just fine and didn't fear spilling drink at all.  With 2 or 3 tvs per train car, and clean toilet at the end of each car and kitchen car, KTX is a pleasant ride.  Slight expensive compare to other slower mode of transportation.  Gwangju is capital city of Jolla-namdo province, south west province of South Korea, surrounded by many little islands and Yellow Sea.  At 12:20pm when we arrived at the train station, we rushed out and got into a cab for 4000-won(like $4 usd) ride to express bus terminal within 10 minutes.  We were lucky and caught bus bounded to Yong-am just as it was ready to pull out.  About an hour and 20minutes ride, stopping about 3 other smaller country side, we arrived Yongam, at the foot of Wolchulsan.&lt;br /&gt;&lt;br /&gt;Making a reservation from America, we assumed Wolchulsan Spa Resort, the only one listed on hotel reservation website was at the entrance of the national park.  We learned fast that there wasn't much to do nor to buy snacks around Yong-am bus terminal, and our hotel was about 5minutes drive away from bus terminal and about 10minutes from each end of the park entrance.  Having arrived and checked-in before 3pm, a little too late to start a hike but too early to sleep, we took local city bus for fare of 850-won(about $0.85 usd) per person to get to the bus terminal and took another bus that goes to the one end of the park, Do-gap-sa buddhist temple area.  Like any park entrance areas, there were about 10-15 small eateries, more exciting that hotel vicinity, so we were hoping to get some jang-o-goo-i(fresh water eel bbq) that's famous locally or some cheap bi-bim-bap(vegetable &amp; meat mixed with rice).  We ended up eating Dak-do-ri-t`ang(Chicken soup).  Amazing thing was that the owner goes back of restaurant upon order, kills a chicken without any equipment by simply twisting its neck, and would take feather off and cook.  Eating a whole chicken is a big task for 2 people.  Since we were open for experiencing local food, and most of the eateries at that area had chicken menu in variety, so we gave in and opted to order an item we weren't familiar with.  It's like chicken stew with potatoes and other vegetables that's spicy.  It wasn't nice of them to charge us for rice bowls, after such an expensive meal, but it was very tasty and we enjoyed it enough not to be sulky about it.  As we were joking about the big portion of food, well suited for 4-5 people, we ate about 40percent of the chicken soup pot, and saw 3 of restaurant workers sitting and eating our left over when we revisited to ask for direction 5minutes later.  The meal was hearty, and we were pretty happy.  Since there are only 2 bus stops a day for the park, 9 in the morning and 4pm the one we took up to the park, we had to take a taxi which costed us 10,000-won(410 usd) to get back to the hotel.  It was still not quiet 6pm and we were getting bored; no internet was available, too.  So we walked down to B1 level where hotel's famous spa was located.  We quickly learned that as hotel guest we'll get a free voucher a day, so we tried it and the place was organized as women's sauna and men's and I accidentally followed into men's and quickly came out; the lady at front desk gave me a look as if she wonders what korean I must be not to know the sauna configuration.  Inside, it was somewhat awkward to be going to a public bath, but different tubs with different herbs, mineral, and temperature were truely impressive.  I spent about 20minutes, jumping from one tub to another. &lt;br /&gt;&lt;br /&gt;On monday morning, we took 7:30am bus to bus terminal and took the 9am bus headed to the other end of the park entrance, Ch`on-hwang-sa-ji.  On sunday we didn't realize, but 7:30am bus was packed with little kids getting to school and local elders getting to downtown for hospital visits.  We bought korean style lunch box, a container of rice and another container with pickles, and a bottle of water with a can of coffee to start our long journey.  What we didn't realize was how unprepared we were in terms of water, we were just excited to have the mountain to ourselves as weekend hiking warriors all left town on previous evening.  I also had mixed feelings with fear about going across suspension bridge, like donkey in animation movie Shrek.&lt;br /&gt;&lt;br /&gt;It took about an hour to get to the suspension bridge, and my knees were already shaking.  The trail was so steep and had so many big steps I was out of breath within first 10 minutes, huffing and puffing and constantly nagging for water.  I was cajoled and coaxed into getting to the suspension bridge and that afterwards we might turn back to come down the way we started.  The view was awesome and I realized after crossing bridge that climbing down the way I came up would be real difficult.  I was told by a few hikers we encountered that continuing and coming down to Do-gap-sa would be easier on my leg.  So we marched another hour and half to the Ch`onhwang-sa peak, tallest in the park, and it was an adventure in itself again.  There were some very narrow passages between rock that would be difficult for any big person, and there were areas of reeds and bamboo and areas of slippery rocks.  When I only had 0.1 km left until the peak, I thought I'd sit and cry and ask for helicopter rescuers if possible.  At the top we shared lunch box, I got some sun block cream from another guy arriving at the top at the same time, and we even bummed some water into our almost empty water bottle.  With me sweating and barely moving my feet, some climbers with sympathy had given us water here and there and so we got to have extra bottle worth of water.  I was truly shameless taking candies and water from strangers. Heehee...&lt;br /&gt;&lt;br /&gt;After lunch, for about an hour, I marched rather swiftly;powered by lunch and anticipationg to be off mountain as fast as I could.  It was yet another 6km to go, easy or not.  After first 30minutes of power walk, where I practically ran like those ancient martial man with skill to walk half the country in one day as if they can walk on water, I started to slump.  And we were about half bottle left on small water bottle, and sun was pretty hot.  We passed a group of Americans coming from the other side of the park as well.  About an hour away from bottom of our destination, as we were about to pass out, we ran into some creek and without a hesitation we bottled up and drank up.  At the bottom of the park was a huge buddhist temple and we were back at the eatery area from the day before at 5:30pm.&lt;br /&gt;&lt;br /&gt;A quick bite at potatoe pancake and cab to hotel to dip into hot spring spa, we were ready for a feast of locally grown eel dishes next to the hotel.&lt;br /&gt;&lt;br /&gt;If it wasn't for the spa, I may not wake up and walk about at all the next day. ^^&lt;br /&gt;&lt;br /&gt;8 plus hours of hike was a long one,  but view definitely was breathe taking.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115763018197485904?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115763018197485904/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115763018197485904' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115763018197485904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115763018197485904'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/09/long-day-hike-on-wolchul-mountain.html' title='A Long day hike on Wolch`ul Mountain'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115721922792255541</id><published>2006-09-02T09:45:00.000-07:00</published><updated>2006-09-02T10:47:09.006-07:00</updated><title type='text'>landing Incheon</title><content type='html'>after almost 12hrs flight, plus 3 meals(2lunches and 2 snacks that felt like 3 meals) and less than an hour worth of shut eyes later, I am in Seoul.&lt;br /&gt;&lt;br /&gt;friday's flight at 1:30pm meant flee the house 10am, run to BART to get to airport, get through TSA search, and be inside international flight boarding area by 11:30am killing time.&lt;br /&gt;&lt;br /&gt;line at Sushi house was long, and I made a joke "we're in Tokyo already" as I pulled my chair in to let people get through;the table was so tiny my leg was almost at the other end of the table when I did so.&lt;br /&gt;&lt;br /&gt;some sushi, latte and useless magazines later the flight was boarded and left SFO on time.&lt;br /&gt;&lt;br /&gt;it was actually good to catch some boring movies I was too uninspired to go see but had mental note to rent sometimes; MI3, over the hedge, Da Vinci Code, ...  these movies were played 4 times over during the flight and I wish I had gut enough to ask attendants those private movie selections on airline magazine that look interesting but was sure to be off limit for economy class people like me.  ah! first and business class people would be able to pull the chair to actually lay down, not hurting neck left and right.  at $550/person upgrade to business class?  no way with my own money.  I could do millions of things with that.  oh! poor me.&lt;br /&gt;&lt;br /&gt;first lunch was a standard meal, and after already eating early lunch at 11:30am, it was not all that appetizing.  half way through, not quiet at intl time zone change we got a snack box with a tiny cup noodle bowl, water, and a cookie in it.  I thought that was 2nd lunch mentioned on boarding pass, and this time I gladly consumed when an attendant poured hot water for us.  Then like less than 2hrs to the destination I learned there's that 2nd lunch coming.  Hmm... honestly, where do I put all this food?&lt;br /&gt;&lt;br /&gt;I did try to enjoy myself with random movies and some korean language TV on in-flight entertainment, magazines and newspapers and knitting a scarf.  Thankfully I survived my usual landing-earache quiet nicely.  I just took an advil right after 2nd lunch, dozed off a bit, and chewed gums madly the last 15 minutes of landing.&lt;br /&gt;&lt;br /&gt;Well trained from last october's trip, we hustled through custom zippy-dippy quick, changed all our cash at luck of finding good exchange rate(during the best back in late 90s $1 could earn as much as 1600-won, those days are gone; bad for us and good for Korean economy.  we got $1 to 992-won, which seem better than what a bank in America would give), getting a rental phone for only 3000-won a day, hopped on 602 bus headed to downtown Seoul.  all within 30minutes.&lt;br /&gt;&lt;br /&gt;traffic was bad once we got into Seoul, but it wasn't quiet as bad.  Poor David constantly complained how sick he felt; eat less airplane food and sleep more!  We got off little after 7:30pm, walked for 10min to check in.  Got some toothpaste, shampoo, water, and a roll of korean style sushi-roll called 'Kim-bap'(literally seaweed rice) to share back at hotel.&lt;br /&gt;&lt;br /&gt;time to do some work; at hotel's high rate of 10,000-won a day internet service!  :(&lt;br /&gt;&lt;br /&gt;i dozed off a little, and after 3 hours, am up again.  trying to get through email, do the updates.&lt;br /&gt;&lt;br /&gt;enough time to doze off again in KTX later the day!&lt;br /&gt;&lt;br /&gt;2:45am in Seoul, iiiiiiiiiiiiiiiiiit's sunday.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115721922792255541?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115721922792255541/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115721922792255541' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115721922792255541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115721922792255541'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/09/landing-incheon.html' title='landing Incheon'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115709705861555670</id><published>2006-09-01T00:45:00.000-07:00</published><updated>2006-09-01T00:50:58.626-07:00</updated><title type='text'>embark on voyage</title><content type='html'>sept. 1 1:30pm is time of flight.&lt;br /&gt;&lt;br /&gt;pack as light as possible.  sleep as well as possible.  relax!&lt;br /&gt;&lt;br /&gt;could pack lighter, but it's not the usual i can't fit any more. checked.&lt;br /&gt;&lt;br /&gt;it's already sept. 1 and i'm not asleep yet. &lt;br /&gt;&lt;br /&gt;relaxing?&lt;br /&gt;&lt;br /&gt;ooooooooh, and waaaaaaaaaaaah....  i'm excited!&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/8175480-115709705861555670?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115709705861555670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115709705861555670' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115709705861555670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115709705861555670'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/09/embark-on-voyage.html' title='embark on voyage'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8175480.post-115674251344984255</id><published>2006-08-27T22:16:00.000-07:00</published><updated>2006-08-27T22:32:27.426-07:00</updated><title type='text'>an old man buddha?</title><content type='html'>&lt;div style="float: right; margin-left: 10px; margin-bottom: 10px;"&gt; &lt;a href="http://www.flickr.com/photos/speattle/226735640/" title="photo sharing"&gt;&lt;img src="http://static.flickr.com/82/226735640_fcfb078dd5_m.jpg" alt="" style="border: 2px solid rgb(0, 0, 0);" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="margin-top: 0px;font-size:0;" &gt;  &lt;a href="http://www.flickr.com/photos/speattle/226735640/"&gt;an old man buddha?&lt;/a&gt;&lt;br /&gt;Originally uploaded by &lt;a href="http://www.flickr.com/people/speattle/"&gt;speattle&lt;/a&gt;. &lt;/span&gt;&lt;/div&gt;this is one of two fav. exhibit at asian art museum from my visit today.&lt;br /&gt;&lt;br /&gt;at different angle i kinda got different impression.&lt;br /&gt;&lt;br /&gt;that's what is special about art, isn't it? the artistic interpretation value and literal value of what one sees or touches or hears, ...&lt;br /&gt;&lt;br /&gt;i first saw this sculpture as a wise crack old man.  then as someone sitting very comfortable.  then as someone wise.&lt;br /&gt;&lt;br /&gt;i forgot what i heard from audio tour, but i like how the photo did turn out to be.&lt;br /&gt;&lt;br /&gt;one that makes you ponder and think, and one that makes you nostolgic.  this sure makes me think of the tour de museum today.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115674251344984255?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115674251344984255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115674251344984255' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115674251344984255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115674251344984255'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/old-man-buddha.html' title='an old man buddha?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115674157476301981</id><published>2006-08-27T22:00:00.000-07:00</published><updated>2006-08-27T22:06:15.696-07:00</updated><title type='text'>thinker buddha, in jade(one of my two fav. exhibit at sf asian art museum)</title><content type='html'>&lt;div style="float: right; margin-left: 10px; margin-bottom: 10px;"&gt; &lt;a href="http://www.flickr.com/photos/speattle/226708693/" title="photo sharing"&gt;&lt;img src="http://static.flickr.com/75/226708693_32a3f8dc7f_m.jpg" alt="" style="border: solid 2px #000000;" /&gt;&lt;/a&gt; &lt;br /&gt; &lt;span style="font-size: 0.9em; margin-top: 0px;"&gt;  &lt;a href="http://www.flickr.com/photos/speattle/226708693/"&gt;thinker buddha, in jade&lt;/a&gt;  &lt;br /&gt;  Originally uploaded by &lt;a href="http://www.flickr.com/people/speattle/"&gt;speattle&lt;/a&gt;. &lt;/span&gt;&lt;/div&gt;this is one of two my fav. exhibit from today's visit to asian art museum.&lt;br /&gt;&lt;br /&gt;the light was well done, and it is rare occassion where both bare eye and camera caught nice visual effect.&lt;br /&gt;&lt;br /&gt;and, sentimental one too.&lt;br /&gt;&lt;br /&gt;according to the audio tour desc., it's one of few rare jade sculpture of buddha and that the period would be when buddha was in transition before enlightment when he was fasting a lot and thinking a lot subjecting his body to pain to understand deeper thoughts.&lt;br /&gt;heh, if i subject myself to hunger, my hunger gets deeper and not my thoughts.&lt;br /&gt;&lt;br /&gt;this is one of few photos i think i can stare at forever.&lt;br /&gt;&lt;br /&gt;seeneng's photo of sun reflected on beach from his bakers beach visit also is like that.  glazing sun on ocean at sun set.&lt;br /&gt;&lt;br /&gt;the lighting on this buddha piece makes it like special affect in movie.&lt;br /&gt;&lt;br /&gt;wonder what he was thinking, i mean meditating...&lt;br clear="all" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115674157476301981?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115674157476301981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115674157476301981' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115674157476301981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115674157476301981'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/thinker-buddha-in-jadeone-of-my-two.html' title='thinker buddha, in jade(one of my two fav. exhibit at sf asian art museum)'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115670978752411363</id><published>2006-08-27T13:11:00.000-07:00</published><updated>2006-08-27T13:16:27.553-07:00</updated><title type='text'>ear ache</title><content type='html'>could be the stress, could be the frequent flights.&lt;br /&gt;&lt;br /&gt;my ear, both of them, aches.&lt;br /&gt;&lt;br /&gt;with frequent trips to mountains and some flights, that's more or less standard altitude ear aches.&lt;br /&gt;&lt;br /&gt;very unpleasant, and worse if i don't sleep well for a few nights before.&lt;br /&gt;&lt;br /&gt;with gums, some water, chewing stuffs, and lots of talking to people sitting next to me or looking out the destination outside the window, i do try to manage.  sometimes pop a few pain killer as well.&lt;br /&gt;&lt;br /&gt;what does bother me is this weird pinch on outter ear lobe on right ear that's been bothering me for like 3 days in row.&lt;br /&gt;&lt;br /&gt;doctors usually examine ears and might send me to either internal medicine or skin doctor who'll just dismiss.&lt;br /&gt;&lt;br /&gt;if i go to chinese herb medicine doctor, they might try to show how my ear lobe's nerve is linked to some organ in stomache area or respiration area to tell me i'm sick elsewhere.  last time i got treated by one, i had bruised my left foot and the guy stuck needle on my right hand between fingers and some more needle in my neck.&lt;br /&gt;&lt;br /&gt;it's not constant, but it hurts pretty bad like someone stuck needle or some thing got pinched/folded sharp.&lt;br /&gt;&lt;br /&gt;:(&lt;br /&gt;&lt;br /&gt;not enough time to solicit docotrs.&lt;br /&gt;&lt;br /&gt;sob, sob, sob...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115670978752411363?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115670978752411363/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115670978752411363' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115670978752411363'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115670978752411363'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/ear-ache.html' title='ear ache'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115670091725365259</id><published>2006-08-27T10:22:00.000-07:00</published><updated>2006-08-27T13:44:26.646-07:00</updated><title type='text'>trial for jury, not trial by jury</title><content type='html'>my selfishness and busy life prevented me from enjoying the full drama of jury duty friday.&lt;br /&gt;&lt;br /&gt;i've been summoned a few times, but this was absolute first time i had to show my face at the court for jury duty.  even my school field trip to the court house was in oakland, thus make it my first time ever at san francisco district court house.&lt;br /&gt;&lt;br /&gt;first off, it was super entertaining event.&lt;br /&gt;second, it's super time-consuming event.&lt;br /&gt;third, it's somewhat ...hmm... how do i say it politically correct?... hmm... i guess i just blurt it out, that's it's somewhat inefficient.&lt;br /&gt;&lt;br /&gt;i'm getting on flight next friday, so that was supposed to be my ticket to get off the hook easy and fast.  so i thought i might as well enjoy the show until i get dismissed, until my anxiety and fidgity almost killed all my nerve around 3pm when I start fiddle with my hands and keep bouncing my feet around making small noises.&lt;br /&gt;&lt;br /&gt;so to tell the story, let's start at the top of the hour.&lt;br /&gt;&lt;br /&gt;about 2 weeks ago i got the jury duty summon paper in mailbox, for monday 8/21 and that i had to call friday before after 4:30pm to know whether to come, to be dismissed or be put on-hold.  i assumed i'd be just dismissed, like last half dozen times, so i just mentioned it to my colleagues and manager without much concern.&lt;br /&gt;friday afternoon says checkback on monday, monday 4:30pm it says checkback on tuesday, on tuesday to checkback on wednesday, ..., so on thursday when i saw on sfgov.org that says 'show up 8:45am' i didn't really believe my eyes and i wasn't quiet prepared.&lt;br /&gt;&lt;br /&gt;8:45am show up, so naturally i was fashionably late, getting off bus at the corner of 6th and bryant at 8:46am.  I was worried stiff I might be led into jail for contempt of court for a few minutes of tardiness when i saw a long line of people at the entrance of the courthouse.  Obviously it's not Macy's and it's not labor day sale yet.  It turned out that the court had summoned all the 2 dozen groups of 40 people to the court house on friday, before next week's batch, that's like some couple hundred people trying to sqeeze into the court house metal detector and bag search at once.  &lt;br /&gt;&lt;br /&gt;The lady who walked around the line with speakerphone blasted that the line was indeed for jury and that once we get through the securty we should get to 3rd floor for jury lounge and check in.&lt;br /&gt;It wasn't until like 9:30 when I finished getting through security and to check in.&lt;br /&gt;&lt;br /&gt;It was like human flea market, so many people talking, cutting in lines, eating, laughing, and hustle&amp;bustle.&lt;br /&gt;&lt;br /&gt;I kept walking up to the jury lounge clerk asking 'shouldn't i be dismissed?' with my flight reservation stub.  And, the clerk amiably told me to ask judge both times; guess clerks there are used to people pestering them with petit annoyances like this?&lt;br /&gt;&lt;br /&gt;Anyhow, pocket search for having cell phone in pocket and a lousy cup of machine coffee that wouldn't dispense any cream nor sugar later it was 10 to 10 when I discovered by sheer luck that there were people using internet with laptop.  I was supposed to be called in at 10am, but I thought if free wifi was available maybe the court house wasn't so bad.  wifi was available, it just wasn't free.   wasn't that expensive, $6 for the day, but if i'm sitting around for 10minutes and will be dismissed promptly by judge, was it worth it?  It was much much later I found out it would have been worth it whole lotta.&lt;br /&gt;&lt;br /&gt;at 10 past 10am we there were some 70-80 of us named to go to 2nd floor.  At the door of courtroom i realized i was to attend a criminal court session.  wow, how impressive.&lt;br /&gt;&lt;br /&gt;i've faithfully been watching court and legal drama and read about every single one of john grisham's books so i thought i knew much and i was eager to see the evil criminal and fast paced and super fancy trial.  i could almost feel the rush.&lt;br /&gt;&lt;br /&gt;it took another 15min on roll call and stupid this and that and another 5minutes for the small lady in her 40s or 50s show up and sit down as a presiding judge.&lt;br /&gt;&lt;br /&gt;as i anxiously sat on 3rd row on right side of the court seating to be dismissed and set free, there was this guy sitting on 1st row of left side seating that stirred up the crowd with his 'excuse me...' as he approached the bench that almost made the cop in court room to get up in reflex, to stop the guy.  It turned out that he's got outstanding felony charge and he didn't think he should sit like rest of us and wait for turn to be dismissed.&lt;br /&gt;&lt;br /&gt;Well, it took a bit of drama but he did get dismissed when we returned from recess an hour later.  I thought why would the guy want to proclaim to every strangers in the room about his felony charge?  Well, that's him, I guess.&lt;br /&gt;&lt;br /&gt;It was shocking to know a dark colored lady sitting on left side of the table facing judge in black suit was a defendant in criminal court.  she doesn't look like a vicious killer nor manipulative con artist, nor deceptive spy.  oh well, that shows how naive i can get.&lt;br /&gt;&lt;br /&gt;she was charged with some minor dismeanor, that would charge up $400 fine and record, that she's fighting.  Oh my...  I've seen people buying dress more expensive than $400.  If I didn't know that I might have endured next 4hours a little better.&lt;br /&gt;some 80 peoples' whole day sitting around listening all kind of silly things so she might be acquitted of felony charge and $400 fine?&lt;br /&gt;&lt;br /&gt;I didn't say what my father usually say on things like this; give them a fair trial and hang'em.  It's a joke.  And, there's no need to talk about hanging anyways.&lt;br /&gt;&lt;br /&gt;It was more like hanging civilians with exceptionally long jury screening.&lt;br /&gt;&lt;br /&gt;if a businessman spent this much of screening in running his business or if an engineer spent this much time design and spec-out the product, we might get a perfect world.  judge, defense attorney and proscutor had a paper binder with seating charts of 18 prospect jurors slots drawn as a big box with slots and used sticky notes to put juror's notes, profiles, questions, red notepad for concerns and alarms and yellow ones for other notes.&lt;br /&gt;&lt;br /&gt;i was pretty intrigue to see that note taking, and also court clerk writing down everything spoken in her shorthand. these are the details court drama always seem to dismiss.&lt;br /&gt;&lt;br /&gt;then the full drama began.  18 prospect jurors were selected and seated, and judge ordered the rest of us to have a piece of paper and a pencil to write down answer to what judge ask/address to these 18, to recite when one of the jurors get bumped out and an open seat is to be yours.  like it's a blessing. ho, hum... maybe it is so for some.&lt;br /&gt;&lt;br /&gt;there was this ex-security guy i thought would surely be dismissed, with his silly and pompous talk and acts but he didn't.  there was this guy who told judge how biased he is about the subject it took no time for judge and both lawyers to dismiss him.  one of those power wheeler &amp; dealer at big company who talk his way out of unprofitable work like this. sigh*&lt;br /&gt;and, there was slight mental case here and there, divulging personal information nobody in that room need to know.&lt;br /&gt;&lt;br /&gt;the judge was fairly humourous, detailed and patient.  also was pretty sharp to laywers sneaking in the same questions twice or putting words into the mouth of juror. that part was really like in the movies.&lt;br /&gt;&lt;br /&gt;the judge recessed for lunch at noon until 1:30pm and that is when she allowed people to approach bench, one at a time, to explain why one should be excused from previlege of serving as jury. haha...  one lady from jury got dismissed for economic hardship, and another guy that was sitting next to me for both economic hardship and childcare issue.  sucker!  &lt;br /&gt;&lt;br /&gt;when i went up, i realized my flight reservation may or may not do the trick, so i gave her two reasons. one was the business trip flight and the other that i might have medical case because i have low blood pressure and sitting 8hrs a day for this might make me faint.  she didn't buy that.  i was already feeling pretty claustrophobic and stuffy with lightheadedness and faint hunger, but i wasn't gonna fight for it.  when i gave up on going out for lunch and returning to face security i headed up to the jury lounge, it was already 12:30.  with some trouble with laptop's internet connection, and another cup of machine coffee, it was 12:50.  why bother with internet for 10min? so I went to wait for the court session to open.  wasn't until 1:15 when we were allowed in, way way after both lawyers and defendent got allowed in at 1:05.  so much for requiring us the prospective jorors to be prompt.&lt;br /&gt;&lt;br /&gt;around 2 is when the judge let laywers to drop jurors from the seats, start refill and interrogate some more and let go some more, until they have 12 jurors and 2 alternates.  &lt;br /&gt;&lt;br /&gt;doctors got dismissed, people who vocalized being victim of some related crimes recently got dismissed, a chinese lady who's been living in san francisco for 30years got dismissed on basis of her poor english(oh! come on!) and so on.  and there wasn't that promised recess every one and half hour at 2:30pm as the court wasn't really in session promptly at 1pm.  &lt;br /&gt;&lt;br /&gt;when i thought i might get up and dance and jump up and down, then stab myself to death with suffocation and boredom, at 3:10 was when 14 jurors got locked and judge released rest of us and also proclaimed recess.&lt;br /&gt;&lt;br /&gt;so many questions, so many that if i was seated in one of those 18 i'd be tossed out at that first round of dismissal.  and, to check-out at 3rd floor jury lounge, wait on long line and show the bar-coded stub.  &lt;br /&gt;&lt;br /&gt;lawyers, defendents get through security without wait, and is allowed in to court room without wait, and it's jury who wait and hurdle through lines and do check-in and check-out with bar codes?  for someone's minor misdeameanor that would easily be corrected with a few spanking, some community service and small fine?&lt;br /&gt;&lt;br /&gt;it was like what i often hear about early immigration processing line, treated like some luggage.  hmm....&lt;br /&gt;&lt;br /&gt;i call it trial for jury, not trial by jury.&lt;br /&gt;&lt;br /&gt;on practicality level i'd say it's poor and not fair for jury.&lt;br /&gt;&lt;br /&gt;on entertainment and education level, it was pretty intriquing. if i was just staying home watching ceiling, i wouldn't mind going through the whole process and watch the case being tried.  for a minor case like this, i may not feel so guilty, it's not like that murder trial for famous people somewhere far away.  and, who knows i might learn enough to write like john grisham, cheesy crime suspense. ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115670091725365259?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115670091725365259/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115670091725365259' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115670091725365259'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115670091725365259'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/trial-for-jury-not-trial-by-jury.html' title='trial for jury, not trial by jury'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115626957834178223</id><published>2006-08-22T10:44:00.000-07:00</published><updated>2006-08-22T10:59:38.356-07:00</updated><title type='text'>space saver microwave finally starts saving space</title><content type='html'>It's amusing to see someone playing rock, scissor, and paper and one tells the other, "I'm gonna give a rock so you do scissor."  This can be analyzed in two way, that either the first person is playing a trick and will switch to paper, or will stick to his word and give a rock.  Odds are?  It's sad that this kind of tactics are at every corner of modern life.  Is this deal a real deal?  Any hidden fees?  Any fine prints?  What's the gimmick?&lt;br /&gt;&lt;br /&gt;Having the space saver microwave sitting in living room taking more space instead of saving space for over a month certainly made me skeptical.  I carefully shopped and compared 5 different microwave before making the purchase, and carefully followed the instruction to drill the holes just in right place and all.&lt;br /&gt;&lt;br /&gt;It was a heavy 60lb piece of metal, which does attribute to the difficulty of the task.  Nothing I see at homes with wall mounted microwave hinted the sucker should weigh so much, but the one that arrived certainly did weigh 60lbs.&lt;br /&gt;&lt;br /&gt;After me and Dave struggling and cursing for several tries we gave, I finally started scanning craigslist and phone at least two dozens handyman before we got someone to agree to come over last night around 7pm for an easy job.&lt;br /&gt;&lt;br /&gt;I was stressed that the contractor would tell me the metal plate to hold the microwave on the wall is not aligned correctly that he'll take it off to drill more holes to the wall and all that.  That would certainly take more time than 2hrs the contractor gave as his minimum hour and would worry me in rainy season with bunch of holes in my kitchen.&lt;br /&gt;&lt;br /&gt;The guy who came over was pretty cool.  He had all his tools, and used his common sense to look up our place without calling me at every corner of the street as I expected.  2 bags full of drill bits, power tools, level, and such.  Yeah, I felt maybe we do have a professional (heh if any newbie contractor's starting out, get yourself lots of well-used tools to fool someone like me).  To my amazement, he didn't take down the plate, and 3 of us working together we got it up in less than 30min.  Oh yeah!  Horray~~~  He got himself underneath the microwave, his head above the stove and facing up to the microwave, while I'm helping hold the microwave and its cord, and telling Dave to hold the microwave and tilt it forward to as much as 45 degree angle until he could secure the bottom back of microwave to be sittin on the metal plate's slots.  All 4 of them securely went in, then they pushed microwave back to the wall to secure it with screws from top cabinet above.  &lt;br /&gt;&lt;br /&gt;How neat was that!&lt;br /&gt;&lt;br /&gt;we spent at least 10hrs, drilling, lifting the heavy microwave up to the wall and taking it down, and ...&lt;br /&gt;And, it takes easy 30min to get it up.  Oh! my...&lt;br /&gt;&lt;br /&gt;We gladly paid him for 2hrs, and got his number.  Aussie man Rob is the man!  Does his work, for a small job, and is well... friendly and helpful too.  What can a small time self-remodeler ask for?&lt;br /&gt;&lt;br /&gt;I went back to kitchen several time for no reason last night, just to see how it fits well into the top cabinet above the stove.  Phew... finally about 1/5 of kitchen remodel is done.  About $500 for cabinet pieces we picked up and assembled ourselves and installed ourselves, and $300 for microwave itself, and $100 for Rob to help us put up.  &lt;br /&gt;&lt;br /&gt;Took the depression out of daunting task of kitchen remodeling.  Now living room is larger by 30x20inch the microwave tookup, and kitchen will also be as we throw out the old microwave sitting on the counter next to sink.  &lt;br /&gt;Can't wait to start axing bottom cabinet to install the new ones.  Baby steps, works!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115626957834178223?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115626957834178223/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115626957834178223' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115626957834178223'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115626957834178223'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/space-saver-microwave-finally-starts.html' title='space saver microwave finally starts saving space'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115559080861016534</id><published>2006-08-14T14:19:00.001-07:00</published><updated>2006-08-15T08:42:49.913-07:00</updated><title type='text'>remotely interested in remote desktop</title><content type='html'>something somehow forced me to evaluate remote desktop server and remote desktop client on windows.&lt;br /&gt;&lt;br /&gt;i have a window desktop with outlook and IE at work, but have sufficiently been operating with mac os and flavours of linux and a few attempt at solaris for years.&lt;br /&gt;&lt;br /&gt;i must say remote access on windows is okay.  vpn, remote desktop, source control and content control, ...., well as long as one can afford buying all these software, it's not half so bad.  &lt;br /&gt;&lt;br /&gt;well, i got a laptop fell on me, so that evens my bias toward linux, the one where I spend money on hardware and maybe $2.00 getting installation CD/DVD burnt.&lt;br /&gt;&lt;br /&gt;as i'm playing around with remote access from windows client to windows server, and have been using vnc for linux to linux access at random, i'm now ambitious to learn cross platform remote access.&lt;br /&gt;&lt;br /&gt;the answer i get is vnc.&lt;br /&gt;&lt;br /&gt;will have to try it out.&lt;br /&gt;&lt;br /&gt;somewhat tired and sleepy, but maybe one day i can remotely access from my dream too.  'til then, just keep trying.&lt;br /&gt;&lt;br /&gt;it's nice to know dot com bomb hasn't really ended much of internet industry.  web 2.0 is springing, ipv6 isn't all that far in the future, wifi strength is getting better and now the remote access also would be a piece of cake.&lt;br /&gt;&lt;br /&gt;nice!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115559080861016534?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115559080861016534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115559080861016534' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115559080861016534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115559080861016534'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/remotely-interested-in-remote-desktop_14.html' title='remotely interested in remote desktop'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115497243980392644</id><published>2006-08-07T10:20:00.000-07:00</published><updated>2006-08-07T10:40:40.380-07:00</updated><title type='text'>15min sightseeing of the city on monday morning</title><content type='html'>Most of us barely wakeup on monday morning, with sips of coffee, and cold stream of shower on head...&lt;br /&gt;&lt;br /&gt;So I missed 7am bus, and was waiting for 8am bus on Van Ness and Grove, near city hall.&lt;br /&gt;&lt;br /&gt;Barely awake I was, with this morning's Examiner in one hand, and shuffling small latte and bearclaws I bought on the other.  The divider lane on Van Ness right in front of city hall seem a little overcrowded with officers, with a police car on each side parked in the middle of street with siren light flashing.&lt;br /&gt;I was a little too sleepy to let it deter me away from my coffee and morning paper, but soon noticed fire truck, ambulance and more police on site.  And, I could barely see someon laying on the ground, in between polices' leg.  &lt;br /&gt;Could some homeless person be knocked out on the street, while asking for money?  Could this be an early morning hit&amp;run?  &lt;br /&gt;It was a little too quiet for that sort of accident.&lt;br /&gt;&lt;br /&gt;Then someone waiting for the bus as well started explaining to others waiting for the bus, who just came approaching the bus stop.&lt;br /&gt;&lt;br /&gt;The guy came from city hall direction, toawrd the opera house, try to open the door to get in and failed, and went on to the middle of street and start banging his head, either on the cement street or on the metal rod that were put on the center divide.&lt;br /&gt;The spectator also added that he presume the guy on the street must come from the courthouse, just a block away from city hall.&lt;br /&gt;&lt;br /&gt;Who knows.  That I'm sure was inconvenient of hundreds of morning commuter on monday morning, and since it only involved the guy laying on the street, that explains low key performance from cops watching him while ambulance arrives.&lt;br /&gt;At 8am on monday morning, tho?  That's a bit too much.&lt;br /&gt;Wouldn't court house be barely opening?&lt;br /&gt;&lt;br /&gt;I'm sure I'll see more about it on evening news, as no more than 30sec. flash.&lt;br /&gt;&lt;br /&gt;As the bus I was in left the hectic site, and moved toward Market, I saw kissing of two gay guys parting at Van Ness Muni stop. Which isn't uncommon on San Francisco standard, but this and what saw earlier the day aren't so much a routine if I drove just half an hour outside the city.&lt;br /&gt;&lt;br /&gt;To make the morning amusement heightened, there were more interesting scenes waiting for me as bus crossed Market and was near the Smart&amp;Final store, right before the 101 entrance; a street person with his street cart and a skate board, and his dog dancing to his radio boom music while playing with meatless bone.  The guy made a few attempt to pull the cart while holding the dog's leash and skate at the same time.  It didn't seem such an easy task.  The dog, when he was let go, would dance merrily, then pickup the bone and would be docile next to the homeless guy.  Don't think he received much of training but the dog was well tamed and would sit or walk without much command, a small and cuite dog that seem well cleaned for a street dog, also not too fat nor too lean.  They seem to be enjoying their early morning, when I saw anoterh street person stop the guy asking for some of his belonging, from the cart where the music box stood for a short a while.&lt;br /&gt;&lt;br /&gt;Then the light changed, and bus moved on, to join the rest of traffic on 101 and thigns got just blend again.&lt;br /&gt;&lt;br /&gt;8:05 am until 8:20am, that short 15min provided much to look at, much to ponder about.  And, did I mention it's only monday morning on some uneventful August morning?&lt;br /&gt;&lt;br /&gt;Maybe that's what the city living is.  Eventful at every minutes and seconds, on any given day.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115497243980392644?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115497243980392644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115497243980392644' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115497243980392644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115497243980392644'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/15min-sightseeing-of-city-on-monday.html' title='15min sightseeing of the city on monday morning'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115479394826064773</id><published>2006-08-05T08:52:00.000-07:00</published><updated>2006-08-05T09:05:49.413-07:00</updated><title type='text'>state of kimchi or state of IT book market?</title><content type='html'>With a few rather nice independent book stores in &amp; nearby SF going out of business, and with me start to look into more technical books inluding linux kernels and ever so popular .NET, I couldn't help but to do a bit of googling(it's officially a word, now, I hear) for 'IT books,computer books, market, sale, analysis'.&lt;br /&gt;&lt;br /&gt;Nowadays everybody blogs, and sometimes obsessively, whether on his/her own blog, or as a commentator of some one else's blog.&lt;br /&gt;&lt;br /&gt;First, I was pointed to Tim O'Reilly's personal &amp; company blog, tim.oreilly.com way back from 2002 and 2003, with numbers, pie charts, ...&lt;br /&gt;&lt;br /&gt;Then, I got to Apress's company blog that gave a few numbers, mainly comparison between Apress, Xrox, Oreilly and few other competitors' sales within last 4-6months.&lt;br /&gt;&lt;br /&gt;I have to admit I'm not familiar with Apress as the publisher.  That shows I've not been reading new books much, and that shows I've not paid much attention to the books in windows platform, #C or .NET or ASP.  I'm pretty impressed with Xrox, at their speed of getting interesting &amp; well written books published timely.  O'Reilly is just O'Reilly, it's just been there for as long as I can remember, when I first typed '#!/usr/bin/perl' without knowing I was using perl4 or perl5;and couldn't have cared less.&lt;br /&gt;&lt;br /&gt;It's nice to see that people are willing to post marketing analysis and crunch the numbers for public, and it sure is humorous to see Tim O'Reilly himself posting comments on Apress' blog, numerously, too.&lt;br /&gt;&lt;br /&gt;As old saying, know thy enemy and know thyself and thy shall conquer 100 out of 100 battles?  &lt;br /&gt;&lt;br /&gt;The fact that I could fish some of data that would have been expensive, secretive in past makes me wonder.  This just reminds me about one of NPR radio broadcast where some book publisher analysts give list of best seller book titles, and how the title of book affects a potential buyer's split second decision of whether to take it off the shelf to take home or not.&lt;br /&gt;&lt;br /&gt;Geez, and here I thought book writing was all about writing skills, passion and creativeness.&lt;br /&gt;&lt;br /&gt;I see many blogs begin with 'state of onion' or something like that.  I ain't no shrek and never did like how spicy it is.  Heh, I prefer kimchi!&lt;br /&gt;&lt;br /&gt;my state of kimchi: I decree I shall dig up more on this book marketability.  I wouldn't be writing best seller 'devil wears prada' or 'da vinci code' any time soon.  but, it's a joy to find out how things are done, how the formula works out.  hacking hacker books... hmmm... and, nope, i ain't no hacker!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115479394826064773?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115479394826064773/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115479394826064773' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115479394826064773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115479394826064773'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/08/state-of-kimchi-or-state-of-it-book.html' title='state of kimchi or state of IT book market?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115404581643011106</id><published>2006-07-27T17:08:00.000-07:00</published><updated>2006-07-27T17:16:56.870-07:00</updated><title type='text'>three strikes you are out, three bars you're in network</title><content type='html'>spent a few minutes this afternoon walking around withing a few feet in search of cellular phone's bar.  was expecting a phone call, yet i know there usually is a phone with red diagnal line on my phone from my cube.  that's translated as no service.  i can barely hear the phone ringing, but as soon as i pick it up the call hangs with 'no service...' message displaying.&lt;br /&gt;&lt;br /&gt;knowing i'm expecting the phone i walked out and walked about staring at the phone, neverminding anything on the ground i might trip over.  &lt;br /&gt;&lt;br /&gt;i used to laugh at phone commercial, yet i realized i was doing exact the scene from the phone commercial.  walk two steps forward and get a small bar, then two more steps forward to get 2nd bar, and yet two more steps from that point lose the 2nd bar i just obtained.  walk back, and it doesn't come back and walk a step to the left and there it is again.  it took me a full two minutes to secure a spot that has three service bars displaying, ensuring a reliable and audible service.&lt;br /&gt;&lt;br /&gt;sigh*  when i switched over from sprint to t-mobile, i thought the services were better.  last 2 years, it's been deteriorating.  about 6-8months ago i could actually make a phone call using cellular phone from my cube, which i sadly can't.&lt;br /&gt;&lt;br /&gt;of course, i'm not a phone freak.  except to call general contractors or dispute credit card bill, and to answer occasional rings, i make like less than 1 or 2 phone calls per month. &lt;br /&gt;&lt;br /&gt;but this still is sad.  limited service area, and walking around in search of cell phone service bar.&lt;br /&gt;&lt;br /&gt;wonder why the phone bill does go up, if the service area is being reduced.&lt;br /&gt;&lt;br /&gt;time to shop for new phone service plan? or just give it up all together?&lt;br /&gt;&lt;br /&gt;oh well, oh well...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115404581643011106?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115404581643011106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115404581643011106' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115404581643011106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115404581643011106'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/07/three-strikes-you-are-out-three-bars.html' title='three strikes you are out, three bars you&apos;re in network'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115401672794668121</id><published>2006-07-27T09:03:00.000-07:00</published><updated>2006-07-27T09:12:08.013-07:00</updated><title type='text'>netconf 2006 is coming~~~</title><content type='html'>there are much heat wave and much rain and wind everywhere, making sizzling summer a bit of a travel hazard.&lt;br /&gt;&lt;br /&gt;well, that's not the main reason but Netconf 2006 detered from previous July travelling and will be in Sept.  This time in the heart of Tokyo's Akihabara.  For those in US and familiar with Fry's, think of blocks and blocks of Frys, that's what Akihabara is like.&lt;br /&gt;&lt;br /&gt;Well, will we be able to confine the attendees within the conference room?  &lt;br /&gt;Maybe the session topics and fancy attendee list would do the trick.  Last year Thomas Garf's graph set new height in visual presentation; heck, I didn't understand half what he said but I remember such cute lines and dots in animation.  Who will present what, and what will that lead in terms of development for next 6months?  The dates and attendee list increases, to accomodate past events' constraint in time of two days with about 1-1.5hr per presentor.  &lt;br /&gt;&lt;br /&gt;I'm looking forward to learn how to integrate Usagi rabbit (Usag is like a rabbit/hare in Japanese, literally) and Mashimaro the mutant rabbit Netconf adopted as mascot.&lt;br /&gt;&lt;br /&gt;3 days in Tokyo locked up with super geeks.  Davem asked me if I can make myself useful w/ a slide or two myself.  I joked saying maybe I can teach these bunch of foreigners basic Japanese, for their evening out to Akihabara the toy store.  Seriously I need to hit the wall hard with my head, to make something useful out of this.  Think, think, think.......&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115401672794668121?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115401672794668121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115401672794668121' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115401672794668121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115401672794668121'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/07/netconf-2006-is-coming.html' title='netconf 2006 is coming~~~'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115324505796277720</id><published>2006-07-18T10:46:00.000-07:00</published><updated>2006-07-18T10:50:58.056-07:00</updated><title type='text'>spare the air, spare the air conditioner</title><content type='html'>SF Bay area kicks w/ 4th spare day of the year on 7/17 monday.&lt;br /&gt;Which is cool.  I can ride caltrain instead of my free alternative on highway 101 that takes forever.&lt;br /&gt;&lt;br /&gt;Wouldn't be surprised, as I personally eyewitnessed temperature shooting high, up to 111 and 115 around vacaville and placerville valley on the way home from Tahoe on sunday.&lt;br /&gt;&lt;br /&gt;Still, at this rate I might catch a cold, so hot outside and so cold inside the air conditioned building.&lt;br /&gt;Achooo~~~&lt;br /&gt;sniff~~&lt;br /&gt;sniff~~&lt;br /&gt;&lt;br /&gt;if silicon valley companies are spamming "we will shutdown light from 4pm-7pm... blah" to save electricity in the hot day of "spare the air" day, couldn't they also lower the air conditioner just a tinsy bit?&lt;br /&gt;&lt;br /&gt;wearing sleeveless inside and winter coat outside should only occur if I walk intoa nice warm home from snow blizard cold of alaska, not the other way around.&lt;br /&gt;&lt;br /&gt;another day of shivering inside the office only to sweat to death on way out to lunch and commute home. how perfect! (not!)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115324505796277720?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115324505796277720/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115324505796277720' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115324505796277720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115324505796277720'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/07/spare-air-spare-air-conditioner.html' title='spare the air, spare the air conditioner'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115095479884515635</id><published>2006-06-21T22:37:00.000-07:00</published><updated>2006-06-21T22:39:58.856-07:00</updated><title type='text'>lesson with partitioning intel-based mac for linux installation</title><content type='html'>in order to run bootcamp, do not partition the disk into mac os and linux.&lt;br /&gt;i'm spending a good half an hour to unpartition.  have 100gb disk, partitioned into 50/50. &lt;br /&gt;if i run bootcamp, running on mac's****** partition, there's like nothing left on mac os partition and linux partition will stay a void.&lt;br /&gt;&lt;br /&gt;waste of time? or lesson fee for trying to get linux on mac mini?&lt;br /&gt;&lt;br /&gt;still a long way to go.  i'm getting a little impatient now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115095479884515635?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115095479884515635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115095479884515635' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115095479884515635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115095479884515635'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/lesson-with-partitioning-intel-based.html' title='lesson with partitioning intel-based mac for linux installation'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115095221994538187</id><published>2006-06-21T21:54:00.000-07:00</published><updated>2006-06-21T21:56:59.963-07:00</updated><title type='text'>more attempt at linux on intel based mac mini</title><content type='html'>from reliable source(ehem), i got notified that updating iMacFWUpater(firmware updater) to 1.0.1 and installing bootcamp for winxp, then downloading fedora core 6 for x86 test run 1 on dvd burn would do the trick.  well i've already partitioned mac's hard disk so i might start with firmware update then fedora core 6.  if it doesn't work, then i'll install bootcamp and give another try at fedora core 6.&lt;br /&gt;&lt;br /&gt;wahoo~~~&lt;br /&gt;&lt;br /&gt;maybe it'll work.&lt;br /&gt;&lt;br /&gt;would be pretty neat if it works as easy as that.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115095221994538187?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115095221994538187/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115095221994538187' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115095221994538187'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115095221994538187'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/more-attempt-at-linux-on-intel-based.html' title='more attempt at linux on intel based mac mini'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115073233873137994</id><published>2006-06-19T08:45:00.000-07:00</published><updated>2006-06-19T12:06:19.150-07:00</updated><title type='text'>invisialign baby babble</title><content type='html'>So i finally picked up my invisialign on friday.&lt;br /&gt;(don't ask me to pronounce slashdot, i pronounce it swashi duh. oh! my)&lt;br /&gt;&lt;br /&gt;A month or so ago when I went into dentist's office to pick it up, I found out that impression had imperfection and that there was no invisialign.  Instead I spent 3hrs sitting in dentist's chair, almost ripping my mouth while Dr. Ganji tried to get impression mold of my upper &amp; lower teeth, about 10-15 tries each.&lt;br /&gt;&lt;br /&gt;Went in for 10min invisialign pickup actually turned into 45min, struggle to learn to put the container on and off my teeth, and Dr. Ganji putting some holder on teeth to keep the guard stay on.  He told me to use sonic care to brush the guard, and the goal was to wear it 20hrs a day 7 days a week, for 2 weeks and go to next set of guard.  For next year and half. Hmm...&lt;br /&gt;&lt;br /&gt;Unlike braces I had to wear, that had metalic base station put on my crown and wires running through them, this is a clear plastic thing in shape of my teeth outline, plus a bit of bend here &amp; there to mold my teeth to reshape.  &lt;br /&gt;&lt;br /&gt;I've been wearing it since friday 9am, with about average of 18hrs a day.  Sort of annoying, and does hurt my teeth a little, as my teeth are being pulled according to the guards' shape.&lt;br /&gt;&lt;br /&gt;So far it's ok.  But I talk like a baby or a grandmother.  I got picked up for carpool this morning, and half the time the lady who picked me up says 'What did you say?', 'Excuse me?'....&lt;br /&gt;&lt;br /&gt;And, I forgot the guards container case at home.  Eating lunch, taking out the guards, cleaning up the guards, and talking in the meeting,...,&lt;br /&gt;fun, fun, fun....&lt;br /&gt;&lt;br /&gt;And, I will have it for next 18months+.&lt;br /&gt;Lucky me... *sigh*&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115073233873137994?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115073233873137994/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115073233873137994' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115073233873137994'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115073233873137994'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/invisialign-baby-babble.html' title='invisialign baby babble'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115061930412956394</id><published>2006-06-18T01:09:00.000-07:00</published><updated>2006-06-18T01:28:24.166-07:00</updated><title type='text'>bridget to the rescue --- oops, i've done it again.</title><content type='html'>oops, and major oops.&lt;br /&gt;not britney spear's slutty song.&lt;br /&gt;i've just done my usual turn bad into disaster performance again.&lt;br /&gt;after 3 weeks of anxieties, panic, and pure madness of trying to get washer fixed for tennants, i gave up and started shopping.  online shopping delivers in 2-3weeks, and would cost me about $1500, and possibly tax, shipping and installation.  &lt;br /&gt;naturally i turned to craigslist, and made an appointment to see someone with a compact washer/dryer combo unit on moving sale.  &lt;br /&gt;the guy showed me a demo, killed some time with witless joke while washer finished the shortest time consuming cycle, with water pipe and power cords, and all that stuffs.&lt;br /&gt;relieved to have found a working washer/dryer, i abused already ill david to carry the unbelievably heavy (it's so tiny yet so heavy, oh my) down 2 stories on steps with the seller guy.  i insisted i carry the washer down myself, and they both laughed and wouldn't let me.  two of them struggled to get the washer down to the ground level, so i believe they were quiet right not to let me carry it.&lt;br /&gt;getting the washer in to the unit, unhooking the non-functioning appliance, putting in the new unit and checkin, ..., phew it was easy to kill 3hrs on a fine saturday afternoon.&lt;br /&gt;&lt;br /&gt;feeling quiet accomplished and confident of my fine work, i enjoyed the evening until i got an emergency call almost 11pm at night. oh, my god!  for some reason water faucet to washer has been leaking since 4:30pm when i left the loft, and HOA crew had to knock on the tennants door notifying them that leak from washer damaged the garage, both B1 &amp; B2 and that the guy turned off the water for good.  &lt;br /&gt;&lt;br /&gt;what have i done?&lt;br /&gt;this ranks one of my top rated crisis.  of course i have plenty crisis in life time, so it's ranked top, super top ranked crisis, along with when i first got my speeding ticket and when i first got my first IRS audit.  at this rate i might hit heart attack soon.&lt;br /&gt;&lt;br /&gt;would i severely be penalized by HOA?  would tennants want to sue me?  what have i done?  oh, my god....&lt;br /&gt;i rattled, rattled, and called back the tennants about 5 times within 10 minutes, to the point my tennant actually had to calm me down and tells me not to come over at 11:30pm night, and call back HOA on monday to take care of the issue with HOA and not to worry about washer for them too much.&lt;br /&gt;how sweet.......&lt;br /&gt;&lt;br /&gt;it's been about 2hrs since the last phone call, and i'm still about to die with shame and fear.&lt;br /&gt;&lt;br /&gt;of course, poor david had to put his stomache flu aside to help me from an offer to drive me to the loft to just comfort me and assure me nothing's wrong.  ^^ how nice...&lt;br /&gt;&lt;br /&gt;so as i'm not driving down to the loft on saturday night at midnight, and still not knowing how to shake off jitter-bug, i stick "Bridget Jones Diary" into dvd.  well, I searched a few dvd, and 'runaway bride' and 'bridget jones diary' had to fight over the most loser character spot to compete to make me feel better.&lt;br /&gt;&lt;br /&gt;oh, why me... oh, why me...&lt;br /&gt;now i'm struck with newly found agitation that i'd probably have to look for a new washer/dryer option, or just have some one fix it for me, someone professional this time.&lt;br /&gt;&lt;br /&gt;oh, my... &lt;br /&gt;it's gonna buy me lots of scolding from HOA management lady, and lots of shedding on checkbook.&lt;br /&gt;&lt;br /&gt;dear god, i hope bridget looks loser enough in 2hrs movie time.&lt;br /&gt;&lt;br /&gt;when will i learn, i wonder. oh, dear me!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115061930412956394?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115061930412956394/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115061930412956394' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115061930412956394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115061930412956394'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/bridget-to-rescue-oops-ive-done-it.html' title='bridget to the rescue --- oops, i&apos;ve done it again.'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115040701796838141</id><published>2006-06-15T14:27:00.000-07:00</published><updated>2006-06-15T14:30:17.983-07:00</updated><title type='text'>cosmetic surgery for slashdot</title><content type='html'>I've known of slashdot's new design, yet I've been busy with this and that to check it out 'til now.&lt;br /&gt;&lt;br /&gt;So the color, and 3 columns are the same, list of articles are the same, ...&lt;br /&gt;&lt;br /&gt;some of round tabs look different, fonts and tightness of articles inside box look somewhat different, not to pin-down the size, font-face or anything as I'm too clumsy to have taken notice in the first place.&lt;br /&gt;&lt;br /&gt;i can buy the redesign, safe within earlier design yet giving a slight different look.  and, is it supposed to load faster, too?  &lt;br /&gt;&lt;br /&gt;no complaints from me, as it's not any slower nor any pink(like on april fool's).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115040701796838141?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115040701796838141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115040701796838141' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115040701796838141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115040701796838141'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/cosmetic-surgery-for-slashdot.html' title='cosmetic surgery for slashdot'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115030682311696881</id><published>2006-06-14T10:37:00.000-07:00</published><updated>2006-06-14T10:40:23.196-07:00</updated><title type='text'>flixster, and tear-jerker father's day</title><content type='html'>I just got invited to flixster, and unwittingly I clicked the link to site, and was stuck for almost half an hour.  very very addictive.  i've reviewed about some 200 movies with clicks on star, and i had to literally force myself to get off of that site.&lt;br /&gt;&lt;br /&gt;Open! Open!  I'm in that Mervyn's commercial where people are glued in front of store door shouting "Open! Open!"&lt;br /&gt;&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;on another note, my father's day gift arrived home safely it seems.&lt;br /&gt;&lt;br /&gt;Appa can write an email.  Should I be impressed or just be sad and miss him lots?&lt;br /&gt;&lt;br /&gt;oh well....  &lt;br /&gt;&lt;br /&gt;guess that's our movie!  oh! happy father's day.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115030682311696881?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115030682311696881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115030682311696881' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115030682311696881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115030682311696881'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/flixster-and-tear-jerker-fathers-day.html' title='flixster, and tear-jerker father&apos;s day'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115030651500325125</id><published>2006-06-14T10:29:00.000-07:00</published><updated>2006-06-14T10:35:15.003-07:00</updated><title type='text'>reservation of 'stupidity'?</title><content type='html'>Michael Moore's been more than generous on criticizing Mr. Bush, with numerous books and speeches such as 'Stupid White Man'.  But then again, as I was walking past "Well Lighted Place for Books" on the way to work this morning(I think in my dazed &amp; dozed self) I saw "Stupid White Man" a book not written by Moore but written about Moore.&lt;br /&gt;&lt;br /&gt;Hmm.... I wouldn't say it never occured to me, but it was sorta interesting.&lt;br /&gt;&lt;br /&gt;If I was to search a book database with a title, 2 of them will come up, 1 with author Michael Moore and another with desc. of Moore.&lt;br /&gt;&lt;br /&gt;As muchas Bush draws a lot of criticisms, there has lately been some editorials pointing out that Bush's accomplishment is often shadowed by criticisms on him that are less than important, such as his stuttering, fumbling, and lack of sensibility in speech.&lt;br /&gt;&lt;br /&gt;In any case, people sure like this word 'stupid white man'.  Hmm...  does this mean stupidity in whitemen are common or does this mean it's so rare that there's need to emphatically point out?&lt;br /&gt;&lt;br /&gt;Just a silly joke that rhymes in my head.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115030651500325125?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115030651500325125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115030651500325125' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115030651500325125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115030651500325125'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/reservation-of-stupidity.html' title='reservation of &apos;stupidity&apos;?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115029633895402393</id><published>2006-06-14T07:27:00.000-07:00</published><updated>2006-06-14T10:29:49.373-07:00</updated><title type='text'>quality! quality!</title><content type='html'>it's a laugh when my parents talk about good old day.&lt;br /&gt;when gas price was dirt cheap, it was safe to walk around, the job was for life time, ..., etc.&lt;br /&gt;but then again, they didn't tell me wage was also dirt cheap, issues on racism, religions, gay&amp;lesbians were about as backwarded as 16th century, and there was no cure for cancer, ..., etc.&lt;br /&gt;&lt;br /&gt;my foreign friends always complain how america's greatness is over-rated, and show great patriotism with this world cup event et all.  Yet, they flock at a chance to tour or immigrate to the U.S.A.&lt;br /&gt;hmm.... am i missing something here?&lt;br /&gt;&lt;br /&gt;anyways, once I start thinking of things from both side of the thin wall that separates the sides, I start drive myself crazy.  It is a question of chicken and egg.  &lt;br /&gt;&lt;br /&gt;Often times I drag my IT background into day-to-day activities inadvertently.  ordered microwave online, for easy delivery and to default on state tax.  I happen to live on 3rd floor without elevator, and what does the delivery guy do?  He drops the damn thing in between first and second floor and flees the scene as soon as he obtains delivery receipt signature.  Leave it where he left?  Or pick it up myself and break my back (&amp; possibly the ordered item at the same time) pushing it and pulling it up to 3rd floor?  A slight exaggeration I admit, and I wasn't home to suffer through it, but I just couldn't help exploiting over low quality of outsourcing and low quality of services nowadays.&lt;br /&gt;&lt;br /&gt;Am I getting as old as my parents or am I becoming as foreign as my foreign friends?  &lt;br /&gt;&lt;br /&gt;To make my already skeptical mind in worse state, I looked at the receipt of Sears Repairman who showed up a day too late, with about 45min too early of his notice.  There was a mal-functioning washer machine.  After calling one too many local repairmans listed on craigslisted, Sears Repair department was contacted, given last friday 1-5 as window the repairman shows up.  I called to the repair center to learn that I'm on #8 of total 8 services scheduled.  At 4pm I get a call saying he'll be at 6pm, and at 6:05pm I get a call saying he can't come and reschedule.  I can't take a day off from work every day and still have my job, so I ask someone else to let the repairman on monday and explain the problem, ..., etc.  I call Sears again to learn I'm #8 of total 11 services, and get a promise the repairman will call 1hr prior to showing up.  The repairman calls around 2pm, about 1hr ahead of expected show-up time, and I relay the message.  The repairman shows up around 2:15pm, to declare there's nothing wrong with the washer machine other than operators using it.  Oh well, so I ask him to write down his discovery in detail for me in his receipt.  When I came home to see the receipt!  No 'Sears' print, and the date is scribbled 6/16/06.  Hmm... it's 6/12/06, so he flew to future to repair it and turn the time back?  Oh, my.  And, there's no name of repairman, description, ..., nothing.  Just says 'service, all checks out ok... $113', about $45 more than advertised $69 per diagnosis.&lt;br /&gt;&lt;br /&gt;That's what I call state of fine service.  Of course I'm being sarcastic.&lt;br /&gt;&lt;br /&gt;Should I go on with Home Depot paint mixer guy who royally screwed up my orders twice?&lt;br /&gt;First, I take him 2 cans of flat white base with colors I want, and he tells me that's wrong brand of paints only to bring those that are used for doors and windows with shines in it.&lt;br /&gt;When he is pointed out, he acts up and then now he's giving me 2 cans of same colored paints instead of 2 separate colors as original request was.&lt;br /&gt;Do I fight with this guy? Or just give up?&lt;br /&gt;And, why is he the one fuming with green clouds, and pushing aside my orders 'til last just because he's corrected?&lt;br /&gt;&lt;br /&gt;I'm not fuming...&lt;br /&gt;More so in dispair.&lt;br /&gt;Where's this world coming to?&lt;br /&gt;Why are people more concerened about better pay, but not willing to perform better?&lt;br /&gt;&lt;br /&gt;Just thinking about things that just make absolute no sense to me, and makes me sad to witness how quality of service continues to decline....&lt;br /&gt;&lt;br /&gt;Still am searching for the other side of the story, helplessly battling against myself that there's a good reason for all this. Oh, well...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115029633895402393?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115029633895402393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115029633895402393' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115029633895402393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115029633895402393'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/quality-quality.html' title='quality! quality!'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115021849722576473</id><published>2006-06-13T10:00:00.000-07:00</published><updated>2006-06-13T10:08:17.226-07:00</updated><title type='text'>worldcup, mmm... what are we talking about?</title><content type='html'>barista lady at beantree finally remembers i want latte in the morning, not mocha, and all of sudden stock market's pushing upward. hohoho...&lt;br /&gt;&lt;br /&gt;finally learn to say 'no' to sweet sweet donuts(my favorite ones are the glazed/chocolate buttermilk ones, and there were plenty) at bean tree, and eating dry bagel, without cream cheese. :D  maybe my one-size-too-small dress would appreciate this.&lt;br /&gt;&lt;br /&gt;while toasting bagel, i couldn't help notice a large crowd by tv, airing worldcup france team is playing about half-way in.&lt;br /&gt;&lt;br /&gt;today there's france team playing switzerland?, and brazil team playing, and of course underdog of 2002 south korean team playing.  everybody's buzzed up on brazil and france team, as i can see many sitting around tv at every cafeteria corner with laptop.&lt;br /&gt;no wonder many companies invested so much on putting their ads around the fields at the stadium.  &lt;br /&gt;&lt;br /&gt;who says american are disinterested in worldcup, now that USA team lost a game? &lt;br /&gt;i couldn't tell from the crowds i see at every sports bars in town, and at every cafe with espn.&lt;br /&gt;&lt;br /&gt;oh well, ...., go! mmm... somebody?  most likely 'go brazil' for many soccer fans.&lt;br /&gt;&lt;br /&gt;:D i've watched the game italy won, england won, and ... i might as well be worldcup literate now.&lt;br /&gt;&lt;br /&gt;can't believe how olympic in greece was such a flop, when seeing worldcup stadium packed and every tv being tuned to the soccer game.  &lt;br /&gt;&lt;br /&gt;go! worldcup!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115021849722576473?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115021849722576473/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115021849722576473' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115021849722576473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115021849722576473'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/worldcup-mmm-what-are-we-talking-about.html' title='worldcup, mmm... what are we talking about?'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115021748572286337</id><published>2006-06-13T09:50:00.000-07:00</published><updated>2006-06-13T09:51:25.750-07:00</updated><title type='text'>more twin frenzy</title><content type='html'>while i'm on the roll for twins, happy birthday to olsen twins.&lt;br /&gt;&lt;br /&gt;whaaaad?  only 20? hmm....&lt;br /&gt;&lt;br /&gt;was i ever at the tender budding age of 20? &lt;chuckle&gt;&lt;chuckle&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115021748572286337?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115021748572286337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115021748572286337' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115021748572286337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115021748572286337'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/more-twin-frenzy.html' title='more twin frenzy'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-115021642946641168</id><published>2006-06-13T09:23:00.000-07:00</published><updated>2006-06-13T09:33:49.650-07:00</updated><title type='text'>run around everywhere</title><content type='html'>June!&lt;br /&gt;A month for busy Gemini, to go every direction and do everything.&lt;br /&gt;&lt;br /&gt;Busy with lingering taxes from April(both income tax and property tax), some weird interim ballot on June 6th(Hmm... 6+6=06 thing didn't deter the california election, interesting), went to Larry's 1st annual pig roast that reminded me of Hawaiian vacation long ago, with pig roast dug out from earth and hula dances during the feast.  And, a day trip to point reyes for a quiet beach getaway along scenic coastal california highway, finishing Jackie O's biography, a stab on Stephen King's deliciously horror fiction titled 'Thinner', reading a few of Bernenke's books that arrived, ...&lt;br /&gt;&lt;br /&gt;This, while going to 8-5 job every day, and while tearing apart the kitchen to install cabinets and over-the-range microwave with exhaust fan, trying to get a washer machine for tennants with about two dozens phone calls and reading three dozens websites to learn all the appliance vocabularies, ..., phew~~~&lt;br /&gt;&lt;br /&gt;It certainly is a busy month.  &lt;br /&gt;&lt;br /&gt;The weather, is not yet decided that i's June, affecting much of summer &amp; fair business folks, and stocks' definitely been under the weather; I was stupid enough to leave an open order of goog at $450/share for 2 shares, and ibm for $78.75 ofr 9 shares when good was at like $480/share and ibm $80/share, just to wake up next morning that my open order got excuted and that stocks been tumbling down, down, down the spiral staircase to $380/share for good and $77/share for ibm.&lt;br /&gt;&lt;br /&gt;Can't belive June's not gone a half way yet. ^^&lt;br /&gt;&lt;br /&gt;Got a lot more damages to make, as I spent whole afternoon last friday reading O'Reilly's aadvanced perl programming to make friends with 'swig' and 'perl Tk', which does work, for my surprise amusement; maybe my own tetris, ms. pacman or sudoku wouldn't be much of a dream.&lt;br /&gt;&lt;br /&gt;Hope sun does return, to bring sunny california back to rather seattle-like bay area.  with my head spinning at current rate, tho, can't tell I notice the weather much, tho.&lt;br /&gt;&lt;br /&gt;will there be cloning of the twins?  making me busier by folds, as a quadriplette?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-115021642946641168?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/115021642946641168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=115021642946641168' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115021642946641168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/115021642946641168'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/06/run-around-everywhere.html' title='run around everywhere'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114840203971657006</id><published>2006-05-23T09:24:00.000-07:00</published><updated>2006-05-23T09:33:59.813-07:00</updated><title type='text'>learning Bernanke</title><content type='html'>It's been a while Fed.Chair's seat's been handed down from Greenspan to Bernanke.&lt;br /&gt;&lt;br /&gt;With a lot of personal items at hand, fixing kitchen, getting over cold, cheering for Sharks, and work, ..., etc., I've sort of watched Bernanke's movements from a far.&lt;br /&gt;&lt;br /&gt;Afterall, he's been raising interest rates as expected so far, and not much else is new, in my radar.&lt;br /&gt;&lt;br /&gt;Stock's been dipping low since late last week, and continued to yesterday, monday, and I walked around moping: if tech. and commodities are down because of soaring oil price, then why are energy sector, such as Chevron, down?  &lt;br /&gt;Stocks bounced rather handsomely today.  Personally, the explanation for all these ups and downs are way beyond my speculations and knowledge.&lt;br /&gt;&lt;br /&gt;I've asked naver.com in vain more about Bernanke, thinking naver.com may be number one search engine and portal in Korea, but what would it know about this less well-known chairman, who's not even a Korean.&lt;br /&gt;Well, naver.com does know, and Bernanke's got an impressive working history.  Oh, my...  Shame on me.&lt;br /&gt;&lt;br /&gt;I've got directed to all his publications, and teaching careers, and other stuffs.&lt;br /&gt;Well, I'm even ordering two of his books from Amazon as we speak.&lt;br /&gt;&lt;br /&gt;Would it teach me to know if Fed'll raise interest or not?  Would it teach me which stocks perform better or not?&lt;br /&gt;I doubt it.&lt;br /&gt;&lt;br /&gt;But it'd certainly get me a few more vocab. and concepts, with examples of how economist analyze past and current economic situations.  Maybe it'll also help me to make more informed judgement on this Greenspan-replacement that verdict is still out on.&lt;br /&gt;&lt;br /&gt;yawn, I certainly need another coffee.  Eh, 9:30am? it still feels like 6am to me...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114840203971657006?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114840203971657006/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114840203971657006' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114840203971657006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114840203971657006'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/05/learning-bernanke.html' title='learning Bernanke'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114719898854321097</id><published>2006-05-09T11:08:00.000-07:00</published><updated>2006-05-09T11:23:12.460-07:00</updated><title type='text'>I lost shoes and Hannan/Smith lost stick</title><content type='html'>Usually monday's the day after sunday, when people return to windowless office after a golden weekend to recover from weekend fun.&lt;br /&gt;&lt;br /&gt;With Sharks' domination on ice and win on sunday evening's game, and all other Cinco de Mayo celebration, not to mention beautiful weather to enjoy, there were much to recover from on monday, and I slumped all day.  Sleepy with headache that didn't get cured by espresso nor gym workout, nor work itself, I dragged my tired feet, cranky all day long.&lt;br /&gt;&lt;br /&gt;Then, there was 'monk fish stew with bean sprouts(A-goo-jjim)' dinner that was like super spicy, super hot, and super super a lot (ready to feed like 7 people?), that finally woke me up at 5:30pm.&lt;br /&gt;&lt;br /&gt;With my belly about to burst, eager to get to sharks tank on time, we rushed off from downtown SJ parking lot on San Pedro street, when my left thong lost balance, I tipped toward left, then the strap on my shoe broke lose.  *Agh*, not when I'm in a hurry to get some latte and get to sharks tank early enough to see any pre-game activities...&lt;br /&gt;&lt;br /&gt;Quick thinking Davem dragged me to nearby Walgreen, about 2 blocks down, and I got $5.99 slipper for the night.  Ouch!  How did I wear this when I was kid?  How do people wear this slipper with strap hurting in between toe so much?&lt;br /&gt;Heh, we were both in a hurry to get to sharks tank to join the rest of sharks buddies, and to get a glimps of players before the game started, so whatelse to do but to disrobe Davem of his somewhat-wet(???) socks and use it as buffer between my poor hurting feet and new pair of slipper.&lt;br /&gt;&lt;br /&gt;All that got made up in the game.  It was just exploding, endless entertainment, with  Joe finally scoring his first post-season goal, as well as seeing Ville continue with his wicked checks, and Kyle's flying butt check, which made him fly off the ice for a few split seconds.&lt;br /&gt;&lt;br /&gt;Two funniest things were a) Sharks on penalty kill for 5-3, where both Hannan and Smitty's stick broke and Kyle &amp; Toskala were only ones on ice with a full stick in hand.  OMG!  I don't know how did those guys, Scott Hannan, Mark Smith and Kyle McLaren, pulled that 40seconds.  I dearly wished I had a camcorder to capture the moment.  another silly/funny moment would be b) Oilers players were all off ice as 3rd period ended, and refs decided there's still 3 seconds remaining in the game, after Sharky came out with the flag, audiences did all the screaming, Sharks player ready to celebrate, and hardly any Oilers player were on ice.  All the Oilers player had to be brought back to ice for 3 seconds face-off, to be sent back to the lockerroom.  How silly.  &lt;br /&gt;&lt;br /&gt;Anyways, it was highly entertaining, and I'm sure many are sorry not to go to Edmonton to watch the game.  A funny line I picked up: Oilers -&gt; Soilers, heh maybe because they're farming country?  Someone had wrote that on paper used for rally.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114719898854321097?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114719898854321097/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114719898854321097' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114719898854321097'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114719898854321097'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/05/i-lost-shoes-and-hannansmith-lost.html' title='I lost shoes and Hannan/Smith lost stick'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114710570115660014</id><published>2006-05-08T09:23:00.000-07:00</published><updated>2006-05-08T09:28:21.156-07:00</updated><title type='text'>things that used to work...</title><content type='html'>flickr on mac used to create a set for me as I do batch upload of photos from iPhoto.  as of a few months ago, I've been waiting about a day or so and get irritated, stop the upload window, go to flickr website to create photo sets manually.  it was super cool that there's batch upload, and that on top of it i could create photoset of uploaded photos.  now that i'm spoiled with such feature, it not working is very annoying...&lt;br /&gt;&lt;br /&gt;what happened?  have no idea.  my mac is same mac, and i didn't hear anything about flickr's software changing to disable such feature.&lt;br /&gt;&lt;br /&gt;oh well...&lt;br /&gt;&lt;br /&gt;on the same note, i've sort of given up on 'chage time &amp; date' feature from blooger.com.&lt;br /&gt;saw someone else complaining about it on one of my mailinglist. huhu, glad it's not just me, but still baffles me.&lt;br /&gt;guess neither of us will get to the bottom of it, as there's not really a customer support for it.  &lt;br /&gt;it works on freebsd 4.x with mozilla 1.7x, but not on windows, mac or linux, with IE, safari, mozilla, ...&lt;br /&gt;i can live with it for now.&lt;br /&gt;&lt;br /&gt;hmm... what else is broken out there? must be plenty...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114710570115660014?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114710570115660014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114710570115660014' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114710570115660014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114710570115660014'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/05/things-that-used-to-work.html' title='things that used to work...'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114710537913795949</id><published>2006-05-08T09:19:00.000-07:00</published><updated>2006-05-08T09:23:01.860-07:00</updated><title type='text'>blogging, blog spams, RSS and advertising online</title><content type='html'>Had to delete yet another annoying blog spam, advertising online diploma.&lt;br /&gt;tsk, tsk...&lt;br /&gt;&lt;br /&gt;I've been meaning to just use RSS feed to collect all the news from different publishers and blogs.&lt;br /&gt; &lt;br /&gt;but, alas, then what about the click-rate on webpage/blogs?&lt;br /&gt;that made me wonder.  Many techie companies that offer RSS feed also offer advertisement banner display as well.  so how do they plan to generate revenue?&lt;br /&gt;&lt;br /&gt;well, i guess business folks at those company have ways to get around it?&lt;br /&gt;&lt;br /&gt;that's way above and beyond me!&lt;br /&gt;&lt;br /&gt;nonetheless, i'm curious.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114710537913795949?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114710537913795949/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114710537913795949' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114710537913795949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114710537913795949'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/05/blogging-blog-spams-rss-and.html' title='blogging, blog spams, RSS and advertising online'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114650210796816724</id><published>2006-05-01T09:41:00.000-07:00</published><updated>2006-05-01T09:48:29.833-07:00</updated><title type='text'>cloning superman</title><content type='html'>back in '90s there was a tv show 'lois &amp; clark: new adventure', a spin-off story of superman.&lt;br /&gt;&lt;br /&gt;one of key thing that was happening in the show was that the villan constantly try to find a weakness of superman, challenge superman, or clone superman as his own slave.&lt;br /&gt;&lt;br /&gt;obtainig of superman's hair for DNA sample for cloning was a big deal, and a lock of hair was displaed in a vacuum glass tube before the experiment begins.&lt;br /&gt;&lt;br /&gt;what a joke... haha.&lt;br /&gt;&lt;br /&gt;after vaccuming the house just a few days ago, i was attacked by more of hair blobs in livingroom and bathroom and resorted myself to use lint remover, to chase down about 2 handful of hair, maybe some 200 strains of hair locks?&lt;br /&gt;&lt;br /&gt;does this mean i get to clone about 200 of me easily? yike...&lt;br /&gt;&lt;br /&gt;that was a funny thought.&lt;br /&gt;&lt;br /&gt;amazing i still have not gone bald yet, at the rate so much hair falls off and float around the house.  &lt;br /&gt;&lt;br /&gt;don't really see why villan in superman made such fuss getting a lock of hair, seeing how so much hair do fall out everyday as is, annoying me to no end.&lt;br /&gt;&lt;br /&gt;oh boy, can't wait to go home so i can chase down more of hair, to dream up cloning and to conquer the world...  well, assuming i'm as invincible as superman ever was, that is. heh.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114650210796816724?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114650210796816724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114650210796816724' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114650210796816724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114650210796816724'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/05/cloning-superman.html' title='cloning superman'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114643996212618537</id><published>2006-04-30T16:27:00.000-07:00</published><updated>2006-04-30T16:32:42.170-07:00</updated><title type='text'>human floor sweeper powered by kidney stone</title><content type='html'>phew, what sunday!&lt;br /&gt;&lt;br /&gt;davem had yet another kidney stone attack, equally as painful as was last friday's.&lt;br /&gt;&lt;br /&gt;i got to read up on some blogs and websites to learn what it is, and what the effects are, and basically pain is often compared to women in labor, and is said relatively harmless. hmm... i thought i didn't like labor pain, but i certain don't approve of it now.&lt;br /&gt;&lt;br /&gt;he was in no mood for a joke, but i did tell him i'd not have swept floor if i'd known he'd go sweeping floor with his hands and knee the way he's been crawling around.&lt;br /&gt;&lt;br /&gt;oh well, bad bad me....  &lt;br /&gt;&lt;br /&gt;reminder to myself to drink more water.  ^^ run to restrooms are much more pleasant than runs to ER.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114643996212618537?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114643996212618537/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114643996212618537' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114643996212618537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114643996212618537'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/human-floor-sweeper-powered-by-kidney.html' title='human floor sweeper powered by kidney stone'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114624516263855304</id><published>2006-04-28T10:11:00.000-07:00</published><updated>2006-04-28T10:26:02.743-07:00</updated><title type='text'>hat trick for marleau</title><content type='html'>tuesday and thursday have been busy, with sharks playoff game western division quarter finals against Nashiville Predators.  waking up friday morning against 6am alarm was close to impossible, after the game ending at 10:20pm and a ride home to arrive at 11:30pm, to check emails, soup in kitchen and all, to go to sleep around 12:30am.&lt;br /&gt;&lt;br /&gt;still, the good vibe and energy is good.&lt;br /&gt;&lt;br /&gt;i guess that's what keeps Sharks play hard and tough, against the injuries and being tired.&lt;br /&gt;&lt;br /&gt;listening to Jack Johnson's soothing music or Louis Armstrong's golden jazz, and trying a few easy yoga breathing and stretching, friday may just make out ok, now that Sharks are on the gun to get near that Stanley cups.&lt;br /&gt;&lt;br /&gt;pretty inspiring.&lt;br /&gt;&lt;br /&gt;was quiet busy at sharks tank, juggling the white towel to wave, foamy hand, and cheechoo whistle to blow, not to mention my small digicam to record the event.  4 items and only two hands, yet I didn't complain at all.  Loud fans, cranky fans, crying babies, all are alright when we're on a winning streaks.&lt;br /&gt;&lt;br /&gt;Marleau got himself 3rd playoff hat tricks in 3rd period, and of course I abandoned 4 items on my both hands to fetch a hat from pocket to throw at ice myself.  I doubt mine made it all the way to the ice, but that's also alright.&lt;br /&gt;&lt;br /&gt;The feeling that you're in a winning team, and you're contributing and also improving your own skill is a nice feeling.  heh, I wish my life and work was like that, too.&lt;br /&gt;&lt;br /&gt;Pretty inspiring.&lt;br /&gt;&lt;br /&gt;Joe and other team mates were also very enthusiastic about Marleau's scoring cannon gun performances.&lt;br /&gt;&lt;br /&gt;Maybe Nabby also is positive and is enthusiastic, instead of being bitter to be out of playoff workout?&lt;br /&gt;&lt;br /&gt;Don't see some of old timers and my favourites, such as Fahey and Parker, but maybe they're happy to be in a winning team?&lt;br /&gt;&lt;br /&gt;Since Joe showed up last November, Marleau's position as leading scoring player and captain's position has been a bit unstable.  All media and fan attentions shifted greatly toward Joe &amp; Cheechoo combo.  &lt;br /&gt;&lt;br /&gt;It's nice Marleau got to work through those dramatic situations, and it's nice to see how Sharks as a team, and Wilson as coach handle what could be an ugly situation into a solid team.  Yay, Rissmiller for staying in NHL and scoring playoff goal (as vs. to being sent back to Cleveland), and horray for the lead singer of talking tree with bleeched peacock streaks (Mark Smith).&lt;br /&gt;&lt;br /&gt;It is confusing about the tough and unstable position one retains in major league sports team, as one get rewarded and punished with number of games playing, minutes on ice, and to be on 1st line, 2nd line, or being pushed to 3rd or 4th, and worse yet, being sent to minor league or being traded, and this also is true in any other professions.  &lt;br /&gt;&lt;br /&gt;Sharks, and captain Marleau's handling what could be stressful situation and not acting out like a diva is impressive and something I think I can learn from.&lt;br /&gt;&lt;br /&gt;Focus on what's important!  For hockey players, being on ice and being in the game, I guess.  For me? heh....  &lt;br /&gt;&lt;br /&gt;hat trick for Marleau!  and, we're going to get Stanley cups... Back to chinatown to buy more cheap hats ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114624516263855304?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114624516263855304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114624516263855304' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114624516263855304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114624516263855304'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/hat-trick-for-marleau.html' title='hat trick for marleau'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114583834128847070</id><published>2006-04-23T17:21:00.000-07:00</published><updated>2006-04-23T17:25:41.300-07:00</updated><title type='text'>yoga for yogi me</title><content type='html'>dang!&lt;br /&gt;&lt;br /&gt;when was last time i got this many hours sleep?&lt;br /&gt;went to sleep around 1am, and though woke up a few times for water and bathroom, i barely got up at 11:30am.&lt;br /&gt;that's like more than 10hrs.&lt;br /&gt;hmm....&lt;br /&gt;&lt;br /&gt;with some feet massage, and lots of sleep, it does feel pretty good, no headache, no pain in feet or elsewhere.&lt;br /&gt;&lt;br /&gt;yawn~~~&lt;br /&gt;&lt;br /&gt;while watching hockey on laptop, i did some stretching, put legs together and press my upper body down to get stretching on leg and back.  i actually felt the pain on my left foot ball, which i guess is a good thing.&lt;br /&gt;&lt;br /&gt;my feet feel pretty light, and veins don't pop out so much.&lt;br /&gt;&lt;br /&gt;i've been told to checkout yoga so often, and went to my sister's yoga session a few times.  stiff as a corpse is the verdict.&lt;br /&gt;&lt;br /&gt;maybe i'll have to checkout some yoga steps, for my feet, and stiff spine.  &lt;br /&gt;&lt;br /&gt;a mid-year new-year's resolution? maybe.  should try to keep it going more than just 3 days, tho.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114583834128847070?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114583834128847070/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114583834128847070' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114583834128847070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114583834128847070'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/yoga-for-yogi-me.html' title='yoga for yogi me'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114577169075123820</id><published>2006-04-22T22:47:00.000-07:00</published><updated>2006-04-22T22:54:50.760-07:00</updated><title type='text'>paypal phishing scam</title><content type='html'>if i didn't hear much about it, i'd have been fooled.  not on april fool's day, and not a fool, i avoided giving my info on false email notification.&lt;br /&gt;&lt;br /&gt;on my yahoo mail i got notification from paypal saying i paid for someone's cell phone for some $300.&lt;br /&gt;&lt;br /&gt;having had a problem with credit card theft, i panicked for a second, and clicked on the 'repute the payment' link and started typing in my login info.  oops, i hope this isn't too much of a problem, but i did login.  would my login be used against other phishing scheme? omg...&lt;br /&gt;&lt;br /&gt;but i did think twice and stopped putting in my address, email and credit card information.&lt;br /&gt;&lt;br /&gt;thank god, twice over.&lt;br /&gt;&lt;br /&gt;i exited the program, went to paypal website to login, and check my account. no activity within past few days.  phew...&lt;br /&gt;&lt;br /&gt;so, there wasn't any false charge on my credit card through paypal.&lt;br /&gt;&lt;br /&gt;it's so tricky, so authentic looking.  i hope it doesn't happen to too many folks, and i hope not too many people get tricked by it.&lt;br /&gt;&lt;br /&gt;wonder when will we be free of these scary phishing schemes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114577169075123820?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114577169075123820/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114577169075123820' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114577169075123820'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114577169075123820'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/paypal-phishing-scam.html' title='paypal phishing scam'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114547539013048622</id><published>2006-04-19T12:30:00.000-07:00</published><updated>2006-04-19T12:36:30.186-07:00</updated><title type='text'>innovate, innovate and invent</title><content type='html'>more and more vc(venture capitalists) and more ipo of startup news are looming.&lt;br /&gt;and jobless rate hit low enough to give somewhat of a boost to sagging economy/stock market.&lt;br /&gt;&lt;br /&gt;recently i joked about my 2 possible patent ideas, and enjoyed a good laugh.&lt;br /&gt;&lt;br /&gt;first was setting a timer/clock on hair setter, which is already in use though not so visible to someone like me.  2nd is having ipod battery to be rechargeable/swappable(like many cell phone batteries are), which i was told would already be patented and well known to apple.&lt;br /&gt;&lt;br /&gt;hmmm...&lt;br /&gt;&lt;br /&gt;and, there are a few ajax classes posted on mailinglist, with a few good url references.&lt;br /&gt;&lt;br /&gt;it's almost like being back in 1999 or 2000, for both valley and for me personally.&lt;br /&gt;&lt;br /&gt;what is latest thing? what can be innovated? ... and so on...&lt;br /&gt;&lt;br /&gt;of course, i know my own limit, but it sure is good to have some things to learn about, and new ideas to put to the test.&lt;br /&gt;&lt;br /&gt;so what else is out there that seem new and upcoming other than ajax?  i will have to keep my eyes peeled and ears open and watch out for the neew wave.  wow, am i learning to surf? hoho...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114547539013048622?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114547539013048622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114547539013048622' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114547539013048622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114547539013048622'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/innovate-innovate-and-invent.html' title='innovate, innovate and invent'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114507159982131149</id><published>2006-04-14T20:13:00.000-07:00</published><updated>2006-04-14T20:26:39.896-07:00</updated><title type='text'>tgif for dr.ganji</title><content type='html'>phew...&lt;br /&gt;a 15min checkup and pickup of invisialign guard turned into more than 2hrs of work.&lt;br /&gt;&lt;br /&gt;about 2-3 weeks ago i went in and did impression for invisialign guard stuff and was given a call/appointment to pick it up.  &lt;br /&gt;&lt;br /&gt;oh well, after bragging to coworkers and friends, it was a slight disappointment to hear that the last impression wasn't really good and that I need to get new one done.&lt;br /&gt;&lt;br /&gt;seeing how Dr. Ganji was busy as is, that was fine, it's friday afternoon and there's not much to be worried about at the office(which turned out to be not so true upon arriving back to laptop full of emails and IM messages), I sat down and played along.&lt;br /&gt;&lt;br /&gt;the first time, the tray wouldn't go in.  my mouth wouldn't open as wide.  so tried smaller one, and now it's hitting my jaw muscles too tight and wouldn't get a good impression.  so after playing for a while, he finally poured in the colorful molds that would harden in my mouth to get teeth impression.&lt;br /&gt;&lt;br /&gt;it took almost 2hrs and about 3 tries for top and about 5-6 tries for bottom trays.  of course edge of my lips are sore, with all that tearing. heh.  prepping the tray, sticking in my mouth for 5 minutes, cranking it out and take a look, some frown then try yet different size &amp; shape of tray.  then, repeat the process all over again.  &lt;br /&gt;&lt;br /&gt;it surely was exhausting process.  i was starting to fall asleep in that 5min of mold curing, and I was suprirsed tht Dr. Ganji and his assistant wouldn't lose temper over it. heh.  the very last of bottom tray was a pleasant surprise.  we've both given up the hope by then and were more than wiling to go through the next round of setting up the tray and sticking it in to my mouth.  &lt;br /&gt;what a save...&lt;br /&gt;i had to offer him 'congratulations' on his long awaited success.&lt;br /&gt;we even had some discussion about shape and depth of my teeth arch and how jaw is laid and its muscles affect the setup.&lt;br /&gt;&lt;br /&gt;tgif, tgif, i wouldn't be surprised if he goes home to get some cocktail to wash out that headachesome 2hrs.&lt;br /&gt;&lt;br /&gt;in another 4 weeks, i'll get to see my invisialign guard.  for sure, this time.  ^^ &lt;br /&gt;&lt;br /&gt;tgif for me, too, i guess.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114507159982131149?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114507159982131149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114507159982131149' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114507159982131149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114507159982131149'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/tgif-for-drganji.html' title='tgif for dr.ganji'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114504700456794959</id><published>2006-04-14T13:32:00.000-07:00</published><updated>2006-04-14T13:36:44.576-07:00</updated><title type='text'>tsk,tsk, on  Yahoo's Amazing Disappearing Mail Servers</title><content type='html'>slashdot's 4/13/06 article, http://slashdot.org/article.pl?sid=06/04/13/1949236, featured "Yahoo's Amazing Disappearing Mail Servers".&lt;br /&gt;&lt;br /&gt;with upcoming 4/18/06 earning report, this makes me ponder which news is more pertinant to decide the future of yahoo.&lt;br /&gt;&lt;br /&gt;the article title is catchy, and is also fairly to the point.&lt;br /&gt;&lt;br /&gt;i've seen complaints on local groups mailinglist as well as have experienced myself some troubles with my y!mail.  but, it's different when seeing on slashdot with wide audiences.&lt;br /&gt;&lt;br /&gt;will y!mail kick back and make a come-back the way sharks did?&lt;br /&gt;&lt;br /&gt;i've been keeping my y!mail since haydays of '97 when i was still living at home w/ mom&amp;dad. &lt;br /&gt;&lt;br /&gt;oh well, let's see what candygram would do for y!mail.  (tho... personally i'm a chicken and would wait for a while 'til i switch over to candygram myself).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114504700456794959?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114504700456794959/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114504700456794959' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114504700456794959'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114504700456794959'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/tsktsk-on-yahoos-amazing-disappearing.html' title='tsk,tsk, on  Yahoo&apos;s Amazing Disappearing Mail Servers'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114488122271509005</id><published>2006-04-12T15:30:00.000-07:00</published><updated>2006-04-12T15:33:42.726-07:00</updated><title type='text'>emacs still puzzles me much, especially for multiple buffer works</title><content type='html'>had some 200 html files to edit, for a simple cut&amp;paste image url redirect.&lt;br /&gt;some simple html editor like homesite had no problem handling it, when I had to use it at one of the previous work.&lt;br /&gt;&lt;br /&gt;i know how to open up multiple buffers/windows in emacs, and i know how to do replace-string in a given buffer.  the problem is i wanted to do it on all 200 files/buffers without having to go through all 200+ html files.&lt;br /&gt;&lt;br /&gt;after a few meager attempts and fanatically looking up online references, I ended up relying on some 10-15lines of perl to slurp up file names from directory and do regex replace.&lt;br /&gt;&lt;br /&gt;I've grown so used to using emacs, and yet sometimes it annoys me I can't seem to do a simple task like that.&lt;br /&gt;&lt;br /&gt;too profound for me, yet, i guess.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114488122271509005?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114488122271509005/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114488122271509005' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114488122271509005'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114488122271509005'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/emacs-still-puzzles-me-much-especially.html' title='emacs still puzzles me much, especially for multiple buffer works'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114484990650710438</id><published>2006-04-12T06:47:00.000-07:00</published><updated>2006-04-12T06:51:46.523-07:00</updated><title type='text'>rain continues to pour and sharks on 6th spot for final play off</title><content type='html'>i got so used to warm dry winter earlier the year that wearing sweather makes my arm itchy.&lt;br /&gt;yike.&lt;br /&gt;sky must have a big hole in it, cuz how else would one explain this pour after pour of rain?&lt;br /&gt;&lt;br /&gt;can't believe it's April, well about half way into April, too.&lt;br /&gt;&lt;br /&gt;but sj sharks' success in conquering final play off spot, 8th of western division, and continue march toward to do better is awesome.  they have some 3-4 plays left until the season is over, and it seems like they'll be in final play off for sure.  seeing how they were on the bottom of standing earlier the season, and was having roller coaster ride up and down the chart, i was a bit worried.&lt;br /&gt;yay! sharks...&lt;br /&gt;maybe cheering for sharks in the shark tank will make the rainstorm oblivious.&lt;br /&gt;but i do home it stops before may and june comes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114484990650710438?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114484990650710438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114484990650710438' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114484990650710438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114484990650710438'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/rain-continues-to-pour-and-sharks-on.html' title='rain continues to pour and sharks on 6th spot for final play off'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114417214144379768</id><published>2006-04-04T10:21:00.000-07:00</published><updated>2006-04-04T10:35:41.690-07:00</updated><title type='text'>rock&amp;roll  and price of fame</title><content type='html'>it's April 4th already, and it'a raining hard as if it's back in November.&lt;br /&gt;pouring, pouring, until my paper-bag I brought lunch in is soaked through.&lt;br /&gt;&lt;br /&gt;music keeps me entertained, tho.  &lt;br /&gt;&lt;br /&gt;I have to admit that one of recent album 'Monkey Business' is mildly amusing.  And, of course if one goes to Sharks game as much as I have done past few years, one can't miss  the players' mp3 player displayed during game intermission as an advertisement.  Be it a heavy fighter Scott Thornton or responsible captain Marleau, the singing group 'Social Distortion' frequents the list.  Huhu, monkey business toward social distortion...&lt;br /&gt;&lt;br /&gt;ah! my 20gig ipod is getting fat and may soon run out of space, now that i'm adding some coldplay, miles davis and les miserable as well as some random 80s pop to my mp3 collections as well.&lt;br /&gt;&lt;br /&gt;Bar-roid, that's what SJ Mercury's reporting one of fan sitting near 1st base made the sign of, to imply Barry's usage of Steroid: Barry + Steroid = Bar-roid.&lt;br /&gt;&lt;br /&gt;sigh...&lt;br /&gt;&lt;br /&gt;too much time spent on it. too much money spent on it.  too much energy wasted on it.&lt;br /&gt;&lt;br /&gt;of course players shouldn't reply on performance boosting steroid, for honesty as well as for health reason.  but, why are we so obsessed with scandals of famous people?&lt;br /&gt;&lt;br /&gt;sports world do seem about as cruel and harsh as political or world of hollywood.&lt;br /&gt;for the sake of game, coach Wilson makes some inhumane sacrifice at times when picking players, such as not letting Boston native Jim Fahey playing at a game against Bruins in Boston to let another rookie play.  Or letting Pat Rissmiller play means putting Grant Stevenson out of play.&lt;br /&gt;&lt;br /&gt;Oh well, let rock&amp;roll play and just get another day rolling...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114417214144379768?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114417214144379768/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114417214144379768' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114417214144379768'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114417214144379768'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/rockroll-and-price-of-fame.html' title='rock&amp;roll  and price of fame'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114391167253020092</id><published>2006-04-01T09:10:00.000-08:00</published><updated>2006-04-01T14:23:23.273-08:00</updated><title type='text'>mac mini conversion progress</title><content type='html'>so following OnMac.net Wiki,&lt;br /&gt;1st: enter Mac OS X install disk as was instructed&lt;br /&gt;then: reboot with C down. that was tricky.  tried with Ctrl key down and it didn't do nothing. &lt;br /&gt;so tried again with letter 'c' down and it takes me to mac boot up window&lt;br /&gt;&lt;br /&gt;2nd:as instructed, after the language selection, i didn't see 'Utilities-&gt;Disk Utilities' and had to wonder a bit. it turns out that 'Utilities' is one of windows option on top left corner with pulldown where I could select 'Disk Utilities'.&lt;br /&gt;&lt;br /&gt;3rd: clicking on split button, and format available includes 'unix' so i created 2 split partition and click on 'partition' button to get the partitions of disk formatted correctly.  so far so good.&lt;br /&gt;&lt;br /&gt;--------------------------------------------&lt;br /&gt;&lt;br /&gt;ok, partitioning is done.&lt;br /&gt;&lt;br /&gt;now, i have to search for a new reference for loading linux boot loader, instead of winXP's xom.efi.&lt;br /&gt;here's reference i found: http://www.redhat.com/magazine/007may05/features/mac-mini/&lt;br /&gt;&lt;br /&gt;----------------------------------------------&lt;br /&gt;&lt;br /&gt;ok, the above page is for old mac mini, for ppc architecture...&lt;br /&gt;phew...&lt;br /&gt;&lt;br /&gt;so, more retries with boots, and it fails.  for about 10 times straight. tried fedora core for i386 CDs, fedora core for i386 DVD,  rescue CD, and more, and I'm getting no where.&lt;br /&gt;I even retried putting in Mac OS X DVD which boots for install, so there's nothing wrong with pressing 'c'.&lt;br /&gt;&lt;br /&gt;i dived back to reference look up, and here they're:&lt;br /&gt;http://www.osxbook.com/book/bonus/misc/linux/&lt;br /&gt;and&lt;br /&gt;http://www.mactel-linux.org/wiki/Main_Page&lt;br /&gt;&lt;br /&gt;these are the guys who actually succeed installing linux on intel-based mac.&lt;br /&gt;&lt;br /&gt;so, it's my turn to mimic them.&lt;br /&gt;&lt;br /&gt;wish me luck!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114391167253020092?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114391167253020092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114391167253020092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114391167253020092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114391167253020092'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/04/mac-mini-conversion-progress.html' title='mac mini conversion progress'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114383621114252014</id><published>2006-03-31T12:15:00.000-08:00</published><updated>2006-03-31T12:16:51.153-08:00</updated><title type='text'>awesome wiki</title><content type='html'>i was pretty surprised to read http://wiki.onmac.net/index.php/HOWTO&lt;br /&gt;wiki on installing non-macOS on mac mini already?&lt;br /&gt;&lt;br /&gt;there are some downside to this web2.0 stuffs, for example if i was to accidentally lose 50page worth blog or email before clicking submit/send button.&lt;br /&gt;&lt;br /&gt;but, it grows much better than weeds, just awesome.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114383621114252014?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114383621114252014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114383621114252014' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114383621114252014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114383621114252014'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/03/awesome-wiki.html' title='awesome wiki'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114383454883104164</id><published>2006-03-31T11:44:00.000-08:00</published><updated>2006-03-31T11:49:08.846-08:00</updated><title type='text'>five fingers and five toes</title><content type='html'>this is last note from mac mini core duo before the surgery.&lt;br /&gt;&lt;br /&gt;counted and see that it works fine for past 3+weeks, so i give blessing to get dual boot with fedora core.&lt;br /&gt;&lt;br /&gt;ironically, but not surprisingly, it was my sister's birthday yesterday.  &lt;br /&gt;&lt;br /&gt;many events to celebrate. ^^&lt;br /&gt;&lt;br /&gt;so, dr. frankensteine is at work and we'll see what happens to mac mini.&lt;br /&gt;&lt;br /&gt;with 2gig memory and 100gig disk space, it should handle the dual installation without any problem, is the assumption.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114383454883104164?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114383454883104164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114383454883104164' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114383454883104164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114383454883104164'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/03/five-fingers-and-five-toes.html' title='five fingers and five toes'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114366183061922003</id><published>2006-03-29T11:45:00.000-08:00</published><updated>2006-03-29T11:50:30.633-08:00</updated><title type='text'>should search music share blog</title><content type='html'>annual big event, my sister's birthday, is coming up soon.&lt;br /&gt;would make a silly april fools or painful tax filing deadline forgetful, heh.&lt;br /&gt;&lt;br /&gt;can't get her a home baked cakes but, i did think hard &amp; long to get her something she might find useful.&lt;br /&gt;&lt;br /&gt;afterward, as I'm listening to some manhattan jazz &amp; 80s' music, in particular AHA's "Take On Me" i wish i could send her these for her birthday as well.  but then again, i'll spend forever at mailroom, huhu.&lt;br /&gt;&lt;br /&gt;maybe there's some music share site w/ privacy i can get both of us signed up to share music.  with all these legal issues against music download sites from music industry, one can never be careful.  but, i will have to make time to investigate, so i wouldn't have to worry about mailmen breaking cd i compile. ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114366183061922003?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114366183061922003/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114366183061922003' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114366183061922003'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114366183061922003'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/03/should-search-music-share-blog.html' title='should search music share blog'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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-8175480.post-114298648396689582</id><published>2006-03-21T16:04:00.000-08:00</published><updated>2006-03-21T16:14:43.976-08:00</updated><title type='text'>sony vaio x505, ready for trips</title><content type='html'>when i got it 2 christmas ago, vaio x505 came with winXP and since then, it's been home to fedora core 3, soon to be upgraded to newly released fedora core 5.&lt;br /&gt;&lt;br /&gt;for the longest time, through my lazyness and ignorance, the thin laptop wasn't able to play any video clips, which frustrated me to take it to daily commutes from sf to south bay, nor to long flights across continent to some conferences.&lt;br /&gt;&lt;br /&gt;last week, i finally put my foot down, and spent some time, trial &amp; erro method with reading up articles online.&lt;br /&gt;&lt;br /&gt;after a few attempts, i became more familiar with reading for audio devices from /dev, or from lsmod, and what audio card came with vaio as pcmcia. i've also tried creating the audio user &amp; group, most likely in redundancy, and downloaded a few tools including alsa-mixer, tried to recompile audio kernel modules for latest kernel installed on the laptop.&lt;br /&gt;&lt;br /&gt;recompiling or creating user/group were not necessary, and lsmod/dmesg and reading through log indicates that device is located properly.  some gnome problem to get the sound volume control, or any audio/video tools to open up got fixed.  everything seem fine, and i can open mplayer for video output, but no sound.&lt;br /&gt;&lt;br /&gt;i've tried to launch alsa-mixer as was mentioned on some online articles, to no avail.&lt;br /&gt;&lt;br /&gt;finally i ran into http://www.csanyi.net/wiki/space/x505+linux+install today, and it just was matter of turning on or off external amplifier or headphone using checkbox. hehe.&lt;br /&gt;&lt;br /&gt;now i'm set for daily commutes &amp; long drive/flights.&lt;br /&gt;&lt;br /&gt;still left homeworks are AVI conversion to MPEG and DVD burning on mac.&lt;br /&gt;&lt;br /&gt;and, setting up mac mini for the best usage.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8175480-114298648396689582?l=speattle.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://speattle.blogspot.com/feeds/114298648396689582/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8175480&amp;postID=114298648396689582' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114298648396689582'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8175480/posts/default/114298648396689582'/><link rel='alternate' type='text/html' href='http://speattle.blogspot.com/2006/03/sony-vaio-x505-ready-for-trips.html' title='sony vaio x505, ready for trips'/><author><name>speattle</name><uri>http://www.blogger.com/profile/15782456568510451112</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>
