2017年7月26日 星期三

信用卡卡號


信用卡卡號

信用卡開頭數字代表不同的卡片用途:
  • 1與2:航空公司
  • 3:旅遊、娛樂與金融機構(如JCB、美國運通) 
  • 4:Visa
  • 5:Mastercard 
  • 6:商店與金融機構(如銀聯卡) 
  • 7:石化業 
  • 8:電信業 
  • 9:公營組織或國家單位
常用卡類:
卡別
規則
Visa Card第一碼為 4。
Master Card第一碼為 5,且前二碼介於 51 和 55 中間。
American Express第一碼為 3,且前三碼介於 340 和 379 之間。
JCB Card第一碼為 1,且前四碼為 1800。
第一碼為 2,且前四碼為 2131。
第一碼為 3,且前三碼介於 300和399之間。
3. 信用卡卡號辨別:
信用卡卡號是有其安全認證公式的,並不是隨便給的。




https://www.money101.com.tw/blog/%E5%86%B7%E7%9F%A5%E8%AD%98-%E4%BF%A1%E7%94%A8%E5%8D%A1%E5%8D%A1%E8%99%9F%E4%B8%8D%E6%98%AF%E9%80%99%E9%BA%BC%E7%B0%A1%E5%96%AE%E7%9A%84%EF%BC%81



2017年7月16日 星期日

會被遺棄,是因為太單調了。


會被遺棄,是因為太單調了。

機器人和真人亦然。


一個人成功之前,得先相信自己。


一個人成功之前,得先相信自己。


2017年7月8日 星期六

努力追求自己的最好,盡力表現自己的最佳。(張雨生)

努力追求自己的最好,盡力表現自己的最佳。(張雨生)


2017年7月3日 星期一

日文檢定,新舊制 比較 差異


官網
https://www.lttc.ntu.edu.tw/JLPT.htm

pdf下載


How to Add PMP to Your LinkedIn


http://work.chron.com/add-pmp-linkedin-9449.html


Adding Suffix

1. Log in to your LinkedIn page and mouse over the "Profile" link.
2. Select "Edit Profile" from the links that pop up.
3. Click the "Edit" button beside your name.
4. Enter "PMP" in the "Last Name" field, after your last name, and click "save changes."

Adding Certification

1. Log in to your LinkedIn page and mouse over the "Profile" link.
2. Select "Edit Profile" from the links that pop up.
3. Scroll down to where it says "Certifications" and click "Add a certification."

4. Enter "Project Management Professional" in the "Certification Name" field and "Project Management Institute" in the "Certification Authority" field. Select the dates for which your certification is valid. Then click "Add Certification."

2017年7月2日 星期日

Excel VBA 刪除空白行的程式


*情境:有個Excel檔,資料表如下

資料1
空白行1
資料2
空白行2
...
...

*撰寫VBA以自動刪除:

Sub delLoop()
Dim i
For i = 1 To 20 Step 1
Rows(i).EntireRow.Delete
Next
End Sub

寫完按F5選Sheet執行就可以
執行前請先複製一張新表,
用程式自動刪的資料是回不去的~

By Sivitry.