TOROS鮮切牛排


(官方網站)

看過maverick所介紹的 Toros 鮮切牛排 ,愛吃的Jenny每天都吵著要吃大塊的牛肉,於是昨天晚上陪Jenny去板橋遠百樓上的分店吃吃看。恰巧昨天是Jenny的媽媽大壽(其實是今天~),所以一起去那邊嘗鮮一下。由於沒有帶相機,我再這裡整理一些自己去吃的心得:

  1. 東西精緻好吃: 餐前麵包是剛烤出來的,每個醬汁也都是又精美又好吃。份量也相當足夠~~~
  2. 室內裝潢乾淨: 整個餐廳用暖色系,讓客人來的時候有種輕鬆、回到家裡的感覺。
  3. 服務生訓練優良: 點完菜後,每次上菜服務生可以精準的送達,我相信這是很簡單的,但是我之前在餐飲業打工的經驗,這也是需要相當的訓練。
  4. 令人開心的驚喜: 昨天吃飯前是Jenny定位的,服務生也貼心的詢問是不是有特別的活動(生日、或是約會),在大家吃完飯的時候,服務生全部神秘的走道我們的前方,對著Jenny的媽媽唱起了生日快樂歌~ 這真的是很細心~~ 還附上費太太的生日蛋糕~~ 真是吃到又賺到。

有興趣的去官方網站看看吧~~~

一張卡片夢想無窮阿~~

Lambeosaurus
(圖片來源: BeerBSD’s Blog)

我每次都被Jenny 說像個長不大的小孩,往往在百貨公司逛街的時候,我就會駐足在兒童遊樂區許久。細細品味(應該是_ 研究當今社會玩具對於孩子成長之關係 _ ^__^)。有一天~~我忘記是經過哪個百貨公司了,在兒童玩具部門的地方,看到一群小孩子在排隊,好奇心(殺死一隻貓?)的驅使,往前去看看~~~ 就看到了以下的機台。


(照片來源: SEGA育樂股份有限公司)

這種機台呢~~ 就是只要你去買他們的卡片(上面有磁條),透過刷磁條的方式,就可以利用卡片上面的怪獸(甲蟲)來作戰~~所以就看到一群小孩子在對打、購買卡片~~~讓我想起來~似乎在我家也有類似的卡片遊戲 (魔法風雲會)~~

不過這種遊戲倒是複雜多了~~而且也顯難做成機台來遊戲(規則太多~~~)。

相較之下~ 日本的機台倒是相當的勇猛~~

![](http://www.sangokushi-taisen.com/image/kihon_p10.gif) ![](http://www.sangokushi-taisen.com/image/kihon_p11.gif) ![](http://www.sangokushi-taisen.com/image/kihon_p12.gif)

(照片來源: 三國志大戰2公式

這個遊戲倒是猛多了~~ 不但有畫面顯示~ 你的卡片還有陣勢的差別~~ 看起來就是好玩相當~~  不知道台灣有沒有說~~~

How to use KEY in xslt

W3C

I think XML is a very simple storage medium that you can save and query in it. But all data is storage as a tree node in the XML. In this case, it can very simple to save hierarchy data structure. But how to handle it you have reference item?

Just use key in your XML code. For more detail please refer the sample as follow:

t1.xslt

<?xml version=”1.0” encoding=”UTF-8”?>

--------------------------------------------------------------------------------- Result --------------------------------------------------------------------------------- <item ID=" " refID=" "> <name> </name> <adress> </adress> </item>

x1.xml

J. Smith Taipei, Taiwan R. Paul TAIWAN, SA E. Rock CA, US

Result

<?xml version=”1.0” encoding=”utf-8”?>

J. Smith Taipei, Taiwan R. Paul TAIWAN, SA E. Rock CA, US --------------------------------------------------------------------------------- Result --------------------------------------------------------------------------------- E. Rock CA, US R. Paul TAIWAN, SA E. Rock CA, US J. Smith Taipei, Taiwan

如何使用BT


(圖片: PCHome)

BT大概是近幾年最受歡的的下載技術了,而軟體BitComet也是最好用的軟體之ㄧ,要下載請到PCHome。一些相關網頁整理如下:

  1. BITCOMET下載網頁
  2. BITCOMET教學
  3. BitComet參數設置詳解
  4. BitComet設定攻略
  5. BitComet提速教程
  6. 害怕BT傷硬碟的都進來看看吧!

Runtime to start/stop another window sevice

WindowsService (WinCE).JPG 

Except to set the dependency of services in SCM(Service Control Manager). You have another way to make sure some services can run before your application (serivce).

Use StartService to start a Window Service

Please note as follow:

  1. If the service already start, it will return FALSE.
  2. The function will return if the Windows Service is in running status (maybe needs 30sec atmost) or failed.

For more detail, please refer MSDN. Refer the sample code.

 SC_HANDLE serviceControlManager = OpenSCManager(0, 0, SC_MANAGER_CONNECT);  SC_HANDLE service; > >  if (serviceControlManager)   {   service = OpenService(serviceControlManager,          "SERVICE_NAME",          SERVICE_START | SERVICE_QUERY_STATUS | DELETE); // Make sure you have the privilege of SERVICE_START. > >   if (service)    {    if (StartService(service, 0, NULL))     {     // Services already startup successes.     }    else     {     DWORD dwLastError = GetLastError();     if (dwLastError == ERROR_SERVICE_ALREADY_RUNNING)      {      //Services already started      }     else      {      //Service can not start.      hr = E_FAIL;      return;      }     }    } > >

Use ControlService to stop Windows Services

You may think it may have a function StopService to stop serivce. Unfortunately, you have use CotrolService to do that. Please refer the sample code for more detail.

SC_HANDLE serviceControlManager = OpenSCManager(0, 0, SC_MANAGER_CONNECT);  SC_HANDLE service; > >  if (serviceControlManager)   {   service = OpenService(serviceControlManager,          "SERVICE_NAME",          SERVICE_STOP | SERVICE_QUERY_STATUS | DELETE); // Make sure you have the privilege of SERVICE_STOP. > >   if (service)    {    SERVICE_STATUS serviceStatus;    QueryServiceStatus( service, &serviceStatus ); > >    if (serviceStatus.dwCurrentState != SERVICE_STOPPED)     {     if (! ControlService(service,    // handle to service           SERVICE_CONTROL_STOP,  // control value to send           &serviceStatus) )  // address of status info       {       // ControlService failed        }     }    }   }  > >

原來MYSQL4.0X不是unicode

MySQL

最近由於想架設一個DKP網站,才知道自己主機的MySQL 的版本竟然太舊而無法support unicode的問題(4.1X才有Unicode support, 4.0X都是外面Unicode 而資料庫裡面還是使用iso-8859-1~~)

所以列出一些參考資料

其實充其量~~ 就是為了一個功能

      SET NAMES utf8

乾脆換成FreeBSD算了~~ 反正最近ADSL又改成PPPOE的方式了~~~

找到使用MySQL 4.0X版本的EQDKP的版本(1.30)

繁體中文:簡單架設DKP網站
簡體中文:EQDKP 1.3.0 with ItemStats 中文版