Hunter Hill 2006 Vintage Port, Amador County
December 26th, 2008 Phanix
Read the rest of this entry / 繼續閱讀 »

Read the rest of this entry / 繼續閱讀 »
既然都有誤斬忠良的時候… 那 extract html text content 還是用 regular expression 好了,然後再特殊處理一下 <script> 和 <style>…
int i, j;
i = tb1.Text.ToLower().IndexOf("<script");
while (i >= 0)
{
j = tb1.Text.ToLower().IndexOf("</script>", i);
tb1.Text = tb1.Text.Substring(0, i) + tb1.Text.Substring(j + 9);
i = tb1.Text.ToLower().IndexOf("<script");
}
i = tb1.Text.ToLower().IndexOf("<style");
while (i >= 0)
{
j = tb1.Text.ToLower().IndexOf("</style>", i);
tb1.Text = tb1.Text.Substring(0, i) + tb1.Text.Substring(j + 8);
i = tb1.Text.ToLower().IndexOf("<style");
}
tb1.Text = Regex.Replace(tb1.Text, "<[^>]*>", " ");
前一陣子假借冬天來臨的藉口買了一些酒回來,然後最近先開了四瓶 Cabernet Sauvignon 來喝,就順便來記錄一下飲用心得。
*飲酒過量有礙身體健康*未成年請勿飲酒*
Read the rest of this entry / 繼續閱讀 »

這張照片在今天堂堂進入 100+ favs 俱樂部,也是第一張。(下一張不曉得要等到民國幾年才有了 zzz)
這張照片的歷史紀錄:
2008/9/14: 3000+ views
2007/11/10: Strike to the end of “Top 20 Travel” (很遺憾的這個 group 後來不曉得為什麼關了,覺得還不錯的說)
2007/10/25: 50+ favs
剛剛在 youtube 上亂看東西的時候點到了一首日文歌 — “祭りのあと”,我不知道歌曲的意思,不過卻被畫面給深深吸引,這些照片都好有日本味道啊!
接續前一篇。
*未成年請勿飲酒*飲酒過多有礙身體健康*
Read the rest of this entry / 繼續閱讀 »