經醫生證實有17度的糖尿病。
「糖尿病」最危險的不是糖尿病,而是又糖尿病產生的各種病發症,高血糖會使到器官、肌肉受損,第一個損壞的就是腎臟。
糖尿病人的身體,器官會出現不吸收糖份的情況,才出現高血糖。而腎臟就要不停排糖,試想想腎臟長期給糖水泡著,那個器官還會健康嗎?
當腎臟損壞了,我看應該沒法改善身體了。下面的方法也不知道有沒有用了。(我不是醫生,只是個人意見)
所以,當發現有了糖尿病時... More...
[ 發表回應 ] ( 3預覽 ) | 常註連結 | ( 2.9 / 1401 )
1. 開啟Excel
2. 點 "Office 按鈕"
3. 點選 "Excel 選項"
4. 點選左邊 "增益集"
5. 點選右邊下方的管理,選到 "停用的項目" 然後執行
6. 點選 "Chinese Translation Addin" 並啟用
7. 重複5的步驟,選取 "COM增益集" 然後執行
8. 勾選 "Chinese Translation Addin" 然後確定
[ 發表回應 ] ( 65預覽 ) | 常註連結 | ( 3 / 1464 )
Competitors:
Jason Yang
Clara
Paul Jisung Kim
Sam Hart
Mike Isberto & Alfa
Will Volume
Bhangra Empire
Heeey heeeey heeeeey
Your lipstick stains on the front lobe of my left side brains
I knew I wouldn't forget you
And so I went and let you blow my mind
Your sweet moving
The smell of you in every single dream I dream
I knew when we collided you're the one I have decided
Who's one of my kind
Hey soul sister, ain't that mister mister on the radio, stereo
The way you move ain't fair you know
Hey soul sister, I don't wanna miss a single thing you do tonight
I'm so obsessed
My heart is bound to beat right out my untrimmed chest
I believe in you, like a virgin, you're Madonna
And I'm always gonna wanna blow your mind
Hey soul sister, ain't that mister mister on the radio, stereo
The way you move ain't fair you know
Hey soul sister, I don't wanna miss a single thing you do tonight
Heeey heeeey heeeey
Heeey heeeey heeeey
.......
[ 發表回應 ] ( 10預覽 ) | 常註連結 | ( 3 / 1366 )
How to check the brand of ur motherboard without even opening the system unit.(XP)
1. Start Command Prompt (Run>cmd)
2. Type "wmic" without quotes. (This will install Windows management Instrumentation Console)
3. Type "Baseboard", hit Enter and look under the "Manufacturer" column.
4. To get help on additional commands type "/?"
[ 發表回應 ] ( 12預覽 ) | 常註連結 | ( 3 / 1658 )
原文:
http://www.yces.chc.edu.tw/LifeType/post/1/118
如果有興趣要修改最新的 phpMyAdmin 能支援 Big5,可以參考以下的資料。
許多網頁介紹
使用 ContvertZ 轉換 chinese_traditional-utf-8.inc.php 成 chinese_traditional-big5.inc.php ,第一行改 $charset = 'big5';
vi libraries\select_lang.lib.php
$GLOBALS['mysql_charset_map'] = array(
'big5' => 'big5', //改為 latin1
'utf-8' => 'utf-8', //改為 latin1
但是程式裡面都沒有使用到 $GLOBALS['mysql_charset_map']
而且,SET CHARACTER SET 'utf8'; 已經固定寫死,參考以下程式碼
libraries\database_interface.lib.php
#852
if (! empty($GLOBALS['collation_connection'])) {
PMA_DBI_query("SET CHARACTER SET 'utf8';", $link, PMA_DBI_QUERY_STORE);
$mysql_charset = explode('_', $GLOBALS['collation_connection']);
PMA_DBI_query("SET collation_connection = '" . PMA_sqlAddslashes($GLOBALS['collation_connection']) . "';", $link, PMA_DBI_QUERY_STORE);
} else {
PMA_DBI_query("SET NAMES 'utf8' COLLATE 'utf8_general_ci';", $link, PMA_DBI_QUERY_STORE);
}
參考 2.x 版更改以上程式碼
$mysql_charset = $GLOBALS['mysql_charset_map'][$GLOBALS['charset']];
if (! empty($GLOBALS['collation_connection'])) {
PMA_DBI_query('SET CHARACTER SET ' . $mysql_charset . ';', $link, PMA_DBI_QUERY_STORE);
PMA_DBI_query("SET collation_connection = '" . PMA_sqlAddslashes($GLOBALS['collation_connection']) . "';", $link, PMA_DBI_QUERY_STORE);
} else {
PMA_DBI_query("SET NAMES '" . $mysql_charset . "' COLLATE 'utf8_general_ci';", $link, PMA_DBI_QUERY_STORE);
}
大功告成
以下是檢視 2 種版本 MySQL 連線差異
// VER 2.X
090506 9:16:01 1 Connect root@localhost on
1 Query SELECT VERSION()
1 Query SET NAMES latin1
1 Query SET collation_connection = 'utf8_unicode_ci'
1 Query SET CHARACTER SET latin1
1 Query SET collation_connection = 'utf8_unicode_ci'
1 Query SHOW SESSION VARIABLES LIKE 'collation_connection'
1 Query SHOW SESSION VARIABLES LIKE 'character_set_connection'
1 Query SHOW CHARACTER SET
1 Query SHOW COLLATION
1 Quit
2 Connect root@localhost on
2 Query SELECT VERSION()
2 Query SET NAMES latin1
2 Query SET collation_connection = 'utf8_unicode_ci'
2 Query SET CHARACTER SET latin1
2 Query SET collation_connection = 'utf8_unicode_ci'
2 Query SHOW SESSION VARIABLES LIKE 'collation_connection'
2 Query SHOW SESSION VARIABLES LIKE 'character_set_connection'
2 Query SHOW CHARACTER SET
2 Query SHOW COLLATION
2 Query SHOW DATABASES
2 Query SHOW TABLES FROM `information_schema`
2 Query SHOW TABLES FROM `mysql`
2 Query SHOW TABLES FROM `test`
2 Quit
090506 9:16:02 3 Connect root@localhost on
3 Query SELECT VERSION()
3 Query SET NAMES latin1
3 Query SET collation_connection = 'utf8_unicode_ci'
3 Query SET CHARACTER SET latin1
3 Query SET collation_connection = 'utf8_unicode_ci'
3 Query SHOW SESSION VARIABLES LIKE 'collation_connection'
3 Query SHOW SESSION VARIABLES LIKE 'character_set_connection'
3 Query SHOW CHARACTER SET
3 Query SHOW COLLATION
3 Query SELECT COUNT(*) FROM mysql.user
3 Query SELECT COUNT(*) FROM mysql.user
3 Query SHOW GRANTS
3 Query SELECT COUNT(*) FROM mysql.user
3 Query SELECT USER()
3 Query SHOW MASTER LOGS
3 Quit
//ver 3.x
090506 9:16:50 4 Connect root@localhost on
4 Query SET CHARACTER SET 'utf8'
4 Query SET collation_connection = 'utf8_unicode_ci'
4 Quit
5 Connect root@localhost on
5 Query SET CHARACTER SET 'utf8'
5 Query SET collation_connection = 'utf8_unicode_ci'
5 Query SHOW DATABASES
5 Query SHOW TABLES FROM `information_schema`
5 Query SHOW TABLES FROM `mysql`
5 Query SHOW TABLES FROM `test`
5 Quit
090506 9:16:51 6 Connect root@localhost on
6 Query SET CHARACTER SET 'utf8'
6 Query SET collation_connection = 'utf8_unicode_ci'
6 Init DB mysql
6 Query SHOW MASTER LOGS
6 Query SELECT USER()
6 Quit
[ 發表回應 ] ( 10預覽 ) | 常註連結 | ( 2.9 / 1777 )