Friday, December 30, 2011

Airport Shuttle Transportation

機場接送服務

2012 Visa御璽卡
參考網址:https://www.freeliving.com.tw/visabestoffer/ufirs_way.aspx
活動期間:2012年1月1日~2012年12月31日止
凡刷Visa御璽卡,購買國際線機票全額或國外團費總金額8成以上,並付款成功者。可尊享國際機場接送 3 折之優惠。3折優惠價僅適用於前30,000趟預約完成之Visa御璽卡正、附卡持卡人,超過30,000趟預約之持卡人將適用優惠表之價格。

備註:透過電話方式預約,每筆訂單持卡人須另行支付處理費50元/趟;若取消預約,處理費50元/趟不予退還。


Tuesday, December 27, 2011

Citing an Unpublished Work

如何參考引用尚未出版刊登的論文。

根據 Preparation of Papers for IEEE TRANSACTIONS and JOURNALS (May 2007) 的 Section V. Help Hints 之 B. References 說明:
Papers that have not been published should be cited as “unpublished” [4]. Papers that have been accepted for publication, but not yet specified for an issue should be cited as “to be published” [5]. Papers that have been submitted for publication should be cited as “submitted for publication” [6].


[4] B. Smith, “An approach to graphs of linear forms (Unpublished work style),” unpublished.
[5] E. H. Miller, “A note on reflector arrays (Periodical style—Accepted for publication),” IEEE Trans. Antennas Propagat., to be published.
[6] J. Wang, “Fundamentals of erbium-doped fiber amplifiers arrays (Periodical style—Submitted for publication),” IEEE J. Quantum Electron., submitted for publication.
 
根據 IEEE Manuscript Templates for Conference Proceedings 的 References 章節說明:
Papers that have not been published, even if they have been submitted for publication, should be cited as “unpublished” [4]. Papers that have been accepted for publication should be cited as “in press” [5]. Capitalize only the first word in a paper title, except for proper nouns and element symbols.

[4] K. Elissa, “Title of paper if known,” unpublished.
[5] R. Nicole, “Title of paper with only first word capitalized,” J. Name Stand. Abbrev., in press.

Tuesday, December 20, 2011

如何以較便宜的價格購入 Apple iPad


先講結論~
遇到博客來購物網站的3C館結帳再 9 折活動時,趕緊下手,此時最便宜,不過可能販售機種不全且數量較少。不然就等百貨公司週年慶時,可以換得滿仟送佰活動的禮券,稍做補貼。

百貨公司週年慶
新光三越週年慶:法雅客配合參加新光三越的單筆滿一萬送 500 抵用券活動,另外,刷信用卡還可以領取銀行刷卡禮。以 iPad 2 64GB 售價 21,500 元為例,可以換得兩份 500 抵用券(有使用期限,且限該分店使用)。銀行信用卡刷卡禮最優惠則是澳盛銀行(ANZ),刷卡滿兩萬送 600 元禮券(無使用期限,可用於各三越分店)。因此,總共可以換得 1600 禮券。可惜法雅客不提供讓顧客現抵禮券的方式,必須另外購物以消化掉這些禮券。

大遠百週年慶:大遠百內的德誼數位既不參加百貨公司的全館滿五仟送五佰抵用券活動,也不收滿仟送佰抵用券贈送活動的抵用券,算是最不優惠的週年慶購買地點。(此以大遠百台中店為例)


購物網站
有時候 博客來 會有單日促銷 3C 商品,推出單日限定的滿千結帳再九折,還可以刷卡分期零利率 (3、6、12、24 期)。因為商品數量有限,若遇到此促銷,就要趕緊上網訂購。不過,也可能欲購買的 iPad 2 沒有販售,例如沒有賣具有 3G 功能的 iPad 2。

Wednesday, December 14, 2011

Installing HP printer drivers on Linux

在 Linux 使用 HP 印表機,安裝 Hewlett-Packard Linux Imaging & Printing (HPLIP)

檢查 Linux 系統是否已經安裝 HPLIP
RPM package based distributions (Fedora, SUSE, Mandriva, RHEL, , CentOS, etc):
Run in a terminal window:
$ rpm -qa hplip

參考 http://hplipopensource.com/node/306

確認目前 Linux 所安裝的 HPLIP 版本(若已經安裝) 是否支援欲使用的印表機
http://hplipopensource.com/hplip-web/supported_devices/index.html


安裝或更新 HPLIP 版本
參考 http://hplipopensource.com/hplip-web/install/install/index.html

執行安裝的過程中,可能會遇到缺少一些 package,例如:

warning: There are 4 missing REQUIRED dependencies.
note: Installation of dependencies requires an active internet connection.
warning: Missing REQUIRED dependency: python-devel (Python devel - Python development files)
warning: This installer cannot install 'python-devel' for your distro/OS and/or version.
error: Installation cannot continue without this dependency. Please manually install this dependency and re-run this installer.

以使用 yum 管理 package 為例,檢查所需的 python-devel 名稱
$ yum search
python-devel.i386 : The libraries and header files needed for Python development.
python-devel.x86_64 : The libraries and header files needed for Python development.
wxPython-devel.x86_64 : Development files for wxPython add-on modules

安裝缺少的  python-devel.x86_64 (機器使用 64 bit 的 Linux)
$ yum install python-devel.x86_64

若還缺少其他 package (例如 cups-devel、libusb-devel),以同樣方式安裝。


Monday, November 28, 2011

Pthreads Programming

POSIX Threads (稱為 Pthreads) 制定與 thread 有關的標準於 IEEE POSIX 1003.1c standard。

參考範例
POSIX Threads Programming, https://computing.llnl.gov/tutorials/pthreads/
POSIX Threads Programming Exercise, https://computing.llnl.gov/tutorials/pthreads/exercise.html

Thursday, November 17, 2011

C Programming exec() family

execl, execlp, execle, execv, execvp - execute a file

int execl(const char *path, const char *arg, ...);
int execlp(const char *file, const char *arg, ...);
int execle(const char *path, const char *arg, ..., char * const envp[]);

execl(), execlp(), execle() 函式使用的 const char *arg 可以視為一連串的參數串列(亦即 arg0, arg1, ...,  argn)。第一個參數(即 arg0) 是此函式呼叫使用的程式檔案名稱,此參數串列必須以 NULL pointer 做為結尾,亦即使用 (char *) NULL 做為最後一個參數。

Tuesday, November 15, 2011

Apple iPad 2 Video How-to

AVPlayer HD
AVPlayer HD for iPad: USD $2.99


OPlayer HD

OPlayer HD for iPad: USD $4.99

參考資料
主題:iPad 2 實測番外篇:播1080p 有計!, http://www.eprice.com.hk/nb/talk/997/1741/


OPlayerHD Lite

OPlayerHD Lite for iPad: Free

GPlayer
http://itunes.apple.com/app/gplayer/id438402174?mt=8
GPlayer for iPhone and iPad: USD $2.99


Write a Lab Report

如何撰寫實驗報告, http://chemistry.about.com/od/chemistrylabexperiments/a/labreports.htm

Wednesday, October 5, 2011

Install Adobe Flash Player on Linux

Flash Player 11 for Linux (YUM) 64-bit

$ sudo yum install adobe-release-x86_64.noarch
$ sudo yum install flash-plugin.x86_64

Restart browser.

Monday, October 3, 2011

Portable Document Format (PDF) tools

Ghostscript
interpreter for the PostScript language and for PDF

Links
http://www.ghostscript.com/


GSview
Ghostscript 的圖形化介面。

Links
GSview, http://pages.cs.wisc.edu/~ghost/gsview/index.htm

gv
Ghostscript 的 PostScript interpreter。

於 Linux 系統使用 yum 安裝套件
$ sudo yum install gv

由於套件相依性,將安裝以下兩個套件 (以 64 bit 系統為例)
gv.x86_64 : A X front-end for the Ghostscript PostScript(TM) interpreter
Xaw3d.x86_64 : A version of the MIT Athena widget set for X

安裝完成後,gv 程式位於 /usr/bin/gv

CutePDF Writer
安裝於 Microsoft Windows 的 PDF 轉檔免費軟體,藉由安裝虛擬的印表機(CutePDF Writer) 可將文件輸出為 PDF 文件。

Links
CutePDF Writer, http://www.cutepdf.com/products/cutepdf/Writer.asp

Tuesday, September 27, 2011

Release Cache Memory

Linux 從 kernel 2.6.16 開始,提供透過指令清除 pagecache、inode、dentry。

$ sync; /sbin/sysctl vm.drop_caches=3

或者
$ sync; echo 3 > /proc/sys/vm/drop_caches

查看清除前的記憶體使用情況
$ cat /proc/meminfo
MemTotal: 10270912 kB
MemFree: 33092 kB
Buffers: 152300 kB
Cached: 9784508 kB
SwapCached: 0 kB
Active: 196180 kB
Inactive: 9802104 kB
SwapTotal: 2031608 kB
SwapFree: 2031608 kB


查看清除後的記憶體使用情況
$ cat /proc/meminfo
MemTotal: 10270912 kB
MemFree: 10061932 kB
Buffers: 408 kB
Cached: 28692 kB
SwapCached: 0 kB
Active: 89624 kB
Inactive: 928 kB
SwapTotal: 2031608 kB
SwapFree: 2031608 kB


參考資料
drop_caches, http://www.linuxinsight.com/proc_sys_vm_drop_caches.html
The Linux Kernel Archives - vm sysctl documentation, http://www.kernel.org/doc/Documentation/sysctl/vm.txt

Saturday, September 24, 2011

Friday, September 9, 2011

gnuplot PostScript

gnuplot> set terminal postscript eps enhanced
gnuplot> set output 'enhanced.eps'

eps - 使用 Encapsulated PostScript (EPS) 檔案格式,而非 raw PostScript。
enhanced - 使用增強文字模式(enhanced text mode),例如上標、下標文字等。

Thursday, September 1, 2011

Linux CPU Frequency Scaling

cpuspeed
user-space cpu frequency scaling program.

CPUSpeed web page: http://carlthompson.net/Software/CPUSpeed

cpufreq-utils

使用 APT (例如於 Debian/Ubuntu) 安裝套件:
$ sudo aptitude install cpufrequtils


使用 yum (例如 Red Hat /CentOS/Fedora) 安裝套件:
$ sudo yum install cpufreq-utils

查看 CPU 資訊:/usr/bin/cpufreq-info
設定 CPU frequency:/usr/bin/cpufreq-set

Wednesday, August 31, 2011

JMeter Installation

於 CentOS Linux 安裝 JMeter。

安裝 JDK
於 Sun/Oracle Java JDK 網頁選擇安裝版本
http://www.oracle.com/technetwork/java/javase/downloads/index.html

例如,選擇 Java SE 7 JDK

依據 Linux 的安裝版本選擇所需套件
32 bit: jdk-7-linux-i586.rpm
64 bit: jdk-7-linux-x64.rpm
例如,下載 32 bit 的 jdk-7-linux-i586.rpm 檔案後,即可於 Linux 主機安裝
$ sudo rpm -ivh jdk-7-linux-i586.rpm

安裝 JMeter
例如,下載 jakarta-jmeter-2.5.tgz 後,將壓縮檔解開來,即可直接使用。
$ tar zxfv jakarta-jmeter-2.5.tgz

Wednesday, August 10, 2011

Source Code Cross-Reference

GNU GLOBAL source code tag system
http://www.gnu.org/software/global/

安裝
$ ./configure
$ make
$ sudo make install

如果執行 make 時遇到錯誤訊息
gtags-cscope.c:57:20: error: curses.h: No such file or directory

則需要安裝 ncurses library,包含  ncurses (terminal handling library) 和 ncurses-devel (development files for ncurses library)
$ yum install ncurses-devel ncurses

使用
產生 tag files(GPATH,GTAGS,GRTAGS)
$ gtags -v

$ ls G*
GPATH  GRTAGS  GTAGS
產生  hypertext(HTML/)
$ htags

設定允許 CGI 程式執行
修改 httpd.conf 以允許 CGI 程式執行
1. 修改增加
Options ExecCGI
AddHandler cgi-script .cgi

2. 修改增加
<Directory /home/*/public_html>
    Options ExecCGI
</Directory>

如果無法執行 global.cgi 進行 search, 查看 /var/log/httpd/error_log 的錯誤訊息顯示
[Wed Aug 10 16:29:56 2011] [error] [client a.b.c.d] suexec policy violation: see suexec log for more details, referer: http://x.y.z/HTML/search.html
表示需確認 cgi-bin 目錄的權限設定為 755。

Linux File System management

使用 df 指令加上 -T 參數(print file system type),查看檔案系統是 ext2 或 ext3
$ df -T

Sunday, April 24, 2011

GNU Scientific Library (GSL)

GNU Scientific Library (GSL) 網址 http://www.gnu.org/software/gsl/

原始檔安裝
下載檔案 ftp://ftp.gnu.org/gnu/gsl/gsl-1.9.tar.gz

$ tar zxfv gsl-1.9.tar.gz

$ cd gsl-1.9/

產生 Makefiles
$ ./configure

預設安裝於 /usr/local 目錄,使用 --prefix=PATH 參數可指定安裝於其他路徑,例如安裝 gsl 於 /usr 目錄之下則使用
$ ./configure --prefix=/usr

編譯 library。
$ make

安裝 gsl 於預設目錄 /usr/local 之下 (亦即安裝相關檔案於 /usr/local/include/gsl 目錄)
$ make install

若使用 --prefix=/usr 參數以指定安裝路徑,則將安裝相關檔案於 /usr/include/gsl 目錄。

問題排除
$ ./a.out
./a.out: error while loading shared libraries: libgsl.so.0: cannot open shared object file: No such file or directory

library 檔案 libgsl.so.0 已存在於 /usr/local/lib/libgsl.so.0, 解決方法為設定 LD_LIBRARY_PATH, 參考 http://www.gnu.org/software/gsl/manual/html_node/Shared-Libraries.html


套件安裝
使用 yum 搜尋安裝套件
$ yum search gsl
gsl.i386 : The GNU Scientific Library for numerical analysis
gsl.x86_64 : The GNU Scientific Library for numerical analysis
gsl-devel.i386 : Static libraries and header files for GSL development
gsl-devel.x86_64 : Static libraries and header files for GSL development

選擇安裝套件,32 bit 機器選擇安裝 gsl.i386:
$ yum install gsl.i386
$ yum install gsl-devel.i386

64 bit 機器選擇 gsl.x86_64 以安裝 library 檔案(例如 libgsl.a 和 libgsl.so) 於 /usr/local/lib 目錄。
$ yum install gsl.x86_64

64 bit 機器選擇 gsl-devel.x86_64 以安裝 header file 於 /usr/include/gsl 目錄。
$ yum install gsl-devel.x86_64

static library 和 header file 預設安裝於 /usr/include/gsl 目錄。

參考資料
GSL Reference Manual, http://www.gnu.org/software/gsl/manual/html_node/index.html

Thursday, April 21, 2011

Windows 32-bit versus 64-bit

效能測試:Windows 7 64 vs 32位元 誰比較快? by T客邦
對一般使用者來說,64與32位元Windows最顯著的差異是支援的實體記憶體大小。32位元的Windows 7最多支援4GB記憶體,而且實際上可用的記憶體容量還不到4GB。如果有超過4GB的記憶體使用需求,安裝支援192GB記憶體的64位元的Windows 7會是比較有效率的選擇。
在效能測試中,64位元Windows 7在與影片轉檔等多媒體處理相關的測試項目中,效能的優勢比較明顯,在音樂轉檔與WinRAR壓縮的效能則與32位元Windows相差不多。另外因為64位元Windows 7支援4GB以上記憶體,因此有影片處理、轉檔等需求,或擁有超過4GB記憶體的使用者,我們建議安裝64位元Windows 7以獲得更好的效能。

Tuesday, April 5, 2011

vsftpd: restrict user access

vsftpd Configuration File: /etc/vsftpd/vsftpd.conf
virtual_use_local_privs=YES
user_config_dir=/etc/vsftpd/vsftpd_user_conf/

例如限制使用者 kitty,僅允許其上傳檔案,不可以複蓋檔案、下載檔案。編輯其設定檔如下:
User configuration file: /etc/vsftpd/vsftpd_user_conf/kitty

dirlist_enable=YES
cmds_allowed=PWD,TYPE,LIST,CWD,CDUP,PASV,STOR,QUIT
file_open_mode=0400
chmod_enable=NO

Monday, February 28, 2011

SKM Credit Card Promotion

新光三越省錢刷手卡利high
活動日期:2010/07/23(五) ~ 2010/09/05(日)
全台新光三越百貨各分店,同卡號刷卡達指定門檻享 4% - 6% 新光三越商品禮券:
累計達NT$15,000 - NT$59,999,回饋 4% 商品禮券
累計達NT$60,000 - NT$199,999,回饋 5% 商品禮券
累計滿NT$200,000(含)以上,回饋 6% 商品禮券

每卡最高回饋上限5萬元商品禮券。

Wednesday, February 16, 2011

信用卡國外交易服務費

信用卡國外交易服務費 (foreign transaction fee) 除包含各信用卡組織收取之費用外,各銀行收取作業手續費如下:

永豐銀行: 0.5% (信用卡相關費用: 12. 國外交易服務費)
聯邦銀行: 0.5% (國外交易授權結匯)

Wednesday, January 19, 2011

C-BGP BGP Routing Solver Installation

C-BGP 網頁 http://cbgp.info.ucl.ac.be/

下載檔案,例如 cbgp-2.0.0-rc2.tar.gz。進行解壓縮、編譯和安裝。

$ tar zxfv cbgp-2.0.0-rc2.tar.gz
$ cd cbgp-2.0.0-rc2/

C-BGP 需要額外 library,包括 libGDS 和 PCRE,否則執行 .configure 時會出下以下錯誤訊息:

$ .configure
checking for LIBGDS... no
checking for LIBGDS... configure: error: libgds >= 2.0.0 is needed to compile cbgp
...
checking for pcre-config... false
ERROR: Could not find pcre-config in your path.
You need PCRE to compile C-BGP.
Source: http://www.pcre.org/
Use --with-pcre=DIR to mention another search path


Install libGDS

libGDS 網頁下載檔案,例如 libgds-2.0.0-rc1.tar.gz

$ tar zxfv src/libgds-2.0.0-rc1.tar.gz
$ cd libgds-2.0.0-rc1
$ ./configure; make; sudo make install

預設將安裝於 /usr/local 目錄,包括安裝 library file 於 /usr/local/lib 目錄,安裝 library header 於 /usr/local/include/libgds 目錄。

或者使用 --prefix=PATH,指定安裝目錄,例如:
$ ./configure --prefix=$HOME/myproj

相關檔案將安裝於 $HOME/myporj/lib 目錄和 $HOME/myproj/include/libgds 目錄。

Install PCRE (Perl Compatible Regular Expressions)

PCRE 網頁下載檔案,例如 pcre-8.12.tar.gz,執行以下指令,依序解壓縮和安裝。

$ tar zxfv pcre-8.12.tar.gz
$ cd pcre-8.12
$ ./configure; make; sudo make install

預設將安裝 PCRE 於 /usr/local/{bin, include, lib, share} 目錄。

或者使用 --prefix=PATH,指定安裝目錄,例如:
$ ./configure --prefix=$HOME/myproj

將安裝 PCRE 於 $HOME/myproj/{bin, include, lib, share} 目錄。

Install Others

C-BGP 還需要安裝 libbz2 library。使用 apt 需安裝 libbz2-dev package,使用 yum 需安裝 bzip2-devel。

Install C-BGP again

繼續完成安裝 C-BGP。
$ ./configure; make; sudo make install

若是安裝 ligGDS 於其他目錄(非預設 /usr/local 目錄),需要先設定 PKG_CONFIG_PATH 環境變數,再執行 configure:
$ export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/myproj/lib/pkgconfig

或者於執行 configure 時,使用 LIBGDS_CFLAGS 和 LIBGDS_LIBS 參數以設定 C-BGP:
$ ./configure LIBGDS_CFLAGS="-I$HOME/myproj/include" LIBGDS_LIBS="-L$HOME/myproj/lib -lgds"

若是安裝 PCRE 於其他目錄(非預設 /usr/local 目錄),使用 --with-pcre=DIR 參數以設定 C-BGP:
$ ./configure [OPTION] --with-pcre=$HOME/myproj

執行 configure 可以加上 --prefix=PATH,指定 C-BGP 的安裝目錄。
$ ./configure [OPTION] --prefix=$HOME/myproj

如果執行 make 時遇到一些編譯問題,嘗試改用其他 C compiler,例如使用 gcc-4.1:
$ ./configure ... CC=/usr/bin/gcc-4.1

Links



Wednesday, January 12, 2011

BRITE topology generator

網頁 http://www.cs.bu.edu/brite/

安裝準備
使用最新的 BRITE 時,系統需安裝 Java 2 (JDK1.3) 或更新的版本。參考 安裝 JDK 於 Linux

安裝
$ tar zxvf BRITE.tar.gz
$ cd BRITE/
$ make all

執行 BRITE GUI
$ ./brite &

Saturday, January 8, 2011

gnuplot cannot set terminal jpeg, gif, and png

如果無法設定 gnuplot 的 terminal 為 jpeg/gif/png,原因是系統缺少 libgd,可從查看 gnuplot 執行 configure 時的紀錄檔 config.log 得知。

configure:8171: WARNING: libgd not found or too old, version >= 2.0 is required
...
configure:12599: result: jpeg terminal: no (requires libgd with jpeg support)
configure:12612: result: gif terminal: no (requires libgd with gif support)
configure:12621: result: png terminal: no (requires libgd with png support)
configure:12629: result: (jpeg, gif and png terminals cannot use TTF fonts, requires libgd support)


解決方式是安裝 gd-devel 套件。

範例:使用 yum 更新。
1. 查看適合的套件
$ yum search gd-devel
gd-devel.i386 : The development libraries and header files for gd
gd-devel.x86_64 : The development libraries and header files for gd

2. 選擇所需安裝套件
$ yum install gd-devel.x86_64

3. 再重新安裝 gnuplot 即可
$ ./configure; make; make install

Friday, January 7, 2011

gnuplot cannot set terminal x11

在 X11 (X Window System) 環境執行 gnuplot 時,如果顯示 terminal 為未知的(unknown),而且無法設定 terminal 為 x11。
Terminal type set to 'unknown'

原因是系統缺少 X11/Xlib.h 檔案,可從查看 gnuplot 執行 configure 時的紀錄檔 config.log 得知。
conftest.c:25:22: error: X11/Xlib.h: No such file or directory
/usr/bin/ld: cannot find -lX11
...

configure:9011: gcc -o conftest -g -O2 conftest.c -lX11 -lm >&5
/usr/bin/ld: cannot find -lX11

查看系統的 /usr/include/X11 目錄,可能沒有任何檔案。解決方式是安裝 libX11-devel 套件。

範例:使用 yum 更新。
1. 查看適合的套件
$ yum search libX11-devel
libX11-devel.i386 : X.Org X11 libX11 development package
libX11-devel.x86_64 : X.Org X11 libX11 development package

2. 選擇所需安裝套件 (以安裝 64 bit 為例)
$ sudo yum install libX11-devel.x86_64

X11 相關檔案將安裝於 /usr/include/X11 目錄。

3. 再重新安裝 gnuplot 即可
$ ./configure; make; make install

Thursday, January 6, 2011

Paper Submission Resources

Peer Review for Journals Author Center
http://www.computer.org/portal/web/peerreviewjournals/author
提供 single column 和 double column 的 LaTex 和 Microsoft Word 範本。


Standard IEEE conference templates
http://www.ieee.org/conferences_events/conferences/publishing/templates.html
提供 Microsoft Word 2000 和 LaTex 的範本。


IEEE Transactions, Journals, and Letters
Information for Authors, http://www.ieee.org/portal/cms_docs/pubs/transactions/auinfo03.pdf


IEEE Journal on Selected Areas in Communication (J-SAC)
Information for Authors, http://www.jsac.ucsd.edu/Guidelines/info.html


IEEE LaTeX style file (IEEEtran.cls)
CTAN website: http:/www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/
Double-column version of manuscript: single-spaced, double-column (2-column), IEEE format (10-point font size)


IEEE Computer Society's Conference Publishing Services
http://www.computer.org/portal/web/cscps/formatting/
Word template and LaTeX formatting macros designed for conferences use an US Letter (8.5" x 11") trim size

Saturday, January 1, 2011

PLEATS PLEASE

PLEATS PLEASE 專櫃

君梵會館/台中市西區中興街247號
台北新光三越信義新天地A9館 3F
台北寶慶FE21 2F
台北SOGO復興店 4F
台北SOGO天母店 3F
新竹大遠百FE21 2F 03-5278552

台中新光三越百貨 3F 04-22598802
台中中友百貨C棟 2F 04-22273490

嘉義耐斯松屋 1F
台南新光三越中山店 B1
高雄漢神百貨 2F
高雄漢神巨蛋購物廣場2F 07-5224583
高雄大立精品 3F
高雄大遠百FE21 1