就醫(尤其是急診), 如果需要申請保險給付, 請記得一定要就醫當天申請"診斷證明書"否則日後申請要攜帶許多文件, 並且需要掛號(需額外付出掛號費用)... 實在是粉麻煩....@#$!%^@
http://www.mmh.org.tw/med_service/certificate.asp
門診: 需掛號,門診醫師診斷後開立。
※單純開立僅加收掛號費;如由醫師判斷病情,另收看診費用。
急診: 在急診申請,由急診醫師開立。
※若急診時未申請,需補開請掛門診,由當科醫師開立。
住院: 至病房護理站申辦。
※若出/離院時未申請,需補開請掛門診,由原醫師開立。
備註:
※再開立相同乙種診斷證明書者(一個月內曾開立),可直接至住院中心之證明書櫃檯申辦,一份150 (增加一份20元) 。
※申請『外籍監護工專用診斷證明書』,需另附二吋照片二張。(二天內雙掛號郵寄雇主及長照中心)
Anoty
This area is my sharing area. Include some technical/believing/life experiences. Hope you can enjoy with me. God bless you. :)
2011年11月29日 星期二
2011年10月3日 星期一
compression tools
bzip2
bunzip2
gzip
gunzip
zip
unzip
lzma
unlzma or lzma -d
7za
za e
# 7za -h
7-Zip (A) 4.65 Copyright (c) 1999-2009 Igor Pavlov 2009-02-03
p7zip Version 4.65 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,2 CPUs)
Usage: 7za [...] [...]
[<@listfiles...>]
a: Add files to archive
b: Benchmark
d: Delete files from archive
e: Extract files from archive (without using directory names) ==> I ever used this command to extract file
l: List contents of archive
t: Test integrity of archive
u: Update files to archive
x: eXtract files with full paths
標籤:
Linux Command
2011年8月15日 星期一
Some abbreviations in the business
COB - Close of Business (Day, Business)
LOE - Level of Effort (Job Schedule Estimation)
LOE - Level of Effort (Job Schedule Estimation)
2011年5月2日 星期一
Linux Service - SNMP
Compile netsnmp
./configure --prefix=install-path
make
SNMPGET
snmpget
./snmpget -v 2c -c public IP-Address SNMPv2-MIB::sysUpTime.0
SNMPWALK
# ./snmpwalk -v 2c -c public IP-Address 1.3.6.1.2.1.1.1
SNMPv2-MIB::sysDescr.0 = STRING: system-Descriptions
[root@localhost apps]# ./snmpwalk -v 2c -c public IP-Address 1.3.6.1.2.1.1
SNMPv2-MIB::sysDescr.0 = STRING: DOCSIS 3.0 Cable Modem < SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprisesOBJECTID
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (1094660) 3:02:26.60
SNMPv2-MIB::sysContact.0 = STRING:
SNMPv2-MIB::sysName.0 = STRING:
SNMPv2-MIB::sysLocation.0 = STRING:
SNMPv2-MIB::sysServices.0 = INTEGER: 2
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORID.1 = OID: SNMPv2-SMI::zeroDotZero
SNMPv2-MIB::sysORDescr.1 = STRING:
SNMPv2-MIB::sysORUpTime.1 = Timeticks: (0) 0:00:00.00
./configure --prefix=install-path
make
SNMPGET
snmpget
./snmpget -v 2c -c public IP-Address SNMPv2-MIB::sysUpTime.0
SNMPWALK
# ./snmpwalk -v 2c -c public IP-Address 1.3.6.1.2.1.1.1
SNMPv2-MIB::sysDescr.0 = STRING: system-Descriptions
[root@localhost apps]# ./snmpwalk -v 2c -c public IP-Address 1.3.6.1.2.1.1
SNMPv2-MIB::sysDescr.0 = STRING: DOCSIS 3.0 Cable Modem <
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (1094660) 3:02:26.60
SNMPv2-MIB::sysContact.0 = STRING:
SNMPv2-MIB::sysName.0 = STRING:
SNMPv2-MIB::sysLocation.0 = STRING:
SNMPv2-MIB::sysServices.0 = INTEGER: 2
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORID.1 = OID: SNMPv2-SMI::zeroDotZero
SNMPv2-MIB::sysORDescr.1 = STRING:
SNMPv2-MIB::sysORUpTime.1 = Timeticks: (0) 0:00:00.00
標籤:
Linux Service
2011年4月27日 星期三
Adobe PDF
BookMark feature
Select View-> Guide-Board -> Bookmark
Then we can use the embedded bookmarks of the specific pdf document
Select View-> Guide-Board -> Bookmark
Then we can use the embedded bookmarks of the specific pdf document
2011年4月13日 星期三
Linux Command - git
checkout git project
$ git clone git://IP_or_Domain_address/projectName.git
>> Can also be http://IP_or_Domain_address/projectName.git
Cloning into ProjectName...
remote: Counting objects: 13867, done.
remote: Compressing objects: 100% (11779/11779), done.
remote: Total 13867 (delta 2090), reused 13699 (delta 1972)
Receiving objects: 100% (13867/13867), 43.95 MiB | 216 KiB/s, done.
Resolving deltas: 100% (2090/2090), done.
show all the branch/tag in the current repository
$ git ls-remote
From http://IP_or_Domain_address/projectName.git
a99c087c7998b75f8fc662e185b068b52d69b90b HEAD
a99c087c7998b75f8fc662e185b068b52d69b90b refs/heads/master
sync with the latest code from the repository
$ git pull
>> Q. Is there any other command to achieve this purpose?
$ git clone git://IP_or_Domain_address/projectName.git
>> Can also be http://IP_or_Domain_address/projectName.git
Cloning into ProjectName...
remote: Counting objects: 13867, done.
remote: Compressing objects: 100% (11779/11779), done.
remote: Total 13867 (delta 2090), reused 13699 (delta 1972)
Receiving objects: 100% (13867/13867), 43.95 MiB | 216 KiB/s, done.
Resolving deltas: 100% (2090/2090), done.
show all the branch/tag in the current repository
$ git ls-remote
From http://IP_or_Domain_address/projectName.git
a99c087c7998b75f8fc662e185b068b52d69b90b HEAD
a99c087c7998b75f8fc662e185b068b52d69b90b refs/heads/master
sync with the latest code from the repository
$ git pull
>> Q. Is there any other command to achieve this purpose?
2011年4月4日 星期一
Linux Command - vi, ctags, taglist
produce the ctags
# ctags -R ./*
Enable the taglist feature
:TlistOpen
my $HOME/.vimrc config file
"set Tlist_Ctags_Cmd=/root/vimfiles/plugin/taglist.vim
filetype plugin on
"let Tlist_Ctags_Cmd = "/usr/bin/ctags"
"let Tlist_WinWidth = 50
map :TlistOpen
map :TlistToggle ==> add the shortcut of taginfo to quickly jump to the taginfo window
map :!/usr/bin/ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .
taginfo howto document
http://vim-taglist.sourceforge.net/manual.html
# ctags -R ./*
Enable the taglist feature
:TlistOpen
my $HOME/.vimrc config file
"set Tlist_Ctags_Cmd=/root/vimfiles/plugin/taglist.vim
filetype plugin on
"let Tlist_Ctags_Cmd = "/usr/bin/ctags"
"let Tlist_WinWidth = 50
map
map
map
taginfo howto document
http://vim-taglist.sourceforge.net/manual.html
標籤:
Linux Command
訂閱:
文章 (Atom)