2016/07/10

PostgreSQL的數值資料型態(Numeric Data Types)

PostgreSQL的數值資料型態(Numeric Data Types)

今天仔細看數值資料型態時,才仔細看到 postgresql 的數值型態其中一種為 numeric 的型態,中文翻譯為「任意精度數值」,一直間無法理解他的意思,後來才發現它可以讓用戶自行定義十進位的位數及小數點後面的位數。難怪科學運算都喜歡用 postgresql DB 來操作,一般生活中的應用實在太少運用到麼大的需求。

在最新的 9.5 版它的範圍描述是這樣寫的

up to 131072 digits before the decimal point; up to 16383 digits after the decimal point

如果我解讀沒錯的話,在小數點前可以 131072 位數,在小數點後為 16383 位數。大概以後只有十兆換一塊的通膨才有可能有機會用到了(誤)。



例如:

數字 23.5141精度(precision)為 6 而比例(scale)為 4

宣告格式為:
NUMERIC(precision, scale)
NUMERIC(6, 4)



在 pgadmin 工具中的設定範例如下:


程式語言上運算的問題:

但其實宣告了這個欄位型態後,匯衍生出另一個問題。就是 DB 可以操作這個數字運算操作,但是程式語言有困難呀!!!找了一下,好像 PHP 的 BCMATH 好像可以解決任意精確度運算的這個問題,下次有遇到再來研究巴。


2016/07/09

Linux command 測試網路速度

Linux command 測試網路速度

原始碼 in https://github.com/sivel/speedtest-cli

# 安裝及執行
wget -O speedtest-cli https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
chmod +x speedtest-cli
./speedtest-cli

# 執行範例
[root@dev dl]# ./speedtest-cli
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Testing from TANet (111.111.11.111)...
Selecting best server based on latency...
Hosted by Chief Telecom (Changhua) [67.67 km]: 19.85 ms
Testing download speed........................................
Download: 798.55 Mbit/s
Testing upload speed..................................................
Upload: 185.07 Mbit/s



2016/07/03

將 github 的 code 分享到 blog 使用

(1) 首先要有個 github 的帳號

 (2) 登入 https://gist.github.com/

 (3) 貼上程式碼, 選取左上角的 Embed code



(4) 然後就長的像是下面一樣